@font-face {
  font-family: "lucrum-icons";
  src: url("icon/fonts/lucrum-icons.eot?tkleno");
  src: url("icon/fonts/lucrum-icons.eot?tkleno#iefix") format("embedded-opentype"), url("icon/fonts/lucrum-icons.ttf?tkleno") format("truetype"), url("icon/fonts/lucrum-icons.woff?tkleno") format("woff"), url("icon/fonts/lucrum-icons.svg?tkleno#lucrum-icons") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
.lucrum [class^=ico-],
.lucrum [class*=" ico-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "lucrum-icons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.lucrum .ico-wave-sine:before {
  content: "\e900";
  color: #fefbfb;
}
.lucrum .ico-pulse:before {
  content: "\e901";
  color: #fefbfb;
}
.lucrum .ico-arrow-right:before {
  content: "\e902";
  color: #fefbfb;
}
.lucrum .ico-close:before {
  content: "\e9b4";
}
.lucrum .ico-filter:before {
  content: "\e9b1";
}
.lucrum .ico-arrow-left:before {
  content: "\e9a0";
}
.lucrum .ico-download:before {
  content: "\e993";
}
.lucrum .ico-move:before {
  content: "\e994";
}
.lucrum .ico-back-to-top:before {
  content: "\e961";
}
.lucrum .ico-search:before {
  content: "\e93b";
}
.lucrum .ico-external-link:before {
  content: "\e910";
}
.lucrum .ico-info:before {
  content: "\e93a";
}
.lucrum .ico-favorite:before {
  content: "\e911";
}
.lucrum .ico-email:before {
  content: "\e9ac";
}
.lucrum .ico-web:before {
  content: "\e956";
}
.lucrum .ico-mobile:before {
  content: "\e958";
}
.lucrum .performance-table {
  margin-bottom: 16px;
  margin-top: 20px;
}
.lucrum .performance-table__wrapper {
  text-align: left;
}
.lucrum .performance-table__grid {
  display: flex;
}
.lucrum .performance-table__grid-inner {
  display: flex;
  width: 100%;
}
.lucrum .performance-table__grid--col {
  display: flex;
  align-content: space-between;
  flex-wrap: wrap;
}
.lucrum .performance-table__grid--col.grid-cols__2 {
  min-width: 50%;
  width: 100%;
}
.lucrum .performance-table__grid--col.grid-cols__3 {
  min-width: 33.3333333333%;
  width: 100%;
}
.lucrum .performance-table__grid--col.grid-cols__5 {
  min-width: 20%;
  width: 100%;
}
.lucrum .performance-table__grid--col.grid-cols__7 {
  min-width: 14.2857142857%;
  width: 100%;
}
.lucrum .performance-table__grid--head {
  width: 125px;
  display: flex;
  align-content: space-between;
  flex-wrap: wrap;
}
.lucrum .performance-table__grid--spacer-head {
  padding: 8px;
}
.lucrum .performance-table__grid--label, .lucrum .performance-table__grid--value {
  text-align: left;
  border-top: 1px solid #e5e5e5;
  height: 25px;
  font-size: 14px;
  line-height: 1.25;
  width: 100%;
  font-family: "Futura", sans-serif;
}
.lucrum .performance-table__grid--label {
  padding: 8px 8px 8px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lucrum .performance-table__grid--value {
  padding: 8px;
}
.lucrum .performance-table__grid--period {
  line-height: 1.25;
  text-align: left;
  padding: 8px;
  font-size: 14px;
  font-family: "Futura", sans-serif;
}
.lucrum .performance-table__title {
  font-size: 20px;
  margin-bottom: 0;
  text-align: left;
}
.lucrum .performance-table__controls {
  margin-top: 20px;
}
.lucrum .fc-paginator {
  -webkit-box-shadow: inset 0 0 0 1px grey;
  box-shadow: inset 0 0 0 1px grey;
  border-radius: 24px;
  display: inline-block;
  font-family: "Futura", sans-serif;
  font-weight: 400;
  list-style: none;
  padding: 6px 12px;
  white-space: nowrap;
  line-height: 1;
}
.lucrum .fc-paginator__item {
  display: inline-block;
  font-size: 14px;
  padding: 0;
}
.lucrum .fc-paginator__item.disabled {
  color: #5e5e5e;
  cursor: not-allowed;
  opacity: 0.4;
  pointer-events: none;
}
.lucrum .fc-paginator__item--link {
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
  padding: 0 4px;
}
.lucrum .asset_allocation__tabs {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 16px;
}
.lucrum .asset_allocation__tabs--button {
  display: inline-block;
  padding: 10px 20px;
  text-align: center;
  color: rgba(0, 0, 0, 0.54);
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  position: relative; /* Add position relative to create a stacking context */
  overflow: hidden; /* Hide overflowing ripples */
}
.lucrum .asset_allocation__tabs--button:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0%;
  width: 100%;
  height: 100%;
  background-color: rgba(249, 249, 249, 0.2); /* Adjust the ripple color and transparency */
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(-100%);
}
.lucrum .asset_allocation__tabs--button:hover {
  background-color: #f9f9f9;
}
.lucrum .asset_allocation__tabs--button.active {
  border-color: #000000;
  color: #000000;
}
.lucrum .asset_allocation__tabs--button.active:after {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.lucrum .asset_allocation__tabs--button.active:hover {
  background-color: #d3d3d3;
}
.lucrum .asset_allocation__data--chart {
  height: 260px;
}
.lucrum .asset_table--table {
  border-collapse: collapse;
  width: 100%;
}
.lucrum .asset_table--table-header {
  color: #5e5e5e;
  font-weight: 300;
  font-size: 12px;
}
.lucrum .asset_table--table-header:first-child {
  text-align: left;
}
.lucrum .asset_table--table-header:nth-child(n+2) {
  text-align: right;
}
.lucrum .asset_table--table-row {
  tab-size: 4;
  height: 27px;
  font-size: 14px;
  border-top: 1px solid #e5e5e5;
  padding: 8px;
}
.lucrum .asset_table--table-row td:first-child {
  text-align: left;
}
.lucrum .asset_table--table-row td:nth-child(n+2) {
  text-align: right;
}
.lucrum .asset_table-asset-circle-icon {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  margin-right: 4px;
  border: solid 3px;
  vertical-align: middle;
}
.lucrum .heatmap__wrap {
  display: flex;
  flex-wrap: wrap;
}
.lucrum .heatmap__left {
  min-width: 200px;
  padding-right: 10px;
}
.lucrum .heatmap__right {
  padding-left: 10px;
}
.lucrum .heatmap__max-label {
  font-family: "Futura", sans-serif;
  color: #1e1e1e;
  font-style: normal;
  line-height: 1.375;
  font-size: 16px;
  font-weight: 300;
  width: 100%;
  margin-top: 6px;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.lucrum .heatmap__max-percentage {
  font-family: "Futura", sans-serif;
  font-size: 18px;
  color: #1e1e1e;
  font-weight: 300;
  width: 100%;
  line-height: 1.375;
  font-style: normal;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.lucrum .heatmap .highcharts-axis-line {
  stroke: #fff;
}
.lucrum .heatmap .highcharts-grid-line {
  stroke: #fff;
}
.lucrum .heatmap .legend__label {
  font-family: "Futura", sans-serif;
  text-align: right;
  font-style: normal;
  font-weight: 400;
  line-height: 1.375;
  font-size: 1rem;
}
.lucrum .heatmap .legend__bar {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.lucrum .heatmap .legend__bar--item {
  position: relative;
  width: 25%;
}
.lucrum .heatmap .legend__bar--item:first-child .legend__bar--style {
  border-bottom-left-radius: 12px;
  border-top-left-radius: 12px;
}
.lucrum .heatmap .legend__bar--item:last-child .legend__bar--style {
  border-bottom-right-radius: 12px;
  border-top-right-radius: 12px;
}
.lucrum .heatmap .legend__bar--style {
  width: 100%;
  height: 10px;
  display: block;
}
.lucrum .heatmap .legend__bar--value {
  font-style: normal;
  font-weight: 400;
  line-height: 1.375;
  font-family: "Futura", sans-serif;
  color: #212529;
  font-size: 1rem;
}
.lucrum .heatmap .legend__bar--container-value {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lucrum .heatmap .highcharts-yaxis-labels {
  transform: translateX(10px);
}
.lucrum .economicDistribution--container .economicDistribution--header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lucrum .economicDistribution--container .economicDistribution--header .economicDistribution--header--title {
  font-weight: 600;
  margin-right: 1rem;
}
.lucrum .economicDistribution--container .economicDistribution--header .economicDistribution--header--selector {
  display: flex;
  justify-content: center;
}
.lucrum .economicDistribution--container .economicDistribution--header .economicDistribution--header--selector .economicDistribution--header--selector--tab {
  border: 1px solid black;
  text-align: center;
  flex-grow: 1;
  padding: 8px;
  font-size: 12px;
}
.lucrum .economicDistribution--container .economicDistribution--header .economicDistribution--header--selector .economicDistribution--header--selector--tab.active {
  background-color: #333333;
  color: #fff;
}
.lucrum .economicDistribution--container .economicDistribution--header .economicDistribution--header--selector .economicDistribution--header--selector--tab:hover {
  cursor: pointer;
  background-color: #5e5e5e;
}
.lucrum .economicDistribution--container .economicDistribution--header .economicDistribution--header--selector .economicDistribution--header--selector--tab:first-child {
  border-radius: 15px 0 0 15px;
}
.lucrum .economicDistribution--container .economicDistribution--header .economicDistribution--header--selector .economicDistribution--header--selector--tab:last-child {
  border-radius: 0 15px 15px 0;
}
.lucrum .economicDistribution__maps {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lucrum .economicDistribution__classification {
  color: #6c757d;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-family: "Futura", sans-serif;
  font-size: 16px;
  font-weight: 300;
}
.lucrum table.economicDistribution--table {
  border-collapse: collapse;
  text-align: left;
  width: 100%;
}
.lucrum table.economicDistribution--table thead tr th {
  width: auto;
  padding: 8px;
  color: #5e5e5e;
  padding-bottom: 16px;
  font-size: 12px;
  font-family: "Futura", sans-serif;
}
.lucrum table.economicDistribution--table thead tr th:last-child {
  padding-right: 0px;
  text-align: right;
}
.lucrum table.economicDistribution--table tbody tr td {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: auto;
  padding: 8px;
  font-size: 14px;
  font-family: "Futura", sans-serif;
}
.lucrum table.economicDistribution--table tbody tr td span.economicDistribution--table-row-label::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 5px;
  background-color: var(--label-color);
}
.lucrum table.economicDistribution--table tbody tr td:last-child {
  padding-right: 0px;
  text-align: right;
}
.lucrum table.economicDistribution--table tbody tr:nth-child(n+2) {
  border-top: 1px solid #e5e5e5;
}
.lucrum .wallet_table--table-title {
  padding: 16px 0 16px 0;
  vertical-align: middle;
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 20px;
  width: 100%;
  text-align: left;
}
.lucrum .wallet_table--wrapper {
  overflow-x: auto;
}
.lucrum table.wallet_table--table {
  border-collapse: collapse;
  text-align: left;
  width: 100%;
}
.lucrum table.wallet_table--table thead tr th.wallet_table--table-header {
  width: auto;
  padding: 8px;
  color: #5e5e5e;
  padding-bottom: 16px;
  font-size: 12px;
  font-family: "Futura", sans-serif;
}
.lucrum table.wallet_table--table thead tr th.wallet_table--table-header:first-child {
  width: 16px;
  text-align: right;
}
.lucrum table.wallet_table--table thead tr th.wallet_table--table-header:last-child {
  padding-right: 0px;
  text-align: right;
}
.lucrum table.wallet_table--table tbody tr.wallet_table--table-row td {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: auto;
  padding: 8px;
  font-size: 14px;
  font-family: "Futura", sans-serif;
}
.lucrum table.wallet_table--table tbody tr.wallet_table--table-row td:first-child {
  width: 16px;
  padding-left: 0px;
  text-align: right;
}
.lucrum table.wallet_table--table tbody tr.wallet_table--table-row td:last-child {
  padding-right: 0px;
  text-align: right;
}
.lucrum table.wallet_table--table tbody tr.wallet_table--table-row:nth-child(n+2) {
  border-top: 1px solid #e5e5e5;
}
.lucrum .heatmap__wrap {
  display: flex;
  flex-wrap: wrap;
}
.lucrum .heatmap__left {
  min-width: 200px;
  padding-right: 10px;
}
.lucrum .heatmap__right {
  padding-left: 10px;
}
.lucrum .heatmap__max-label {
  font-family: "Futura", sans-serif;
  color: #1e1e1e;
  font-style: normal;
  line-height: 1.375;
  font-size: 16px;
  font-weight: 300;
  width: 100%;
  margin-top: 6px;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.lucrum .heatmap__max-percentage {
  font-family: "Futura", sans-serif;
  font-size: 18px;
  color: #1e1e1e;
  font-weight: 300;
  width: 100%;
  line-height: 1.375;
  font-style: normal;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.lucrum .heatmap .highcharts-axis-line {
  stroke: #fff;
}
.lucrum .heatmap .highcharts-grid-line {
  stroke: #fff;
}
.lucrum .heatmap .legend__label {
  font-family: "Futura", sans-serif;
  text-align: right;
  font-style: normal;
  font-weight: 400;
  line-height: 1.375;
  font-size: 1rem;
}
.lucrum .heatmap .legend__bar {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.lucrum .heatmap .legend__bar--item {
  position: relative;
  width: 25%;
}
.lucrum .heatmap .legend__bar--item:first-child .legend__bar--style {
  border-bottom-left-radius: 12px;
  border-top-left-radius: 12px;
}
.lucrum .heatmap .legend__bar--item:last-child .legend__bar--style {
  border-bottom-right-radius: 12px;
  border-top-right-radius: 12px;
}
.lucrum .heatmap .legend__bar--style {
  width: 100%;
  height: 10px;
  display: block;
}
.lucrum .heatmap .legend__bar--value {
  font-style: normal;
  font-weight: 400;
  line-height: 1.375;
  font-family: "Futura", sans-serif;
  color: #212529;
  font-size: 1rem;
}
.lucrum .heatmap .legend__bar--container-value {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lucrum .heatmap .highcharts-yaxis-labels {
  transform: translateX(10px);
}
.lucrum .table-title {
  display: table;
  padding: 16px 0 16px 0;
  vertical-align: middle;
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 20px;
  width: 100%;
}
.lucrum table.table {
  border-collapse: collapse;
  text-align: left;
  width: 100%;
}
.lucrum table.table thead tr th.table-header {
  width: auto;
  padding: 8px;
  color: #5e5e5e;
  padding-bottom: 16px;
  font-size: 12px;
  font-family: "Futura", sans-serif;
}
.lucrum table.table thead tr th.table-header:first-child {
  width: 16px;
}
.lucrum table.table thead tr th.table-header:last-child {
  padding-right: 0px;
  text-align: right;
}
.lucrum table.table tbody tr.table-row td {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: auto;
  padding: 8px;
  font-size: 14px;
  font-family: "Futura", sans-serif;
}
.lucrum table.table tbody tr.table-row td:first-child {
  width: 16px;
  padding-left: 0px;
}
.lucrum table.table tbody tr.table-row td:last-child {
  padding-right: 0px;
  text-align: right;
}
.lucrum table.table tbody tr.table-row:nth-child(n+2) {
  border-top: 1px solid #e5e5e5;
}
.lucrum .yield {
  max-height: 350px;
  padding-bottom: 36px;
}
.lucrum .yield__title {
  margin: 0;
  font-size: 20px;
  text-align: left;
}
.lucrum .yield__title span {
  font-size: 14px;
}
.lucrum .performance-graph__input-wrapper {
  position: relative;
  padding-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.lucrum .performance-graph__indicators {
  width: 100%;
  max-width: max-content;
  position: relative;
}
.lucrum .performance-graph__indicators--menu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #666;
  border-radius: 16px;
  color: #666;
  padding: 4px 12px;
  font-size: 14px;
  gap: 4px;
  cursor: pointer;
}
.lucrum .performance-graph__indicators--menu-toggle .icon {
  color: #8e8e8e;
  font-size: 20px;
  font-weight: 100;
}
.lucrum .performance-graph__indicators--menu-toggle label {
  cursor: pointer;
}
.lucrum .performance-graph__indicators--list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.lucrum .performance-graph__indicators--menu-title {
  border-bottom: solid 2px #151515;
}
.lucrum .performance-graph__indicators--menu-title h5 {
  margin: 0;
  font-size: 16;
}
.lucrum .performance-graph__indicators--menu-body {
  position: absolute;
  top: 100%;
  left: -100%;
  box-shadow: 0 0 8px #d6d6d6;
  background-color: #fff;
  margin: 0;
  padding: 16px;
  border-radius: 16px;
  z-index: 100;
  min-width: 330px;
}
.lucrum .performance-graph__indicators--menu-body.open {
  display: block;
}
.lucrum .performance-graph__indicators--menu-body.closed {
  display: none;
}
.lucrum .performance-graph__indicators--item {
  border-bottom: solid 1px #151515;
  padding: 0;
  margin: 0;
}
.lucrum .performance-graph__indicators--item-name {
  font-weight: 600;
}
.lucrum .performance-graph__indicators--item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.lucrum .performance-graph__indicators .switch {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 16px;
}
.lucrum .performance-graph__indicators .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.lucrum .performance-graph__indicators .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 34px;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.lucrum .performance-graph__indicators .slider:before {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  left: 2px;
  bottom: 2px;
  border-radius: 50%;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.lucrum .performance-graph__indicators input:checked + .slider {
  background-color: #2196f3;
}
.lucrum .performance-graph__indicators input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}
.lucrum .performance-graph__indicators input:checked + .slider:before {
  -webkit-transform: translateX(13px);
  -ms-transform: translateX(13px);
  transform: translateX(13px);
}
.lucrum .performance-graph__indicators--form-wrapper.open {
  display: block;
}
.lucrum .performance-graph__indicators--form-wrapper.closed {
  display: none;
}
.lucrum .performance-graph__indicators--form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 16px;
}
.lucrum .performance-graph__indicators--form label {
  width: 100%;
}
.lucrum .performance-graph__indicators--form input {
  width: 100%;
}
.lucrum .performance-graph__indicators--form-btn {
  border: 1px solid #00b8ee;
  border-radius: 16px;
  color: #00b8ee;
  cursor: pointer;
  text-align: center;
  width: 100%;
  padding: 4px;
}
.lucrum .performance-graph__compare-input {
  padding: 8px 24px;
  width: 100%;
  background-color: #ddd;
  border-radius: 16px;
  color: #666;
  border: 0;
  font-size: 14px;
}
.lucrum .performance-graph__input_icon::before {
  position: absolute;
  font-size: 14px;
  color: #666;
  left: 8px;
  top: 8px;
}
.lucrum .performance-graph__funds-select {
  position: absolute;
  top: calc(100% - 8px);
  left: 24px;
  padding: 16px;
  border-radius: 16px;
  min-width: 12.5rem;
  border: 0;
  z-index: 100;
  list-style: none;
  background-color: #fff;
  margin-top: 0;
  box-shadow: 0 0 8px #d6d6d6;
  max-height: 500px;
  overflow-y: scroll;
}
.lucrum .performance-graph__funds-select hr {
  padding: 1px;
  background-color: #ddd;
}
.lucrum .performance-graph__funds-select--item {
  display: grid;
  grid-template-columns: 0.75fr 0.5fr 0.5fr;
  gap: 1.5rem;
  font-size: 14px;
  cursor: pointer;
}
.lucrum .performance-graph__funds-select--item:hover {
  background-color: #ddd;
}
.lucrum .performance-graph__funds-select--option {
  padding: 8px 0;
  border-bottom: solid 1px #ddd;
}
.lucrum .performance-graph__loading-wrapper {
  position: relative;
}
.lucrum .performance-graph__loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  color: white;
  background: black;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lucrum .performance-graph__tabber-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.lucrum .performance-graph__tabber {
  margin: 0;
  padding: 0;
  list-style: unset;
  display: flex;
  flex-direction: row;
  width: 100%;
}
.lucrum .performance-graph__tabber--item {
  list-style: none;
  font-size: 12px;
  font-weight: 500;
  flex-grow: 1;
  cursor: pointer;
  border: 1px solid #666;
  color: #666;
  text-align: center;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lucrum .performance-graph__tabber--item.active {
  background-color: #666;
  color: #fff;
}
.lucrum .performance-graph__tabber--item.first-item {
  border-left: 1px solid #666;
  border-radius: 16px 0 0 16px;
}
.lucrum .performance-graph__tabber--item.last-item {
  border-left: 1px solid #666;
  border-radius: 0 16px 16px 0;
}
.lucrum .performance-graph__select-wrapper {
  display: flex;
  gap: 8px;
  align-items: center;
}
.lucrum .performance-graph__select {
  padding: 0px 8px;
  border: none;
  background-color: #ddd;
  border-bottom: 1px solid #666;
  box-shadow: inset 0 -2px 0 0 #fff;
  color: #151515;
  text-transform: capitalize;
  min-width: 7rem;
  font-size: 12px;
}
.lucrum .performance-graph__select--option {
  background-color: #fff;
}
.lucrum .performance-graph__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.lucrum .performance-graph__header--message {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  font-size: 12px;
  border-radius: 4px;
  background-color: #fbe3e4;
  color: #97161b;
  margin-bottom: 0.6rem;
  padding: 0.6rem;
  position: absolute;
  left: 40%;
  top: 5px;
}
.lucrum .performance-graph__header--message .icon {
  color: #97161b;
  font-size: 12px;
  font-weight: 300;
}
.lucrum .performance-graph__header--fund-list, .lucrum .performance-graph__header--fund-list_item {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.lucrum .performance-graph__header--remove-btn {
  background-color: unset;
  border: 0;
  font-weight: 700;
  cursor: pointer;
  color: #666;
  font-weight: 300;
  font-size: 8px;
}
.lucrum .performance-graph__header--fund, .lucrum .performance-graph__header--currency {
  font-family: "Futura", sans-serif;
  font-size: 12px;
}
.lucrum .performance-graph__header--fund {
  color: #0039b7;
}
.lucrum .performance-graph__header--fund-return {
  padding-left: 8px;
  color: green;
  font-weight: 700;
}
.lucrum .performance-graph__header--fund-return.loss {
  color: red;
}
.lucrum .performance-graph__header--range-dates {
  font-size: 11px;
  padding-left: 8px;
  font-weight: 100;
}
.lucrum .tooltip-fund-name {
  display: flex;
  align-items: center;
  padding-bottom: 4px;
}
.lucrum .tooltip-fund-name__dot {
  border-radius: 50%;
  width: 7px;
  height: 7px;
  background-color: #0039b7;
  margin-right: 7px;
}
.lucrum .tooltip-fund-name__value {
  font-size: 10px;
}
.lucrum .tooltip-fund-date {
  padding-top: 0;
  font-weight: 300;
  font-size: 10px;
  color: #666;
  display: flex;
  gap: 8px;
}
.lucrum .tooltip-fund-value {
  padding: 4px 0;
  font-weight: 300;
  border-top: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.lucrum .tooltip-fund-value__dot {
  font-weight: 300;
  font-size: 10px;
  color: #151515;
}
.lucrum .tooltip-fund-value__value {
  font-size: 10px;
}
.lucrum .graph-accordion {
  border-bottom: solid 1px #e5e5e5;
}
.lucrum .graph-accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  cursor: pointer;
}
.lucrum .graph-accordion__title {
  font-size: 23px;
}
.lucrum .graph-accordion__btn {
  padding: 4px 8px;
  color: #5e5e5e;
  border-radius: 16px;
  border: solid 1px #5e5e5e;
  background-color: unset;
  font-size: 14px;
  text-transform: capitalize;
  transition: all 0.2s linear;
}
.lucrum .graph-accordion__btn:disabled {
  opacity: 0.5;
}
.lucrum .graph-accordion__btn:hover {
  box-shadow: inset 0 0 0 1px #5e5e5e;
  background-color: #5e5e5e;
  color: #fff;
}
.lucrum .graph-accordion__btn:focus {
  box-shadow: inset 0 0 0 1px #5e5e5e, 0 0 4px 2px rgba(0, 119, 207, 0.8);
}
.lucrum .graph-accordion__body {
  overflow: hidden;
  max-height: 0px;
  transition: max-height 0.3s;
}
.lucrum .graph-accordion__body .container {
  transform: translateY(-100%);
  transition: transform 0.3s;
}
.lucrum .graph-accordion__body.active {
  max-height: 100%;
}
.lucrum .graph-accordion__body.active .container {
  transform: translateY(0);
}
.lucrum .icon--section {
  display: flex;
  align-items: center;
  gap: 6px;
}
.lucrum .icon--section--text {
  font-family: "Futura", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lucrum .icon--section--text .header {
  font-size: 12px;
}
.lucrum .icon--section--text .percentage {
  font-size: 16px;
  font-weight: 100;
  color: var(--text-color);
}
.lucrum .icon-container {
  border-radius: 100%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lucrum .stock-sectors__header {
  border-bottom: solid 1px #e5e5e5;
  padding-bottom: 5px;
}
.lucrum .stock-sectors__title {
  font-size: 20px;
  margin-bottom: 0;
  text-align: left;
}
.lucrum .stock-sectors__grid {
  margin-left: -20px;
  margin-right: -20px;
}
.lucrum .lucrum-geographical-map .map-shape {
  fill: #b6b6b6;
  stroke: #ffffff;
  stroke-width: 1.2;
  stroke-miterlimit: 10;
}
.lucrum .lucrum-geographical-map .map-overlay {
  fill: none;
}
.lucrum .basic-table {
  height: 100%;
}
.lucrum .basic-table__header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: baseline;
  position: relative;
}
.lucrum .basic-table__body {
  color: #5e5e5e;
}
.lucrum .basic-table__icon {
  color: #1e1e1e;
}
.lucrum .basic-table__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0px;
}
.lucrum .basic-table__row--label {
  font-size: 16px;
  padding: 0px !important;
}
.lucrum .basic-table__row--label.bold {
  width: 100%;
  font-weight: 700;
  color: #1e1e1e;
}
.lucrum .basic-table__row--value {
  text-align: end;
  font-size: 16px;
  padding: 0px !important;
}
.lucrum .basic-table__row--value a {
  color: #5e5e5e;
  transition: all 0.3s linear;
}
.lucrum .basic-table__row--value a:hover {
  color: #1e1e1e;
}
.lucrum .vertical-table {
  display: flex;
  justify-content: start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}
.lucrum .vertical-table__icon {
  padding-right: 8px;
}
.lucrum .vertical-table__item {
  padding: 16px;
  display: flex;
  flex-direction: column;
  width: 25%;
  overflow-wrap: break-word;
}
.lucrum .vertical-table__label {
  color: #5e5e5e;
  font-size: 16px;
}
.lucrum .vertical-table__value {
  font-size: 20px;
  padding-top: 8px;
  color: #212529;
}
.lucrum .vertical-table__value a {
  color: #5e5e5e;
  transition: all 0.3s linear;
  text-decoration: none;
}
.lucrum .vertical-table__value a:hover {
  color: #006fba;
  text-decoration: underline;
}
.lucrum .title-table {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lucrum .title-table__header {
  font-size: 32px;
  width: 100%;
  font-weight: 800;
}
.lucrum .title-table__rating {
  width: 25%;
  text-align: end;
}
.lucrum .simple-value-table {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lucrum .simple-value-table__caps {
  display: flex;
  align-items: baseline;
}
.lucrum .simple-value-table__value {
  font-size: 16px;
  color: #5e5e5e;
}
.lucrum .line-table__header {
  padding-bottom: 24px;
}
.lucrum .line-table__body {
  color: #5e5e5e;
}
.lucrum .line-table__labels, .lucrum .line-table__values {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
}
.lucrum .line-table__values {
  padding: 16px 0;
}
.lucrum .line-table__value {
  padding: 8px 12px;
}
.lucrum .line-table__value.active {
  color: #fff;
  background-color: #ababab;
  border-radius: 50%;
}
.lucrum .table-text {
  height: 100%;
}
.lucrum .text-muted {
  color: #5e5e5e;
  font-size: 16px;
}
.lucrum .macro-table h3 {
  margin: 0;
}
.lucrum .macro-table hr {
  opacity: 0.25;
}
.lucrum .macro-table .table__help {
  position: relative;
}
.lucrum .macro-table .table__help--icon::before {
  font-size: 16px;
  color: #5e5e5e;
}
.lucrum .macro-table .table__help--btn {
  background-color: unset;
  border: 0;
}
.lucrum .macro-table .table__help--btn:focus {
  box-shadow: inset 0 0 0 1px #5e5e5e, 0 0 4px 2px rgba(0, 119, 207, 0.8);
}
.lucrum .macro-table .table__help--close::before {
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px;
}
.lucrum .macro-table .table__help--tooltip {
  display: none;
  padding: 16px;
  color: #fff;
  z-index: 100;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate3d(calc(-50% + 10px), calc(-100% - 10px), 0px);
  background-color: rgba(0, 0, 0, 0.8);
  font-size: 14px;
  width: 250px;
}
.lucrum .macro-table .table__help--tooltip.active {
  display: block;
}
.lucrum .macro-table .table__help--tooltip::before {
  content: " ";
  position: absolute;
  border: solid transparent;
  width: 0px;
  height: 0px;
  border-width: 5px;
  border-color: rgba(0, 0, 0, 0.8);
  left: 50%;
  bottom: -5px;
  transform: rotateZ(45deg);
}

[class*=productPage_data-visualization-table-container] {
  padding: 16px !important;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid [class^=col] {
  padding: 0;
  font-family: "Futura", sans-serif;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .col-12:has(> .performance-graph) {
  padding: 0 !important;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .performance-graph > h2 {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  padding: 16px 0;
  margin: 0;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .performance-graph .performance-graph__input-wrapper {
  padding: 0;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .performance-graph .performance-graph__loading-wrapper {
  padding: 0 20px 20px 20px;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .performance-table {
  margin: 0;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .performance-table .performance-table__title {
  padding: 16px 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .performance-table .performance-table__wrapper .performance-table__grid .performance-table__grid--head .performance-table__grid--spacer-head,
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .performance-table .performance-table__wrapper .performance-table__grid .performance-table__grid--head .performance-table__grid--label {
  padding: 4.5px 8px 4px 0;
  font-size: 14px;
  line-height: 1.25;
  height: fit-content;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .performance-table .performance-table__wrapper .performance-table__grid .performance-table__grid-inner .performance-table__grid--col .performance-table__grid--period,
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .performance-table .performance-table__wrapper .performance-table__grid .performance-table__grid-inner .performance-table__grid--col .performance-table__grid--value {
  padding: 4.5px 8px 4px 8px;
  font-weight: 300;
  height: fit-content;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .performance-table .performance-table__wrapper .performance-table__grid .performance-table__grid-inner .performance-table__grid--col:last-child .performance-table__grid--period,
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .performance-table .performance-table__wrapper .performance-table__grid .performance-table__grid-inner .performance-table__grid--col:last-child .performance-table__grid--value {
  padding-right: 0;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .performance-table .performance-table__wrapper .performance-table__controls {
  margin-top: 16px;
  margin-bottom: 8px;
  padding: 2.5px 12px 2px 12px;
  line-height: 1.375;
}
@media (max-width: 1200px) {
  [class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .col-6 {
    padding: 0 !important;
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .col-6:has(> .yield), [class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .col-6:has(> .asset_allocation), [class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .col-6:has(> .stock-stats) {
  padding-right: 8px;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .col-6:has(> .economicDistribution--container), [class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .col-6:has(> .heatmap) {
  padding-left: 8px;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .col-6:has(> .yield) + .col-6:has(> .yield) {
  padding-left: 8px;
  padding-right: 0;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .yield {
  max-height: unset;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .yield .yield__title {
  padding: 16px 0;
  font-size: 20px !important;
  line-height: 1.2 !important;
  font-weight: 600;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .yield .yield__title > span {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.375;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .yield canvas {
  height: 350px !important;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .yield + .performance-table .performance-table__wrapper .performance-table__grid .performance-table__grid--head {
  width: fit-content;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .yield + .performance-table .performance-table__wrapper .performance-table__grid .performance-table__grid--head .performance-table__grid--spacer-head,
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .yield + .performance-table .performance-table__wrapper .performance-table__grid .performance-table__grid--head .performance-table__grid--label {
  padding: 4.5px 8px 4px 0;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .yield + .performance-table .performance-table__wrapper .performance-table__grid .performance-table__grid-inner .performance-table__grid--col .performance-table__grid--period,
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .yield + .performance-table .performance-table__wrapper .performance-table__grid .performance-table__grid-inner .performance-table__grid--col .performance-table__grid--value {
  padding: 4.5px 8px 4px 8px;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .yield + .performance-table .performance-table__wrapper .performance-table__grid .performance-table__grid-inner .performance-table__grid--col:last-child .performance-table__grid--period,
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .yield + .performance-table .performance-table__wrapper .performance-table__grid .performance-table__grid-inner .performance-table__grid--col:last-child .performance-table__grid--value {
  padding-right: 0;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .asset_allocation > h2 {
  padding: 16px 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  margin: 0;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .asset_allocation .asset_allocation__data .asset_table--table thead tr th.asset_table--table-header {
  padding: 0 8px 15px 8px;
  font-weight: 400;
  line-height: 1.25;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .asset_allocation .asset_allocation__data .asset_table--table thead tr th.asset_table--table-header:first-child {
  padding-left: 0px;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .asset_allocation .asset_allocation__data .asset_table--table thead tr th.asset_table--table-header:last-child {
  padding-right: 0px;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .asset_allocation .asset_allocation__data .asset_table--table tbody tr.asset_table--table-row:first-child {
  border-top: 0;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .asset_allocation .asset_allocation__data .asset_table--table tbody tr.asset_table--table-row td {
  padding: 4.5px 8px 4px 8px;
  font-weight: 300;
  line-height: 1.25;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .asset_allocation .asset_allocation__data .asset_table--table tbody tr.asset_table--table-row td:first-child {
  padding-left: 0px;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .asset_allocation .asset_allocation__data .asset_table--table tbody tr.asset_table--table-row td:last-child {
  padding-right: 0px;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .asset_allocation .asset_allocation__data .asset_table--table tbody tr.asset_table--table-row td .asset_table-asset-circle-icon {
  vertical-align: unset;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .economicDistribution--container .economicDistribution--header {
  padding: 16px 0;
}
@media (max-width: 1200px) {
  [class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .economicDistribution--container .economicDistribution--header {
    justify-content: start;
    align-items: start;
  }
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .economicDistribution--container .economicDistribution--header .economicDistribution--header--title {
  padding-top: 0.5px;
  margin-right: 8px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .economicDistribution--container .economicDistribution--header .economicDistribution--header--selector .economicDistribution--header--selector--tab {
  padding: 2.5px 12px 3px 12px;
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
  transition: background 0.3s, color 0.3s, border 0.3s, fill 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .economicDistribution--container .economicDistribution--header .economicDistribution--header--selector .economicDistribution--header--selector--tab.active {
  background-color: #333;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .economicDistribution--container .economicDistribution--header .economicDistribution--header--selector .economicDistribution--header--selector--tab:hover {
  color: white;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .economicDistribution--container .economicDistribution--header .economicDistribution--header--selector .economicDistribution--header--selector--tab:active {
  background-color: #333;
  color: white;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .economicDistribution--container .economicDistribution--table thead tr th {
  padding: 8.5px 8px 15px 8px;
  font-weight: 400;
  line-height: 1.25;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .economicDistribution--container .economicDistribution--table thead tr th:first-child {
  padding-left: 0px;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .economicDistribution--container .economicDistribution--table thead tr th:last-child {
  padding-right: 0px;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .economicDistribution--container .economicDistribution--table tbody tr td {
  padding: 3.5px 8px 4px 8px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.25;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .economicDistribution--container .economicDistribution--table tbody tr td:first-child {
  padding-left: 0px;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .economicDistribution--container .economicDistribution--table tbody tr td:last-child {
  padding-right: 0px;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .economicDistribution--container .economicDistribution__classification {
  text-align: left;
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  padding: 12px 0;
  margin: 0;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .stock-stats .stock-stats__title {
  padding: 16px 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .stock-stats .stock-stats__table .table-responsive {
  margin-bottom: 16px;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .stock-stats .stock-stats__table .table-responsive table thead tr {
  border: 0;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .stock-stats .stock-stats__table .table-responsive table thead tr th.table-header {
  border: 0;
  padding: 0.5px 8px 15px 8px;
  color: rgb(94, 94, 94);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.25;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .stock-stats .stock-stats__table .table-responsive table thead tr th.table-header:first-child {
  padding-left: 0px;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .stock-stats .stock-stats__table .table-responsive table thead tr th.table-header:last-child {
  padding-right: 0px;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .stock-stats .stock-stats__table .table-responsive table tbody tr.table-row {
  border: 0;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .stock-stats .stock-stats__table .table-responsive table tbody tr.table-row td.table-data {
  padding: 4.5px 8px 4px 8px;
  border-width: 0px 0px 1px 0px;
  border-color: #dee2e6;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.25;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .stock-stats .stock-stats__table .table-responsive table tbody tr.table-row td.table-data:first-child {
  padding-left: 0px;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .stock-stats .stock-stats__table .table-responsive table tbody tr.table-row td.table-data:last-child {
  padding-right: 0px;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .stock-stats .stock-stats__table .table-responsive table tbody tr.table-row:last-child td.table-data {
  border-bottom-width: 0px;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .heatmap > h2 {
  padding: 16px 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .heatmap .heatmap__wrap {
  justify-content: center;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .heatmap .heatmap__wrap .heatmap__left {
  width: 100%;
  min-width: unset;
  max-width: 60%;
  padding: 0;
}
@media (max-width: 425px) {
  [class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .heatmap .heatmap__wrap .heatmap__left {
    max-width: 100%;
  }
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .heatmap .heatmap__wrap .heatmap__left .heatmap__left--bottom .legend .legend__bar .legend__bar--item .legend__bar--value {
  display: flex;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .heatmap .heatmap__wrap .heatmap__right {
  padding: 0;
}
@media (max-width: 1200px) {
  [class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .heatmap .heatmap__wrap .heatmap__right {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .heatmap .heatmap__wrap .heatmap__right .highcharts-root .highcharts-axis-labels.highcharts-xaxis-labels text, [class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .heatmap .heatmap__wrap .heatmap__right .highcharts-root .highcharts-axis-labels.highcharts-yaxis-labels text {
  font-size: 12px !important;
  font-weight: 300;
  line-height: 1.375;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .heatmap .heatmap__wrap .heatmap__right .highcharts-root > .highcharts-data-labels .highcharts-label text tspan {
  font-weight: 300;
  line-height: 1.375;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .stock-sectors .stock-sectors__title {
  padding: 16px 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .stock-sectors .stock-sectors__grid {
  margin: 0;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .stock-sectors .stock-sectors__grid .col-4 {
  padding: 0 4px;
}
@media (max-width: 1200px) {
  [class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .stock-sectors .stock-sectors__grid .col-4 {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
    padding: 0 !important;
  }
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .stock-sectors .stock-sectors__grid .col-4:first-child {
  padding-left: 0;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .stock-sectors .stock-sectors__grid .col-4:last-child {
  padding-right: 0;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .stock-sectors .stock-sectors__grid .col-4 .stock-sectors__header {
  padding-bottom: 8px;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .stock-sectors .stock-sectors__grid .col-4 .stock-sectors__header .icon--section {
  gap: 8px;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .stock-sectors .stock-sectors__grid .col-4 .stock-sectors__header .icon--section .icon--section--text {
  gap: 4px;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .stock-sectors .stock-sectors__grid .col-4 .stock-sectors__header .icon--section .icon--section--text .header {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.375;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .stock-sectors .stock-sectors__grid .col-4 .stock-sectors__header .icon--section .icon--section--text .percentage {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.375;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .stock-sectors .stock-sectors__grid .col-4 .stock-sectors__table .table-responsive table thead tr {
  border-width: 0px;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .stock-sectors .stock-sectors__grid .col-4 .stock-sectors__table .table-responsive table thead tr th.table-header {
  border: 0;
  padding: 0.5px 8px 15px 8px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.25;
  height: 36px;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .stock-sectors .stock-sectors__grid .col-4 .stock-sectors__table .table-responsive table thead tr th.table-header:first-child {
  padding-left: 0;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .stock-sectors .stock-sectors__grid .col-4 .stock-sectors__table .table-responsive table thead tr th.table-header:last-child {
  padding-right: 0;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .stock-sectors .stock-sectors__grid .col-4 .stock-sectors__table .table-responsive table tbody tr.table-row {
  border-width: 0px;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .stock-sectors .stock-sectors__grid .col-4 .stock-sectors__table .table-responsive table tbody tr.table-row td.table-data {
  padding: 4.5px 8px 4px 8px;
  border-width: 0px 0px 1px 0px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.25;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .stock-sectors .stock-sectors__grid .col-4 .stock-sectors__table .table-responsive table tbody tr.table-row td.table-data:first-child {
  padding-left: 4px;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .stock-sectors .stock-sectors__grid .col-4 .stock-sectors__table .table-responsive table tbody tr.table-row td.table-data:last-child {
  padding-right: 0;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .stock-sectors .stock-sectors__grid .col-4 .stock-sectors__table .table-responsive table tbody tr.table-row:last-child td.table-data {
  border-bottom-width: 0px;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .wallet_table--table-title {
  padding: 16px 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  text-align: left;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .wallet_table--wrapper .wallet_table--table thead tr th {
  padding: 0px 8px 15px 8px;
  color: rgb(94, 94, 94);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .wallet_table--wrapper .wallet_table--table thead tr th:first-child {
  padding-left: 4px;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .wallet_table--wrapper .wallet_table--table thead tr th:last-child {
  padding-right: 0;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .wallet_table--wrapper .wallet_table--table tbody tr > td {
  padding: 8px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.25;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .wallet_table--wrapper .wallet_table--table tbody tr > td:first-child {
  padding-left: 4px;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .wallet_table--wrapper .wallet_table--table tbody tr > td:last-child {
  padding-right: 0;
}
[class*=productPage_data-visualization-table-container] .lucrum > .container > .grid .wallet_table--wrapper .wallet_table--table tbody tr > td .wallet_table--label-mobile {
  display: none;
}

/*# sourceMappingURL=style.core.css.map */
