.HeightTransition__wrapper:not(.HeightTransition__wrapper--absolute) {
  overflow: hidden;
}

.HeightTransition__wrapper-enter {
  position: relative;
  z-index: 2;
  opacity: 0;
  height: 0;
}

.HeightTransition__wrapper-enter-active {
  opacity: 1;
}

.HeightTransition__wrapper-exit {
  position: relative;
  z-index: 1;
  opacity: 1;
}

.HeightTransition__wrapper-exit-active {
  opacity: 0;
  height: 0;
}

.HeightTransition__wrapper-exit-done {
  opacity: 0;
  height: 0;
}

.HeightTransition__wrapper--absolute {
  width: 100%;
}

.HeightTransition__wrapper--absolute.HeightTransition__wrapper-enter {
  position: absolute;
  top: 0;
  left: 0;
  height: auto;
}

.HeightTransition__wrapper--absolute.HeightTransition__wrapper-exit {
  position: static;
  height: auto;
}

.CrossFade__CrossFade {
  position: relative;
}

.CrossFade__CrossFade-enter {
  opacity: 0;
}

.CrossFade__CrossFade-enter-active {
  opacity: 1;
  transition: opacity 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.CrossFade__CrossFade-exit {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  opacity: 1;
}

.CrossFade__CrossFade-exit-active {
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.47, 0, 0.745, 0.715);
}

.CrossFade__CrossFade__wrapper {
  position: relative;
}

.Graph__Graph {
  position: relative;
  font-family: 'MaisonNeue';
  box-sizing: border-box;
  padding: 0 40px 33px;
  color: #fff;
  background-color: #333;
}

@media screen and (max-width: 767px) {
  .Graph__Graph {
    padding: 0 20px 26px;
  }
}

@media screen and (min-width: 1024px) {
  .Graph__Graph {
    padding: 0 20px 17px;
  }
}

.Graph__Graph--inverted {
  color: #333;
  background-color: #fff;
}

.Graph__Graph__container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.Graph__Graph__container-enter, .Graph__Graph__container-exit-done {
  opacity: 0;
}

.Graph__Graph__container-enter-active {
  opacity: 1;
  transition: opacity 0.2s linear;
}

.Graph__Graph__container-enter-done, .Graph__Graph__container-exit {
  opacity: 1;
}

.Graph__Graph__container-exit-active {
  opacity: 0;
  transition: opacity 0.2s linear;
}

.Graph__Graph__top {
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px 0 12px;
}

@media screen and (max-width: 767px) {
  .Graph__Graph__top {
    padding: 26px 0 12px;
  }
}

@media screen and (min-width: 1024px) {
  .Graph__Graph__top {
    padding: 26px 0 12px;
  }
}

.Graph__Graph__top__currency {
  position: absolute;
  right: 0;
  top: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  background: #333;
  padding-left: 10px;
}

.Graph__Graph--inverted .Graph__Graph__top__currency {
  background: #fff;
}

.Graph__Graph__top__currency-enter {
  opacity: 0;
}

.Graph__Graph__top__currency-enter-active {
  opacity: 1;
  transition: opacity 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.Graph__Graph__top__currency-exit {
  opacity: 1;
}

.Graph__Graph__top__currency-exit-active {
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.47, 0, 0.745, 0.715);
}

.Graph__Graph__login {
  display: block;
}

.Graph__Graph__graph {
  position: relative;
  width: 100%;
  height: 230px;
}

@media screen and (max-width: 767px) {
  .Graph__Graph__graph {
    height: 190px;
  }
}

.Graph__Graph__graph__svg {
  width: 100%;
  height: 100%;
}

.Graph__Graph__errorMessage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'MaisonNeue';
  font-weight: 300;
  font-size: 16px;
  text-align: center;
  color: #fff;
  opacity: 0.9;
}

.Graph__Graph--inverted .Graph__Graph__errorMessage {
  color: #333;
}

.Graph__Graph__errorMessage-enter {
  opacity: 0.001;
}

.Graph__Graph__errorMessage-enter-active {
  opacity: 1;
  transition: opacity 0.25s linear;
}

.Graph__Graph__errorMessage-exit {
  opacity: 1;
}

.Graph__Graph__errorMessage-exit-active {
  opacity: 0.001;
  transition: opacity 0.25s linear;
}

.Graph__Graph__errorMessage-exit-done {
  opacity: 0;
}

.Graph__Graph__tooltip {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  z-index: 10;
  box-sizing: content-box;
  height: 28px;
  padding: 5px 9px;
  border-radius: 2px;
  background: linear-gradient(215deg, #43a4ff, #0177ff);
  line-height: 1;
  color: #fff;
  font-weight: 500;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.1s linear;
}

.Graph__Graph__tooltip--visible {
  opacity: 1;
}

.Graph__Graph__tooltip::before, .Graph__Graph__tooltip::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.1s linear;
}

.Graph__Graph__tooltip::before {
  background: linear-gradient(215deg, #50e7cc, #01e579);
}

.Graph__Graph__tooltip::after {
  background: linear-gradient(215deg, #fb677f, #ed3a3a);
}

.Graph__Graph__tooltip--positive::before {
  opacity: 1;
}

.Graph__Graph__tooltip--negative::after {
  opacity: 1;
}

.Graph__Graph__tooltip__timestamp {
  display: block;
  font-size: 11px;
  line-height: 1;
  text-align: right;
}

.Graph__Graph__tooltip__value {
  margin-top: 3px;
  text-align: right;
  font-size: 13px;
  display: flex;
}

.Graph__Graph__tooltip__value__absolute {
  margin-right: 3px;
}

.Graph__Graph__line {
  position: absolute;
  top: 38px;
  bottom: 15px;
  transform: translateX(-50%);
  z-index: 1;
  width: 2px;
  background: linear-gradient(145deg, #43a4ff, #0177ff);
  pointer-events: none;
  transition: opacity 0.1s linear, bottom 0.25s cubic-bezier(0.77, 0, 0.175, 1);
}

.Graph__Graph__line::before, .Graph__Graph__line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.1s linear;
}

.Graph__Graph__line::before {
  background: linear-gradient(145deg, #50e7cc, #01e579);
}

.Graph__Graph__line--positive::before {
  opacity: 1;
}

.Graph__Graph__line::after {
  background: linear-gradient(145deg, #fb677f, #ed3a3a);
}

.Graph__Graph__line--negative::after {
  opacity: 1;
}

.Graph__Graph__line--visible {
  opacity: 1;
  bottom: 15px;
}

.Graph__Graph__line--hidden {
  opacity: 0;
  bottom: calc(100% - 38px);
}

.Graph__advancedGraphLink {
  color: #0177ff;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: underline;
}

.Graph__topLinks {
  align-items: center;
  display: flex;
  flex-direction: row;
  padding-top: 14px;
  min-height: 44px;
}

.Graph__topLinks__right {
  margin-left: auto;
}

.Graph__topLinks__left {
  margin-right: auto;
}

.Graph__SVGGraph {
  background-color: #333;
}

.Graph__SVGGraph__xAxis {
  color: #d8d8d8;
}

.Graph__SVGGraph--inverted .Graph__SVGGraph__xAxis {
  color: #d8d8d8;
}

.Graph__SVGGraph__xAxis__text {
  font-family: 'MaisonNeue';
  font-size: 11px;
  font-weight: 300;
  color: #d8d8d8;
}

.Graph__SVGGraph__xAxis__text--mobile {
  font-size: 10px;
}

.Graph__SVGGraph--inverted .Graph__SVGGraph__xAxis__text {
  color: #777;
}

.Graph__SVGGraph__yAxis__line {
  stroke-dasharray: 1 2;
  stroke: #d8d8d8;
}

.Graph__SVGGraph--inverted .Graph__SVGGraph__yAxis__line {
  stroke: #333;
}

.Graph__SVGGraph__yAxis__text {
  font-family: 'MaisonNeue';
  font-size: 13px;
  font-weight: 300;
  color: #f7f7f7;
}

.Graph__SVGGraph--inverted .Graph__SVGGraph__yAxis__text {
  color: #333;
}

.Graph__SVGGraph__line {
  fill: none;
  stroke: #fff;
  stroke-width: 2;
}

.Graph__SVGGraph--inverted .Graph__SVGGraph__line {
  stroke: #333;
}

.Graph__SVGGraph__endOfDay {
  color: #777;
}

.Graph__SVGGraph__endOfDay__line {
  stroke-dasharray: 1 2;
}

.Graph__SVGGraph__endOfDay__line line {
  stroke: #777;
}

.Graph__SVGGraph__endOfDay__line text {
  color: #777;
  font-size: 11px;
}

@media screen and (max-width: 575px) {
  .Graph__SVGGraph__endOfDay__line text {
    font-size: 10px;
  }
}

.Throbber__Graph__throbber {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #43a4ff;
  border-left-color: #0177ff;
  animation: Throbber__Graph__throbber__spin 0.9s linear infinite;
}

.Throbber__Graph__throbber-enter {
  opacity: 0;
}

.Throbber__Graph__throbber-enter-active {
  opacity: 1;
  transition: opacity 0.2s linear;
}

.Throbber__Graph__throbber-exit {
  opacity: 1;
}

.Throbber__Graph__throbber-exit-active {
  opacity: 0;
  transition: opacity 0.2s linear;
}

@keyframes Throbber__Graph__throbber__spin {
  from {
    transform: rotate(0deg);
    transform-origin: center center;
  }
  to {
    transform: rotate(360deg);
    transform-origin: center center;
  }
}

.TimespanSelector__TimespanSelector {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  line-height: 1em;
}

.TimespanSelector__TimespanSelector__item {
  position: relative;
}

.TimespanSelector__TimespanSelector__item:first-of-type {
  margin-left: -15px;
}

.TimespanSelector__TimespanSelector__item::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  right: 50%;
  opacity: 0.5;
  height: 1px;
  background-color: #fff;
  transition: left 0.15s cubic-bezier(0.77, 0, 0.175, 1), right 0.15s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.15s linear;
}

.TimespanSelector__TimespanSelector--inverted .TimespanSelector__TimespanSelector__item::before {
  background-color: #333;
}

@media screen and (min-width: 370px) {
  .TimespanSelector__TimespanSelector__item__label--short {
    display: none;
  }
}

@media screen and (max-width: 369px) {
  .TimespanSelector__TimespanSelector__item__label--long {
    display: none;
  }
}

.TimespanSelector__TimespanSelector__item__label--long::before, .TimespanSelector__TimespanSelector__item__label--short::before {
  content: attr(data-label);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333;
  font-weight: 300;
  text-align: center;
  transition: opacity 0.1s linear;
}

.TimespanSelector__TimespanSelector--inverted .TimespanSelector__TimespanSelector__item__label--long::before, .TimespanSelector__TimespanSelector--inverted .TimespanSelector__TimespanSelector__item__label--short::before {
  background: #fff;
}

.TimespanSelector__TimespanSelector__item--selected .TimespanSelector__TimespanSelector__item__label--short::before, .TimespanSelector__TimespanSelector__item--selected .TimespanSelector__TimespanSelector__item__label--long::before {
  opacity: 0;
}

.TimespanSelector__TimespanSelector__item:hover::before, .TimespanSelector__TimespanSelector__item--selected::before {
  left: 9px;
  right: 9px;
  opacity: 1;
}

.TimespanSelector__TimespanSelector__item__button {
  margin: 0;
  background: none;
  border: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 0 15px;
  cursor: pointer;
  position: relative;
}

.TimespanSelector__TimespanSelector__item__button::-moz-focus-inner {
  border: 0;
}

.TimespanSelector__TimespanSelector--inverted .TimespanSelector__TimespanSelector__item__button {
  color: #333;
}

@media screen and (max-width: 767px) {
  .TimespanSelector__TimespanSelector__item:first-of-type {
    margin-left: -11px;
  }
  .TimespanSelector__TimespanSelector__item__button {
    padding: 0 11px;
  }
  .TimespanSelector__TimespanSelector__item:hover::before, .TimespanSelector__TimespanSelector__item--selected::before {
    left: 8px;
    right: 8px;
    opacity: 1;
  }
}

.LoginButton__LoginButton {
  box-sizing: content-box;
  padding-top: 0;
  height: 0;
  opacity: 0;
}

.LoginButton__LoginButton--active {
  height: 30px;
  opacity: 1;
  transition: height 0.25s cubic-bezier(0.77, 0, 0.175, 1), padding-top 0.25s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.25s linear 0.1s;
}

.LoginButton__LoginButton--inactive {
  user-select: none;
  pointer-events: none;
  transition: opacity 0.25s linear, height 0.25s cubic-bezier(0.77, 0, 0.175, 1) 0.1s, padding-top 0.25s cubic-bezier(0.77, 0, 0.175, 1) 0.1s;
}

.LoginButton__LoginButton path {
  fill: #fff;
}

.LoginButton__LoginButton__button {
  margin: 0;
  padding: 0;
  outline: none;
  border: 0;
  background: transparent;
  -webkit-appearance: none;
  font-family: inherit;
  display: flex;
  align-items: center;
  color: #fff;
  border-color: #fff;
  cursor: pointer;
  transition: color 0.1s linear, border-color 0.1s linear;
}

.LoginButton__LoginButton--inverted .LoginButton__LoginButton__button {
  color: #777;
  border-color: #333;
}

.LoginButton__LoginButton--inverted .LoginButton__LoginButton__button path {
  fill: #333;
}

.LoginButton__LoginButton__button:hover {
  color: #0177ff;
  border-color: #0177ff;
}

.LoginButton__LoginButton__button:hover path {
  fill: #0177ff;
}

.LoginButton__LoginButton__text {
  margin: 0;
  font-size: 11px;
  color: inherit;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1em;
}

.LoginButton__LoginButton__icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  box-sizing: border-box;
  margin-left: 10px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  border-width: 1px;
  border-style: solid;
  border-color: inherit;
}

.LoginButton__LoginButton__icon svg {
  width: 12px;
  height: 20px;
  margin-top: 4px;
  vertical-align: top;
}

.LoginButton__LoginButton__icon svg path {
  transition: fill 0.1s linear;
}

.RealtimeIndicator__RealtimeIndicator {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  box-sizing: content-box;
  padding-top: 0;
  height: 0;
  opacity: 0;
}

.RealtimeIndicator__RealtimeIndicator--active {
  height: 30px;
  opacity: 1;
  transition: height 0.25s cubic-bezier(0.77, 0, 0.175, 1), padding-top 0.25s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.25s linear 0.1s;
}

.RealtimeIndicator__RealtimeIndicator--inactive {
  user-select: none;
  pointer-events: none;
  transition: opacity 0.25s linear, height 0.25s cubic-bezier(0.77, 0, 0.175, 1) 0.1s, padding-top 0.25s cubic-bezier(0.77, 0, 0.175, 1) 0.1s;
}

.RealtimeIndicator__RealtimeIndicator__text {
  margin: 0;
  font-size: 11px;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1em;
}

.RealtimeIndicator__RealtimeIndicator__icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  box-sizing: border-box;
  margin-left: 10px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  border: 1px solid #fff;
  text-align: center;
}

.RealtimeIndicator__RealtimeIndicator__icon svg {
  width: 12px;
  height: 20px;
  margin-top: 4px;
  vertical-align: top;
  animation: RealtimeIndicator__lightningBolt 7s linear infinite;
}

.RealtimeIndicator__RealtimeIndicator__icon svg path {
  fill: #fff;
  transition: fill 0.1s linear;
}

.RealtimeIndicator__RealtimeIndicator--inverted .RealtimeIndicator__RealtimeIndicator__text {
  color: #0177ff;
}

.RealtimeIndicator__RealtimeIndicator--inverted .RealtimeIndicator__RealtimeIndicator__icon {
  border-color: #0177ff;
}

.RealtimeIndicator__RealtimeIndicator--inverted .RealtimeIndicator__RealtimeIndicator__icon svg path {
  fill: #0177ff;
}

@keyframes RealtimeIndicator__lightningBolt {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  94% {
    transform: scale(1);
    opacity: 1;
  }
  95% {
    transform: scale(1.125);
    opacity: 0.95;
  }
  97% {
    transform: scale(0.875);
    opacity: 0.85;
  }
  99% {
    transform: scale(1.125);
    opacity: 0.95;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.InstrumentGraph__InstrumentGraph {
  position: relative;
  width: 100%;
}

.Arrow__Arrow {
  vertical-align: baseline;
  height: 11px;
  width: 12px;
  display: inline-block;
  background-size: cover;
}

.Arrow__Arrow--positive {
  background-image: url(/build/images/greenArrow.92df9bbd.png);
}

.Arrow__Arrow--negative {
  background-image: url(/build/images/redArrow.c218f87c.png);
}

.Throbber__Throbber {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #43a4ff;
  border-left-color: #0177ff;
  animation: Throbber__Graph__throbber__spin 0.9s linear infinite;
}

.Throbber__Throbber-enter {
  opacity: 0;
}

.Throbber__Throbber-enter-active {
  opacity: 1;
  transition: opacity 0.2s linear;
}

.Throbber__Throbber-exit {
  opacity: 1;
}

.Throbber__Throbber-exit-active {
  opacity: 0;
  transition: opacity 0.2s linear;
}

@keyframes Throbber__throbber__spin {
  from {
    transform: rotate(0deg);
    transform-origin: center center;
  }
  to {
    transform: rotate(360deg);
    transform-origin: center center;
  }
}

.BarChart__BarChart {
  position: relative;
  font-family: 'MaisonNeue';
  box-sizing: border-box;
  padding: 26px 20px 20px;
  color: #fff;
  background-color: #333;
}

@media screen and (max-width: 1023px) {
  .BarChart__BarChart {
    padding: 26px 40px 20px;
  }
}

@media screen and (max-width: 543px) {
  .BarChart__BarChart {
    padding: 26px 20px 20px;
  }
}

.BarChart__BarChart__content {
  position: relative;
  width: 100%;
  height: 140px;
  opacity: 1;
  transition: opacity 0.2s linear;
}

.BarChart__BarChart__content--hidden {
  opacity: 0;
}

.BarChart__BarChart__heading {
  margin: 0 0 52px;
  font-family: 'neue-haas-grotesk-text';
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  letter-spacing: 0.4px;
}

.BarChart__BarChart__label {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
}

.BarChart__BarChart__svg {
  width: 100%;
  height: 100%;
  background-color: #333;
}

.BarChart__BarChart__svg__xAxis {
  color: #d8d8d8;
}

.BarChart__BarChart__svg__xAxis__text {
  font-family: 'MaisonNeue';
  font-size: 11px;
  font-weight: 300;
  color: #d8d8d8;
}

.BarChart__BarChart__svg__xAxis__text--mobile {
  font-size: 10px;
}

.BarChart__BarChart__svg__yAxis__line {
  stroke-dasharray: 1 2;
  stroke: #d8d8d8;
}

.BarChart__BarChart__svg__yAxis__text {
  font-family: 'MaisonNeue';
  font-size: 14px;
  font-weight: 300;
  color: #f7f7f7;
}

.BarChart__BarChart__error {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'MaisonNeue';
  font-weight: 300;
  font-size: 16px;
  text-align: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.2s linear;
}

.BarChart__BarChart__error--visible {
  opacity: 0.9;
}

.Button_Widgets__button {
  padding: 0;
  cursor: pointer;
  -webkit-appearance: none;
  position: relative;
  display: block;
  height: 42px;
  width: 100%;
  font-family: 'MaisonNeue';
  font-weight: bold;
  font-size: 15px;
  color: #0177ff;
  background-color: transparent;
  border: 1px solid #0177ff;
  border-radius: 6px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  transition: color 0.1s linear, background-color 0.1s linear, border-color 0.1s linear;
}

.Button_Widgets__button:hover {
  color: #fff;
  background-color: #3492ff;
  border-color: #3492ff;
}

.Button_Widgets__button--large {
  height: 52px;
}

.Button_Widgets__button--primary {
  background: #0177ff;
  border: 1px solid transparent;
  color: #fff;
}

.Button_Widgets__button--danger {
  background-color: #fd636f;
  border: 1px solid transparent;
  color: #fff;
}

.Button_Widgets__button--danger:hover {
  background-color: #fd3041;
  border-color: #fd3041;
}

.Button_Widgets__button-enter {
  opacity: 0;
}

.Button_Widgets__button-enter-active {
  opacity: 1;
  transition: opacity 0.2s linear;
}

.Button_Widgets__button-exit {
  opacity: 1;
}

.Button_Widgets__button-exit-active {
  opacity: 0;
  transition: opacity 0.2s linear;
}

.DefinitionList_Widgets__definitionList {
  margin: 0;
  padding: 0;
  list-style-type: none;
  background-color: #fff;
}

.DefinitionList_Widgets__definitionList--inverted {
  background-color: #333;
}

.DefinitionList_Widgets__definitionList__row {
  display: flex;
  justify-content: space-between;
  margin-top: 11px;
  background-image: url(/build/images/border.c99a4ecc.png);
  background-position: bottom;
  background-size: 3px 1px;
  background-repeat: repeat-x;
  color: #333;
  font-size: 14px;
  font-family: 'MaisonNeue';
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 400;
}

.DefinitionList_Widgets__definitionList__row--hidden {
  color: #fff;
}

.DefinitionList_Widgets__definitionList--inverted .DefinitionList_Widgets__definitionList__row {
  color: #fff;
  background-image: linear-gradient(to right, #fff 34%, rgba(0, 0, 0, 0) 0%);
}

.DefinitionList_Widgets__definitionList--inverted .DefinitionList_Widgets__definitionList__row--hidden {
  color: #333;
}

.DefinitionList_Widgets__definitionList__row:first-of-type {
  margin-top: 0;
}

.DefinitionList_Widgets__definitionList__description {
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: 0;
}

@media screen and (max-width: 543px) {
  .DefinitionList_Widgets__definitionList__description {
    font-size: 14px;
  }
}

.InstrumentLinkHighlighter__InstrumentLinkHighlighter__root {
  position: absolute;
  z-index: 9999;
  box-sizing: content-box;
  padding: 4px;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 160ms linear, width 200ms cubic-bezier(0.77, 0, 0.175, 1);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
}

.ScrollableTable__table-container {
  background: #fff;
  padding-bottom: 1px;
}

.ScrollableTable__table-container--withoutScroller {
  padding-bottom: 20px;
}

.ScrollableTable__table-scroller {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -moz-overflow: -moz-scrollbars-none;
}

.ScrollableTable__table-scroller::-webkit-scrollbar {
  height: 0;
}

.ScrollableTable__table {
  width: 100%;
  border-spacing: 0;
  white-space: nowrap;
}

.ScrollableTable__table__wrapper {
  position: relative;
}

.ScrollableTable__table__transition {
  position: relative;
}

.ScrollableTable__table--withFixedColumn .ScrollableTable__table tr th:first-child,
.ScrollableTable__table--withFixedColumn .ScrollableTable__table tr td:first-child {
  position: absolute;
  top: auto;
  left: 0;
  z-index: 4;
  min-width: 175px;
  max-width: 175px;
  text-align: left;
}

@media screen and (max-width: 543px) {
  .ScrollableTable__table--withFixedColumn .ScrollableTable__table tr th:first-child,
  .ScrollableTable__table--withFixedColumn .ScrollableTable__table tr td:first-child {
    min-width: 140px;
    max-width: 140px;
  }
}

.ScrollableTable__table--withFixedColumn--wide .ScrollableTable__table tr th:first-child,
.ScrollableTable__table--withFixedColumn--wide .ScrollableTable__table tr td:first-child {
  min-width: 230px;
  max-width: 230px;
}

@media screen and (max-width: 543px) {
  .ScrollableTable__table--withFixedColumn--wide .ScrollableTable__table tr th:first-child,
  .ScrollableTable__table--withFixedColumn--wide .ScrollableTable__table tr td:first-child {
    min-width: 40vw;
    max-width: 40vw;
  }
}

.ScrollableTable__table--withFixedColumn .ScrollableTable__table tr td:nth-child(2),
.ScrollableTable__table--withFixedColumn .ScrollableTable__table tr th:nth-child(2) {
  padding-left: 210px;
}

.ScrollableTable__table--withFixedColumn .ScrollableTable__table tr td:nth-child(2)::before,
.ScrollableTable__table--withFixedColumn .ScrollableTable__table tr th:nth-child(2)::before {
  left: 210px;
}

@media screen and (max-width: 1023px) {
  .ScrollableTable__table--withFixedColumn .ScrollableTable__table tr td:nth-child(2),
  .ScrollableTable__table--withFixedColumn .ScrollableTable__table tr th:nth-child(2) {
    padding-left: 230px;
  }
  .ScrollableTable__table--withFixedColumn .ScrollableTable__table tr td:nth-child(2)::before,
  .ScrollableTable__table--withFixedColumn .ScrollableTable__table tr th:nth-child(2)::before {
    left: 230px;
  }
}

@media screen and (max-width: 543px) {
  .ScrollableTable__table--withFixedColumn .ScrollableTable__table tr td:nth-child(2),
  .ScrollableTable__table--withFixedColumn .ScrollableTable__table tr th:nth-child(2) {
    padding-left: 175px;
  }
  .ScrollableTable__table--withFixedColumn .ScrollableTable__table tr td:nth-child(2)::before,
  .ScrollableTable__table--withFixedColumn .ScrollableTable__table tr th:nth-child(2)::before {
    left: 175px;
  }
}

.ScrollableTable__table--withFixedColumn--wide .ScrollableTable__table tr td:nth-child(2),
.ScrollableTable__table--withFixedColumn--wide .ScrollableTable__table tr th:nth-child(2) {
  padding-left: 265px;
}

.ScrollableTable__table--withFixedColumn--wide .ScrollableTable__table tr td:nth-child(2)::before,
.ScrollableTable__table--withFixedColumn--wide .ScrollableTable__table tr th:nth-child(2)::before {
  left: 265px;
}

@media screen and (max-width: 1023px) {
  .ScrollableTable__table--withFixedColumn--wide .ScrollableTable__table tr td:nth-child(2),
  .ScrollableTable__table--withFixedColumn--wide .ScrollableTable__table tr th:nth-child(2) {
    padding-left: 285px;
  }
  .ScrollableTable__table--withFixedColumn--wide .ScrollableTable__table tr td:nth-child(2)::before,
  .ScrollableTable__table--withFixedColumn--wide .ScrollableTable__table tr th:nth-child(2)::before {
    left: 285px;
  }
}

@media screen and (max-width: 543px) {
  .ScrollableTable__table--withFixedColumn--wide .ScrollableTable__table tr td:nth-child(2),
  .ScrollableTable__table--withFixedColumn--wide .ScrollableTable__table tr th:nth-child(2) {
    padding-left: calc(40vw + 20px + 15px);
  }
  .ScrollableTable__table--withFixedColumn--wide .ScrollableTable__table tr td:nth-child(2)::before,
  .ScrollableTable__table--withFixedColumn--wide .ScrollableTable__table tr th:nth-child(2)::before {
    left: calc(40vw + 20px + 15px);
  }
}

.ScrollableTable__table thead tr {
  height: 30px;
}

.ScrollableTable__table--alternativeHeader .ScrollableTable__table thead tr {
  height: 50px;
}

.ScrollableTable__table thead th,
.ScrollableTable__table thead td {
  position: relative;
  z-index: 2;
  padding-top: 0;
  font-weight: 400;
  color: #f7f7f7;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.79px;
}

.ScrollableTable__table--withFixedColumn .ScrollableTable__table thead th:first-child, .ScrollableTable__table--withFixedColumn
.ScrollableTable__table thead td:first-child {
  position: absolute;
  left: 20px;
  top: 0;
  width: auto;
  line-height: 30px;
  z-index: 4;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 1023px) {
  .ScrollableTable__table--withFixedColumn .ScrollableTable__table thead th:first-child, .ScrollableTable__table--withFixedColumn
  .ScrollableTable__table thead td:first-child {
    left: 40px;
  }
}

@media screen and (max-width: 543px) {
  .ScrollableTable__table--withFixedColumn .ScrollableTable__table thead th:first-child, .ScrollableTable__table--withFixedColumn
  .ScrollableTable__table thead td:first-child {
    left: 20px;
  }
}

.ScrollableTable__table--alternativeHeader .ScrollableTable__table thead th, .ScrollableTable__table--alternativeHeader
.ScrollableTable__table thead td {
  padding-top: 22px;
  color: #333;
  line-height: 1.3;
  font-size: 12px;
}

@media screen and (max-width: 543px) {
  .ScrollableTable__table--alternativeHeader .ScrollableTable__table thead th, .ScrollableTable__table--alternativeHeader
  .ScrollableTable__table thead td {
    font-size: 11px;
  }
}

.ScrollableTable__table--withFixedColumn .ScrollableTable__table thead::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 29px;
  width: 205px;
  z-index: 3;
  background-color: #333;
}

@media screen and (max-width: 1023px) {
  .ScrollableTable__table--withFixedColumn .ScrollableTable__table thead::before {
    width: 225px;
  }
}

@media screen and (max-width: 543px) {
  .ScrollableTable__table--withFixedColumn .ScrollableTable__table thead::before {
    width: 170px;
  }
}

.ScrollableTable__table--withFixedColumn--wide .ScrollableTable__table thead::before {
  width: 260px;
}

@media screen and (max-width: 1023px) {
  .ScrollableTable__table--withFixedColumn--wide .ScrollableTable__table thead::before {
    width: 280px;
  }
}

@media screen and (max-width: 543px) {
  .ScrollableTable__table--withFixedColumn--wide .ScrollableTable__table thead::before {
    width: calc(40vw + 20px + 15px - 5px);
  }
}

.ScrollableTable__table--alternativeHeader .ScrollableTable__table thead::before {
  height: 49px;
  background: #f7f7f7;
}

.ScrollableTable__table thead::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 30px;
  background: #333;
}

.ScrollableTable__table--alternativeHeader .ScrollableTable__table thead::after {
  height: 49px;
  border-bottom: 1px solid #efefef;
  background: #f7f7f7;
}

.ScrollableTable__table--condensedBody .ScrollableTable__table tbody tr:nth-child(n + 3) th:first-child,
.ScrollableTable__table--condensedBody .ScrollableTable__table tbody tr:nth-child(n + 3) td:first-child {
  padding-top: 13px;
}

@media screen and (max-width: 1023px) {
  .ScrollableTable__table--condensedBody .ScrollableTable__table tbody tr:nth-child(n + 3) th:first-child,
  .ScrollableTable__table--condensedBody .ScrollableTable__table tbody tr:nth-child(n + 3) td:first-child {
    padding-top: 13px;
  }
}

@media screen and (max-width: 543px) {
  .ScrollableTable__table--condensedBody .ScrollableTable__table tbody tr:nth-child(n + 3) th:first-child,
  .ScrollableTable__table--condensedBody .ScrollableTable__table tbody tr:nth-child(n + 3) td:first-child {
    padding-top: 14px;
  }
}

.ScrollableTable__table--condensedBody .ScrollableTable__table tbody tr:nth-child(n + 3) th:not(:first-child),
.ScrollableTable__table--condensedBody .ScrollableTable__table tbody tr:nth-child(n + 3) td:not(:first-child) {
  padding-top: 12px;
}

.ScrollableTable__table tbody th,
.ScrollableTable__table tbody td {
  position: relative;
}

.ScrollableTable__table tbody th a,
.ScrollableTable__table tbody td a {
  color: #0177ff;
  transition: color 0.1s linear;
  text-decoration: none;
}

.ScrollableTable__table tbody th a:hover,
.ScrollableTable__table tbody td a:hover {
  color: #005fcd;
}

.ScrollableTable__table--withFixedColumn .ScrollableTable__table tbody th:first-child, .ScrollableTable__table--withFixedColumn
.ScrollableTable__table tbody td:first-child {
  background: #fff;
  color: #0177ff;
  fill: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  left: 20px;
  font-size: 14px;
  padding-top: 25px;
  min-height: 18px;
  line-height: 18px;
}

.ScrollableTable__table--withFixedColumn .ScrollableTable__table tbody th:first-child:hover, .ScrollableTable__table--withFixedColumn
.ScrollableTable__table tbody td:first-child:hover {
  fill: #005fcd;
}

@media screen and (max-width: 1023px) {
  .ScrollableTable__table--withFixedColumn .ScrollableTable__table tbody th:first-child, .ScrollableTable__table--withFixedColumn
  .ScrollableTable__table tbody td:first-child {
    left: 40px;
  }
}

@media screen and (max-width: 543px) {
  .ScrollableTable__table--withFixedColumn .ScrollableTable__table tbody th:first-child, .ScrollableTable__table--withFixedColumn
  .ScrollableTable__table tbody td:first-child {
    left: 20px;
    min-height: 17px;
    line-height: 17px;
    font-size: 13px;
    padding-top: 26px;
  }
}

.ScrollableTable__table--borderToEdge .ScrollableTable__table tbody th:first-child, .ScrollableTable__table--borderToEdge
.ScrollableTable__table tbody td:first-child {
  left: 0;
  padding-left: 20px;
}

@media screen and (max-width: 1023px) {
  .ScrollableTable__table--borderToEdge .ScrollableTable__table tbody th:first-child, .ScrollableTable__table--borderToEdge
  .ScrollableTable__table tbody td:first-child {
    padding-left: 40px;
  }
}

@media screen and (max-width: 543px) {
  .ScrollableTable__table--borderToEdge .ScrollableTable__table tbody th:first-child, .ScrollableTable__table--borderToEdge
  .ScrollableTable__table tbody td:first-child {
    padding-left: 20px;
  }
}

.ScrollableTable__table tbody th::before,
.ScrollableTable__table tbody td::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-image: url(/build/images/border.c99a4ecc.png);
  background-position: bottom;
  background-size: 3px 1px;
  background-repeat: repeat-x;
}

.ScrollableTable__table--withFixedColumn .ScrollableTable__table tbody::before {
  content: '';
  position: absolute;
  left: 195px;
  top: 50px;
  bottom: 0;
  z-index: 10;
  display: block;
  width: 15px;
  background: linear-gradient(to right, #fff 0%, #fff 60%, rgba(255, 255, 255, 0) 100%);
}

@media screen and (max-width: 1023px) {
  .ScrollableTable__table--withFixedColumn .ScrollableTable__table tbody::before {
    left: 215px;
  }
}

@media screen and (max-width: 543px) {
  .ScrollableTable__table--withFixedColumn .ScrollableTable__table tbody::before {
    left: 160px;
  }
}

.ScrollableTable__table--withFixedColumn--wide .ScrollableTable__table tbody::before {
  left: 250px;
}

@media screen and (max-width: 1023px) {
  .ScrollableTable__table--withFixedColumn--wide .ScrollableTable__table tbody::before {
    left: 270px;
  }
}

@media screen and (max-width: 543px) {
  .ScrollableTable__table--withFixedColumn--wide .ScrollableTable__table tbody::before {
    left: calc(40vw + 20px);
  }
}

.ScrollableTable__table tbody::after {
  content: '';
  position: absolute;
  top: 31px;
  left: 0;
  bottom: 0;
  z-index: 10;
  background: #fff;
  width: 20px;
}

.ScrollableTable__table--borderToEdge .ScrollableTable__table tbody::after {
  content: none;
}

.ScrollableTable__table--alternativeHeader .ScrollableTable__table tbody::after {
  top: 51px;
}

@media screen and (max-width: 1023px) {
  .ScrollableTable__table tbody::after {
    width: 40px;
  }
}

@media screen and (max-width: 543px) {
  .ScrollableTable__table tbody::after {
    width: 20px;
  }
}

.ScrollableTable__table th,
.ScrollableTable__table td {
  min-height: 19px;
  box-sizing: content-box;
  padding: 24px 5px 0;
  line-height: 19px;
  overflow: hidden;
  font-family: 'MaisonNeue';
  font-weight: 400;
  font-size: 15px;
  color: #333;
  text-align: right;
}

@media screen and (max-width: 543px) {
  .ScrollableTable__table th,
  .ScrollableTable__table td {
    font-size: 14px;
  }
}

.ScrollableTable__table th:first-child,
.ScrollableTable__table td:first-child {
  padding-left: 0;
}

.ScrollableTable__table--borderToEdge .ScrollableTable__table th:first-child, .ScrollableTable__table--borderToEdge
.ScrollableTable__table td:first-child {
  padding-left: 20px;
}

@media screen and (max-width: 1023px) {
  .ScrollableTable__table--borderToEdge .ScrollableTable__table th:first-child, .ScrollableTable__table--borderToEdge
  .ScrollableTable__table td:first-child {
    padding-left: 40px;
  }
}

@media screen and (max-width: 543px) {
  .ScrollableTable__table--borderToEdge .ScrollableTable__table th:first-child, .ScrollableTable__table--borderToEdge
  .ScrollableTable__table td:first-child {
    padding-left: 20px;
  }
}

.ScrollableTable__table th:last-child,
.ScrollableTable__table td:last-child {
  padding-right: 20px;
}

@media screen and (max-width: 1023px) {
  .ScrollableTable__table th:last-child,
  .ScrollableTable__table td:last-child {
    padding-right: 40px;
  }
}

@media screen and (max-width: 543px) {
  .ScrollableTable__table th:last-child,
  .ScrollableTable__table td:last-child {
    padding-right: 20px;
  }
}

.ScrollableTable__table th:last-child::before,
.ScrollableTable__table td:last-child::before {
  right: 20px;
}

@media screen and (max-width: 1023px) {
  .ScrollableTable__table th:last-child::before,
  .ScrollableTable__table td:last-child::before {
    right: 40px;
  }
}

@media screen and (max-width: 543px) {
  .ScrollableTable__table th:last-child::before,
  .ScrollableTable__table td:last-child::before {
    right: 20px;
  }
}

.ScrollableTable__table--borderToEdge .ScrollableTable__table th:last-child::before, .ScrollableTable__table--borderToEdge
.ScrollableTable__table td:last-child::before {
  right: 0;
}

.Scroller__scroller {
  display: block;
  margin: 20px auto;
  width: 44px;
  height: 18px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2043.5%2017.49%22%3E%0D%0A%20%20%20%20%20%20%20%20%3Cg%20fill%3D%22%23d8d8d8%22%3E%0D%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Crect%20x%3D%221.75%22%20y%3D%227.74%22%20width%3D%2240%22%20height%3D%222%22%20%2F%3E%0D%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M2.4%2C8.74l6.8%2C7a1%2C1%2C0%2C0%2C1%2C0%2C1.44%2C1%2C1%2C0%2C0%2C1-1.4%2C0L.3%2C9.46A1%2C1%2C0%2C0%2C1%2C.3%2C8L7.8.31a.95.95%2C0%2C0%2C1%2C1.4%2C0%2C1%2C1%2C0%2C0%2C1%2C0%2C1.44Z%22%20%2F%3E%0D%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M41.1%2C8.74l-6.8-7a1%2C1%2C0%2C0%2C1%2C0-1.44%2C1%2C1%2C0%2C0%2C1%2C1.4%2C0L43.2%2C8a1%2C1%2C0%2C0%2C1%2C0%2C1.44l-7.5%2C7.72a.95.95%2C0%2C0%2C1-1.4%2C0%2C1%2C1%2C0%2C0%2C1%2C0-1.44Z%22%20%2F%3E%0D%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0D%0A%20%20%20%20%3C%2Fsvg%3E");
  background-size: 44px 18px;
  cursor: grab;
  overflow: hidden;
  opacity: 1;
  transition: height 0.175s cubic-bezier(0.455, 0.03, 0.515, 0.955), margin-top 0.175s cubic-bezier(0.455, 0.03, 0.515, 0.955), width 0.175s cubic-bezier(0.455, 0.03, 0.515, 0.955), opacity 0.175s linear;
}

.Scroller__scroller--hidden {
  margin-top: 0;
  opacity: 0;
  height: 0;
}

.Chevron__chevron {
  display: block;
  position: relative;
}

.Chevron__chevron--vertical {
  transform: rotate(90deg);
}

.Chevron__chevron__upper, .Chevron__chevron__lower {
  position: absolute;
  top: 50%;
  right: 0;
  background-color: #333;
  transition: transform 0.225s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.Chevron__chevron__upper {
  transform: translateY(-50%) rotate(45deg) scaleY(0.5);
  transform-origin: right center;
}

.Chevron__chevron__lower {
  transform: translateY(-50%) rotate(-45deg) scaleY(0.5);
  transform-origin: right center;
}

.Chevron__chevron--inversed .Chevron__chevron__upper {
  transform: translateY(-50%) translateX(-70.71%) rotate(135deg) scaleY(0.5);
}

.Chevron__chevron--inversed .Chevron__chevron__lower {
  transform: translateY(-50%) translateX(-70.71%) rotate(-135deg) scaleY(0.5);
}

.SelectDropdown_Widgets__SelectDropdown {
  position: absolute;
  top: 52px;
  left: 0;
  right: 0;
  z-index: 2;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.SelectDropdown_Widgets__SelectDropdown-enter {
  opacity: 0.001;
}

.SelectDropdown_Widgets__SelectDropdown-enter-active {
  opacity: 1;
  transition: opacity 200ms linear;
}

.SelectDropdown_Widgets__SelectDropdown-enter-active .SelectDropdown_Widgets__SelectDropdown__options {
  overflow-y: hidden;
  transition: height calc(200ms * 0.8) cubic-bezier(0.645, 0.045, 0.355, 1);
}

.SelectDropdown_Widgets__SelectDropdown-exit {
  opacity: 1;
}

.SelectDropdown_Widgets__SelectDropdown-exit-active {
  opacity: 0.001;
  transition: opacity 150ms linear;
}

.SelectDropdown_Widgets__SelectDropdown-exit-active .SelectDropdown_Widgets__SelectDropdown__options {
  overflow-y: hidden;
}

.SelectDropdown_Widgets__SelectDropdown__options {
  list-style: none;
  margin: 0;
  padding: 15px 0;
  overflow-y: auto;
}

.SelectDropdown_Widgets__SelectDropdown__options::-webkit-scrollbar {
  width: 6px;
}

.SelectDropdown_Widgets__SelectDropdown__options::-webkit-scrollbar-track {
  background: rgba(58, 58, 58, 0.1);
}

.SelectDropdown_Widgets__SelectDropdown__options::-webkit-scrollbar-thumb {
  background: #333;
}

.SelectDropdown_Widgets__SelectDropdown__option {
  padding: 10px 20px;
  margin: -5px 0;
  cursor: pointer;
  transition: background-color 0.1s linear, color 0.1s linear;
}

.SelectDropdown_Widgets__SelectDropdown__option:hover {
  background-color: rgba(247, 247, 247, 0.8);
  color: #43a4ff;
}

.SelectDropdown_Widgets__SelectDropdown__option--selected {
  color: #43a4ff;
}

.SelectDropdown_Widgets__SelectDropdown__option--focussed {
  background-color: #43a4ff;
  color: #fff;
}

.SelectDropdown_Widgets__SelectDropdown__option--focussed:hover {
  background-color: #43a4ff;
  color: #fff;
}

.Select_Widgets__select {
  width: 100%;
  margin-bottom: 20px;
}

.Select_Widgets__select > select {
  display: none;
}

.Select_Widgets__select__label {
  display: block;
  margin-bottom: 7px;
  font-family: 'MaisonNeue';
  font-weight: 400;
  color: #212121;
  font-size: 16px;
}

@media screen and (max-width: 543px) {
  .Select_Widgets__select__label {
    font-size: 14px;
  }
}

.Select_Widgets__select__transformer {
  position: relative;
  transition: transform 0.125s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.Select_Widgets__select--transitioning .Select_Widgets__select__transformer,
.Select_Widgets__select--expanded .Select_Widgets__select__transformer {
  z-index: 100;
}

.Select_Widgets__select__input {
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  position: relative;
  z-index: 3;
  display: flex;
  width: 100%;
  align-items: center;
  height: 52px;
  border: 1px solid #777;
  border-radius: 2px;
  background: #fff;
  padding: 0 52px 0 12px;
  font-family: 'MaisonNeue';
  font-weight: 400;
  font-size: 17px;
  color: #777;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}

.Select_Widgets__select__input:focus,
.Select_Widgets__select--expanded .Select_Widgets__select__input {
  border-color: #43a4ff;
}

.Select_Widgets__select__input__label {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.Select_Widgets__select__input__chevron {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  border-color: #43a4ff;
}

.Select_Widgets__select__backdrop {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
  cursor: default;
}

.QuoteChange__QuoteChange {
  display: block;
  line-height: 18px;
  font-family: 'MaisonNeue';
  font-weight: 400;
  text-align: right;
}

.QuoteChange__QuoteChange--positive {
  color: #2bd18f;
}

.QuoteChange__QuoteChange--negative {
  color: #fd3041;
}

.QuoteChange__QuoteChange--previous {
  position: absolute;
  top: 0;
  right: 0;
}

.QuoteChange__QuoteChange__arrow {
  margin-left: 2px;
  transform: scale(0.9);
}

.QuoteChange__QuoteChange__wrapper {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  height: 18px;
}

.QuoteChange__QuoteChange__wrapper--positiveChange .QuoteChange__QuoteChange {
  animation-fill-mode: both;
  animation: QuoteChange__QuoteChange__fromBottom 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}

.QuoteChange__QuoteChange__wrapper--positiveChange .QuoteChange__QuoteChange--previous {
  animation-fill-mode: both;
  animation: QuoteChange__QuoteChange__toTop 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}

.QuoteChange__QuoteChange__wrapper--negativeChange .QuoteChange__QuoteChange {
  animation-fill-mode: both;
  animation: QuoteChange__QuoteChange__fromTop 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}

.QuoteChange__QuoteChange__wrapper--negativeChange .QuoteChange__QuoteChange--previous {
  animation-fill-mode: both;
  animation: QuoteChange__QuoteChange__toBottom 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}

@keyframes QuoteChange__QuoteChange__fromBottom {
  0% {
    transform: translateY(-18px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes QuoteChange__QuoteChange__toBottom {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-18px);
  }
}

@keyframes QuoteChange__QuoteChange__fromTop {
  0% {
    transform: translateY(18px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes QuoteChange__QuoteChange__toTop {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(18px);
  }
}

.PeersList__PeersList {
  background-color: #fff;
}

.PeersList__PeersList--expandable {
  padding-bottom: 41px;
  overflow: auto;
}

.PeersList__PeersList__header {
  position: relative;
  height: 80px;
  line-height: 80px;
  background: linear-gradient(213.57deg, #fff 0%, #f7f7f7 100%);
}

.PeersList__PeersList__header__title {
  font-family: 'neue-haas-grotesk-text';
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.2px;
  color: #333;
  margin: 0;
  padding-left: 20px;
}

@media screen and (max-width: 1023px) {
  .PeersList__PeersList__header__title {
    padding-left: 40px;
  }
}

@media screen and (max-width: 543px) {
  .PeersList__PeersList__header__title {
    padding-left: 20px;
  }
}

.PeersList__PeersList__header__throbber {
  position: absolute;
  right: 30px;
  top: 30px;
  width: 20px;
  height: 20px;
  pointer-events: none;
  user-select: none;
}

.PeersList__PeersList .PeersList__PeersList__table thead {
  border-bottom: 0;
}

.PeersList__PeersList .PeersList__PeersList__table thead::after {
  height: 30px;
  background: #333;
}

.PeersList__PeersList .PeersList__PeersList__table thead tr {
  height: 30px;
}

.PeersList__PeersList .PeersList__PeersList__table thead tr th {
  position: relative;
  z-index: 2;
  padding-top: 0;
  color: #f7f7f7;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.79px;
  box-sizing: content-box;
  line-height: 19px;
  min-height: 19px;
  overflow: hidden;
  font-family: MaisonNeue, sans-serif;
}

.PeersList__PeersList .PeersList__PeersList__table thead tr th:first-child {
  padding-left: 20px;
}

.PeersList__PeersList .PeersList__PeersList__table tbody tr th:first-child {
  position: absolute;
  top: auto;
  left: 20px;
  z-index: 4;
  font-size: 14px;
  padding-top: 25px;
  min-height: 18px;
  line-height: 18px;
  min-width: 150px;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  transition: fill 0.1s linear;
}

.PeersList__PeersList .PeersList__PeersList__table .PeersList__column__name {
  text-align: left;
}

.PeersList__PeersList .PeersList__PeersList__table .PeersList__column__last {
  min-width: 70px;
  text-align: right;
}

.PeersList__PeersList .PeersList__PeersList__table .PeersList__column__1week, .PeersList__PeersList .PeersList__PeersList__table .PeersList__column__1year {
  min-width: 70px;
  text-align: right;
}

.PeersList__PeersList .PeersList__PeersList__table .PeersList__column__pe {
  min-width: 55px;
  text-align: right;
}

.PeersList__PeersList .PeersList__PeersList__table .PeersList__column__eps {
  min-width: 55px;
  text-align: right;
}

.PeersList__PeersList .PeersList__PeersList__table .PeersList__column__small {
  font-size: 11px;
}

.PeersList__error {
  padding: 30px 0 10px;
  text-align: center;
}

.PeersList__expandButton {
  max-width: 300px;
  margin: -21px auto 0;
}

.IndexSelector__IndexSelector {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  justify-content: center;
  height: 30px;
  margin-bottom: 20px;
  opacity: 1;
  transition: opacity 0.1s linear;
}

.IndexSelector__IndexSelector--dimmed {
  opacity: 0.5;
}

.IndexSelector__IndexSelector__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  border: 1px solid #333;
  border-right: 0;
  transition: color 0.1s linear, background-color 0.1s linear;
}

.IndexSelector__IndexSelector__item__button {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0 10px;
  background: none;
  border: 0;
  outline: none;
  -webkit-appearance: none;
  font-family: 'MaisonNeue';
  font-size: 13px;
  font-weight: 400;
  color: inherit;
  cursor: pointer;
}

.IndexSelector__IndexSelector__item:first-of-type {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}

.IndexSelector__IndexSelector__item:last-of-type {
  border-right: 1px solid #333;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}

.IndexSelector__IndexSelector:not(.IndexSelector__IndexSelector--dimmed) .IndexSelector__IndexSelector__item:hover, .IndexSelector__IndexSelector__item--active {
  background-color: #333;
  color: #fff;
}

.PortfolioGraph__PortfolioGraph {
  position: relative;
  width: 100%;
}

.Instrument__TopBottom-Instrument {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  width: 100%;
  height: 72px;
  line-height: 1;
  margin-bottom: 4px;
  background-color: #fff;
  box-shadow: 0 2px 16px -6px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  transition: top 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}

.Instrument__TopBottom-Instrument-enter {
  opacity: 0;
}

.Instrument__TopBottom-Instrument-enter.Instrument__TopBottom-Instrument--position-first {
  transform: translateY(228px);
}

.Instrument__TopBottom-Instrument-enter.Instrument__TopBottom-Instrument--position-second {
  transform: translateY(152px);
}

.Instrument__TopBottom-Instrument-enter.Instrument__TopBottom-Instrument--position-third {
  transform: translateY(76px);
}

.Instrument__TopBottom-Instrument-enter-active {
  opacity: 1;
  transform: translateY(0) !important;
  transition: opacity 0.45s linear, transform 0.45s cubic-bezier(0.47, 0, 0.745, 0.715);
}

.Instrument__TopBottom-Instrument-exit {
  opacity: 1;
  transform: translateY(0);
}

.Instrument__TopBottom-Instrument-exit-active {
  opacity: 0;
  transition: opacity 0.45s linear, transform 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.Instrument__TopBottom-Instrument-exit-active.Instrument__TopBottom-Instrument--position-first {
  transform: translateY(228px);
}

.Instrument__TopBottom-Instrument-exit-active.Instrument__TopBottom-Instrument--position-second {
  transform: translateY(152px);
}

.Instrument__TopBottom-Instrument-exit-active.Instrument__TopBottom-Instrument--position-third {
  transform: translateY(76px);
}

.Instrument__TopBottom-Instrument__watchlist__button {
  margin: 0;
  padding: 0;
  background: none;
  outline: none;
  border: 0;
  -webkit-appearance: none;
  position: absolute;
  top: 0;
  left: -10px;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  box-sizing: content-box;
  padding-left: 10px;
  cursor: pointer;
}

.Instrument__TopBottom-Instrument__watchlist__button--throbber {
  pointer-events: none;
}

.Instrument__TopBottom-Instrument__watchlist__placeholder {
  position: relative;
  width: 24px;
  height: 100%;
  flex-shrink: 0;
  border-right: 1px solid #d8d8d8;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  fill: #43a4ff;
  transition: fill 0.1s linear, background-color 0.1s linear, border-right-color 0.1s linear;
}

.Instrument__TopBottom-Instrument__watchlist__placeholder--active, .Instrument__TopBottom-Instrument__watchlist__placeholder:hover {
  fill: #fff;
  background-color: #0177ff;
  border-right-color: #0177ff;
}

.Instrument__TopBottom-Instrument__watchlist__placeholder--active .Instrument__TopBottom-Instrument__throbber, .Instrument__TopBottom-Instrument__watchlist__placeholder:hover .Instrument__TopBottom-Instrument__throbber {
  border-color: rgba(255, 255, 255, 0.334);
  border-left-color: #fff;
}

.Instrument__TopBottom-Instrument__watchlist__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 27px;
  margin-top: 4px;
  font-size: 20px;
  transition: opacity 0.2s linear;
  fill: inherit;
}

.Instrument__TopBottom-Instrument__watchlist__icon__svg {
  width: 100%;
  fill: inherit;
}

.Instrument__TopBottom-Instrument__watchlist__icon--hidden {
  opacity: 0 !important;
}

.Instrument__TopBottom-Instrument__watchlist__icon--checkmark {
  opacity: 0;
}

.Instrument__TopBottom-Instrument__watchlist__icon--checkmark .Instrument__TopBottom-Instrument__watchlist__icon__svg {
  transform: translateY(-1px);
  height: 37.5%;
}

.Instrument__TopBottom-Instrument__watchlist__icon--plus {
  opacity: 1;
}

.Instrument__TopBottom-Instrument__watchlist__icon--plus .Instrument__TopBottom-Instrument__watchlist__icon__svg {
  transform: scale(2);
  height: 45%;
}

.Instrument__TopBottom-Instrument__watchlist__placeholder--active .Instrument__TopBottom-Instrument__watchlist__icon--checkmark {
  opacity: 1;
}

.Instrument__TopBottom-Instrument__watchlist__placeholder--active .Instrument__TopBottom-Instrument__watchlist__icon--plus {
  opacity: 0;
}

.Instrument__TopBottom-Instrument__content {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  width: 100%;
  padding: 17px 10px;
}

.Instrument__TopBottom-Instrument__content__right {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.Instrument__TopBottom-Instrument__content__left {
  overflow: hidden;
}

.Instrument__TopBottom-Instrument__instrument {
  margin: 0;
  line-height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 10px;
}

.Instrument__TopBottom-Instrument__instrument__link {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  font-family: 'neue-haas-grotesk-text';
  color: #333;
  text-decoration: none;
  transition: color 0.1s linear;
}

.Instrument__TopBottom-Instrument__instrument__link:hover {
  color: #43a4ff;
}

.Instrument__TopBottom-Instrument__volume {
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  color: #777;
  text-transform: uppercase;
}

.Instrument__TopBottom-Instrument__relativeChange {
  display: block;
  position: relative;
  z-index: 1;
  font-size: 15px;
  line-height: 18px;
  font-weight: 400;
  text-align: right;
  color: #333;
  transition: color 0.1s linear;
}

.Instrument__TopBottom-Instrument__relativeChange--positive {
  color: #2bd18f;
}

.Instrument__TopBottom-Instrument__relativeChange--negative {
  color: #fd3041;
}

.Instrument__TopBottom-Instrument__relativeChange__arrow {
  display: inline-block;
  margin-left: 6px;
}

.Instrument__TopBottom-Instrument__relativeChange__wrapper {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  min-height: 18px;
}

.Instrument__TopBottom-Instrument__relativeChange__wrapper--positiveChange .Instrument__TopBottom-Instrument__relativeChange-enter {
  transform: translateY(-18px);
}

.Instrument__TopBottom-Instrument__relativeChange__wrapper--positiveChange .Instrument__TopBottom-Instrument__relativeChange-enter-active, .Instrument__TopBottom-Instrument__relativeChange__wrapper--positiveChange .Instrument__TopBottom-Instrument__relativeChange-exit {
  transform: translateY(0);
}

.Instrument__TopBottom-Instrument__relativeChange__wrapper--positiveChange .Instrument__TopBottom-Instrument__relativeChange-exit-active {
  transform: translateY(18px);
}

.Instrument__TopBottom-Instrument__relativeChange__wrapper--negativeChange .Instrument__TopBottom-Instrument__relativeChange-enter {
  transform: translateY(18px);
}

.Instrument__TopBottom-Instrument__relativeChange__wrapper--negativeChange .Instrument__TopBottom-Instrument__relativeChange-enter-active, .Instrument__TopBottom-Instrument__relativeChange__wrapper--negativeChange .Instrument__TopBottom-Instrument__relativeChange-exit {
  transform: translateY(0);
}

.Instrument__TopBottom-Instrument__relativeChange__wrapper--negativeChange .Instrument__TopBottom-Instrument__relativeChange-exit-active {
  transform: translateY(-18px);
}

.Instrument__TopBottom-Instrument__relativeChange__instrumentChange {
  display: inline;
}

.Instrument__TopBottom-Instrument__relativeChange-enter-active {
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}

.Instrument__TopBottom-Instrument__relativeChange-exit {
  position: absolute;
  top: 0;
  right: 0;
}

.Instrument__TopBottom-Instrument__relativeChange-exit-active {
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}

.Instrument__TopBottom-Instrument__absoluteValue {
  font-size: 13px;
  line-height: 25px;
  font-weight: 400;
  text-align: right;
}

.Instrument__elements-list-4 .Instrument__TopBottom-Instrument-enter.Instrument__TopBottom-Instrument--position-first {
  transform: translateY(180px);
}

.Instrument__elements-list-4 .Instrument__TopBottom-Instrument-enter.Instrument__TopBottom-Instrument--position-second {
  transform: translateY(120px);
}

.Instrument__elements-list-4 .Instrument__TopBottom-Instrument-enter.Instrument__TopBottom-Instrument--position-third {
  transform: translateY(60px);
}

.Instrument__elements-list-4 .Instrument__TopBottom-Instrument-enter.Instrument__TopBottom-Instrument--position-fourth {
  transform: translateY(0);
}

.Instrument__elements-list-4 .Instrument__TopBottom-Instrument-exit-active {
  opacity: 0;
  transition: opacity 0.45s linear, transform 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.Instrument__elements-list-4 .Instrument__TopBottom-Instrument-exit-active.Instrument__TopBottom-Instrument--position-first {
  transform: translateY(180px);
}

.Instrument__elements-list-4 .Instrument__TopBottom-Instrument-exit-active.Instrument__TopBottom-Instrument--position-second {
  transform: translateY(120px);
}

.Instrument__elements-list-4 .Instrument__TopBottom-Instrument-exit-active.Instrument__TopBottom-Instrument--position-third {
  transform: translateY(60px);
}

.Instrument__elements-list-4 .Instrument__TopBottom-Instrument-exit-active.Instrument__TopBottom-Instrument--position-fourth {
  transform: translateY(0);
}

.Instrument__elements-list-4 .Instrument__TopBottom-Instrument__instrument__link {
  font-size: 14px;
  line-height: 18px;
}

.Instrument__elements-list-4 .Instrument__TopBottom-Instrument__content {
  padding: 12px 9px;
}

.Instrument__elements-list-4 .Instrument__TopBottom-Instrument__volume {
  display: block;
}

.Instrument__elements-list-4 .Instrument__TopBottom-Instrument__relativeChange {
  font-size: 13px;
  line-height: 16px;
}

.Instrument__elements-list-4 .Instrument__TopBottom-Instrument__absoluteValue {
  font-size: 12px;
  line-height: 12px;
  color: #777;
}

.Instrument__elements-list-5 .Instrument__TopBottom-Instrument__volume,
.Instrument__elements-list-6 .Instrument__TopBottom-Instrument__volume {
  display: none;
}

.Instrument__elements-list-5 .Instrument__TopBottom-Instrument__instrument,
.Instrument__elements-list-6 .Instrument__TopBottom-Instrument__instrument {
  line-height: 26px;
}

.Instrument__elements-list-5 .Instrument__TopBottom-Instrument__instrument__link,
.Instrument__elements-list-6 .Instrument__TopBottom-Instrument__instrument__link {
  font-size: 13px;
}

.Instrument__elements-list-5 .Instrument__TopBottom-Instrument__content,
.Instrument__elements-list-6 .Instrument__TopBottom-Instrument__content {
  padding: 7px 9px;
}

.Instrument__elements-list-5 .Instrument__TopBottom-Instrument__relativeChange,
.Instrument__elements-list-6 .Instrument__TopBottom-Instrument__relativeChange {
  font-size: 13px;
  line-height: 16px;
}

.Instrument__elements-list-5 .Instrument__TopBottom-Instrument__relativeChange i,
.Instrument__elements-list-6 .Instrument__TopBottom-Instrument__relativeChange i {
  height: 9px;
  width: 10px;
  margin-left: 4px;
}

.Instrument__elements-list-5 .Instrument__TopBottom-Instrument__absoluteValue,
.Instrument__elements-list-6 .Instrument__TopBottom-Instrument__absoluteValue {
  font-size: 11px;
  line-height: 13px;
  color: #777;
}

.Instrument__elements-list-5 .Instrument__TopBottom-Instrument-enter.Instrument__TopBottom-Instrument--position-first {
  transform: translateY(188px);
}

.Instrument__elements-list-5 .Instrument__TopBottom-Instrument-enter.Instrument__TopBottom-Instrument--position-second {
  transform: translateY(141px);
}

.Instrument__elements-list-5 .Instrument__TopBottom-Instrument-enter.Instrument__TopBottom-Instrument--position-third {
  transform: translateY(94px);
}

.Instrument__elements-list-5 .Instrument__TopBottom-Instrument-enter.Instrument__TopBottom-Instrument--position-fourth {
  transform: translateY(47px);
}

.Instrument__elements-list-5 .Instrument__TopBottom-Instrument-enter.Instrument__TopBottom-Instrument--position-fifth {
  transform: translateY(0);
}

.Instrument__elements-list-5 .Instrument__TopBottom-Instrument-exit-active {
  opacity: 0;
  transition: opacity 0.45s linear, transform 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.Instrument__elements-list-5 .Instrument__TopBottom-Instrument-exit-active.Instrument__TopBottom-Instrument--position-first {
  transform: translateY(188px);
}

.Instrument__elements-list-5 .Instrument__TopBottom-Instrument-exit-active.Instrument__TopBottom-Instrument--position-second {
  transform: translateY(141px);
}

.Instrument__elements-list-5 .Instrument__TopBottom-Instrument-exit-active.Instrument__TopBottom-Instrument--position-third {
  transform: translateY(94px);
}

.Instrument__elements-list-5 .Instrument__TopBottom-Instrument-exit-active.Instrument__TopBottom-Instrument--position-fourth {
  transform: translateY(47px);
}

.Instrument__elements-list-5 .Instrument__TopBottom-Instrument-exit-active.Instrument__TopBottom-Instrument--position-fifth {
  transform: translateY(0);
}

.Instrument__elements-list-6 .Instrument__TopBottom-Instrument-enter.Instrument__TopBottom-Instrument--position-first {
  transform: translateY(195px);
}

.Instrument__elements-list-6 .Instrument__TopBottom-Instrument-enter.Instrument__TopBottom-Instrument--position-second {
  transform: translateY(156px);
}

.Instrument__elements-list-6 .Instrument__TopBottom-Instrument-enter.Instrument__TopBottom-Instrument--position-third {
  transform: translateY(117px);
}

.Instrument__elements-list-6 .Instrument__TopBottom-Instrument-enter.Instrument__TopBottom-Instrument--position-fourth {
  transform: translateY(78px);
}

.Instrument__elements-list-6 .Instrument__TopBottom-Instrument-enter.Instrument__TopBottom-Instrument--position-fifth {
  transform: translateY(39px);
}

.Instrument__elements-list-6 .Instrument__TopBottom-Instrument-enter.Instrument__TopBottom-Instrument--position-sixth {
  transform: translateY(0);
}

.Instrument__elements-list-6 .Instrument__TopBottom-Instrument-exit-active {
  opacity: 0;
  transition: opacity 0.45s linear, transform 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.Instrument__elements-list-6 .Instrument__TopBottom-Instrument-exit-active.Instrument__TopBottom-Instrument--position-first {
  transform: translateY(195px);
}

.Instrument__elements-list-6 .Instrument__TopBottom-Instrument-exit-active.Instrument__TopBottom-Instrument--position-second {
  transform: translateY(156px);
}

.Instrument__elements-list-6 .Instrument__TopBottom-Instrument-exit-active.Instrument__TopBottom-Instrument--position-third {
  transform: translateY(117px);
}

.Instrument__elements-list-6 .Instrument__TopBottom-Instrument-exit-active.Instrument__TopBottom-Instrument--position-fourth {
  transform: translateY(78px);
}

.Instrument__elements-list-6 .Instrument__TopBottom-Instrument-exit-active.Instrument__TopBottom-Instrument--position-fifth {
  transform: translateY(39px);
}

.Instrument__elements-list-6 .Instrument__TopBottom-Instrument-exit-active.Instrument__TopBottom-Instrument--position-sixth {
  transform: translateY(0);
}

.Instrument__elements-list-6 .Instrument__TopBottom-Instrument__content {
  padding: 5px 9px;
}

.Instrument__elements-list-6 .Instrument__TopBottom-Instrument__absoluteValue {
  margin-top: -2px;
}

.InstrumentList__TopBottom-InstrumentList {
  flex-basis: 100%;
  overflow: hidden;
  padding: 5px;
  margin: -5px 0;
}

.InstrumentList__TopBottom-InstrumentList:first-of-type {
  margin-left: -5px;
}

.InstrumentList__TopBottom-InstrumentList:last-of-type {
  margin-right: -5px;
}

.InstrumentList__TopBottom-InstrumentList--single-column {
  margin: 5px -5px -5px;
}

.InstrumentList__TopBottom-InstrumentList--single-column:first-of-type {
  margin-top: -5px;
}

.InstrumentList__TopBottom-InstrumentList__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.InstrumentList__TopBottom-InstrumentList__title {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.23px;
  text-transform: uppercase;
}

@media screen and (max-width: 767px) {
  .InstrumentList__TopBottom-InstrumentList__title {
    font-size: 13px;
  }
}

.InstrumentList__TopBottom-InstrumentList__delayed {
  font-size: 13px;
  font-weight: 400;
  color: #777;
  letter-spacing: 0.22px;
}

.InstrumentList__TopBottom-InstrumentList__list {
  position: relative;
  margin: 6px 0 0;
  padding: 0;
  list-style-type: none;
  height: 228px;
}

@font-face {
  font-family: 'MaisonNeue';
  src: url(/build/fonts/MaisonNeue-Bold.6fc354b0.woff2) format("woff2"), url(/build/fonts/MaisonNeue-Bold.6a322e51.woff) format("woff");
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: 'MaisonNeue';
  src: url(/build/fonts/MaisonNeue-Demi.bf14a265.woff2) format("woff2"), url(/build/fonts/MaisonNeue-Demi.4712c911.woff) format("woff");
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: 'MaisonNeue';
  src: url(/build/fonts/MaisonNeue-Medium.2dcf904a.woff2) format("woff2"), url(/build/fonts/MaisonNeue-Medium.0cdea784.woff) format("woff");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: 'MaisonNeue';
  src: url(/build/fonts/MaisonNeue-Book.97d1ff03.woff2) format("woff2"), url(/build/fonts/MaisonNeue-Book.ade3fbf5.woff) format("woff");
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: 'neue-haas-grotesk-text';
  src: url(/build/fonts/neue-haas-grotesk-text-bold.8fef718b.woff2) format("woff2"), url(/build/fonts/neue-haas-grotesk-text-bold.ad5ff2c2.woff) format("woff"), url(/build/fonts/neue-haas-grotesk-text-bold.4cf179d5.eot) format("opentype");
  font-style: normal;
  font-weight: 900;
}

@font-face {
  font-family: 'neue-haas-grotesk-text';
  src: url(/build/fonts/neue-haas-grotesk-text-demi.caee6aa5.woff2) format("woff2"), url(/build/fonts/neue-haas-grotesk-text-demi.afe4a48e.woff) format("woff"), url(/build/fonts/neue-haas-grotesk-text-demi.b40484f2.eot) format("opentype");
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "neue-haas-grotesk-text";
  src: url(/build/fonts/neue-haas-grotesk-text-medium.19f3fd07.woff2) format("woff2"), url(/build/fonts/neue-haas-grotesk-text-medium.02fa2b77.woff) format("woff"), url(/build/fonts/neue-haas-grotesk-text-medium.94eb2bbe.eot) format("opentype");
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "neue-haas-grotesk-text";
  src: url(/build/fonts/neue-haas-grotesk-text-regular.7c2fd7af.woff2) format("woff2"), url(/build/fonts/neue-haas-grotesk-text-regular.b3c552f6.woff) format("woff"), url(/build/fonts/neue-haas-grotesk-text-regular.e6d6ef6f.eot) format("opentype");
  font-style: normal;
  font-weight: 400;
}

.TopBottom__TopBottom {
  box-sizing: content-box;
  position: relative;
  font-family: 'MaisonNeue';
  color: #333;
  height: 256px;
  background: #f7f7f7;
  padding: 23px 20px 30px;
}

.TopBottom__TopBottom--single-column {
  height: 526px;
}

@media screen and (max-width: 1023px) {
  .TopBottom__TopBottom {
    padding: 23px 40px 30px;
  }
}

@media screen and (max-width: 767px) {
  .TopBottom__TopBottom {
    padding: 23px 6px 30px;
  }
}

.TopBottom__TopBottom__container {
  position: relative;
  height: 100%;
}

.TopBottom__TopBottom__error {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-family: 'MaisonNeue';
  font-weight: 300;
  font-size: 16px;
  text-align: center;
  background: inherit;
}

.TopBottom__TopBottom__lists {
  position: relative;
  display: flex;
  flex-direction: row;
}

.TopBottom__TopBottom__lists--single-column {
  flex-direction: column;
}

.TopBottom__TopBottom__lists-enter, .TopBottom__TopBottom__error-enter {
  opacity: 0;
  position: relative;
  z-index: 2;
}

.TopBottom__TopBottom__lists-enter-active, .TopBottom__TopBottom__error-enter-active {
  opacity: 1;
  transition: opacity 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.TopBottom__TopBottom__lists-exit, .TopBottom__TopBottom__error-exit {
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
}

.TopBottom__TopBottom__lists-exit-active, .TopBottom__TopBottom__error-exit-active {
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.47, 0, 0.745, 0.715);
}

.LinkButton__linkButton {
  text-decoration: none;
  text-align: center;
  line-height: 38px;
  padding: 0;
  cursor: pointer;
  -webkit-appearance: none;
  position: relative;
  display: block;
  height: 42px;
  width: 100%;
  font-family: 'MaisonNeue';
  font-weight: bold;
  font-size: 15px;
  color: #0177ff;
  background-color: transparent;
  border: 1px solid #0177ff;
  border-radius: 6px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  transition: color 0.1s linear, background-color 0.1s linear, border-color 0.1s linear;
}

.LinkButton__linkButton:hover {
  color: #fff;
  background-color: #3492ff;
  border-color: #3492ff;
}

.LinkButton__linkButton--large {
  height: 52px;
}

.LinkButton__linkButton--primary {
  background: #0177ff;
  border: 1px solid transparent;
  color: #fff;
}

.LinkButton__linkButton--danger {
  background-color: #fd636f;
  border: 1px solid transparent;
  color: #fff;
}

.LinkButton__linkButton--danger:hover {
  background-color: #fd3041;
  border-color: #fd3041;
}

.LinkButton__linkButton-enter {
  opacity: 0;
}

.LinkButton__linkButton-enter-active {
  opacity: 1;
  transition: opacity 0.2s linear;
}

.LinkButton__linkButton-exit {
  opacity: 1;
}

.LinkButton__linkButton-exit-active {
  opacity: 0;
  transition: opacity 0.2s linear;
}

.TopBottomIndex__seeAll {
  max-width: 300px;
  margin: -21px auto;
  cursor: pointer;
  transition: opacity 0.1s linear 0.1s, margin-bottom 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0.1s;
}

@font-face {
  font-family: 'MaisonNeue';
  src: url(/build/fonts/MaisonNeue-Bold.6fc354b0.woff2) format("woff2"), url(/build/fonts/MaisonNeue-Bold.6a322e51.woff) format("woff");
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: 'MaisonNeue';
  src: url(/build/fonts/MaisonNeue-Demi.bf14a265.woff2) format("woff2"), url(/build/fonts/MaisonNeue-Demi.4712c911.woff) format("woff");
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: 'MaisonNeue';
  src: url(/build/fonts/MaisonNeue-Medium.2dcf904a.woff2) format("woff2"), url(/build/fonts/MaisonNeue-Medium.0cdea784.woff) format("woff");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: 'MaisonNeue';
  src: url(/build/fonts/MaisonNeue-Book.97d1ff03.woff2) format("woff2"), url(/build/fonts/MaisonNeue-Book.ade3fbf5.woff) format("woff");
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: 'neue-haas-grotesk-text';
  src: url(/build/fonts/neue-haas-grotesk-text-bold.8fef718b.woff2) format("woff2"), url(/build/fonts/neue-haas-grotesk-text-bold.ad5ff2c2.woff) format("woff"), url(/build/fonts/neue-haas-grotesk-text-bold.4cf179d5.eot) format("opentype");
  font-style: normal;
  font-weight: 900;
}

@font-face {
  font-family: 'neue-haas-grotesk-text';
  src: url(/build/fonts/neue-haas-grotesk-text-demi.caee6aa5.woff2) format("woff2"), url(/build/fonts/neue-haas-grotesk-text-demi.afe4a48e.woff) format("woff"), url(/build/fonts/neue-haas-grotesk-text-demi.b40484f2.eot) format("opentype");
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "neue-haas-grotesk-text";
  src: url(/build/fonts/neue-haas-grotesk-text-medium.19f3fd07.woff2) format("woff2"), url(/build/fonts/neue-haas-grotesk-text-medium.02fa2b77.woff) format("woff"), url(/build/fonts/neue-haas-grotesk-text-medium.94eb2bbe.eot) format("opentype");
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "neue-haas-grotesk-text";
  src: url(/build/fonts/neue-haas-grotesk-text-regular.7c2fd7af.woff2) format("woff2"), url(/build/fonts/neue-haas-grotesk-text-regular.b3c552f6.woff) format("woff"), url(/build/fonts/neue-haas-grotesk-text-regular.e6d6ef6f.eot) format("opentype");
  font-style: normal;
  font-weight: 400;
}

.StockHeader__StockHeader {
  font-family: 'MaisonNeue';
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.StockHeader__StockHeader__wrapper {
  position: relative;
  height: 130px;
  margin: 0 20px 3px;
}

@media screen and (max-width: 767px) {
  .StockHeader__StockHeader__wrapper {
    margin: 0 40px 3px;
  }
}

@media screen and (max-width: 543px) {
  .StockHeader__StockHeader__wrapper {
    height: 125px;
    margin: 0 20px 3px;
  }
}

.StockHeader__StockHeader__wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background-image: linear-gradient(to right, #333 34%, rgba(0, 0, 0, 0) 0%);
  background-position: bottom;
  background-size: 3px 1px;
  background-repeat: repeat-x;
}

.StockHeader__StockHeader__name {
  margin: 0;
  font-family: 'neue-haas-grotesk-text';
  font-size: 24px;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.71px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media screen and (max-width: 543px) {
  .StockHeader__StockHeader__name {
    font-size: 22px;
    letter-spacing: 0.65px;
  }
}

.StockHeader__StockHeader__exchange {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.44px;
  text-transform: uppercase;
}

@media screen and (max-width: 543px) {
  .StockHeader__StockHeader__exchange {
    font-size: 11px;
    letter-spacing: 0.4px;
  }
}

.StockHeader__StockHeader__columns {
  display: flex;
  justify-content: space-between;
}

.StockHeader__StockHeader__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
  margin-right: 15px;
}

.StockHeader__StockHeader__right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  text-align: right;
  overflow: hidden;
}

.StockHeader__StockHeader__value {
  font-size: 44px;
  font-weight: 700;
  color: #333;
}

@media screen and (max-width: 543px) {
  .StockHeader__StockHeader__value {
    font-size: 40px;
  }
}

.StockHeader__StockHeader__value__currency {
  margin-left: 10px;
  font-weight: 300;
  font-size: 16px;
}

@media screen and (max-width: 543px) {
  .StockHeader__StockHeader__value__currency {
    margin-left: 8px;
    font-size: 14px;
  }
}

.StockHeader__StockHeader__change {
  margin-top: -4px;
  font-size: 14px;
  font-weight: 300;
  color: #333;
}

.StockHeader__StockHeader__change--negative {
  color: #fd3041;
}

.StockHeader__StockHeader__change--positive {
  color: #2bd18f;
}

.StockHeader__StockHeader__change__arrow {
  margin-left: 6px;
  transform: scale(0.9);
}

.StockHeader__StockHeader__symbol {
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 0.73px;
  color: #333;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media screen and (max-width: 543px) {
  .StockHeader__StockHeader__symbol {
    font-size: 16px;
    letter-spacing: 0.69px;
  }
}

.StockHeader__StockHeader__timestamp {
  margin-top: -6px;
  white-space: nowrap;
  overflow: hidden;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.52px;
  color: #777;
}

@media screen and (max-width: 543px) {
  .StockHeader__StockHeader__timestamp {
    font-size: 11px;
    letter-spacing: 0.47px;
  }
}

@media screen and (max-width: 350px) {
  .StockHeader__StockHeader__timestamp__label {
    display: none;
  }
}

.StockHeader__StockHeader__error {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-family: 'MaisonNeue';
  font-weight: 300;
  font-size: 16px;
  text-align: center;
  background: inherit;
}

.StockHeader__StockHeader-enter, .StockHeader__StockHeader__error-enter {
  opacity: 0;
  position: relative;
  z-index: 2;
}

.StockHeader__StockHeader-enter-active, .StockHeader__StockHeader__error-enter-active {
  opacity: 1;
  transition: opacity 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.StockHeader__StockHeader-exit, .StockHeader__StockHeader__error-exit {
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
}

.StockHeader__StockHeader-exit-active, .StockHeader__StockHeader__error-exit-active {
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.47, 0, 0.745, 0.715);
}

@font-face {
  font-family: 'MaisonNeue';
  src: url(/build/fonts/MaisonNeue-Bold.6fc354b0.woff2) format("woff2"), url(/build/fonts/MaisonNeue-Bold.6a322e51.woff) format("woff");
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: 'MaisonNeue';
  src: url(/build/fonts/MaisonNeue-Demi.bf14a265.woff2) format("woff2"), url(/build/fonts/MaisonNeue-Demi.4712c911.woff) format("woff");
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: 'MaisonNeue';
  src: url(/build/fonts/MaisonNeue-Medium.2dcf904a.woff2) format("woff2"), url(/build/fonts/MaisonNeue-Medium.0cdea784.woff) format("woff");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: 'MaisonNeue';
  src: url(/build/fonts/MaisonNeue-Book.97d1ff03.woff2) format("woff2"), url(/build/fonts/MaisonNeue-Book.ade3fbf5.woff) format("woff");
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: 'neue-haas-grotesk-text';
  src: url(/build/fonts/neue-haas-grotesk-text-bold.8fef718b.woff2) format("woff2"), url(/build/fonts/neue-haas-grotesk-text-bold.ad5ff2c2.woff) format("woff"), url(/build/fonts/neue-haas-grotesk-text-bold.4cf179d5.eot) format("opentype");
  font-style: normal;
  font-weight: 900;
}

@font-face {
  font-family: 'neue-haas-grotesk-text';
  src: url(/build/fonts/neue-haas-grotesk-text-demi.caee6aa5.woff2) format("woff2"), url(/build/fonts/neue-haas-grotesk-text-demi.afe4a48e.woff) format("woff"), url(/build/fonts/neue-haas-grotesk-text-demi.b40484f2.eot) format("opentype");
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "neue-haas-grotesk-text";
  src: url(/build/fonts/neue-haas-grotesk-text-medium.19f3fd07.woff2) format("woff2"), url(/build/fonts/neue-haas-grotesk-text-medium.02fa2b77.woff) format("woff"), url(/build/fonts/neue-haas-grotesk-text-medium.94eb2bbe.eot) format("opentype");
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "neue-haas-grotesk-text";
  src: url(/build/fonts/neue-haas-grotesk-text-regular.7c2fd7af.woff2) format("woff2"), url(/build/fonts/neue-haas-grotesk-text-regular.b3c552f6.woff) format("woff"), url(/build/fonts/neue-haas-grotesk-text-regular.e6d6ef6f.eot) format("opentype");
  font-style: normal;
  font-weight: 400;
}

.StockSlider__stockSlider {
  margin: 0;
  line-height: 35px;
  height: 39px;
  background-color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid #d8d8d8;
  font-style: normal;
  font-stretch: normal;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  width: 100%;
}

.StockSlider__inner {
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
  width: 100%;
  height: 35px;
  position: relative;
}

.StockSlider__inner:hover .StockSlider__stock {
  animation-play-state: paused;
}

.StockSlider__content {
  position: absolute;
}

.StockSlider__indexStockSlider {
  display: flex;
  border-bottom: 0;
}

.StockSlider__indexStockSlider .StockSlider__staticLink {
  position: relative;
}

.StockSlider__indexStockSlider .StockSlider__staticLink_anchor {
  font-size: 12px;
  font-weight: 400;
  color: #333;
  padding: 5px 5px 5px 0;
  text-decoration: none;
}

.StockSlider__indexStockSlider .StockSlider__staticLink::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 22px;
  border-right: 1px solid #333;
  position: absolute;
  right: 0;
  top: 7px;
}

.StockSlider__indexStockSlider .StockSlider__inner {
  position: relative;
}

.StockSlider__indexStockSlider .StockSlider__inner::before, .StockSlider__indexStockSlider .StockSlider__inner::after {
  content: '';
  background: #fff;
  height: 100%;
  width: 25px;
  display: inline-block;
  position: absolute;
  z-index: 1;
  top: 0;
}

.StockSlider__indexStockSlider .StockSlider__inner::before {
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0.6) 32%, rgba(255, 255, 255, 0.4) 49%, rgba(255, 255, 255, 0) 100%);
  left: 0;
}

.StockSlider__indexStockSlider .StockSlider__inner::after {
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 49%, rgba(255, 255, 255, 0.6) 65%, white 100%);
  right: 0;
}

.StockSlider__indexStockSlider .StockSlider__inner .StockSlider__content {
  animation-duration: 120s;
}

@keyframes StockSlider__slide {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.StockSlider__indexStockSlider .StockSlider__inner .StockSlider__content .StockSlider__stock__data {
  padding-top: 0;
  margin-left: 5px;
  margin-right: 15px;
}

.StockSlider__stock {
  font-size: 0;
  font-family: 'neue-haas-grotesk-text';
  display: inline-block;
  text-transform: uppercase;
  animation-name: StockSlider__slide;
  animation-duration: 22s;
  animation-delay: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes StockSlider__slide {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.StockSlider__stock__data {
  font-size: 12px;
  font-weight: 400;
  margin-right: 20px;
  padding-top: 2px;
  color: #333;
  display: inline-block;
}

.StockSlider__stock__data > div {
  transition: width 300ms ease-in;
}

.StockSlider__stock__label {
  display: inline-block;
  font-weight: 500;
}

.StockSlider__stock__index {
  font-weight: 500;
  margin-right: 2px;
}

.StockSlider__stock__value {
  min-width: 47px;
  display: inline-block;
  margin-left: 8px;
  font-weight: 400;
  font-family: 'sans-serif';
}

.StockSlider__stock__value--negative, .StockSlider__stock__value--positive {
  padding-left: 4px;
}

.StockSlider__stock__value--negative::after, .StockSlider__stock__value--positive::after {
  content: '';
  width: 0;
  height: 0;
  margin-left: 5px;
  display: inline-block;
  position: relative;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
}

.StockSlider__stock__value--negative {
  color: #fd3041;
}

.StockSlider__stock__value--negative::after {
  border-top: 10px solid #fd3041;
  margin-bottom: -1px;
}

.StockSlider__stock__value--positive {
  color: #2bd18f;
}

.StockSlider__stock__value--positive::after {
  border-bottom: 10px solid #2bd18f;
}

.CombinedInstrumentWidgets__IndexSelector {
  background: #fff;
  padding: 20px 0;
}

.CombinedInstrumentWidgets__IndexSelector > ul {
  margin-bottom: 0;
}

.FadeIn_QuoteHistory__FadeIn {
  position: relative;
}

.FadeIn_QuoteHistory__FadeIn-enter {
  opacity: 0;
}

.FadeIn_QuoteHistory__FadeIn-enter-active {
  opacity: 1;
  transition: opacity 0.2s linear;
}

.FadeIn_QuoteHistory__FadeIn--absolute.FadeIn_QuoteHistory__FadeIn-exit {
  position: absolute;
  top: 0;
  left: 0;
}

.FadeIn_QuoteHistory__FadeIn-exit {
  opacity: 1;
}

.FadeIn_QuoteHistory__FadeIn-exit-active {
  opacity: 0;
  transition: opacity 0.2s linear;
}

.SortArrow__SortArrow {
  width: 7px;
  height: 9px;
  vertical-align: baseline;
  transform: translateY(-0.5px);
}

.SortArrow__SortArrow--reversed {
  transform: translateY(-0.5px) rotate(180deg);
}

.SortArrow__SortArrow__path {
  fill: inherit;
}

.QuoteHistoryTable__QuoteHistoryTable {
  position: relative;
  padding-bottom: 0;
  background: #fff;
  transition: padding-bottom 0.2s linear;
}

.QuoteHistoryTable__QuoteHistoryTable::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  height: 30px;
  background: #333;
}

.QuoteHistoryTable__QuoteHistoryTable--expandable {
  padding-bottom: 21px;
  overflow: auto;
}

.QuoteHistoryTable__QuoteHistoryTable__header th.QuoteHistoryTable__QuoteHistoryTable__header__column--sortable,
.QuoteHistoryTable__QuoteHistoryTable__header td.QuoteHistoryTable__QuoteHistoryTable__header__column--sortable {
  cursor: pointer;
}

.QuoteHistoryTable__QuoteHistoryTable__header th:hover .QuoteHistoryTable__QuoteHistoryTable__header__sortArrow,
.QuoteHistoryTable__QuoteHistoryTable__header td:hover .QuoteHistoryTable__QuoteHistoryTable__header__sortArrow {
  fill: #fff;
  opacity: 1;
}

.QuoteHistoryTable__QuoteHistoryTable__header__label {
  display: flex;
  align-items: center;
  height: 30px;
  line-height: 1;
}

.QuoteHistoryTable__QuoteHistoryTable__header__label--rightAligned {
  flex-direction: row-reverse;
}

.QuoteHistoryTable__QuoteHistoryTable__header__label--rightAligned .QuoteHistoryTable__QuoteHistoryTable__header__sortArrow {
  margin-left: 0;
  margin-right: 5px;
}

.QuoteHistoryTable__QuoteHistoryTable__header__sortArrow {
  fill: #fff;
  opacity: 0;
  transition: fill 0.1s linear, opacity 0.1s linear;
  margin-left: 5px;
}

.QuoteHistoryTable__QuoteHistoryTable__header__sortArrow--active {
  fill: #0177ff !important;
  opacity: 1;
}

.QuoteHistoryTable__QuoteHistoryTable__table {
  background: #fff;
}

.QuoteHistoryTable__QuoteHistoryTable__expand {
  max-width: 300px;
  margin: -21px auto;
  cursor: pointer;
  transition: opacity 0.1s linear 0.1s, margin-bottom 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0.1s;
}

.QuoteHistoryTable__QuoteHistoryTable__expand--hidden {
  opacity: 0;
  margin-bottom: -21px;
  pointer-events: none;
  transition: opacity 0.1s linear, margin-bottom 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.CommoditiesQuoteHistory__CommoditiesQuoteHistory {
  position: relative;
  min-height: 200px;
}

.CommoditiesQuoteHistory__CommoditiesQuoteHistory__throbber {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  z-index: 10;
  pointer-events: none;
}

.CommoditiesQuoteHistory__CommoditiesQuoteHistory__last {
  min-width: 85px;
}

.CommoditiesQuoteHistory__CommoditiesQuoteHistory__change {
  min-width: 95px;
}

.CommoditiesQuoteHistory__CommoditiesQuoteHistory__change_1week, .CommoditiesQuoteHistory__CommoditiesQuoteHistory__change_1month, .CommoditiesQuoteHistory__CommoditiesQuoteHistory__change_3months, .CommoditiesQuoteHistory__CommoditiesQuoteHistory__change_12months {
  min-width: 94px;
}

.CommoditiesQuoteHistory__CommoditiesQuoteHistory__updatedAt {
  min-width: 95px;
}

.CryptocurrenciesQuoteHistory__CryptocurrenciesQuoteHistory {
  position: relative;
  min-height: 200px;
}

.CryptocurrenciesQuoteHistory__CryptocurrenciesQuoteHistory__throbber {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  z-index: 10;
  pointer-events: none;
}

.CryptocurrenciesQuoteHistory__CryptocurrenciesQuoteHistory__content {
  position: relative;
}

.CryptocurrenciesQuoteHistory__CryptocurrenciesQuoteHistory__last, .CryptocurrenciesQuoteHistory__CryptocurrenciesQuoteHistory__change_1hour, .CryptocurrenciesQuoteHistory__CryptocurrenciesQuoteHistory__change_1week {
  min-width: 85px;
}

.CryptocurrenciesQuoteHistory__CryptocurrenciesQuoteHistory__marketCap {
  min-width: 130px;
}

.CryptocurrenciesQuoteHistory__CryptocurrenciesQuoteHistory__updatedAt {
  min-width: 110px;
}

.CurrencyCrossesQuoteHistory__CurrencyCrossesQuoteHistory {
  position: relative;
  min-height: 200px;
}

.CurrencyCrossesQuoteHistory__CurrencyCrossesQuoteHistory__header {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 150px;
  background: linear-gradient(213.57deg, #fff 0%, #f7f7f7 100%);
  padding: 0 20px;
}

@media screen and (max-width: 1023px) {
  .CurrencyCrossesQuoteHistory__CurrencyCrossesQuoteHistory__header {
    padding: 0 40px;
  }
}

@media screen and (max-width: 543px) {
  .CurrencyCrossesQuoteHistory__CurrencyCrossesQuoteHistory__header {
    padding: 0 20px;
  }
}

.CurrencyCrossesQuoteHistory__CurrencyCrossesQuoteHistory__title {
  font-family: 'neue-haas-grotesk-text';
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.2px;
  color: #333;
  margin: 0 0 15px;
}

.CurrencyCrossesQuoteHistory__CurrencyCrossesQuoteHistory__select {
  position: relative;
  max-width: 460px;
}

.CurrencyCrossesQuoteHistory__CurrencyCrossesQuoteHistory__throbber {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  z-index: 10;
  pointer-events: none;
}

@media screen and (max-width: 575px) {
  .CurrencyCrossesQuoteHistory__CurrencyCrossesQuoteHistory__throbber {
    transform: none;
    top: -44px;
    right: 0;
  }
}

.CurrencyCrossesQuoteHistory__CurrencyCrossesQuoteHistory__last {
  min-width: 70px;
}

.CurrencyCrossesQuoteHistory__CurrencyCrossesQuoteHistory__change {
  min-width: 80px;
}

.CurrencyCrossesQuoteHistory__CurrencyCrossesQuoteHistory__change_1week, .CurrencyCrossesQuoteHistory__CurrencyCrossesQuoteHistory__change_1month, .CurrencyCrossesQuoteHistory__CurrencyCrossesQuoteHistory__change_3months, .CurrencyCrossesQuoteHistory__CurrencyCrossesQuoteHistory__change_12months {
  min-width: 90px;
}

.CurrencyCrossesQuoteHistory__CurrencyCrossesQuoteHistory__updatedAt {
  min-width: 85px;
}

.IndexQuoteHistory__IndexQuoteHistory {
  position: relative;
  min-height: 200px;
}

.IndexQuoteHistory__IndexQuoteHistory__header {
  position: relative;
  height: 80px;
  line-height: 80px;
  background: linear-gradient(213.57deg, #fff 0%, #f7f7f7 100%);
}

.IndexQuoteHistory__IndexQuoteHistory__title {
  font-family: 'neue-haas-grotesk-text';
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.2px;
  color: #333;
  margin: 0;
  padding-left: 20px;
}

@media screen and (max-width: 1023px) {
  .IndexQuoteHistory__IndexQuoteHistory__title {
    padding-left: 40px;
  }
}

@media screen and (max-width: 543px) {
  .IndexQuoteHistory__IndexQuoteHistory__title {
    padding-left: 20px;
  }
}

.IndexQuoteHistory__IndexQuoteHistory__delayed {
  position: absolute;
  bottom: 10px;
  right: 20px;
  font-family: 'MaisonNeue';
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.2px;
  color: #777;
  line-height: 1;
}

@media screen and (max-width: 1023px) {
  .IndexQuoteHistory__IndexQuoteHistory__delayed {
    right: 40px;
  }
}

@media screen and (max-width: 543px) {
  .IndexQuoteHistory__IndexQuoteHistory__delayed {
    right: 20px;
  }
}

.IndexQuoteHistory__IndexQuoteHistory__throbber {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  z-index: 10;
  pointer-events: none;
}

@media screen and (max-width: 1023px) {
  .IndexQuoteHistory__IndexQuoteHistory__throbber {
    right: 40px;
  }
}

@media screen and (max-width: 543px) {
  .IndexQuoteHistory__IndexQuoteHistory__throbber {
    right: 20px;
  }
}

.IndexQuoteHistory__IndexQuoteHistory__table__name {
  min-width: 175px !important;
  max-width: 175px !important;
}

@media screen and (max-width: 543px) {
  .IndexQuoteHistory__IndexQuoteHistory__table__name {
    min-width: 140px !important;
    max-width: 140px !important;
  }
}

.IndexQuoteHistory__IndexQuoteHistory__table__last {
  min-width: 84px;
  padding-left: 220px !important;
}

@media screen and (max-width: 1023px) {
  .IndexQuoteHistory__IndexQuoteHistory__table__last {
    padding-left: 240px !important;
  }
}

@media screen and (max-width: 543px) {
  .IndexQuoteHistory__IndexQuoteHistory__table__last {
    padding-left: 185px !important;
  }
}

.IndexQuoteHistory__IndexQuoteHistory__table__changeInPercent {
  min-width: 104px;
}

.IndexQuoteHistory__IndexQuoteHistory__table__change, .IndexQuoteHistory__IndexQuoteHistory__table__volume {
  min-width: 89px;
}

.IndexQuoteHistory__IndexQuoteHistory__table__bid, .IndexQuoteHistory__IndexQuoteHistory__table__ask {
  min-width: 84px;
}

.IndexQuoteHistory__IndexQuoteHistory__table__updatedAt {
  min-width: 89px;
}

.IndexQuoteHistory__IndexQuoteHistory__table thead::before {
  width: 210px !important;
}

@media screen and (max-width: 1023px) {
  .IndexQuoteHistory__IndexQuoteHistory__table thead::before {
    width: 230px !important;
  }
}

@media screen and (max-width: 543px) {
  .IndexQuoteHistory__IndexQuoteHistory__table thead::before {
    width: 175px !important;
  }
}

.IndexQuoteHistory__IndexQuoteHistory__table tbody::before {
  left: 195px !important;
}

@media screen and (max-width: 1023px) {
  .IndexQuoteHistory__IndexQuoteHistory__table tbody::before {
    left: 215px !important;
  }
}

@media screen and (max-width: 543px) {
  .IndexQuoteHistory__IndexQuoteHistory__table tbody::before {
    left: 160px !important;
  }
}

.InstrumentQuoteHistory__InstrumentQuoteHistory {
  position: relative;
  min-height: 60px;
}

.InstrumentQuoteHistory__InstrumentQuoteHistory__heading {
  font-family: 'neue-haas-grotesk-text';
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.2px;
  color: #333;
  margin: 0;
  padding: 27px 20px;
  background: linear-gradient(213.57deg, #fff 0%, #f7f7f7 100%);
}

@media screen and (max-width: 1023px) {
  .InstrumentQuoteHistory__InstrumentQuoteHistory__heading {
    padding: 27px 40px;
  }
}

@media screen and (max-width: 543px) {
  .InstrumentQuoteHistory__InstrumentQuoteHistory__heading {
    padding: 27px 20px;
  }
}

.InstrumentQuoteHistory__InstrumentQuoteHistory__table tbody th::before,
.InstrumentQuoteHistory__InstrumentQuoteHistory__table tbody td::before {
  bottom: auto;
  top: 29px;
}

.InstrumentQuoteHistory__InstrumentQuoteHistory__content {
  position: relative;
}

.InstrumentQuoteHistory__InstrumentQuoteHistory__period-1week, .InstrumentQuoteHistory__InstrumentQuoteHistory__period-1month, .InstrumentQuoteHistory__InstrumentQuoteHistory__period-3months, .InstrumentQuoteHistory__InstrumentQuoteHistory__period-1year, .InstrumentQuoteHistory__InstrumentQuoteHistory__period-5years {
  height: 30px;
  line-height: 30px !important;
  padding-top: 0 !important;
  font-size: 12px !important;
}

.InstrumentQuoteHistory__InstrumentQuoteHistory__period-1month, .InstrumentQuoteHistory__InstrumentQuoteHistory__period-3months, .InstrumentQuoteHistory__InstrumentQuoteHistory__period-1year, .InstrumentQuoteHistory__InstrumentQuoteHistory__period-5years {
  width: 25%;
  text-align: right;
}

.InstrumentQuoteHistory__InstrumentQuoteHistory__period-1week {
  width: 0%;
}

thead .InstrumentQuoteHistory__InstrumentQuoteHistory__period-1week {
  text-align: right;
}

.MarketQuoteHistory__MarketQuoteHistory {
  position: relative;
  min-height: 200px;
}

.MarketQuoteHistory__MarketQuoteHistory__header {
  position: relative;
  height: 80px;
  line-height: 80px;
  background: linear-gradient(213.57deg, #fff 0%, #f7f7f7 100%);
}

.MarketQuoteHistory__MarketQuoteHistory__title {
  font-family: 'neue-haas-grotesk-text';
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.2px;
  color: #333;
  margin: 0;
  padding-left: 20px;
}

@media screen and (max-width: 1023px) {
  .MarketQuoteHistory__MarketQuoteHistory__title {
    padding-left: 40px;
  }
}

@media screen and (max-width: 543px) {
  .MarketQuoteHistory__MarketQuoteHistory__title {
    padding-left: 20px;
  }
}

.MarketQuoteHistory__MarketQuoteHistory__delayed {
  position: absolute;
  bottom: 10px;
  right: 20px;
  font-family: 'MaisonNeue';
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.2px;
  color: #777;
  line-height: 1;
}

@media screen and (max-width: 1023px) {
  .MarketQuoteHistory__MarketQuoteHistory__delayed {
    right: 40px;
  }
}

@media screen and (max-width: 543px) {
  .MarketQuoteHistory__MarketQuoteHistory__delayed {
    right: 20px;
  }
}

.MarketQuoteHistory__MarketQuoteHistory__throbber {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  z-index: 10;
  pointer-events: none;
}

@media screen and (max-width: 1023px) {
  .MarketQuoteHistory__MarketQuoteHistory__throbber {
    right: 40px;
  }
}

@media screen and (max-width: 543px) {
  .MarketQuoteHistory__MarketQuoteHistory__throbber {
    right: 20px;
  }
}

.MarketQuoteHistory__MarketQuoteHistory__last {
  min-width: 70px;
}

.MarketQuoteHistory__MarketQuoteHistory__change {
  min-width: 105px;
}

.MarketQuoteHistory__MarketQuoteHistory__change_1week, .MarketQuoteHistory__MarketQuoteHistory__change_1month, .MarketQuoteHistory__MarketQuoteHistory__change_3months, .MarketQuoteHistory__MarketQuoteHistory__change_12months {
  min-width: 90px;
}

.MarketQuoteHistory__MarketQuoteHistory__updatedAt {
  min-width: 110px;
}

.MutualFundsQuoteHistory__MutualFundsQuoteHistory {
  position: relative;
  min-height: 200px;
}

.MutualFundsQuoteHistory__MutualFundsQuoteHistory__header {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 150px;
  background: linear-gradient(213.57deg, #fff 0%, #f7f7f7 100%);
  padding: 0 20px;
}

@media screen and (max-width: 1023px) {
  .MutualFundsQuoteHistory__MutualFundsQuoteHistory__header {
    padding: 0 40px;
  }
}

@media screen and (max-width: 543px) {
  .MutualFundsQuoteHistory__MutualFundsQuoteHistory__header {
    padding: 0 20px;
  }
}

.MutualFundsQuoteHistory__MutualFundsQuoteHistory__search {
  position: relative;
  display: flex;
  flex-direction: row;
  height: 50px;
  max-width: 460px;
  font-family: 'MaisonNeue';
  font-weight: 400;
  font-size: 16px;
  color: #777;
  background: #fff;
  border: 1px solid #777;
  border-radius: 2px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: border-color 0.1s linear, box-shadow 0.1s linear, transform 0.125s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.MutualFundsQuoteHistory__MutualFundsQuoteHistory__search--focused {
  border-color: #43a4ff;
}

.MutualFundsQuoteHistory__MutualFundsQuoteHistory__search input {
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  border: 0;
  background: none;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 11px;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
}

.MutualFundsQuoteHistory__MutualFundsQuoteHistory__search input::-webkit-outer-spin-button, .MutualFundsQuoteHistory__MutualFundsQuoteHistory__search input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.MutualFundsQuoteHistory__MutualFundsQuoteHistory__search input::-ms-clear {
  display: none;
}

.MutualFundsQuoteHistory__MutualFundsQuoteHistory__search__icon {
  position: absolute;
  bottom: 16px;
  right: 20px;
  width: 17px;
  height: 16px;
  fill: #333;
  pointer-events: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2017%2016%22%3E%0D%0A%0D%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20fill%3D%22%23333%22%20d%3D%22M7.77%2C12.05a5.19%2C5.19%2C0%2C0%2C1-3.56-1.38A4.55%2C4.55%2C0%2C0%2C1%2C4.21%2C4a5.25%2C5.25%2C0%2C0%2C1%2C7.12%2C0%2C4.55%2C4.55%2C0%2C0%2C1%2C0%2C6.71%2C5.19%2C5.19%2C0%2C0%2C1-3.56%2C1.38ZM17%2C14.13l-2.83-2.66a7%2C7%2C0%2C0%2C0-.9-9.33A8%2C8%2C0%2C0%2C0%2C7.77%2C0%2C8%2C8%2C0%2C0%2C0%2C2.28%2C2.14a7%2C7%2C0%2C0%2C0%2C0%2C10.35%2C8%2C8%2C0%2C0%2C0%2C5.49%2C2.14%2C8.13%2C8.13%2C0%2C0%2C0%2C4.41-1.29L15%2C16Z%22%20%2F%3E%0D%0A%0D%0A%20%20%20%20%3C%2Fsvg%3E");
}

.MutualFundsQuoteHistory__MutualFundsQuoteHistory__title {
  font-family: 'neue-haas-grotesk-text';
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.2px;
  color: #333;
  margin: 0 0 15px;
}

.MutualFundsQuoteHistory__MutualFundsQuoteHistory__throbber {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  z-index: 10;
  pointer-events: none;
}

@media screen and (max-width: 575px) {
  .MutualFundsQuoteHistory__MutualFundsQuoteHistory__throbber {
    transform: none;
    top: -44px;
    right: 0;
  }
}

.MutualFundsQuoteHistory__MutualFundsQuoteHistory__last {
  min-width: 70px;
}

.MutualFundsQuoteHistory__MutualFundsQuoteHistory__change {
  min-width: 80px;
}

.MutualFundsQuoteHistory__MutualFundsQuoteHistory__change_1week, .MutualFundsQuoteHistory__MutualFundsQuoteHistory__change_1month, .MutualFundsQuoteHistory__MutualFundsQuoteHistory__change_3months, .MutualFundsQuoteHistory__MutualFundsQuoteHistory__change_12months {
  min-width: 90px;
}

.MutualFundsQuoteHistory__MutualFundsQuoteHistory__updatedAt {
  min-width: 85px;
}

.BalanceHistoryTable__table__wrapper {
  position: relative;
}

.BalanceHistoryTable__table__heading {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  margin: 0;
  font-family: 'neue-haas-grotesk-text';
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.46px;
  color: #333;
}

@media screen and (max-width: 1023px) {
  .BalanceHistoryTable__table__heading {
    left: 40px;
  }
}

@media screen and (max-width: 543px) {
  .BalanceHistoryTable__table__heading {
    left: 20px;
  }
}

.BalanceHistoryTable__table__column {
  min-width: 80px;
}

.BalanceHistoryTable__table__badge {
  font-size: 11px;
  line-height: 1;
}

@media screen and (max-width: 543px) {
  .BalanceHistoryTable__table__badge {
    font-size: 10px;
  }
}

.BalanceDefinitionList__list {
  padding: 0 20px;
}

@media screen and (max-width: 1023px) {
  .BalanceDefinitionList__list {
    padding: 0 40px;
  }
}

@media screen and (max-width: 543px) {
  .BalanceDefinitionList__list {
    padding: 0 20px;
  }
}

.BalanceDefinitionList__list__wrapper {
  position: relative;
  z-index: 10;
  padding: 0 0 30px;
}

.BalanceDefinitionList__list__header {
  height: 50px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #efefef;
  margin-bottom: 26px;
  padding: 0 20px;
}

@media screen and (max-width: 1023px) {
  .BalanceDefinitionList__list__header {
    padding: 0 40px;
  }
}

@media screen and (max-width: 543px) {
  .BalanceDefinitionList__list__header {
    padding: 0 20px;
  }
}

.BalanceDefinitionList__list__heading {
  padding-top: 20px;
  margin: 0;
  font-family: 'neue-haas-grotesk-text';
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.46px;
  color: #333;
}

.Balance__wrapper {
  background-color: #fff;
}

.CashflowHistoryTable__table__wrapper {
  position: relative;
}

.CashflowHistoryTable__table__heading {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  margin: 0;
  font-family: 'neue-haas-grotesk-text';
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.46px;
  color: #333;
}

@media screen and (max-width: 1023px) {
  .CashflowHistoryTable__table__heading {
    left: 40px;
  }
}

@media screen and (max-width: 543px) {
  .CashflowHistoryTable__table__heading {
    left: 20px;
  }
}

.CashflowHistoryTable__table__column {
  min-width: 80px;
}

.CashflowHistoryTable__table__badge {
  font-size: 11px;
  line-height: 1;
}

@media screen and (max-width: 543px) {
  .CashflowHistoryTable__table__badge {
    font-size: 10px;
  }
}

.CashflowDefinitionList__list {
  padding: 0 20px;
}

@media screen and (max-width: 1023px) {
  .CashflowDefinitionList__list {
    padding: 0 40px;
  }
}

@media screen and (max-width: 543px) {
  .CashflowDefinitionList__list {
    padding: 0 20px;
  }
}

.CashflowDefinitionList__list__wrapper {
  position: relative;
  z-index: 10;
  padding: 0 0 30px;
}

.CashflowDefinitionList__list__header {
  height: 50px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #efefef;
  margin-bottom: 26px;
  padding: 0 20px;
}

@media screen and (max-width: 1023px) {
  .CashflowDefinitionList__list__header {
    padding: 0 40px;
  }
}

@media screen and (max-width: 543px) {
  .CashflowDefinitionList__list__header {
    padding: 0 20px;
  }
}

.CashflowDefinitionList__list__heading {
  padding-top: 20px;
  margin: 0;
  font-family: 'neue-haas-grotesk-text';
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.46px;
  color: #333;
}

.Cashflow__wrapper {
  background-color: #fff;
}

.ProfitabilityHistoryTable__table__wrapper {
  position: relative;
}

.ProfitabilityHistoryTable__table__heading {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  margin: 0;
  font-family: 'neue-haas-grotesk-text';
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.46px;
  color: #333;
}

@media screen and (max-width: 1023px) {
  .ProfitabilityHistoryTable__table__heading {
    left: 40px;
  }
}

@media screen and (max-width: 543px) {
  .ProfitabilityHistoryTable__table__heading {
    left: 20px;
  }
}

.ProfitabilityHistoryTable__table__column {
  min-width: 80px;
}

.ProfitabilityHistoryTable__table__badge {
  font-size: 11px;
  line-height: 1;
}

@media screen and (max-width: 543px) {
  .ProfitabilityHistoryTable__table__badge {
    font-size: 10px;
  }
}

.ProfitabilityDefinitionList__list {
  padding: 0 20px;
}

@media screen and (max-width: 1023px) {
  .ProfitabilityDefinitionList__list {
    padding: 0 40px;
  }
}

@media screen and (max-width: 543px) {
  .ProfitabilityDefinitionList__list {
    padding: 0 20px;
  }
}

.ProfitabilityDefinitionList__list__wrapper {
  position: relative;
  z-index: 10;
  padding: 0 0 30px;
}

.ProfitabilityDefinitionList__list__header {
  height: 50px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #efefef;
  margin-bottom: 26px;
  padding: 0 20px;
}

@media screen and (max-width: 1023px) {
  .ProfitabilityDefinitionList__list__header {
    padding: 0 40px;
  }
}

@media screen and (max-width: 543px) {
  .ProfitabilityDefinitionList__list__header {
    padding: 0 20px;
  }
}

.ProfitabilityDefinitionList__list__heading {
  padding-top: 20px;
  margin: 0;
  font-family: 'neue-haas-grotesk-text';
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.46px;
  color: #333;
}

.Profitability__wrapper {
  background-color: #fff;
}

.StockInformation__StockInformation__wrapper {
  background-color: #fff;
  padding: 15px 20px 25px;
}

.IndexInformation__IndexInformation__wrapper {
  background-color: #fff;
  padding: 15px 20px 25px;
}

.IndexInformation__IndexInformation__list {
  width: 100%;
}

.CurrencyInformation__CurrencyInformation__wrapper {
  background-color: #fff;
  padding: 15px 20px 25px;
}

.CryptoCurrencyInformation__CryptoCurrencyInformation__wrapper {
  background-color: #fff;
  padding: 15px 20px 25px;
}

.StockDividendInformation__StockDividendInformation__wrapper {
  background-color: #333;
  padding: 25px 20px 30px;
}

.StockDividendInformation__StockDividendInformation__header {
  margin-bottom: 26px;
}

.StockDividendInformation__StockDividendInformation__heading {
  margin: 0;
  font-family: 'neue-haas-grotesk-text';
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: #fff;
  letter-spacing: 0.2px;
}

.StockDividendInformation__StockDividendInformation__throbber {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin-left: 5px;
  width: 18px;
  height: 18px;
}

.StockDividendInformation__StockDividendInformation__date {
  margin-top: 5px;
  font-family: 'MaisonNeue';
  font-weight: 400;
  font-size: 11px;
  line-height: 1;
  min-height: 1em;
  color: #eee;
}

.StockDividendInformation__StockDividendInformation__list {
  width: 100%;
}

.StockValuationInformation__StockValuationInformation__wrapper {
  background-color: #fff;
  padding: 25px 20px 30px;
}

.StockValuationInformation__StockValuationInformation__header {
  margin-bottom: 26px;
}

.StockValuationInformation__StockValuationInformation__heading {
  margin: 0;
  font-family: 'neue-haas-grotesk-text';
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: #333;
  letter-spacing: 0.2px;
}

.StockValuationInformation__StockValuationInformation__throbber {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin-left: 5px;
  width: 18px;
  height: 18px;
}

.StockValuationInformation__StockValuationInformation__date {
  margin-top: 5px;
  font-family: 'MaisonNeue';
  font-weight: 400;
  font-size: 11px;
  min-height: 1em;
  line-height: 1;
  color: #777;
}

.StockValuationInformation__StockValuationInformation__list {
  width: 100%;
}

.OperativePerformanceInformation__OperativePerformanceInformation__wrapper {
  background-color: #fff;
  padding: 25px 20px 30px;
}

.OperativePerformanceInformation__OperativePerformanceInformation__header {
  margin-bottom: 26px;
}

.OperativePerformanceInformation__OperativePerformanceInformation__heading {
  position: relative;
  margin: 0;
  font-family: 'neue-haas-grotesk-text';
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: #333;
  letter-spacing: 0.2px;
}

.OperativePerformanceInformation__OperativePerformanceInformation__throbber {
  position: absolute;
  top: 6px;
  right: 0;
  width: 18px;
  height: 18px;
  opacity: 0;
  transition: opacity 0.2s linear;
}

.OperativePerformanceInformation__OperativePerformanceInformation__throbber::before {
  content: '';
  position: absolute;
  top: -5px;
  bottom: -5px;
  right: 0;
  width: 10px;
  background-image: linear-gradient(to left, #fff, rgba(255, 255, 255, 0));
  border-right: 25px solid #fff;
}

.OperativePerformanceInformation__OperativePerformanceInformation__throbber--visible {
  opacity: 1;
}

.OperativePerformanceInformation__OperativePerformanceInformation__date {
  margin-top: 5px;
  font-family: 'MaisonNeue';
  font-weight: 400;
  font-size: 11px;
  min-height: 1em;
  line-height: 1;
  color: #777;
}

.OperativePerformanceInformation__OperativePerformanceInformation__list {
  width: 100%;
}

.AboutListItem__item {
  padding-bottom: 10px;
  margin-bottom: 8px;
  background-image: url(/build/images/border.c99a4ecc.png);
  background-position: bottom;
  background-size: 3px 1px;
  background-repeat: repeat-x;
}

.AboutListItem__item:last-of-type {
  margin-bottom: 0;
}

.AboutListItem__item__heading {
  margin: 0;
  margin-bottom: 7px;
  font-family: 'MaisonNeue';
  font-weight: 700;
  font-size: 12px;
  line-height: 14px;
  text-transform: uppercase;
  color: #43a4ff;
}

.AboutListItem__item__content {
  margin: 0;
  font-family: 'MaisonNeue';
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.25px;
  line-height: 1;
}

.AboutListItem__item__content a {
  color: #43a4ff;
}

.AboutList__AboutList {
  background-color: #fff;
  width: 100%;
  padding: 30px 20px;
}

.AboutList__AboutList__wrapper {
  position: relative;
}

.AboutList__AboutList__throbberWrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 600px;
  user-select: none;
  pointer-events: none;
}

.AboutList__AboutList__list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.AboutList__AboutList__list__placeholder {
  height: 600px;
}

.AboutList__AboutList__heading {
  margin: 0;
  margin-bottom: 30px;
  font-family: 'neue-haas-grotesk-text';
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.2px;
  line-height: 1;
  color: #333;
}

.AboutList__AboutList__title {
  display: block;
}

.AboutList__AboutList .AboutList__AboutList__item--description {
  padding-bottom: 25px;
}

.AboutList__AboutList .AboutList__AboutList__item--description p {
  font-size: 17px;
  line-height: 1.5;
}

.AboutList__AboutList .AboutList__AboutList__item--members p:not(:last-child) {
  margin-bottom: 12px;
}

.AboutList__AboutList__fontPreload--maisonBold {
  font-family: 'MaisonNeue';
  font-weight: 700;
}

.AboutList__AboutList__fontPreload--maisonBook {
  font-family: 'MaisonNeue';
  font-weight: 300;
}

.AboutList__AboutList__fontPreload--groteskBold {
  font-family: 'neue-haas-grotesk-text';
  font-weight: 700;
}

.AboutList__AboutList__error {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'MaisonNeue';
  font-weight: 300;
  font-size: 16px;
  text-align: center;
  color: #333;
  opacity: 0;
  transition: opacity 0.2s linear;
}

.AboutList__AboutList__error--visible {
  opacity: 0.9;
}

.Table__table {
  width: 100%;
  border-spacing: 0;
  white-space: nowrap;
  text-align: right;
}

.Table__table__wrapper {
  position: relative;
}

.Table__table__transition {
  position: relative;
}

.Table__table thead {
  background-color: #333;
}

.Table__table thead tr {
  height: 30px;
}

.Table__table--alternativeHeader .Table__table thead tr {
  height: 50px;
}

.Table__table thead th,
.Table__table thead td {
  position: relative;
  z-index: 2;
  padding-top: 0;
  font-weight: 400;
  color: #f7f7f7;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.79px;
}

.Table__table--alternativeHeader .Table__table thead th, .Table__table--alternativeHeader
.Table__table thead td {
  padding-top: 22px;
  color: #333;
  line-height: 1.3;
  font-size: 12px;
}

@media screen and (max-width: 543px) {
  .Table__table--alternativeHeader .Table__table thead th, .Table__table--alternativeHeader
  .Table__table thead td {
    font-size: 11px;
  }
}

.Table__table thead .Table__table--alternativeHeader {
  height: 49px;
  border-bottom: 1px solid #efefef;
  background: #f7f7f7;
}

.Table__table tbody th {
  text-align: left;
}

.Table__table tbody th,
.Table__table tbody td {
  position: relative;
}

.Table__table tbody th a,
.Table__table tbody td a {
  color: #0177ff;
  transition: color 0.1s linear;
  text-decoration: none;
}

.Table__table tbody th a:hover,
.Table__table tbody td a:hover {
  color: #108bff;
}

.Table__table--borderToEdge .Table__table tbody th:first-child, .Table__table--borderToEdge
.Table__table tbody td:first-child {
  left: 0;
  padding-left: 20px;
}

@media screen and (max-width: 1023px) {
  .Table__table--borderToEdge .Table__table tbody th:first-child, .Table__table--borderToEdge
  .Table__table tbody td:first-child {
    padding-left: 40px;
  }
}

@media screen and (max-width: 543px) {
  .Table__table--borderToEdge .Table__table tbody th:first-child, .Table__table--borderToEdge
  .Table__table tbody td:first-child {
    padding-left: 20px;
  }
}

.Table__table tbody th::before,
.Table__table tbody td::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-image: url(/build/images/border.c99a4ecc.png);
  background-position: bottom;
  background-size: 3px 1px;
  background-repeat: repeat-x;
}

.Table__table--withFixedColumn--wide .Table__table tbody::before {
  left: 250px;
}

@media screen and (max-width: 1023px) {
  .Table__table--withFixedColumn--wide .Table__table tbody::before {
    left: 270px;
  }
}

@media screen and (max-width: 543px) {
  .Table__table--withFixedColumn--wide .Table__table tbody::before {
    left: calc(40vw + 20px);
  }
}

.Table__table th,
.Table__table td {
  min-height: 19px;
  box-sizing: content-box;
  padding: 24px 5px 0;
  line-height: 19px;
  overflow: hidden;
  font-family: 'MaisonNeue';
  font-weight: 400;
  font-size: 15px;
  color: #333;
}

@media screen and (max-width: 543px) {
  .Table__table th,
  .Table__table td {
    font-size: 14px;
  }
}

.Table__table th:first-child,
.Table__table td:first-child {
  padding-left: 0;
}

.Table__table--borderToEdge .Table__table th:first-child, .Table__table--borderToEdge
.Table__table td:first-child {
  padding-left: 20px;
}

@media screen and (max-width: 1023px) {
  .Table__table--borderToEdge .Table__table th:first-child, .Table__table--borderToEdge
  .Table__table td:first-child {
    padding-left: 40px;
  }
}

@media screen and (max-width: 543px) {
  .Table__table--borderToEdge .Table__table th:first-child, .Table__table--borderToEdge
  .Table__table td:first-child {
    padding-left: 20px;
  }
}

.Table__table th:last-child,
.Table__table td:last-child {
  padding-right: 20px;
}

@media screen and (max-width: 1023px) {
  .Table__table th:last-child,
  .Table__table td:last-child {
    padding-right: 40px;
  }
}

@media screen and (max-width: 543px) {
  .Table__table th:last-child,
  .Table__table td:last-child {
    padding-right: 20px;
  }
}

.Table__table th:last-child::before,
.Table__table td:last-child::before {
  right: 20px;
}

@media screen and (max-width: 1023px) {
  .Table__table th:last-child::before,
  .Table__table td:last-child::before {
    right: 40px;
  }
}

@media screen and (max-width: 543px) {
  .Table__table th:last-child::before,
  .Table__table td:last-child::before {
    right: 20px;
  }
}

.Table__table--borderToEdge .Table__table th:last-child::before, .Table__table--borderToEdge
.Table__table td:last-child::before {
  right: 0;
}

.ExpandableTable__container {
  position: relative;
  overflow: hidden;
}

.ExpandableTable__table {
  color: inherit;
}

.ExpandableTable__button {
  max-width: 50%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 20px;
  outline: none;
}

.ExpandableTable__button::before {
  position: absolute;
  content: '';
  height: 1px;
  width: 100%;
  background: #d8d8d8;
  left: calc(-100% - 1px);
  top: 50%;
  z-index: -1;
  right: 0;
}

.ExpandableTable__button::after {
  position: absolute;
  content: '';
  height: 1px;
  width: 100%;
  background: #d8d8d8;
  top: 50%;
  z-index: -1;
  right: 1px;
  left: calc(100% + 1px);
}

.ArticleEmbeddedInstrumentsTable__ArticleEmbeddedInstrumentsTable .ArticleEmbeddedInstrumentsTable__title {
  margin: 0;
  font-family: 'neue-haas-grotesk-text';
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: #333;
  letter-spacing: 0.2px;
}

.ArticleEmbeddedInstrumentsTable__ArticleEmbeddedInstrumentsTable .ArticleEmbeddedInstrumentsTable__table {
  table-layout: fixed;
}

.ArticleEmbeddedInstrumentsTable__ArticleEmbeddedInstrumentsTable .ArticleEmbeddedInstrumentsTable__table th {
  width: 66%;
}

@media screen and (max-width: 575px) {
  .ArticleEmbeddedInstrumentsTable__ArticleEmbeddedInstrumentsTable .ArticleEmbeddedInstrumentsTable__table th {
    width: 50vw;
    overflow-y: hidden;
  }
  .ArticleEmbeddedInstrumentsTable__ArticleEmbeddedInstrumentsTable .ArticleEmbeddedInstrumentsTable__table th a {
    width: 50vw;
    overflow-y: hidden;
    display: block;
    text-overflow: ellipsis;
  }
}

@media screen and (max-width: 575px) and (max-width: 320px) {
  .ArticleEmbeddedInstrumentsTable__ArticleEmbeddedInstrumentsTable .ArticleEmbeddedInstrumentsTable__table th a {
    width: 47vw;
  }
}

@media screen and (max-width: 320px) {
  .ArticleEmbeddedInstrumentsTable__ArticleEmbeddedInstrumentsTable .ArticleEmbeddedInstrumentsTable__table th {
    width: 45vw;
  }
}

.ArticleEmbeddedInstrumentsTable__ArticleEmbeddedInstrumentsTable .ArticleEmbeddedInstrumentsTable__table td {
  width: auto;
}

@media screen and (max-width: 575px) {
  .ArticleEmbeddedInstrumentsTable__ArticleEmbeddedInstrumentsTable .ArticleEmbeddedInstrumentsTable__table td:last-child {
    padding-right: 0;
  }
  .ArticleEmbeddedInstrumentsTable__ArticleEmbeddedInstrumentsTable .ArticleEmbeddedInstrumentsTable__table td:last-child::before {
    right: 0;
  }
}

@media screen and (max-width: 320px) {
  .ArticleEmbeddedInstrumentsTable__ArticleEmbeddedInstrumentsTable .ArticleEmbeddedInstrumentsTable__table td {
    font-size: 13px;
  }
}

@media screen and (max-width: 575px) {
  .ArticleEmbeddedInstrumentsTable__ArticleEmbeddedInstrumentsTable .ArticleEmbeddedInstrumentsTable__button {
    max-width: 100%;
  }
  .ArticleEmbeddedInstrumentsTable__ArticleEmbeddedInstrumentsTable .ArticleEmbeddedInstrumentsTable__container {
    overflow: visible;
    padding: 0;
  }
}

/* ----------------------------------------- */
.Graph {
  padding: 0 0 33px;
}

@media screen and (min-width: 543px) {
  .Graph {
    padding: 12px 0 33px;
  }
}

.Graph__top {
  padding: 26px 0 12px;
  position: relative;
}

.Graph__top__currency {
  top: 25px;
}

.Graph__SVGGraph__yAxis__text {
  font-size: 12px;
}

.TimespanSelector {
  margin: 0 0 0 6px;
}

@media screen and (max-width: 768px) {
  .TimespanSelector__item__button {
    font-size: 12px;
  }
}

.RealtimeIndicator--inverted .RealtimeIndicator__icon {
  margin-left: 5px;
}

.RealtimeIndicator--inverted .RealtimeIndicator__text {
  font-family: 'Sanomat Sans Web', Helvetica, 'Helvetica Neue', arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.18px;
  line-height: 14px;
  text-align: right;
}

.LoginButton__text {
  color: #777;
  font-family: 'Sanomat Sans Web', Helvetica, 'Helvetica Neue', arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 14px;
  text-align: right;
}

/* ----------------------------------------- */
.StockHeaderWrapper__StockHeader__name {
  font-family: 'Sanomat Alt', Georgia, serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.65px;
}

@media screen and (min-width: 543px) {
  .StockHeaderWrapper__StockHeader__name {
    font-size: 24px;
  }
}

.StockHeaderWrapper__StockHeader__exchange {
  font-family: 'Sanomat Sans Web', Helvetica, 'Helvetica Neue', arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.4px;
  line-height: 13px;
}

@media screen and (min-width: 543px) {
  .StockHeaderWrapper__StockHeader__exchange {
    font-size: 12px;
  }
}

.StockHeaderWrapper__StockHeader__timestamp {
  margin: 3px 0 8px;
}

@media screen and (min-width: 543px) {
  .StockHeaderWrapper__StockHeader__timestamp {
    margin: 0 0 6px;
  }
}

.StockHeaderWrapper__StockHeader__change {
  margin-bottom: 7px;
  margin-top: -6px;
}

.StockHeaderWrapper__StockHeader__wrapper {
  margin: 0 0 5px;
}

@media screen and (min-width: 543px) {
  .StockHeaderWrapper__StockHeader__wrapper {
    height: 135px;
    margin: 10px 0 5px;
  }
}

.StockHeaderWrapper__StockHeader__wrapper::before {
  background-color: #333;
  background-image: none;
  bottom: -5px;
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .StockHeaderWrapper__StockHeader__wrapper::before {
    bottom: 0;
  }
}

@media screen and (min-width: 543px) {
  .StockHeaderWrapper__StockHeader__value {
    height: 60px;
  }
}

/* ----------------------------------------- */
.InstrumentQuoteHistoryWrapper__InstrumentQuoteHistory {
  margin-left: -4%;
  margin-right: -4%;
}

@media screen and (min-width: 543px) {
  .InstrumentQuoteHistoryWrapper__InstrumentQuoteHistory {
    margin-left: 0;
    margin-right: 0;
  }
}

.InstrumentQuoteHistoryWrapper__InstrumentQuoteHistory__heading {
  background: none;
  font-family: 'Sanomat Alt Extrabold', Georgia, serif;
  font-size: 22px;
  letter-spacing: 0.2px;
  line-height: 22px;
  padding: 28px 4%;
}

@media screen and (min-width: 543px) {
  .InstrumentQuoteHistoryWrapper__InstrumentQuoteHistory__heading {
    padding: 27px 0;
  }
}

.InstrumentQuoteHistoryWrapper__table-container--withoutScroller {
  padding-bottom: 0;
}

.InstrumentQuoteHistoryWrapper__table thead th {
  border-bottom: 1px solid #333;
  border-top: 0;
  color: #333;
}

.InstrumentQuoteHistoryWrapper__table thead::after {
  border-bottom: 1px solid #333;
}

.InstrumentQuoteHistoryWrapper__table--borderToEdge .InstrumentQuoteHistoryWrapper__table tbody th:first-child, .InstrumentQuoteHistoryWrapper__table--borderToEdge
.InstrumentQuoteHistoryWrapper__table tbody td:first-child {
  left: 0;
  overflow: visible;
  padding-left: 10px;
}

@media screen and (min-width: 350px) {
  .InstrumentQuoteHistoryWrapper__table--borderToEdge .InstrumentQuoteHistoryWrapper__table tbody th:first-child, .InstrumentQuoteHistoryWrapper__table--borderToEdge
  .InstrumentQuoteHistoryWrapper__table tbody td:first-child {
    padding-left: 4%;
  }
}

@media screen and (min-width: 543px) {
  .InstrumentQuoteHistoryWrapper__table--borderToEdge .InstrumentQuoteHistoryWrapper__table tbody th:first-child, .InstrumentQuoteHistoryWrapper__table--borderToEdge
  .InstrumentQuoteHistoryWrapper__table tbody td:first-child {
    padding-left: 0;
  }
}

@media screen and (min-width: 1023px) {
  .InstrumentQuoteHistoryWrapper__table--borderToEdge .InstrumentQuoteHistoryWrapper__table tbody th:first-child, .InstrumentQuoteHistoryWrapper__table--borderToEdge
  .InstrumentQuoteHistoryWrapper__table tbody td:first-child {
    padding-left: 5px;
  }
}

.InstrumentQuoteHistoryWrapper__table tbody th::before,
.InstrumentQuoteHistoryWrapper__table tbody td::before {
  background: none;
  border-bottom: 1px solid #333;
}

.InstrumentQuoteHistoryWrapper__table--borderToEdge .InstrumentQuoteHistoryWrapper__table tbody th:last-child, .InstrumentQuoteHistoryWrapper__table--borderToEdge
.InstrumentQuoteHistoryWrapper__table tbody td:last-child {
  padding-right: 10px;
}

@media screen and (min-width: 350px) {
  .InstrumentQuoteHistoryWrapper__table--borderToEdge .InstrumentQuoteHistoryWrapper__table tbody th:last-child, .InstrumentQuoteHistoryWrapper__table--borderToEdge
  .InstrumentQuoteHistoryWrapper__table tbody td:last-child {
    padding-right: 4%;
  }
}

@media screen and (min-width: 543px) {
  .InstrumentQuoteHistoryWrapper__table--borderToEdge .InstrumentQuoteHistoryWrapper__table tbody th:last-child, .InstrumentQuoteHistoryWrapper__table--borderToEdge
  .InstrumentQuoteHistoryWrapper__table tbody td:last-child {
    padding-right: 0 !important;
    text-align: right !important;
  }
  .InstrumentQuoteHistoryWrapper__table--borderToEdge .InstrumentQuoteHistoryWrapper__table tbody th:last-child span, .InstrumentQuoteHistoryWrapper__table--borderToEdge
  .InstrumentQuoteHistoryWrapper__table tbody td:last-child span {
    text-align: right !important;
  }
}

@media screen and (min-width: 1023px) {
  .InstrumentQuoteHistoryWrapper__table--borderToEdge .InstrumentQuoteHistoryWrapper__table tbody th:last-child, .InstrumentQuoteHistoryWrapper__table--borderToEdge
  .InstrumentQuoteHistoryWrapper__table tbody td:last-child {
    padding-left: 5px;
  }
}

.InstrumentQuoteHistoryWrapper__table th,
.InstrumentQuoteHistoryWrapper__table td {
  border-top: 0;
  font-size: 11px !important;
  padding: 24px 3px 0;
}

@media screen and (min-width: 350px) {
  .InstrumentQuoteHistoryWrapper__table th,
  .InstrumentQuoteHistoryWrapper__table td {
    padding: 24px 5px 0;
  }
}

@media screen and (min-width: 543px) {
  .InstrumentQuoteHistoryWrapper__table th,
  .InstrumentQuoteHistoryWrapper__table td {
    font-size: 12px !important;
  }
}

.InstrumentQuoteHistoryWrapper__table--borderToEdge .InstrumentQuoteHistoryWrapper__table th:first-child, .InstrumentQuoteHistoryWrapper__table--borderToEdge
.InstrumentQuoteHistoryWrapper__table td:first-child {
  padding-left: 4%;
}

@media screen and (min-width: 543px) {
  .InstrumentQuoteHistoryWrapper__table--borderToEdge .InstrumentQuoteHistoryWrapper__table th:first-child, .InstrumentQuoteHistoryWrapper__table--borderToEdge
  .InstrumentQuoteHistoryWrapper__table td:first-child {
    padding-left: 2px;
    text-align: left !important;
  }
  .InstrumentQuoteHistoryWrapper__table--borderToEdge .InstrumentQuoteHistoryWrapper__table th:first-child span, .InstrumentQuoteHistoryWrapper__table--borderToEdge
  .InstrumentQuoteHistoryWrapper__table td:first-child span {
    text-align: left !important;
  }
}

@media screen and (min-width: 1023px) {
  .InstrumentQuoteHistoryWrapper__table--borderToEdge .InstrumentQuoteHistoryWrapper__table th:first-child, .InstrumentQuoteHistoryWrapper__table--borderToEdge
  .InstrumentQuoteHistoryWrapper__table td:first-child {
    padding-left: 5px;
    text-align: center !important;
  }
  .InstrumentQuoteHistoryWrapper__table--borderToEdge .InstrumentQuoteHistoryWrapper__table th:first-child span, .InstrumentQuoteHistoryWrapper__table--borderToEdge
  .InstrumentQuoteHistoryWrapper__table td:first-child span {
    font-size: 12px !important;
  }
}

.InstrumentQuoteHistoryWrapper__scroller--hidden {
  margin: 0;
}

.StockInformation__StockInformation {
  font-size: 13px;
}

.StockInformation__StockInformation__wrapper {
  padding: 15px 0 25px;
}

@media screen and (min-width: 1023px) {
  .StockInformation__StockInformation__wrapper {
    padding: 15px 0 40px;
  }
}

.DefinitionList_Widgets__definitionList__row {
  font-size: 13px;
}

@media screen and (min-width: 1023px) {
  .DefinitionList_Widgets__definitionList__row {
    font-size: 14px;
  }
}

/* ----------------------------------------- */
.IndexQuoteHistory__title {
  display: inline-block;
  font-family: 'Sanomat Alt Extrabold', Georgia, serif;
  padding-left: 0;
  vertical-align: middle;
}

.IndexQuoteHistory__header {
  background: transparent;
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .IndexQuoteHistory__header {
    margin-top: 20px;
  }
}

@media (max-width: 767.98px) {
  .IndexQuoteHistory__header {
    height: 75px;
    line-height: 75px;
  }
}

@media screen and (max-width: 543px) {
  .IndexQuoteHistory__IndexQuoteHistory__table__last {
    padding-left: 155px !important;
  }
}

@media (max-width: 767.98px) {
  .IndexQuoteHistory__IndexQuoteHistory__table__changeInPercent {
    min-width: 64px;
  }
}

/* ----------------------------------------- */
.QuoteHistoryTable__title {
  display: inline-block;
  font-family: 'Sanomat Alt Extrabold', Georgia, serif;
  padding-left: 0;
  vertical-align: middle;
}

.QuoteHistoryTable__header {
  background: transparent;
}

.QuoteHistoryTable__QuoteHistoryTable::before {
  background: #fff;
}

.QuoteHistoryTable__QuoteHistoryTable thead::after {
  background: none;
  border-bottom: 1px solid #333;
}

.QuoteHistoryTable__QuoteHistoryTable thead th {
  border-bottom: 1px solid #333;
  border-top: 0;
  color: #333;
}

.QuoteHistoryTable__table--borderToEdge .QuoteHistoryTable__QuoteHistoryTable tbody th:first-child, .QuoteHistoryTable__table--borderToEdge
.QuoteHistoryTable__QuoteHistoryTable tbody td:first-child {
  left: 0;
  padding-left: 4%;
}

@media screen and (min-width: 543px) {
  .QuoteHistoryTable__table--borderToEdge .QuoteHistoryTable__QuoteHistoryTable tbody th:first-child, .QuoteHistoryTable__table--borderToEdge
  .QuoteHistoryTable__QuoteHistoryTable tbody td:first-child {
    padding-left: 0;
  }
}

@media screen and (min-width: 1023px) {
  .QuoteHistoryTable__table--borderToEdge .QuoteHistoryTable__QuoteHistoryTable tbody th:first-child, .QuoteHistoryTable__table--borderToEdge
  .QuoteHistoryTable__QuoteHistoryTable tbody td:first-child {
    padding-left: 5px;
  }
}

.QuoteHistoryTable__QuoteHistoryTable tbody th::before,
.QuoteHistoryTable__QuoteHistoryTable tbody td::before {
  background-image: linear-gradient(90deg, #201748 50%, transparent 0%, transparent 100%);
  background-position: inherit;
  background-size: 3px 1px;
  height: 1px;
}

.QuoteHistoryTable__QuoteHistoryTable th,
.QuoteHistoryTable__QuoteHistoryTable td {
  border-top: 0;
  padding: 24px 5px 0;
  vertical-align: middle;
}

.QuoteHistoryTable__QuoteHistoryTable__expand {
  margin: -21px auto 21px;
}

/* ----------------------------------------- */
.ScrollableTable__table thead::after {
  background: #fff;
}

.ScrollableTable__table--withFixedColumn .ScrollableTable__table thead th:first-child, .ScrollableTable__table--withFixedColumn
.ScrollableTable__table thead td:first-child {
  left: 0;
}

.ScrollableTable__table thead th {
  border-bottom: 0;
}

.ScrollableTable__table thead th:last-child {
  padding-right: 4%;
}

@media screen and (min-width: 543px) {
  .ScrollableTable__table thead th:last-child {
    padding-right: 0;
  }
}

.ScrollableTable__table--withFixedColumn .ScrollableTable__table thead::before {
  background: #fff;
}

@media (min-width: 320px) and (max-width: 767.98px) {
  .ScrollableTable__table--withFixedColumn .ScrollableTable__table thead::before {
    width: 205px;
  }
}

@media screen and (max-width: 543px) {
  .ScrollableTable__table--withFixedColumn .ScrollableTable__table thead::before {
    width: 170px;
  }
}

.ScrollableTable__table tbody::after {
  display: none;
}

.ScrollableTable__table--withFixedColumn .ScrollableTable__table tbody th:first-child, .ScrollableTable__table--withFixedColumn
.ScrollableTable__table tbody td:first-child {
  left: 0;
  padding-right: 30px;
}

@media (min-width: 768px) {
  .ScrollableTable__table--withFixedColumn .ScrollableTable__table tbody th:first-child, .ScrollableTable__table--withFixedColumn
  .ScrollableTable__table tbody td:first-child {
    padding-right: 50px;
  }
}

.ScrollableTable__table tbody th a {
  color: #007cbb;
  font-weight: 400;
}

.ScrollableTable__table th:last-child,
.ScrollableTable__table td:last-child {
  padding-right: 0;
}

.ScrollableTable__table th:last-child::before,
.ScrollableTable__table td:last-child::before {
  right: 0;
}

.ScrollableTable__table--withFixedColumn .ScrollableTable__table tr td:nth-child(2)::before,
.ScrollableTable__table--withFixedColumn .ScrollableTable__table tr th:nth-child(2)::before {
  left: 171px;
}

@media (min-width: 768px) {
  .ScrollableTable__table--withFixedColumn .ScrollableTable__table tr td:nth-child(2)::before,
  .ScrollableTable__table--withFixedColumn .ScrollableTable__table tr th:nth-child(2)::before {
    left: 181px;
  }
}

/* ----------------------------------------- */
.QuoteChange__QuoteChange--negative, .QuoteChange__QuoteChange--positive {
  display: inline-block;
}

.QuoteChange__QuoteChange--negative > span, .QuoteChange__QuoteChange--positive > span {
  display: inline-block;
  overflow: visible;
}

.QuoteChange__QuoteChange--negative::after, .QuoteChange__QuoteChange--positive::after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  content: '';
  display: inline-block;
  height: 0;
  margin-bottom: 0;
  margin-left: 1px;
  position: relative;
  transform: scale(0.7);
  width: 0;
}

@media (min-width: 768px) {
  .QuoteChange__QuoteChange--negative::after, .QuoteChange__QuoteChange--positive::after {
    margin-left: 4px;
    transform: none;
  }
}

.QuoteChange__QuoteChange--negative > i, .QuoteChange__QuoteChange--positive > i {
  display: none;
}

.QuoteChange__QuoteChange--negative {
  color: #b95050;
}

.QuoteChange__QuoteChange--negative::after {
  border-top: 10px solid #b95050;
}

.QuoteChange__QuoteChange--positive {
  color: #12aa7c;
}

.QuoteChange__QuoteChange--positive::after {
  border-bottom: 10px solid #12aa7c;
}

.QuoteChange__QuoteChange__wrapper {
  overflow: visible;
}

.StockInformationWrapper__container dt {
  font-weight: 400;
}

.StockInformationWrapper__StockInformation__wrapper {
  padding-top: 6px;
}

/* ----------------------------------------- */
.StockSlider__indexStockSlider .StockSlider__staticLink_anchor {
  padding: 5px 7px 5px 0;
}

.StockSlider__indexStockSlider .StockSlider__staticLink::after {
  top: 5px;
}

@media (min-width: 768px) {
  .StockSlider__indexStockSlider .StockSlider__staticLink::after {
    top: 6px;
  }
}

.StockSlider__stock {
  animation-duration: 110s;
}

.StockSlider__stock__data {
  font-family: Sanomat Sans Web, Helvetica, Helvetica Neue, arial, sans-serif;
}

.StockSlider__stock__data:hover {
  color: #0d0d0d;
}

.StockSlider__stock__label {
  font-weight: 400;
}

.StockSlider__stock__value--negative {
  color: #b95050;
}

.StockSlider__stock__value--negative::after {
  border-top-color: #b95050;
}

.StockSlider__stock__value--positive {
  color: #12aa7c;
}

.StockSlider__stock__value--positive::after {
  border-bottom-color: #12aa7c;
}

/* ----------------------------------------- */
.Chevron__chevron {
  background: url(/build/images/arrow-down.9c05cf7f.svg) 0 -2px no-repeat;
  display: inline-block;
  height: 17px;
  margin-left: 10px;
  transform-origin: center center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  vertical-align: text-bottom;
  width: 17px;
}

.Chevron__chevron.Chevron__as-label {
  background: url(/build/images/arrow-down.9c05cf7f.svg) center center no-repeat;
  height: 20px;
  margin-left: 10px;
  width: 20px;
}

.Chevron__chevron__upper, .Chevron__chevron__lower {
  display: none;
}

.Chevron__white {
  transform-origin: center center;
  transform-style: preserve-3d;
}

.Chevron__white-left {
  background: url(/build/images/arrow-white.18e74db1.svg) center center no-repeat;
  left: 50%;
  margin: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.Chevron__white-down {
  background: url(/build/images/arrow-white.18e74db1.svg) center center no-repeat;
  flex-shrink: 0;
  margin-left: 15px;
  transform: rotateX(180deg) rotateZ(90deg);
  width: 20px;
}

.Chevron__white-down.Chevron__chevron--vertical {
  transform: rotateX(0deg) rotateZ(90deg);
}

.Chevron__black-right {
  background: url(/build/images/arrow-right.431c8f0f.svg) center center no-repeat;
  margin-left: 3px;
  transform-origin: center center;
  transform-style: preserve-3d;
  transition: transform 0.175s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.175s linear;
  vertical-align: initial;
}

.Chevron__black-right--inactive {
  opacity: 0;
  transform: scale(0.2);
}

.Chevron__black-right--active {
  opacity: 1;
  transform: scale(1);
}

.Chevron__chevron--vertical {
  transform: rotateX(90deg);
}

.Chevron__chevron--inversed {
  transform: rotateX(180deg) translateY(4px);
}

.Chevron__chevron--inversed.Chevron__as-label {
  transform: rotateX(180deg);
}

/* ----------------------------------------- */
.SelectDropdown__dropdown {
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  left: 0;
  position: absolute;
  right: 0;
  top: 52px;
  z-index: 2;
}

.SelectDropdown__dropdown-enter {
  opacity: 0.001;
}

.SelectDropdown__dropdown-enter-active {
  opacity: 1;
  transition: opacity 200ms linear;
}

.SelectDropdown__dropdown-enter-active .SelectDropdown__dropdown__options {
  overflow-y: hidden;
  transition: height calc(200ms * 0.8) cubic-bezier(0.645, 0.045, 0.355, 1);
}

.SelectDropdown__dropdown-exit {
  opacity: 1;
}

.SelectDropdown__dropdown-exit-active {
  opacity: 0.001;
  transition: opacity 150ms linear;
}

.SelectDropdown__dropdown-exit-active .SelectDropdown__dropdown__options {
  overflow-y: hidden;
}

.SelectDropdown__dropdown__options {
  list-style: none;
  margin: 0;
  overflow-y: auto;
  padding: 15px 0;
}

.SelectDropdown__dropdown__options::-webkit-scrollbar {
  width: 6px;
}

.SelectDropdown__dropdown__options::-webkit-scrollbar-track {
  background: rgba(58, 58, 58, 0.1);
}

.SelectDropdown__dropdown__options::-webkit-scrollbar-thumb {
  background: #000;
}

.SelectDropdown__dropdown__option {
  cursor: pointer;
  margin: -5px 0;
  padding: 10px 20px;
  transition: background-color 0.1s linear, color 0.1s linear;
}

@media (max-width: 767.98px) {
  .SelectDropdown__dropdown__option {
    font-size: 14px;
  }
}

.SelectDropdown__dropdown__option:hover {
  background-color: rgba(248, 249, 250, 0.8);
  color: #007bff;
}

.SelectDropdown__dropdown__option--selected {
  color: #007bff;
}

.SelectDropdown__dropdown__option--focussed {
  background-color: #007bff;
  color: #fff;
}

.SelectDropdown__dropdown__option--focussed:hover {
  background-color: #007bff;
  color: #fff;
}

/* ----------------------------------------- */
.Select__select {
  margin-bottom: 20px;
  width: 100%;
}

.Select__select > select {
  display: none;
}

.Select__select__label {
  color: #212121;
  display: block;
  font-family: "Sanomat Sans Web", sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 7px;
}

@media (max-width: 767.98px) {
  .Select__select__label {
    font-size: 14px;
  }
}

.Select__select__transformer {
  position: relative;
  transition: transform 0.125s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.Select__select--transitioning .Select__select__transformer,
.Select__select--expanded .Select__select__transformer {
  z-index: 100;
}

.Select__select--expanded .Select__select__input {
  border-color: #007bff;
}

.Select__select__input {
  -moz-appearance: none;
  -webkit-appearance: none;
  align-items: center;
  background: #fff;
  border: 1px solid #333;
  border-radius: 2px;
  color: #6c757d;
  cursor: pointer;
  display: flex;
  font-family: "Sanomat Sans Web", sans-serif;
  font-size: 17px;
  font-weight: 400;
  height: 52px;
  padding: 0 15px 0 12px;
  position: relative;
  text-align: left;
  transition: border-color 0.1s linear;
  width: 100%;
  z-index: 3;
}

.Select__select__input:focus,
.Select__select--expanded .Select__select__input {
  border-color: #007bff;
}

.Select__select__input__label {
  display: block;
  margin-top: 3px;
  min-height: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

@media (max-width: 767.98px) {
  .Select__select__input__label {
    font-size: 16px;
  }
}

.Select__select__input__chevron {
  margin-top: 4px;
}

.Select__select__input > p {
  margin: 0;
}

.Select__select__backdrop {
  bottom: 0;
  cursor: default;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 99;
}

.Select__asLabel {
  background-color: transparent;
  border: 0;
  cursor: pointer;
  display: block;
  height: 115px;
  margin: 0 auto;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 20;
}

.Select__asLabel:active, .Select__asLabel:focus {
  left: 0;
  top: 0;
}

@media (min-width: 768px) {
  .Select__asLabel {
    height: 120px;
  }
}

.Select__asLabel__input__label {
  color: #212529;
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.39px;
  text-align: center;
  width: auto;
}

@media (min-width: 320px) {
  .Select__asLabel__input__label {
    font-size: 24px;
    margin-left: 4px;
  }
}

.Select__asLabel__input__label:active, .Select__asLabel__input__label:focus {
  left: 0;
  position: relative;
  top: 0;
}

.Select__asLabel__dropdown > div {
  left: 50%;
  max-width: 460px;
  top: 80px;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  z-index: 102;
}

.Select__asLabel__dropdown > div > ul {
  height: auto !important;
  padding: 5px 0;
  text-align: left;
}

@media (min-width: 768px) {
  .Select__asLabel__dropdown > div {
    width: 100%;
  }
}

.Select__asLabel .Select__select__transformer {
  position: static;
  transform: none !important;
}

/* ----------------------------------------- */
.IndexDropdownSelector__indexDropdownSelectorWrapper {
  display: block;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .IndexDropdownSelector__indexDropdownSelectorWrapper {
    display: flex;
    margin: 15px 100px 5px;
  }
}

@media (min-width: 1290px) {
  .IndexDropdownSelector__indexDropdownSelectorWrapper {
    margin-left: 165px;
    margin-right: 165px;
  }
}

@media (max-width: 767.98px) {
  .IndexDropdownSelector__indexDropdownSelectorWrapper .IndexDropdownSelector__indexDropdownSelector {
    display: inline-block;
    width: calc(50% - 12px);
  }
  .IndexDropdownSelector__indexDropdownSelectorWrapper .IndexDropdownSelector__indexDropdownSelector:nth-of-type(even) {
    margin-left: 12px;
  }
  .IndexDropdownSelector__indexDropdownSelectorWrapper .IndexDropdownSelector__indexDropdownSelector:nth-of-type(odd) {
    margin-right: 12px;
  }
}

@media (min-width: 768px) {
  .IndexDropdownSelector__indexDropdownSelectorWrapper .IndexDropdownSelector__indexDropdownSelector {
    margin-left: 10px;
    margin-right: 10px;
  }
}

/* ----------------------------------------- */
.TopBottom__wrapper .TopBottom__TopBottom {
  background: none;
  height: 233px;
  padding: 0;
}

.TopBottom__wrapper .TopBottom__TopBottom--single-column {
  height: 460px;
}

.TopBottom__lists--single-column {
  display: block;
}

/* ----------------------------------------- */
.Instrument__TopBottom-Instrument {
  border-radius: 0;
  box-shadow: none;
  height: 52px !important;
}

.Instrument__TopBottom-Instrument::before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: '';
  height: 1px;
  background-image: linear-gradient(90deg, #ced4da 50%, transparent 0%, transparent 100%);
  background-size: 3px 1px;
  background-position: inherit;
}

.Instrument__TopBottom-Instrument__content {
  padding: 5px 0;
}

.Instrument__TopBottom-Instrument__watchlist__placeholder {
  display: none;
}

.Instrument__TopBottom-Instrument__relativeChange--positive {
  color: #12aa7c;
}

.Instrument__TopBottom-Instrument__relativeChange--positive::after {
  border-bottom: 10px solid #12aa7c;
}

.Instrument__TopBottom-Instrument__relativeChange--negative {
  color: #b95050;
}

.Instrument__TopBottom-Instrument__relativeChange--negative::after {
  border-top: 10px solid #b95050;
}

.Instrument__TopBottom-Instrument__relativeChange__arrow {
  display: none !important;
}

.Instrument__TopBottom-Instrument__relativeChange--negative::after, .Instrument__TopBottom-Instrument__relativeChange--positive::after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  content: '';
  display: inline-block;
  height: 0;
  margin-bottom: 0;
  margin-left: 4px;
  position: relative;
  width: 0;
}

.TopBottom-Instrument--position-first {
  top: 0;
}

.TopBottom-Instrument--position-second {
  top: 62px !important;
}

.TopBottom-Instrument--position-third {
  top: 124px !important;
}

.InstrumentLinkHighlighter__InstrumentLinkHighlighter__root {
  box-shadow: none !important;
  top: 0;
}

/* ----------------------------------------- */
.InstrumentList__TopBottom-InstrumentList__header {
  border-bottom: 1px solid #333;
}

.InstrumentList__TopBottom-InstrumentList__title {
  font-family: "Sanomat Sans Web", sans-serif;
}

.InstrumentList__TopBottom-InstrumentList__list {
  height: 200px;
}

@charset "UTF-8";
/* ----------------------------------------- */
.SoftPaywall__border {
  margin: 0;
}

.SoftPaywall__hidden {
  display: none;
}

.SoftPaywall__flex-aligner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.SoftPaywall__flex-aligner .SoftPaywall__input-label {
  width: 23%;
}

.SoftPaywall__flex-aligner .SoftPaywall__input-label input--small {
  width: 100%;
}

.SoftPaywall__thin-border {
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.SoftPaywall__flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/*
*
* Loading spinner
*
*/
.SoftPaywall__spinner {
  display: block;
  position: absolute;
  left: calc(50% - 87px);
  top: calc(50vh - 200px);
  z-index: 1000;
  background-color: transparent;
  padding: 20px;
  opacity: 1;
}

@media (max-width: 1023.98px) {
  .SoftPaywall__spinner {
    top: calc(50vh - 150px);
    transform: scale(0.7);
  }
}

.SoftPaywall__spinner::before {
  content: '';
  display: block;
  width: 100%;
  height: 75px;
  background: url(/build/images/spinner.47a4494f.svg) no-repeat top center;
}

.SoftPaywall__spinner::after {
  content: 'Indlæser data';
  display: block;
  font-size: 22px;
  text-align: center;
}

.SoftPaywall__spinner.SoftPaywall__fade-out {
  opacity: 0;
  padding: 0;
  height: 1px;
  transition: opacity 500ms ease 700ms, height 0.1s ease 1.1s, padding 0.1s ease 1.3s;
}

.SoftPaywall__container {
  width: 100%;
  border: 2px solid #d9d9d9;
  padding: 20px;
  margin-bottom: 40px;
}

.SoftPaywall__container p {
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .SoftPaywall__container {
    padding: 30px 40px;
  }
}

.SoftPaywall__headline {
  margin-bottom: 20px;
  font-weight: bold;
}

p.SoftPaywall__link {
  color: inherit;
  margin-bottom: 0;
}

.SoftPaywall__cta {
  max-width: 220px;
  margin: auto;
  background: #9fb6c7;
  border-color: #9fb6c7;
}

/* ----------------------------------------- */
.BalanceHistoryTable__table__heading {
  font-family: 'Sanomat Sans Web', Helvetica, 'Helvetica Neue', arial, sans-serif;
  font-weight: 700;
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .BalanceHistoryTable__table__heading {
    left: 0;
  }
}

@media (max-width: 767.98px) {
  .BalanceHistoryTable__table__heading {
    left: 5%;
  }
}

.BalanceHistoryTable__table__column {
  border: 0;
}

/* ----------------------------------------- */
.BarChart__BarChart {
  padding: 28px 20px 20px;
}

@media (max-width: 767.98px) {
  .BarChart__BarChart {
    padding-left: 5%;
    padding-right: 5%;
  }
}

.BarChart__BarChart__heading {
  font-family: 'Sanomat Alt Extrabold', Georgia, serif;
}

/* ----------------------------------------- */
.ScrollableTable__table--alternativeHeader {
  margin-left: 20px;
  margin-right: 20px;
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .ScrollableTable__table--alternativeHeader {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 767.98px) {
  .ScrollableTable__table--alternativeHeader {
    margin-left: 5%;
    margin-right: 5%;
  }
}

.ScrollableTable__table--alternativeHeader .ScrollableTable__table thead::after {
  background: transparent;
  border-bottom: 1px solid #333;
  margin-left: -20px;
  margin-right: -20px;
  z-index: 4;
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .ScrollableTable__table--alternativeHeader .ScrollableTable__table thead::after {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 767.98px) {
  .ScrollableTable__table--alternativeHeader .ScrollableTable__table thead::after {
    margin-left: -5vw;
    margin-right: -5vw;
  }
}

.ScrollableTable__table--alternativeHeader .ScrollableTable__table thead::before {
  background: #fff;
}

.ScrollableTable__table--alternativeHeader .ScrollableTable__table thead th {
  padding-bottom: 7px;
}

.ScrollableTable__table--alternativeHeader .ScrollableTable__table td,
.ScrollableTable__table--alternativeHeader .ScrollableTable__table th {
  border-top: 0;
}

.ScrollableTable__table--alternativeHeader .ScrollableTable__table tbody th:first-child {
  color: #333;
  padding-top: 21px;
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .ScrollableTable__table--alternativeHeader .ScrollableTable__table tbody th:first-child {
    left: 0;
  }
}

.ScrollableTable__table--alternativeHeader .ScrollableTable__table tbody td {
  padding: 20px 5px 0;
}

@media (max-width: 767.98px) {
  .ScrollableTable__table--alternativeHeader .ScrollableTable__table tbody td {
    padding-top: 19px;
  }
}

@media (max-width: 767.98px) {
  .ScrollableTable__table--alternativeHeader .ScrollableTable__table tr td:nth-child(2) {
    padding-left: 210px;
  }
}

.ScrollableTable__table--alternativeHeader.ScrollableTable__table--withFixedColumn .ScrollableTable__table tr td:nth-child(2) {
  padding-left: 210px;
}

/* ----------------------------------------- */
.BalanceDefinitionList__list {
  margin-bottom: 30px;
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .BalanceDefinitionList__list {
    padding: 0;
  }
}

@media (max-width: 767.98px) {
  .BalanceDefinitionList__list {
    padding: 0 5%;
  }
}

.BalanceDefinitionList__list__header {
  background: #fff;
  border-color: #333;
  height: 30px;
  margin-bottom: 21px;
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .BalanceDefinitionList__list__header {
    padding: 0;
  }
}

@media (max-width: 767.98px) {
  .BalanceDefinitionList__list__header {
    padding: 0 5%;
  }
}

.BalanceDefinitionList__list__heading {
  padding-top: 0;
}

.BalanceDefinitionList__list dt {
  font-weight: 400;
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .BalanceDefinitionList__list__wrapper {
    padding-bottom: 15px;
  }
}

@media (max-width: 767.98px) {
  .BalanceDefinitionList__list__wrapper {
    padding-bottom: 20px;
  }
}

/* ----------------------------------------- */
@media (max-width: 767.98px) {
  .Balance__wrapper {
    margin-left: -4vw;
    margin-right: -4vw;
  }
}

/* ----------------------------------------- */
.CashflowHistoryTable__table__heading {
  font-family: 'Sanomat Sans Web', Helvetica, 'Helvetica Neue', arial, sans-serif;
  font-weight: 700;
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .CashflowHistoryTable__table__heading {
    left: 0;
  }
}

@media (max-width: 767.98px) {
  .CashflowHistoryTable__table__heading {
    left: 5%;
  }
}

.CashflowHistoryTable__table__column {
  border: 0;
}

/* ----------------------------------------- */
.CashflowDefinitionList__list {
  margin-bottom: 30px;
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .CashflowDefinitionList__list {
    padding: 0;
  }
}

@media (max-width: 767.98px) {
  .CashflowDefinitionList__list {
    padding: 0 5%;
  }
}

.CashflowDefinitionList__list__header {
  background: #fff;
  border-color: #333;
  height: 30px;
  margin-bottom: 21px;
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .CashflowDefinitionList__list__header {
    padding: 0;
  }
}

@media (max-width: 767.98px) {
  .CashflowDefinitionList__list__header {
    padding: 0 5%;
  }
}

.CashflowDefinitionList__list__heading {
  padding-top: 0;
}

.CashflowDefinitionList__list dt {
  font-weight: 400;
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .CashflowDefinitionList__list__wrapper {
    padding-bottom: 15px;
  }
}

@media (max-width: 767.98px) {
  .CashflowDefinitionList__list__wrapper {
    padding-bottom: 20px;
  }
}

/* ----------------------------------------- */
@media (max-width: 767.98px) {
  .Cashflow__wrapper {
    margin-left: -4vw;
    margin-right: -4vw;
  }
}

/* ----------------------------------------- */
.ProfitabilityHistoryTable__table__heading {
  font-family: 'Sanomat Sans Web', Helvetica, 'Helvetica Neue', arial, sans-serif;
  font-weight: 700;
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .ProfitabilityHistoryTable__table__heading {
    left: 0;
  }
}

@media (max-width: 767.98px) {
  .ProfitabilityHistoryTable__table__heading {
    left: 5%;
  }
}

.ProfitabilityHistoryTable__table__column {
  border: 0;
}

/* ----------------------------------------- */
.ProfitabilityDefinitionList__list {
  margin-bottom: 30px;
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .ProfitabilityDefinitionList__list {
    padding: 0;
  }
}

@media (max-width: 767.98px) {
  .ProfitabilityDefinitionList__list {
    padding: 0 5%;
  }
}

.ProfitabilityDefinitionList__list__header {
  background: #fff;
  border-color: #333;
  height: 30px;
  margin-bottom: 21px;
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .ProfitabilityDefinitionList__list__header {
    padding: 0;
  }
}

@media (max-width: 767.98px) {
  .ProfitabilityDefinitionList__list__header {
    padding: 0 5%;
  }
}

.ProfitabilityDefinitionList__list__heading {
  padding-top: 0;
}

.ProfitabilityDefinitionList__list dt {
  font-weight: 400;
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .ProfitabilityDefinitionList__list__wrapper {
    padding-bottom: 15px;
  }
}

@media (max-width: 767.98px) {
  .ProfitabilityDefinitionList__list__wrapper {
    padding-bottom: 20px;
  }
}

/* ----------------------------------------- */
@media (max-width: 767.98px) {
  .Profitability__wrapper {
    margin-left: -4vw;
    margin-right: -4vw;
  }
}

@charset "UTF-8";
/* ----------------------------------------- */
.LoginFlow__border {
  margin: 0;
}

.LoginFlow__hidden {
  display: none;
}

.LoginFlow__flex-aligner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.LoginFlow__flex-aligner .LoginFlow__input-label {
  width: 23%;
}

.LoginFlow__flex-aligner .LoginFlow__input-label input--small {
  width: 100%;
}

.LoginFlow__thin-border {
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.LoginFlow__flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/*
*
* Loading spinner
*
*/
.LoginFlow__spinner {
  display: block;
  position: absolute;
  left: calc(50% - 87px);
  top: calc(50vh - 200px);
  z-index: 1000;
  background-color: transparent;
  padding: 20px;
  opacity: 1;
}

@media (max-width: 1023.98px) {
  .LoginFlow__spinner {
    top: calc(50vh - 150px);
    transform: scale(0.7);
  }
}

.LoginFlow__spinner::before {
  content: '';
  display: block;
  width: 100%;
  height: 75px;
  background: url(/build/images/spinner.47a4494f.svg) no-repeat top center;
}

.LoginFlow__spinner::after {
  content: 'Indlæser data';
  display: block;
  font-size: 22px;
  text-align: center;
}

.LoginFlow__spinner.LoginFlow__fade-out {
  opacity: 0;
  padding: 0;
  height: 1px;
  transition: opacity 500ms ease 700ms, height 0.1s ease 1.1s, padding 0.1s ease 1.3s;
}

.LoginFlow__flex {
  display: flex;
}

@media (min-width: 1024px) {
  .LoginFlow__loginTransition {
    padding: 10px;
    margin: -10px;
  }
}

.LoginFlow__flowContainer .form {
  align-items: flex-start;
}

.LoginFlow__flowContainer .options-link {
  font-size: 14px;
  font-family: 'Sanomat Sans Web';
  font-weight: 500;
}

.LoginFlow__flowContainer .form-group {
  margin-bottom: 7px;
  width: 100%;
}

.LoginFlow__flowContainer .form-group:last-child {
  margin-bottom: 0;
}

.LoginFlow__flowContainer .form-group:nth-child(3) {
  margin-bottom: 20px;
}

@media (min-width: 1024px) {
  .LoginFlow__flowContainer .form-group {
    margin-right: 20px;
    margin-bottom: 7px;
  }
  .LoginFlow__flowContainer .form-group:last-child {
    margin-bottom: 7px;
  }
}

.LoginFlow__loginRow {
  padding: 10px 50px 10px 20px;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  color: #212529;
  font-weight: 700;
  letter-spacing: .22px;
  min-height: 49px;
  transition: all 300ms;
}

@media (min-width: 768px) {
  .LoginFlow__loginRow {
    padding: 10px 100px 10px 40px;
  }
}

@media (min-width: 1024px) {
  .LoginFlow__loginRow {
    padding: 10px 40px 10px 0;
    font-size: 17px;
  }
}

.LoginFlow__loginRow::after {
  content: '';
  display: block;
  position: absolute;
  top: 14px;
  width: 12px;
  height: 23px;
  transform: rotate(180deg);
  background-repeat: no-repeat;
  right: 30px;
}

@media (min-width: 768px) {
  .LoginFlow__loginRow::after {
    right: 40px;
  }
}

@media (min-width: 1024px) {
  .LoginFlow__loginRow::after {
    right: 10px;
  }
}

.LoginFlow__open {
  font-size: 24px;
  line-height: 26px;
  letter-spacing: 0.38px;
}

.LoginFlow__open::after {
  transform: rotate(270deg);
}

.LoginFlow__userEmail {
  font-size: 5vw;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  .LoginFlow__userEmail {
    font-size: 24px;
    padding-left: 30px;
  }
}

@media (min-width: 1024px) {
  .LoginFlow__userEmail {
    font-size: 24px;
    padding-left: 0;
  }
}

.LoginFlow__user-account {
  margin-bottom: 12px;
}

.LoginFlow__user-account > span {
  font-size: 4.5vw;
  margin-bottom: 20px;
  display: block;
}

@media (min-width: 768px) {
  .LoginFlow__user-account > span {
    font-size: 24px;
    padding-left: 30px;
  }
}

@media (min-width: 1024px) {
  .LoginFlow__user-account > span {
    font-size: 24px;
    padding-left: 0;
  }
}

.LoginFlow__user-account button {
  width: 250px;
  margin-left: 20px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .LoginFlow__user-account button {
    margin-left: 30px;
  }
}

@media (min-width: 1024px) {
  .LoginFlow__user-account button {
    margin-left: 0;
  }
}

/* ----------------------------------------- */
.HeightTransition__wrapper:not(.HeightTransition__wrapper--absolute) {
  overflow: hidden;
}

.HeightTransition__wrapper-enter {
  position: relative;
  z-index: 2;
  opacity: 0;
  height: 0;
}

.HeightTransition__wrapper-enter-active {
  opacity: 1;
}

.HeightTransition__wrapper-exit {
  position: relative;
  z-index: 1;
  opacity: 1;
}

.HeightTransition__wrapper-exit-active {
  opacity: 0;
  height: 0;
}

.HeightTransition__wrapper-exit-done {
  opacity: 0;
  height: 0;
}

.HeightTransition__wrapper--absolute {
  width: 100%;
}

.HeightTransition__wrapper--absolute.HeightTransition__wrapper-enter {
  position: absolute;
  top: 0;
  left: 0;
  height: auto;
}

.HeightTransition__wrapper--absolute.HeightTransition__wrapper-exit {
  position: static;
  height: auto;
}

/* ----------------------------------------- */
.Input__inputGroup {
  margin: 0;
  position: relative;
  width: 100%;
}

@media (min-width: 1024px) {
  .Input__inputGroup {
    margin-bottom: 0;
  }
}

.Input__error {
  margin: 5px 10px;
  color: #d0021b;
  display: block;
  font-size: 11px;
  left: 12px;
  line-height: 1em;
}

/* ----------------------------------------- */
.Throbber__root {
  display: block;
  margin-right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #66b0ff;
  border-left-color: #007bff;
  animation: Throbber__throbber__spin 0.9s linear infinite;
}

.Throbber__root-enter {
  opacity: 0;
}

.Throbber__root-enter-active {
  opacity: 1;
  transition: opacity 0.2s linear;
}

.Throbber__root-exit {
  opacity: 1;
}

.Throbber__root-exit-active {
  opacity: 0;
  transition: opacity 0.2s linear;
}

@keyframes Throbber__throbber__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ----------------------------------------- */
.PasswordInput__container {
  position: relative;
}

.PasswordInput__eye {
  display: block;
  width: 25px;
  height: 21px;
  position: absolute;
  z-index: 2;
  right: 10px;
  top: 45px;
  background-repeat: no-repeat;
  background-size: auto;
  cursor: pointer;
}

.PasswordInput__open {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMTUgMTJjMCAxLjY1NC0xLjM0NiAzLTMgM3MtMy0xLjM0Ni0zLTMgMS4zNDYtMyAzLTMgMyAxLjM0NiAzIDN6bTktLjQ0OXMtNC4yNTIgOC40NDktMTEuOTg1IDguNDQ5Yy03LjE4IDAtMTIuMDE1LTguNDQ5LTEyLjAxNS04LjQ0OXM0LjQ0Ni03LjU1MSAxMi4wMTUtNy41NTFjNy42OTQgMCAxMS45ODUgNy41NTEgMTEuOTg1IDcuNTUxem0tNyAuNDQ5YzAtMi43NTctMi4yNDMtNS01LTVzLTUgMi4yNDMtNSA1IDIuMjQzIDUgNSA1IDUtMi4yNDMgNS01eiIvPjwvc3ZnPg==");
}

.PasswordInput__closed {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMTEuODg1IDE0Ljk4OGwzLjEwNC0zLjA5OC4wMTEuMTFjMCAxLjY1NC0xLjM0NiAzLTMgM2wtLjExNS0uMDEyem04LjA0OC04LjAzMmwtMy4yNzQgMy4yNjhjLjIxMi41NTQuMzQxIDEuMTQ5LjM0MSAxLjc3NiAwIDIuNzU3LTIuMjQzIDUtNSA1LS42MzEgMC0xLjIyOS0uMTMtMS43ODUtLjM0NGwtMi4zNzcgMi4zNzJjMS4yNzYuNTg4IDIuNjcxLjk3MiA0LjE3Ny45NzIgNy43MzMgMCAxMS45ODUtOC40NDkgMTEuOTg1LTguNDQ5cy0xLjQxNS0yLjQ3OC00LjA2Ny00LjU5NXptMS40MzEtMy41MzZsLTE4LjYxOSAxOC41OC0xLjM4Mi0xLjQyMiAzLjQ1NS0zLjQ0N2MtMy4wMjItMi40NS00LjgxOC01LjU4LTQuODE4LTUuNThzNC40NDYtNy41NTEgMTIuMDE1LTcuNTUxYzEuODI1IDAgMy40NTYuNDI2IDQuODg2IDEuMDc1bDMuMDgxLTMuMDc1IDEuMzgyIDEuNDJ6bS0xMy43NTEgMTAuOTIybDEuNTE5LTEuNTE1Yy0uMDc3LS4yNjQtLjEzMi0uNTM4LS4xMzItLjgyNyAwLTEuNjU0IDEuMzQ2LTMgMy0zIC4yOTEgMCAuNTY3LjA1NS44MzMuMTM0bDEuNTE4LTEuNTE1Yy0uNzA0LS4zODItMS40OTYtLjYxOS0yLjM1MS0uNjE5LTIuNzU3IDAtNSAyLjI0My01IDUgMCAuODUyLjIzNSAxLjY0MS42MTMgMi4zNDJ6Ii8+PC9zdmc+");
}


/*# sourceMappingURL=react.c1546e3d.css.map*/