/*------------------------------------*
 *  # Base Constants
 *------------------------------------*/
/* LAYOUT CONSTANTS */
/*------------------------------------*
 *  # SASS Mixins and Functions
 *------------------------------------*/
/*
 * RTL Language Mixin
 */
/*
 * SASS interpolation
 */
/*
 * PX to EM
 * @param $px - px value to be converted
 * @param $base - base font size (in `em`)
 * Note: 'em' values are calculate based on the element font-size
 *       to properly converts 'px' to 'em', please pass in the element font-size with it
 * Usage example:
    padding: em(16px, 1.6em); // font-size in 'em'
 */
/*
 * Set property by passing a property name, and values.
 * @param $property name - padding, margin etc.
 * @param $values        - values in `px` (space separated for multiple values)
 * @param $font-size     - base font-size in `em`
 * Usage example:
   @include toEm(padding, 8px 16px 8px, 1.6em);
 */
/*
 * Generate typefaces key-value pair of variable name and config
 * Example:
   --paragraph-center-bold-black: (14px, center, bold, black)
 */
/*
 * Sets font-size, font-weight, color, text-transform, text-align and line-height
 * Usage example:
   @include setTypeface(16px, bold, black, uppercase);
 */
/*
 * Set typefaces by passing a typeface variable name
 * @param $var   - typeface variable
 * @param $tt    - text-transform property
 * @param $align - text-align property
 * Usage example:
   @include typeface(--paragraph-bold-black, uppercase, center);
 */
/*
 * Range Slider Thumb styling is set here
 */
/*
 * SVG icons colors
 */
/*
 * Bar Spinner Animation
 * @param $count    - number of bars
 * @param $duration - duration of animation
 * @param $phase    - each bar phase change delay
 * Usage example:
   @include createBarspinnerAnimation(5, 1.2s, 0,1);
 */
/*
 * Tooltip colors
 * @param $color - color property
 * Usage example:
   @include tooltipColor(var(--brand-primary));
 */
/*
 * Convert Tooltip colors
 * @param $color - css color property
 * Usage example:
   @include convertTooltipColor(var(--status-default));
 */
/*
    Constants
*/
/*
    Variables
*/
/*
    List of all typefaces variables in the format: --$FONT_SIZES-$TEXT_ALIGN-$FONT_WEIGHTS-COLORS.
    See $FONT_SIZES, $TEXT_ALIGN, $FONT_WEIGHTS, $COLORS maps above for references.
    Variables name example: --title-center-semibold-red
 */
/*
    to use styles without modifier class on .inline-icon
    use @extend

    e.g. style icon on parent hover:
        a:hover .inline-icon {
            @extend %inline-icon-active;
        }
*/
/**
 * Define Breakpoints here.
 */
/** Need to add new breakpoints for mixins */
/** @define toast-messages; */
.toast-messages {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 320px) and (max-width: 767px) {
  .toast-messages {
    top: 2rem;
    height: calc(100vh - 2rem);
  }
}
@charset "UTF-8";
/*------------------------------------*
 *  # Base Constants
 *------------------------------------*/
/* LAYOUT CONSTANTS */
/*------------------------------------*
 *  # SASS Mixins and Functions
 *------------------------------------*/
/*
 * RTL Language Mixin
 */
/*
 * SASS interpolation
 */
/*
 * PX to EM
 * @param $px - px value to be converted
 * @param $base - base font size (in `em`)
 * Note: 'em' values are calculate based on the element font-size
 *       to properly converts 'px' to 'em', please pass in the element font-size with it
 * Usage example:
    padding: em(16px, 1.6em); // font-size in 'em'
 */
/*
 * Set property by passing a property name, and values.
 * @param $property name - padding, margin etc.
 * @param $values        - values in `px` (space separated for multiple values)
 * @param $font-size     - base font-size in `em`
 * Usage example:
   @include toEm(padding, 8px 16px 8px, 1.6em);
 */
/*
 * Generate typefaces key-value pair of variable name and config
 * Example:
   --paragraph-center-bold-black: (14px, center, bold, black)
 */
/*
 * Sets font-size, font-weight, color, text-transform, text-align and line-height
 * Usage example:
   @include setTypeface(16px, bold, black, uppercase);
 */
/*
 * Set typefaces by passing a typeface variable name
 * @param $var   - typeface variable
 * @param $tt    - text-transform property
 * @param $align - text-align property
 * Usage example:
   @include typeface(--paragraph-bold-black, uppercase, center);
 */
/*
 * Range Slider Thumb styling is set here
 */
/*
 * SVG icons colors
 */
/*
 * Bar Spinner Animation
 * @param $count    - number of bars
 * @param $duration - duration of animation
 * @param $phase    - each bar phase change delay
 * Usage example:
   @include createBarspinnerAnimation(5, 1.2s, 0,1);
 */
/*
 * Tooltip colors
 * @param $color - color property
 * Usage example:
   @include tooltipColor(var(--brand-primary));
 */
/*
 * Convert Tooltip colors
 * @param $color - css color property
 * Usage example:
   @include convertTooltipColor(var(--status-default));
 */
/*
    Constants
*/
/*
    Variables
*/
/*
    List of all typefaces variables in the format: --$FONT_SIZES-$TEXT_ALIGN-$FONT_WEIGHTS-COLORS.
    See $FONT_SIZES, $TEXT_ALIGN, $FONT_WEIGHTS, $COLORS maps above for references.
    Variables name example: --title-center-semibold-red
 */
/*
    to use styles without modifier class on .inline-icon
    use @extend

    e.g. style icon on parent hover:
        a:hover .inline-icon {
            @extend %inline-icon-active;
        }
*/
/**
 * Define Breakpoints here.
 */
/** Need to add new breakpoints for mixins */
/** @define notification-messages; */
.notification-messages {
  width: 40rem;
  z-index: 6;
  position: absolute;
  /*rtl:ignore*/
  right: 0;
  margin-top: 1.6rem;
}
.notification-messages > div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (min-width: 320px) and (max-width: 767px) {
  .notification-messages {
    max-width: calc(100% - 3.2rem);
    left: 1.6rem;
    right: 1.6rem;
  }
}

/** @define notification; weak */
.notification {
  position: relative;
  display: flex;
  border-radius: 4px;
  width: 100%;
  max-width: 40rem;
  padding: 1.6rem;
  color: var(--color-text-primary);
  background-color: var(--color-surface-primary);
  box-shadow: 0 4px 6px 0 var(--color-shadow-medium), 0 4px 6px 0 var(--color-shadow-medium);
  overflow: hidden;
  transition: transform 0.25s ease, opacity 0.25s linear;
  direction: ltr;
}
.notification--enter-done {
  opacity: 1;
  transform: translateY(0);
}
.notification--enter, .notification--exit {
  opacity: 0;
  transform: translateY(-16px);
}
.notification--small {
  max-width: 28rem;
}
.notification__cta-button {
  padding: 0 0.8rem;
  margin-top: 1.6rem;
  height: 24px;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 27rem;
  align-self: flex-end;
}
.notification__text-container {
  display: flex;
  flex-direction: column;
  z-index: 2;
  width: 100%;
}
.notification__text-body {
  font-size: 1.4rem;
  line-height: 1.43;
}
.notification__action {
  display: flex;
  justify-content: flex-end;
}
.notification__header {
  margin-bottom: 0.8rem;
  margin-right: 3.2rem;
}
.notification__close-button {
  position: absolute;
  top: 1.05rem;
  right: 1.6rem;
  visibility: visible;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 2;
}
.notification__close-button:focus, .notification__close-button:active {
  outline: none;
}
.notification__close-button:after {
  content: "×";
  font-size: 30px;
  font-weight: 400;
  color: var(--color-text-primary);
  font-family: monospace;
}
.notification__icon-type {
  margin-right: 1.6rem;
  margin-top: 0.4rem;
  width: 1.6rem;
  height: 1.6rem;
}
.notification__icon-type--is-background {
  width: 21rem;
  height: 21rem;
}
.notification__icon-background {
  position: absolute;
  left: -25px;
  bottom: -5px;
  pointer-events: none;
  opacity: 0.08;
  z-index: 0;
}
.notification__icon-background--header-only {
  bottom: -10.5rem;
}
.notification:not(:last-child) {
  margin-bottom: 16px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .notification {
    max-width: 328px;
    width: calc(100% - 0.8rem);
    margin-right: 0.4rem;
  }
}
/*------------------------------------*
 *  # Base Constants
 *------------------------------------*/
/* LAYOUT CONSTANTS */
/*------------------------------------*
 *  # SASS Mixins and Functions
 *------------------------------------*/
/*
 * RTL Language Mixin
 */
/*
 * SASS interpolation
 */
/*
 * PX to EM
 * @param $px - px value to be converted
 * @param $base - base font size (in `em`)
 * Note: 'em' values are calculate based on the element font-size
 *       to properly converts 'px' to 'em', please pass in the element font-size with it
 * Usage example:
    padding: em(16px, 1.6em); // font-size in 'em'
 */
/*
 * Set property by passing a property name, and values.
 * @param $property name - padding, margin etc.
 * @param $values        - values in `px` (space separated for multiple values)
 * @param $font-size     - base font-size in `em`
 * Usage example:
   @include toEm(padding, 8px 16px 8px, 1.6em);
 */
/*
 * Generate typefaces key-value pair of variable name and config
 * Example:
   --paragraph-center-bold-black: (14px, center, bold, black)
 */
/*
 * Sets font-size, font-weight, color, text-transform, text-align and line-height
 * Usage example:
   @include setTypeface(16px, bold, black, uppercase);
 */
/*
 * Set typefaces by passing a typeface variable name
 * @param $var   - typeface variable
 * @param $tt    - text-transform property
 * @param $align - text-align property
 * Usage example:
   @include typeface(--paragraph-bold-black, uppercase, center);
 */
/*
 * Range Slider Thumb styling is set here
 */
/*
 * SVG icons colors
 */
/*
 * Bar Spinner Animation
 * @param $count    - number of bars
 * @param $duration - duration of animation
 * @param $phase    - each bar phase change delay
 * Usage example:
   @include createBarspinnerAnimation(5, 1.2s, 0,1);
 */
/*
 * Tooltip colors
 * @param $color - color property
 * Usage example:
   @include tooltipColor(var(--brand-primary));
 */
/*
 * Convert Tooltip colors
 * @param $color - css color property
 * Usage example:
   @include convertTooltipColor(var(--status-default));
 */
/*
    Constants
*/
/*
    Variables
*/
/*
    List of all typefaces variables in the format: --$FONT_SIZES-$TEXT_ALIGN-$FONT_WEIGHTS-COLORS.
    See $FONT_SIZES, $TEXT_ALIGN, $FONT_WEIGHTS, $COLORS maps above for references.
    Variables name example: --title-center-semibold-red
 */
/*
    to use styles without modifier class on .inline-icon
    use @extend

    e.g. style icon on parent hover:
        a:hover .inline-icon {
            @extend %inline-icon-active;
        }
*/
/**
 * Define Breakpoints here.
 */
/** Need to add new breakpoints for mixins */
.ic-icon {
  border-radius: 2px;
  box-sizing: border-box;
  display: block;
  height: 24px;
  line-height: 32px;
  text-align: center;
  transition: all 0.2s 0.15s;
  width: 24px;
}

.ic-icon.ciq-favorite svg, .ic-icon.ic-favorite svg {
  fill: none !important;
}

.smartcharts-light .ic-icon.ciq-favorite svg, .smartcharts-light .ic-icon.ic-favorite svg {
  stroke: rgba(0, 0, 0, 0.8);
}

.smartcharts-dark .ic-icon.ciq-favorite svg, .smartcharts-dark .ic-icon.ic-favorite svg {
  stroke: #999;
}

.smartcharts-dark .ic-icon.ciq-active-favorite svg, .smartcharts-light .ic-icon.ciq-active-favorite svg {
  fill: #f93 !important;
  stroke: #f93 !important;
}

.ic-icon.margin {
  margin: 0 5px;
}

.ic-icon svg {
  position: relative;
}

.ic-icon .ic-subtitle, .ic-icon br {
  display: none;
}

.ic-icon.ic-frxXAUUSD > svg {
  fill: gold;
}

.ic-icon.ic-frxXPDUSD > svg {
  fill: #e9eaf0;
}

.ic-icon.ic-frxXPTUSD > svg {
  fill: #f4f3f3;
}

.ic-icon.ic-frxXAGUSD > svg {
  fill: #e1e1e1;
}

.ic-icon-with-sub {
  height: auto !important;
  width: auto !important;
}

.ic-icon-with-sub {
  line-height: 15px;
}

.ic-icon-with-sub .ic-subtitle, .ic-icon-with-sub br {
  display: inline;
}

.smartcharts-light .ciq-chart-types .ciq-list-item .ic-icon > svg, .smartcharts-light .cq-chart-controls .cq-menu-btn .ic-icon > svg, .smartcharts-light .cq-menu-dropdown .title .ic-icon > svg, .smartcharts-light .sc-mcd__category__head .category-title-left .ic-icon > svg, .smartcharts-light .sc-mcd__category__head .ic-icon > svg, .smartcharts-light .sc-mcd__filter .ic-icon > svg {
  fill: rgba(0, 0, 0, 0.8);
}

.smartcharts-dark .ciq-chart-types .ciq-list-item .ic-icon > svg, .smartcharts-dark .cq-chart-controls .cq-menu-btn .ic-icon > svg, .smartcharts-dark .cq-menu-dropdown .title .ic-icon > svg, .smartcharts-dark .sc-mcd__category__head .category-title-left .ic-icon > svg, .smartcharts-dark .sc-mcd__category__head .ic-icon > svg, .smartcharts-dark .sc-mcd__filter .ic-icon > svg {
  fill: #999;
}

.smartcharts-light .ciq-chart-types .ciq-list-item .ic-icon:not(.ic-synthetic_index):not(.ic-cryptocurrency) > svg, .smartcharts-light .cq-chart-controls .cq-menu-btn .ic-icon:not(.ic-synthetic_index):not(.ic-cryptocurrency) > svg, .smartcharts-light .cq-menu-dropdown .title .ic-icon:not(.ic-synthetic_index):not(.ic-cryptocurrency) > svg, .smartcharts-light .sc-mcd__category__head .category-title-left .ic-icon:not(.ic-synthetic_index):not(.ic-cryptocurrency) > svg, .smartcharts-light .sc-mcd__category__head .ic-icon:not(.ic-synthetic_index):not(.ic-cryptocurrency) > svg, .smartcharts-light .sc-mcd__filter .ic-icon:not(.ic-synthetic_index):not(.ic-cryptocurrency) > svg {
  stroke: rgba(0, 0, 0, 0.8);
}

.smartcharts-dark .ciq-chart-types .ciq-list-item .ic-icon:not(.ic-synthetic_index):not(.ic-cryptocurrency) > svg, .smartcharts-dark .cq-chart-controls .cq-menu-btn .ic-icon:not(.ic-synthetic_index):not(.ic-cryptocurrency) > svg, .smartcharts-dark .cq-menu-dropdown .title .ic-icon:not(.ic-synthetic_index):not(.ic-cryptocurrency) > svg, .smartcharts-dark .sc-mcd__category__head .category-title-left .ic-icon:not(.ic-synthetic_index):not(.ic-cryptocurrency) > svg, .smartcharts-dark .sc-mcd__category__head .ic-icon:not(.ic-synthetic_index):not(.ic-cryptocurrency) > svg, .smartcharts-dark .sc-mcd__filter .ic-icon:not(.ic-synthetic_index):not(.ic-cryptocurrency) > svg {
  stroke: #999;
}

.smartcharts-light .ciq-chart-types .ciq-list-item .active.ic-icon svg, .smartcharts-light .cq-chart-controls .stxMenuActive .cq-menu-btn .ic-icon svg {
  fill: #2a3052;
  stroke: #2a3052;
}

.smartcharts-dark .ciq-chart-types .ciq-list-item .active.ic-icon svg, .smartcharts-dark .cq-chart-controls .stxMenuActive .cq-menu-btn .ic-icon svg {
  fill: #fff;
  stroke: #fff;
}

.ic-frx, .ic-otc, .ic-wld {
  display: inline-block;
  height: 32px;
  min-width: 32px;
  position: relative;
  vertical-align: top;
  width: 32px;
}

.ic-frx > span, .ic-otc > span, .ic-wld > span {
  position: absolute;
}

.ic-frx > span:last-child {
  left: 8px;
  top: 8px;
}

.ic-otc > span {
  top: 5px;
}

.ic-otc > span:last-child {
  left: 9px;
  top: -8px;
}

.ic-wld > span:last-child {
  left: 13px;
  top: -11px;
}

.ic-wld > span:last-child svg {
  height: 10px;
  width: 15px;
}

.app-contents--is-mobile .ic-wld > span:last-child {
  left: 11px;
  top: -4px;
}

.app-contents--is-mobile .ic-wld > span:last-child svg {
  box-sizing: content-box;
  box-sizing: initial;
  height: 8px;
  width: 12px;
}

.smartcharts .ic-cryptocurrency > svg, .smartcharts .ic-indices > svg {
  stroke: none !important;
}

.smartcharts-light {
  --empty-state-icon:#000;
}

.smartcharts-dark {
  --empty-state-icon:#fff;
}

.smartcharts-dark .ic-cryptocurrency > svg, .smartcharts-dark .ic-indices > svg {
  filter: brightness(3);
}

.smartcharts-dark .sc-mcd__filter__item--selected .ic-cryptocurrency > svg, .smartcharts-dark .sc-mcd__filter__item--selected .ic-indices > svg {
  filter: brightness(6);
}

.smartcharts-mobile .ic-subtitle, .smartcharts-mobile br {
  display: none;
}

.ciq-chart-types .cq-menu-dropdown {
  box-sizing: border-box;
  height: 174px;
  width: 424px;
}

.ciq-chart-types .cq-menu-dropdown .body {
  padding: 0 7px 0 16px;
}

.ciq-chart-types .ciq-list {
  padding-right: 9px;
}

.ciq-chart-types .ciq-list .ciq-list-item {
  justify-content: space-between;
  padding: 0;
}

.ciq-chart-types .ciq-list .ciq-list-item > .left {
  align-items: center;
  display: inline-flex;
}

.ciq-chart-types .ciq-list .ciq-list-item :last-child .ic-icon > svg {
  stroke: none;
}

.sc-chart-type {
  display: flex;
  justify-content: space-between;
  padding: 24px;
}

.smartcharts-light .sc-chart-type {
  background: #fff;
}

.smartcharts-dark .sc-chart-type {
  background: #20242f;
}

.sc-chart-type__item {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 88px;
  justify-content: center;
  margin-right: 8px;
  position: relative;
  width: 25%;
}

.sc-chart-type__item .ic-icon {
  margin: 0 auto 12px;
}

.sc-chart-type__item .text {
  display: block;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.43;
  text-align: center;
}

.smartcharts-light .sc-chart-type__item .text {
  color: #181c25;
}

.smartcharts-dark .sc-chart-type__item .text {
  color: #c2c2c2;
}

.sc-chart-type__item:last-child {
  margin-right: 0;
}

.smartcharts-light .sc-chart-type__item:hover {
  background: #e6e9e9;
}

.smartcharts-dark .sc-chart-type__item:hover {
  background: #282f3e;
}

.sc-chart-type__item--active {
  background: transparent !important;
}

.smartcharts-dark .sc-chart-type__item--active, .smartcharts-light .sc-chart-type__item--active {
  border-color: #85acb0;
}

.sc-chart-type__item--active .text {
  font-weight: 700;
}

.smartcharts-dark .sc-chart-type__item--active .text {
  color: #fff;
}

.sc-chart-type__item--disabled {
  cursor: auto;
}

.sc-chart-type__item--disabled, .sc-chart-type__item--disabled > span {
  background: transparent !important;
}

.sc-chart-type__item--disabled > span {
  opacity: 0.32;
  pointer-events: none;
}

.smartcharts-mobile .sc-chart-type {
  padding: 8px 10px 24px;
}

.smartcharts-mobile .sc-chart-type__item {
  height: 64px;
  width: 64px;
}

.smartcharts-mobile .sc-chart-type__item .ic-icon {
  margin-bottom: 2px;
}

.sc-scrollbar {
  margin-right: 4px;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  scrollbar-width: thin;
  z-index: 1;
}

.smartcharts-light .sc-scrollbar {
  scrollbar-color: #d6dadb transparent;
}

.smartcharts-dark .sc-scrollbar {
  scrollbar-color: #323738 transparent;
}

.sc-scrollbar::-webkit-scrollbar {
  width: 4px;
}

.sc-scrollbar::-webkit-scrollbar-thumb, .sc-scrollbar::-webkit-scrollbar-track {
  border-radius: 2px;
  -webkit-box-shadow: transparent;
}

.smartcharts-light .sc-scrollbar::-webkit-scrollbar-thumb {
  background: #d6dadb;
}

.smartcharts-dark .sc-scrollbar::-webkit-scrollbar-thumb {
  background: #323738;
}

.sc-scrollbar::-webkit-scrollbar-button, .sc-scrollbar::-webkit-scrollbar-corner {
  display: none;
}

.sc-scrollbar--auto-hide {
  scrollbar-color: transparent transparent !important;
}

.sc-scrollbar--auto-hide::-webkit-scrollbar-thumb {
  display: none;
}

.sc-scrollbar--freeze {
  overflow: hidden !important;
}

.smartcharts-light .sc-scrollbar:hover {
  scrollbar-color: #d6dadb transparent !important;
}

.smartcharts-dark .sc-scrollbar:hover {
  scrollbar-color: #323738 transparent !important;
}

.sc-scrollbar:hover::-webkit-scrollbar-thumb, .smartcharts-mobile .sc-scrollbar--auto-hide::-webkit-scrollbar-thumb {
  display: inherit !important;
}

.ciq-list {
  box-sizing: border-box;
  position: relative;
}

.ciq-list .ciq-list-item {
  align-items: center;
  border-bottom: none;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  font-size: 1.2em;
  height: auto;
  justify-content: flex-start;
  line-height: normal;
  padding: 8px 16px;
}

.smartcharts-light .ciq-list .ciq-list-item {
  background: #fff;
  border: 1px solid #eaeced;
  border-top: none;
  color: #181c25;
}

.smartcharts-dark .ciq-list .ciq-list-item {
  background: #20242f;
  border: 1px solid #1d1f20;
  border-top: none;
  color: #c2c2c2;
}

.ciq-list .ciq-list-item:first-child {
  border-radius: 4px 4px 0 0;
  margin-top: 18px;
}

.smartcharts-light .ciq-list .ciq-list-item:first-child {
  border-top: 1px solid #eaeced;
}

.smartcharts-dark .ciq-list .ciq-list-item:first-child {
  border-top: 1px solid #1d1f20;
}

.ciq-list .ciq-list-item:last-child {
  border-radius: 0 0 4px 4px;
  margin-bottom: 18px;
}

.smartcharts-light .ciq-list .ciq-list-item:hover {
  background-color: #e6e9e9;
}

.smartcharts-dark .ciq-list .ciq-list-item:hover {
  background-color: #282f3e;
}

.ciq-list .ciq-list-item.active {
  font-weight: 700;
}

.smartcharts-light .ciq-list .ciq-list-item.active {
  background-color: rgba(0, 0, 0, 0.16);
  color: #2a3052;
}

.smartcharts-dark .ciq-list .ciq-list-item.active {
  background-color: #323738;
  color: #fff;
}

.ciq-list .ciq-list-item.disabled {
  pointer-events: none;
}

.ciq-list .ciq-list-item.disabled > * {
  cursor: auto;
  opacity: 0.2;
}

.ciq-list > div:nth-child(3) > div {
  opacity: 0.16;
}

.smartcharts-light .ciq-list > div:nth-child(3) > div {
  background-color: #181c25 !important;
}

.smartcharts-dark .ciq-list > div:nth-child(3) > div {
  background-color: #c2c2c2 !important;
}

@media (max-width: 767px) and (min-width: 320px) {
  .smartcharts-portal {
    display: none;
    opacity: 0;
    pointer-events: none;
  }
  .smartcharts-portal--open {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }
  .smartcharts-portal .smartcharts .smartcharts-mobile .cq-modal-dropdown.stxMenuActive {
    z-index: 9999;
  }
  .smartcharts-portal .smartcharts .smartcharts-mobile .cq-menu-dropdown {
    bottom: auto;
    height: auto;
    left: 0;
    transform: translateX(0) translateY(-3em);
    width: 100%;
  }
  .smartcharts-portal .smartcharts .smartcharts-mobile .cq-menu-dropdown.cq-menu-dropdown-enter-active, .smartcharts-portal .smartcharts .smartcharts-mobile .cq-menu-dropdown.cq-menu-dropdown-enter-done {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
  .smartcharts-portal .smartcharts .smartcharts-mobile .cq-menu-dropdown.cq-menu-dropdown-enter-done {
    z-index: 6;
  }
}
.sc-dialog {
  border-radius: 4px;
  box-shadow: 0 0 0.63em 0.03em rgba(0, 0, 0, 0.14);
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: auto;
  transform: translateY(3em);
  transition: pointer-events 0.2s cubic-bezier(0.64, 0.04, 0.35, 1), transform 0.25s cubic-bezier(0.64, 0.04, 0.35, 1), opacity 0.17s cubic-bezier(0.64, 0.04, 0.35, 1), z-index 0.17s cubic-bezier(0.64, 0.04, 0.35, 1);
  width: auto;
  z-index: -3;
}

.smartcharts-light .sc-dialog {
  background: #f2f3f4;
}

.smartcharts-dark .sc-dialog {
  background: #20242f;
}

.sc-dialog.sc-dialog-enter-active, .sc-dialog.sc-dialog-enter-done {
  opacity: 1;
  transform: none;
  z-index: 3;
}

.sc-dialog.sc-dialog-enter-done {
  pointer-events: auto;
}

.sc-dialog__head {
  border-bottom: 2px solid;
  border-radius: 4px 4px 0 0;
  box-sizing: border-box;
  display: flex;
  height: auto;
  justify-content: space-between;
}

.smartcharts-light .sc-dialog__head {
  background: #fff;
  border-color: #f4f4f6;
  color: #181c25;
}

.smartcharts-dark .sc-dialog__head {
  background: #20242f;
  border-color: #282c38;
  color: #fff;
}

.sc-dialog__head--title {
  border-radius: 5px 0 0;
  box-sizing: border-box;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.5;
  min-width: 240px;
  padding: 16px;
  position: relative;
}

.sc-dialog__head--custom {
  width: 100%;
}

.sc-dialog__head--info {
  align-items: center;
  display: flex;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  justify-content: flex-start;
  letter-spacing: normal;
  line-height: 1.5;
  padding: 10px 8px 10px 16px;
}

.sc-dialog__head--info .ic-icon {
  align-items: center;
  cursor: pointer;
  display: flex;
  height: 32px;
  justify-content: center;
  margin-right: 4px;
  width: 32px;
}

.smartcharts-light .sc-dialog__head--info .ic-icon svg {
  fill: #181c25;
}

.smartcharts-dark .sc-dialog__head--info .ic-icon svg {
  fill: #c2c2c2;
}

.smartcharts-light .sc-dialog__head--info .ic-icon:hover {
  background: #e6e9e9;
}

.smartcharts-dark .sc-dialog__head--info .ic-icon:hover {
  background: #282f3e;
}

.sc-dialog__head--search {
  padding: 10px 0 10px 12px;
}

.sc-dialog__head--action {
  align-items: center;
  border-radius: 0 5px 0 0;
  display: flex;
  padding: 0 16px;
}

.sc-dialog__head--action .ic-icon {
  border-radius: 4px;
  cursor: pointer;
  height: 32px;
  line-height: 34px;
  padding: 4px;
  position: relative;
  width: 32px;
}

.smartcharts-light .sc-dialog__head--action .ic-icon svg {
  fill: #181c25;
}

.smartcharts-dark .sc-dialog__head--action .ic-icon svg {
  fill: #c2c2c2;
}

.smartcharts-light .sc-dialog__head--action .ic-icon:hover {
  background: #e6e9e9;
}

.smartcharts-dark .sc-dialog__head--action .ic-icon:hover {
  background: #282f3e;
}

.sc-dialog__body {
  border-radius: 0 0 4px 4px;
  position: relative;
}

.smartcharts-light .sc-dialog--tabular .sc-dialog__head {
  background: #fff;
  border-color: #f2f3f4;
}

.smartcharts-dark .sc-dialog--tabular .sc-dialog__head {
  background: #20242f;
  border-color: #282c38;
}

.sc-dialog--tabular .sc-dialog__head .sc-dialog__head--title {
  width: 200px;
}

.smartcharts-light .sc-dialog--tabular .sc-dialog__head .sc-dialog__head--title {
  background: #f2f3f4;
}

.smartcharts-dark .sc-dialog--tabular .sc-dialog__head .sc-dialog__head--title {
  background: #282c38;
}

.sc-dialog .info-footnote {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  padding: 16px;
  text-align: center;
}

.smartcharts-light .sc-dialog .info-footnote {
  color: #181c25 !important;
}

.smartcharts-dark .sc-dialog .info-footnote {
  color: #c2c2c2 !important;
}

.sc-dialog .info-footnote--mobile {
  font-size: 11px;
}

.tabs--vertical {
  border-radius: 0 0 4px 4px;
  display: flex;
}

.tabs--vertical .react-tabs__tab-list {
  border-bottom: none;
  border-radius: 0 0 0 5px;
  margin: 0;
  min-width: 240px;
  padding: 0;
  width: 240px;
}

.smartcharts-light .tabs--vertical .react-tabs__tab-list {
  background: #f2f3f4;
}

.smartcharts-dark .tabs--vertical .react-tabs__tab-list {
  background: #282c38;
}

.tabs--vertical .react-tabs__tab-list .react-tabs__tab {
  box-shadow: none !important;
  outline: none !important;
}

.tabs--vertical .react-tabs__tab-list .react-tabs__tab {
  align-items: center;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.43;
  padding: 10px 12px;
  width: 100%;
}

.smartcharts-light .tabs--vertical .react-tabs__tab-list .react-tabs__tab {
  border-left: 4px solid #f2f3f4;
  color: #181c25;
}

.smartcharts-dark .tabs--vertical .react-tabs__tab-list .react-tabs__tab {
  border-left: 4px solid #282c38;
  color: #c2c2c2;
}

.tabs--vertical .react-tabs__tab-list .react-tabs__tab .ic-icon {
  height: 16px;
  line-height: 27px;
  margin-right: 16px;
  width: 16px;
}

.smartcharts-light .tabs--vertical .react-tabs__tab-list .react-tabs__tab .ic-icon {
  fill: #181c25;
}

.smartcharts-dark .tabs--vertical .react-tabs__tab-list .react-tabs__tab .ic-icon {
  fill: #c2c2c2;
}

.tabs--vertical .react-tabs__tab-list .react-tabs__tab .ic-icon svg {
  height: 16px;
  width: 16px;
}

.smartcharts-light .tabs--vertical .react-tabs__tab-list .react-tabs__tab .ic-icon svg {
  fill: #181c25;
}

.smartcharts-dark .tabs--vertical .react-tabs__tab-list .react-tabs__tab .ic-icon svg {
  fill: #c2c2c2;
}

.tabs--vertical .react-tabs__tab-list .react-tabs__tab .sc-notification-badge {
  left: 0;
  margin-left: 5px;
  position: relative;
  top: 0;
}

.smartcharts-light .tabs--vertical .react-tabs__tab-list .react-tabs__tab:hover {
  background: #e6e9e9;
  border-left-color: #e6e9e9;
}

.smartcharts-dark .tabs--vertical .react-tabs__tab-list .react-tabs__tab:hover {
  background: #282f3e;
  border-left-color: #282f3e;
}

.tabs--vertical .react-tabs__tab-list .react-tabs__tab:after {
  display: none !important;
}

.tabs--vertical .react-tabs__tab-list .react-tabs__tab--selected {
  border-radius: 0;
  font-weight: 700;
}

.smartcharts-light .tabs--vertical .react-tabs__tab-list .react-tabs__tab--selected {
  background: #fff !important;
  border-left-color: #ff444f !important;
}

.smartcharts-dark .tabs--vertical .react-tabs__tab-list .react-tabs__tab--selected {
  background: #20242f !important;
  border-left-color: #ff444f !important;
  color: #fff !important;
}

.smartcharts-dark .tabs--vertical .react-tabs__tab-list .react-tabs__tab--selected .ic-icon {
  fill: #fff;
}

.tabs--vertical .react-tabs__tab-panel {
  border-radius: 0 0 4px;
  width: calc(100% - 200px);
}

.smartcharts-light .tabs--vertical .react-tabs__tab-panel {
  background: #fff;
}

.smartcharts-dark .tabs--vertical .react-tabs__tab-panel {
  background: #20242f;
}

.tabs--vertical .react-tabs__tab-panel .items {
  border-radius: 0 0 4px;
}

.smartcharts-mobile .sc-dialog {
  left: 10px;
  width: calc(100% - 20px);
}

.smartcharts-mobile .sc-dialog .react-tabs__tab-panel {
  height: 430px;
}

.smartcharts-mobile .sc-dialog--tabular .sc-dtools__panel {
  width: 100%;
}

.smartcharts-mobile .sc-dialog--tabular .sc-dtools__category {
  margin-top: 0;
}

.smartcharts-mobile .sc-dialog--tabular .sc-dtools__category__head {
  padding-left: 1rem;
}

.smartcharts-light .smartcharts-mobile .sc-dialog--tabular .sc-dialog__body {
  background: #fff;
}

.smartcharts-dark .smartcharts-mobile .sc-dialog--tabular .sc-dialog__body {
  background: #20242f;
}

.smartcharts-mobile .sc-dialog--tabular .sc-dialog__body .tabs--horizontal .react-tabs__tab-list {
  display: flex;
  font-size: 14px;
}

.smartcharts-light .smartcharts-mobile .sc-dialog--tabular .sc-dialog__body .tabs--horizontal .react-tabs__tab-list {
  border-bottom: 2px solid #f2f3f4;
}

.smartcharts-dark .smartcharts-mobile .sc-dialog--tabular .sc-dialog__body .tabs--horizontal .react-tabs__tab-list {
  border-bottom: 2px solid #282c38;
}

.smartcharts-mobile .sc-dialog--tabular .sc-dialog__body .tabs--horizontal .react-tabs__tab-list .ic-icon svg {
  height: 16px;
  width: 16px;
}

.smartcharts-light .smartcharts-mobile .sc-dialog--tabular .sc-dialog__body .tabs--horizontal .react-tabs__tab-list .ic-icon svg {
  fill: #181c25;
}

.smartcharts-dark .smartcharts-mobile .sc-dialog--tabular .sc-dialog__body .tabs--horizontal .react-tabs__tab-list .ic-icon svg {
  fill: #c2c2c2;
}

.smartcharts-mobile .sc-dialog--tabular .sc-dialog__body .tabs--horizontal .react-tabs__tab-list .react-tabs__tab {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 10px 15px;
  width: 100%;
}

.smartcharts-light .smartcharts-mobile .sc-dialog--tabular .sc-dialog__body .tabs--horizontal .react-tabs__tab-list .react-tabs__tab {
  color: #181c25;
}

.smartcharts-dark .smartcharts-mobile .sc-dialog--tabular .sc-dialog__body .tabs--horizontal .react-tabs__tab-list .react-tabs__tab {
  color: #c2c2c2;
}

.smartcharts-mobile .sc-dialog--tabular .sc-dialog__body .tabs--horizontal .react-tabs__tab-list .react-tabs__tab .sc-notification-badge {
  border-radius: 10px;
  font-size: 12px;
  height: 19px;
  left: 78%;
  top: 12px;
  width: 19px;
}

.smartcharts-mobile .sc-dialog--tabular .sc-dialog__body .tabs--horizontal .react-tabs__tab-list .react-tabs__tab:focus:after {
  display: none;
}

.smartcharts-mobile .sc-dialog--tabular .sc-dialog__body .tabs--horizontal .react-tabs__tab-list .react-tabs__tab--selected {
  border: none;
  font-weight: 700;
}

.smartcharts-light .smartcharts-mobile .sc-dialog--tabular .sc-dialog__body .tabs--horizontal .react-tabs__tab-list .react-tabs__tab--selected {
  background: #fff !important;
}

.smartcharts-light .smartcharts-mobile .sc-dialog--tabular .sc-dialog__body .tabs--horizontal .react-tabs__tab-list .react-tabs__tab--selected {
  border-bottom: 3px solid #ff444f;
}

.smartcharts-dark .smartcharts-mobile .sc-dialog--tabular .sc-dialog__body .tabs--horizontal .react-tabs__tab-list .react-tabs__tab--selected {
  background: #20242f !important;
  color: #fff !important;
}

.smartcharts-dark .smartcharts-mobile .sc-dialog--tabular .sc-dialog__body .tabs--horizontal .react-tabs__tab-list .react-tabs__tab--selected {
  border-bottom: 3px solid #ff444f;
}

.smartcharts-dark .smartcharts-mobile .sc-dialog--tabular .sc-dialog__body .tabs--horizontal .react-tabs__tab-list .react-tabs__tab--selected .ic-icon {
  fill: #fff;
}

.smartcharts-light .smartcharts-mobile .sc-dialog--tabular .sc-dialog__head {
  background: #fff;
  border-color: #f2f3f4;
}

.smartcharts-dark .smartcharts-mobile .sc-dialog--tabular .sc-dialog__head {
  background: #20242f;
  border-color: #282c38;
}

.smartcharts-mobile .sc-dialog--tabular .sc-dialog__head .sc-dialog__head--title {
  min-width: 150px;
  padding: 15px;
  width: 150px;
}

.smartcharts-dark .smartcharts-mobile .sc-dialog--tabular .sc-dialog__head .sc-dialog__head--title, .smartcharts-light .smartcharts-mobile .sc-dialog--tabular .sc-dialog__head .sc-dialog__head--title {
  background: transparent;
}

.smartcharts-mobile .sc-dialog--tabular .sc-dialog__head .sc-dialog__head--info {
  font-size: 14px;
  left: 50px;
  padding: 10px 8px;
  position: absolute;
  width: calc(100% - 90px);
}

.smartcharts-light .smartcharts-mobile .sc-dialog--tabular .sc-dialog__head .sc-dialog__head--info {
  background: #fff;
}

.smartcharts-dark .smartcharts-mobile .sc-dialog--tabular .sc-dialog__head .sc-dialog__head--info {
  background: #20242f;
}

.smartcharts-mobile .cq-modal--settings .sc-dialog {
  left: calc(50% - 160px);
  width: 320px;
}

.sc-chart-mode .sc-dialog {
  width: 424px;
}

.sc-chart-mode__menu {
  position: relative;
}

.sc-chart-mode__menu .ic-icon {
  height: 16px;
  margin: auto;
  position: relative;
  top: -4px;
  width: 16px;
}

.sc-chart-mode__menu .ic-icon svg {
  height: 16px !important;
  stroke: none !important;
  width: 16px !important;
}

.smartcharts-light .sc-chart-mode__menu .ic-icon svg {
  fill: #181c25 !important;
}

.smartcharts-dark .sc-chart-mode__menu .ic-icon svg {
  fill: #c2c2c2 !important;
}

.sc-chart-mode__menu__timeperiod {
  font-size: 8px;
  font-weight: 700;
  left: 4px;
  position: absolute;
  top: -9px;
}

.smartcharts-light .sc-chart-mode__menu__timeperiod {
  color: #181c25 !important;
}

.smartcharts-dark .sc-chart-mode__menu__timeperiod {
  color: #c2c2c2 !important;
}

.sc-chart-mode__section {
  border-radius: 4px;
}

.smartcharts-light .sc-chart-mode__section {
  background: #fff;
}

.smartcharts-dark .sc-chart-mode__section {
  background: #20242f;
}

.smartcharts-light .sc-chart-mode__section__item:first-child {
  border-bottom: 4px solid #f2f3f4;
}

.smartcharts-dark .sc-chart-mode__section__item:first-child {
  border-bottom: 4px solid #282c38;
}

.sc-chart-mode__smooth-toggle {
  border-radius: 4px;
  margin-top: 4px;
  padding: 24px;
}

.smartcharts-light .sc-chart-mode__smooth-toggle {
  background: #fff;
  border: 1px solid #f2f3f4;
}

.smartcharts-dark .sc-chart-mode__smooth-toggle {
  background: #20242f;
  border: 1px solid #282c38;
}

.sc-chart-mode__smooth-toggle-content {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.sc-chart-mode__smooth-toggle-text {
  flex: 1;
}

.sc-chart-mode__smooth-toggle-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.smartcharts-light .sc-chart-mode__smooth-toggle-title {
  color: #181c25;
}

.smartcharts-dark .sc-chart-mode__smooth-toggle-title {
  color: #c2c2c2;
}

.sc-chart-mode__smooth-toggle-description {
  font-size: 12px;
  line-height: 1.4;
}

.smartcharts-light .sc-chart-mode__smooth-toggle-description {
  color: #181c25;
}

.smartcharts-dark .sc-chart-mode__smooth-toggle-description {
  color: #999;
}

.sc-toolbar-widget .sc-chart-mode__menu {
  padding: 8px;
}

.sc-toolbar-widget .sc-chart-mode__menu__timeperiod {
  left: 8px;
  top: 3px;
}

@media screen and (max-width: 600px) {
  .sc-toolbar-widget {
    width: auto !important;
  }
  .sc-toolbar-widget {
    display: flex;
  }
}
.smartcharts-mobile .sc-chart-mode .sc-dialog {
  height: calc(100% - 32px);
  left: auto;
  max-height: 555px;
  overflow-x: inherit;
  width: 300px;
}

.smartcharts-mobile .sc-chart-mode__menu, .smartcharts-mobile .sc-dtools__menu {
  height: 32px !important;
  padding: 4px !important;
  width: 32px !important;
}

.smartcharts-mobile .sc-chart-mode__menu, .smartcharts-mobile .sc-dtools__menu {
  align-items: center;
  backdrop-filter: blur(4px);
  border-radius: 32px;
  display: flex;
  gap: 8px;
  justify-content: center;
}

.smartcharts-light .smartcharts-mobile .sc-chart-mode__menu, .smartcharts-light .smartcharts-mobile .sc-dtools__menu {
  background: rgba(0, 0, 0, 0.04);
}

.smartcharts-dark .smartcharts-mobile .sc-chart-mode__menu, .smartcharts-dark .smartcharts-mobile .sc-dtools__menu {
  background: hsla(0, 0%, 100%, 0.04);
}

.smartcharts-mobile .sc-chart-mode__menu .sc-notification-badge, .smartcharts-mobile .sc-dtools__menu .sc-notification-badge {
  font-size: 0;
  height: 8px;
  right: 4px;
  width: 8px;
}

.smartcharts-mobile .sc-chart-mode__menu__timeperiod {
  display: none;
}

.smartcharts-mobile .sc-chart-mode__menu__duration {
  font-size: 14px;
  font-style: normal;
  line-height: 20px;
  text-align: center;
  text-transform: lowercase;
  white-space: nowrap;
  word-spacing: -0.3em;
}

.smartcharts-light .smartcharts-mobile .sc-chart-mode__menu__duration {
  color: #181c25;
}

.smartcharts-dark .smartcharts-mobile .sc-chart-mode__menu__duration {
  color: #c2c2c2;
}

.form {
  box-sizing: border-box;
  flex-grow: 1;
  overflow-y: scroll;
  padding: 8px 0;
}

.form .form__label {
  align-items: center;
  display: flex;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  justify-content: space-between;
  letter-spacing: normal;
  line-height: 1.4;
}

.smartcharts-light .form .form__label {
  color: #181c25;
}

.smartcharts-dark .form .form__label {
  color: #c2c2c2;
}

.form .form__control {
  display: block;
}

.form__group {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin-bottom: 16px;
  padding: 0;
}

.form__group--colorpicker, .form__group--select {
  height: 40px;
  position: relative;
}

.form__group--colorpicker .form__label, .form__group--select .form__label {
  margin-bottom: -8px;
  margin-left: 10px;
}

.form__group--colorpicker .form__label span, .form__group--select .form__label span {
  padding-left: 2px;
  padding-right: 2px;
  z-index: 1;
}

.smartcharts-light .form__group--colorpicker .form__label span, .smartcharts-light .form__group--select .form__label span {
  background: #fff;
}

.smartcharts-dark .form__group--colorpicker .form__label span, .smartcharts-dark .form__group--select .form__label span {
  background: #20242f;
}

.form__group--switch {
  flex-direction: row;
  justify-content: flex-start;
}

.form__group--switch .form__label {
  font-size: 14px;
  min-width: 70px;
  width: auto;
}

.form__group--switch .form__control {
  padding-left: 16px;
  width: auto;
}

.form__group--end {
  height: 20px;
  margin-bottom: 0;
}

.form__input-group {
  padding: 16px 24px;
}

.smartcharts-light .form__input-group {
  border-top: 4px solid #f2f3f4;
}

.smartcharts-dark .form__input-group {
  border-top: 4px solid #20242f;
}

.form__input-group h4 {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.43;
  margin: 0 0 16px;
}

.smartcharts-light .form__input-group h4 {
  color: #181c25;
}

.smartcharts-dark .form__input-group h4 {
  color: #fff;
}

.form__input-group:first-child {
  border-top: none;
}

.form__input-group--show-zones {
  margin-bottom: 30px;
}

.form__input-group--show-zones .form__label {
  font-size: 14px;
}

.form--indicator-setting {
  max-height: 280px;
  max-width: 320px;
  min-height: 280px;
  min-width: 320px;
  overflow: hidden;
}

.smartcharts-light .form--indicator-setting {
  background: #fff;
}

.smartcharts-dark .form--indicator-setting {
  background: #20242f;
}

.form--indicator-setting .form__input-group {
  width: 320px !important;
}

.form--indicator-setting .form__input-group {
  box-sizing: border-box;
}

.form--indicator-setting .form__input-group--result:last-child {
  height: 280px;
}

.form--indicator-setting .sc-scrollbar {
  height: 282px;
}

.form--fractal-chaos-bands .form__group--switch {
  margin-bottom: 98px;
}

.form--drawing-tool .sc-scrollbar {
  height: 280px;
}

.sc-slider {
  align-items: center;
  display: flex;
  height: 12px;
  position: relative;
  width: 100%;
}

.sc-slider .sc-slider-range {
  height: 12px;
  margin-top: 9px;
  padding-right: 8px;
  position: relative;
  width: calc(100% - 38px);
}

.sc-slider .sc-slider-range div, .sc-slider .sc-slider-range > input {
  left: 0;
  position: absolute;
  top: 0;
}

.sc-slider .sc-slider-range input[type=range] {
  -webkit-appearance: none;
  background: transparent;
  height: 12px;
  margin: 0;
  top: -5px;
  width: 100%;
}

.sc-slider .sc-slider-range input[type=range]:focus {
  outline: none;
}

.sc-slider .sc-slider-range input[type=range]::-webkit-slider-runnable-track {
  background: transparent;
  border: 0 solid #010101;
  border-radius: 0;
  cursor: pointer;
  height: 12px;
  width: 100%;
}

.sc-slider .sc-slider-range input[type=range]::-moz-range-track {
  background: transparent;
  border: 0 solid #010101;
  border-radius: 0;
  cursor: pointer;
  height: 12px;
  height: 14px;
  margin-top: -3px;
  top: -3px;
  width: 100%;
}

.sc-slider .sc-slider-range input[type=range]::-ms-track {
  background: transparent;
  border: 0 solid #010101;
  border-radius: 0;
  color: transparent;
  cursor: pointer;
  height: 12px;
  width: 100%;
}

.sc-slider .sc-slider-range input[type=range]::-ms-thumb {
  border-radius: 7px;
  box-sizing: border-box;
  cursor: pointer;
  height: 10px;
  margin-top: 0;
  width: 10px;
}

.smartcharts-dark .sc-slider .sc-slider-range input[type=range]::-ms-thumb, .smartcharts-light .sc-slider .sc-slider-range input[type=range]::-ms-thumb {
  background-color: #ff444f;
  border: 2px solid #ff444f;
}

.sc-slider .sc-slider-range input[type=range]::-moz-range-thumb {
  border-radius: 7px;
  box-sizing: border-box;
  cursor: pointer;
  height: 10px;
  margin-top: 0;
  width: 10px;
}

.smartcharts-dark .sc-slider .sc-slider-range input[type=range]::-moz-range-thumb, .smartcharts-light .sc-slider .sc-slider-range input[type=range]::-moz-range-thumb {
  background-color: #ff444f;
  border: 2px solid #ff444f;
}

.sc-slider .sc-slider-range input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border-radius: 7px;
  box-sizing: border-box;
  cursor: pointer;
  height: 10px;
  margin-top: 1px;
  width: 10px;
}

.smartcharts-dark .sc-slider .sc-slider-range input[type=range]::-webkit-slider-thumb, .smartcharts-light .sc-slider .sc-slider-range input[type=range]::-webkit-slider-thumb {
  background-color: #ff444f;
  border: 2px solid #ff444f;
}

.sc-slider .sc-slider-range input[type=range]::-moz-focus-outer {
  border: 0;
}

.sc-slider .sc-slider-range .sc-slider-bar {
  height: 2px;
  outline: none;
  width: 100%;
}

.smartcharts-light .sc-slider .sc-slider-range .sc-slider-bar {
  background: #eaeced;
}

.smartcharts-dark .sc-slider .sc-slider-range .sc-slider-bar {
  background: #1d1f20;
}

.sc-slider .sc-slider-range .sc-slider-active-bar {
  height: 2px;
  min-width: 10px;
}

.smartcharts-dark .sc-slider .sc-slider-range .sc-slider-active-bar, .smartcharts-light .sc-slider .sc-slider-range .sc-slider-active-bar {
  background: #ff444f;
}

.sc-slider > div:last-child {
  flex-grow: 1;
  font-size: 14px;
  font-weight: 700;
  text-align: right;
  width: 26px;
}

.smartcharts-light .sc-slider > div:last-child {
  color: #181c25;
}

.smartcharts-dark .sc-slider > div:last-child {
  color: #fff;
}

.sc-dropdown {
  height: 40px;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: 100%;
}

.smartcharts-light .sc-dropdown {
  background: #fff;
}

.smartcharts-dark .sc-dropdown {
  background: #20242f;
}

.sc-dropdown .subtitle {
  margin-left: 10px;
  position: absolute;
  top: -6px;
}

.sc-dropdown .subtitle span {
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.4;
  padding-left: 4px;
  padding-right: 4px;
  z-index: 1;
}

.smartcharts-light .sc-dropdown .subtitle span {
  background: #fff;
  color: #181c25;
}

.smartcharts-dark .sc-dropdown .subtitle span {
  background: #20242f;
  color: #c2c2c2;
}

.sc-dropdown .value {
  align-items: center;
  border-radius: 4px;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  height: 40px;
  justify-content: space-between;
  letter-spacing: normal;
  line-height: 1.43;
  padding: 10px 12px;
  text-transform: capitalize;
}

.smartcharts-light .sc-dropdown .value {
  color: #181c25 !important;
}

.smartcharts-light .sc-dropdown .value {
  border: 1px solid #d6dadb;
}

.smartcharts-dark .sc-dropdown .value {
  color: #c2c2c2 !important;
}

.smartcharts-dark .sc-dropdown .value {
  border: 1px solid #323738;
}

.sc-dropdown .value .ic-icon {
  line-height: 35px;
}

.sc-dropdown .value .ic-icon svg {
  pointer-events: none;
  transition: transform 0.6s;
}

.smartcharts-light .sc-dropdown .value .ic-icon svg {
  fill: #181c25;
}

.smartcharts-dark .sc-dropdown .value .ic-icon svg {
  fill: #c2c2c2;
}

.sc-dropdown .value .text {
  max-width: 220px;
  min-width: 210px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sc-dropdown .value:after {
  content: " ";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.smartcharts-light .sc-dropdown .value:hover {
  border-color: #999;
}

.smartcharts-dark .sc-dropdown .value:hover {
  border-color: #6e6e6e;
}

.smartcharts-dark .sc-dropdown .value.active, .smartcharts-light .sc-dropdown .value.active {
  border-color: #85acb0;
}

.sc-dropdown .value.active svg {
  transform: scaleY(-1);
}

.sc-dropdown .dropdown {
  border-radius: 4px;
  box-shadow: 0 2px 8px 0 rgba(42, 48, 82, 0.14);
  box-sizing: border-box;
  font-size: 14px;
  max-height: 2px;
  opacity: 0;
  overflow: scroll;
  pointer-events: none;
  position: absolute;
  right: -4px;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s;
  width: 272px;
  z-index: 2;
}

.smartcharts-light .sc-dropdown .dropdown {
  background: #fff;
}

.smartcharts-dark .sc-dropdown .dropdown {
  background: #20242f;
}

.sc-dropdown .dropdown.active {
  max-height: 200px;
  opacity: 1;
  pointer-events: all;
  transform: translateY(8px);
}

.smartcharts-light .sc-dropdown .dropdown.active {
  box-shadow: 0 16px 16px 0 rgba(0, 0, 0, 0.08), 0 0 16px 0 rgba(0, 0, 0, 0.08);
}

.smartcharts-dark .sc-dropdown .dropdown.active {
  box-shadow: 0 16px 16px 0 rgba(0, 0, 0, 0.64), 0 0 16px 0 rgba(0, 0, 0, 0.64);
}

.sc-dropdown .dropdown .row {
  cursor: pointer;
  padding: 10px 16px 9px;
  text-transform: capitalize;
}

.smartcharts-light .sc-dropdown .dropdown .row {
  color: #181c25;
}

.smartcharts-dark .sc-dropdown .dropdown .row {
  color: #c2c2c2;
}

.smartcharts-light .sc-dropdown .dropdown .row:hover {
  background: #e6e9e9;
}

.smartcharts-dark .sc-dropdown .dropdown .row:hover {
  background: #282f3e;
}

.sc-dropdown .dropdown .row--selected {
  font-weight: 700;
}

.smartcharts-light .sc-dropdown .dropdown .row--selected {
  background: #d6dadb !important;
  color: #181c25 !important;
}

.smartcharts-dark .sc-dropdown .dropdown .row--selected {
  background: #384156 !important;
  color: #fff !important;
}

.sc-dropdown .option {
  display: inline-block;
  margin-right: 16px;
  pointer-events: none;
  width: 100%;
}

.sc-dropdown .solid-1 {
  border-top-style: solid;
  border-top-width: 1px;
}

.sc-dropdown .dotted-1 {
  border-top-style: dotted;
  border-top-width: 1px;
}

.sc-dropdown .dashed-1 {
  border-top-style: dashed;
  border-top-width: 1px;
}

.sc-dropdown .solid-3 {
  border-top-style: solid;
  border-top-width: 2px;
}

.sc-dropdown .dotted-3 {
  border-top-style: dotted;
  border-top-width: 2px;
}

.sc-dropdown .dashed-3 {
  border-top-style: dashed;
  border-top-width: 2px;
}

.sc-dropdown .solid-5 {
  border-top-style: solid;
  border-top-width: 3px;
}

.sc-dropdown .dotted-5 {
  border-top-style: dotted;
  border-top-width: 3px;
}

.sc-dropdown .dashed-5 {
  border-top-style: dashed;
  border-top-width: 3px;
}

.sc-dropdown.active {
  position: fixed;
  z-index: 2;
}

.smartcharts-dark .sc-dropdown.active .subtitle span, .smartcharts-light .sc-dropdown.active .subtitle span {
  color: #85acb0;
}

.sc-color-picker {
  height: 40px;
  position: relative;
  width: 100%;
}

.smartcharts-light .sc-color-picker {
  background: #fff;
}

.smartcharts-dark .sc-color-picker {
  background: #20242f;
}

.sc-color-picker .subtitle {
  margin-left: 10px;
  position: absolute;
  top: -6px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: 1;
}

.sc-color-picker .subtitle span {
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.4;
  padding-left: 4px;
  padding-right: 4px;
  z-index: 1;
}

.smartcharts-light .sc-color-picker .subtitle span {
  background: #fff;
  color: #181c25;
}

.smartcharts-dark .sc-color-picker .subtitle span {
  background: #20242f;
  color: #c2c2c2;
}

.sc-color-picker .value {
  align-items: center;
  border-radius: 4px;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  height: 40px;
  justify-content: space-between;
  line-height: 40px;
  padding: 10px 12px;
  position: relative;
  width: 100%;
}

.smartcharts-light .sc-color-picker .value {
  color: #181c25 !important;
}

.smartcharts-light .sc-color-picker .value {
  background-color: #fff;
  border: 1px solid #d6dadb;
}

.smartcharts-dark .sc-color-picker .value {
  color: #c2c2c2 !important;
}

.smartcharts-dark .sc-color-picker .value {
  background-color: #20242f;
  border: 1px solid #323738;
}

.sc-color-picker .value:before {
  content: " ";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.sc-color-picker .value .sc-input-color {
  border-radius: 4px;
  height: 100%;
  margin-right: 16px;
  width: 100%;
}

.sc-color-picker .value .ic-icon {
  line-height: 35px;
}

.sc-color-picker .value .ic-icon svg {
  pointer-events: none;
  transition: transform 0.6s;
}

.smartcharts-light .sc-color-picker .value .ic-icon svg {
  fill: #181c25;
}

.smartcharts-dark .sc-color-picker .value .ic-icon svg {
  fill: #c2c2c2;
}

.smartcharts-light .sc-color-picker .value:hover {
  border-color: #999;
}

.smartcharts-dark .sc-color-picker .value:hover {
  border-color: #6e6e6e;
}

.sc-color-picker .dropdown {
  border-radius: 4px;
  box-sizing: border-box;
  opacity: 0;
  padding: 8px;
  pointer-events: none;
  position: absolute;
  right: 0;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s;
  width: 266px;
  z-index: 2;
}

.smartcharts-light .sc-color-picker .dropdown {
  background: #fff;
  box-shadow: 0 16px 16px 0 rgba(0, 0, 0, 0.08), 0 0 16px 0 rgba(0, 0, 0, 0.08);
}

.smartcharts-dark .sc-color-picker .dropdown {
  background: #20242f;
  box-shadow: 0 16px 16px 0 rgba(0, 0, 0, 0.64), 0 0 16px 0 rgba(0, 0, 0, 0.64);
}

.sc-color-picker .dropdown.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(8px);
}

.sc-color-picker .dropdown .row {
  align-items: center;
  display: flex;
  height: 18px;
  justify-content: space-between;
  margin-top: 2px;
  width: 100%;
}

.sc-color-picker .dropdown .row .tile-color {
  cursor: pointer;
  height: 15px;
  width: 15px;
}

.sc-color-picker.active {
  position: fixed;
  z-index: 2;
}

.smartcharts-dark .sc-color-picker.active .subtitle span, .smartcharts-light .sc-color-picker.active .subtitle span {
  color: #85acb0;
}

.smartcharts-dark .sc-color-picker.active .value, .smartcharts-light .sc-color-picker.active .value {
  border-color: #85acb0;
}

.sc-color-picker.active .value svg {
  transform: scaleY(-1);
}

.sc-color-picker .sc-color-picker, .sc-color-picker .sc-numeric-input {
  max-width: 124px;
  min-width: 124px;
}

.sc-switch {
  border-radius: 9px;
  cursor: pointer;
  height: 18px;
  position: relative;
  width: 32px;
}

.sc-switch .handle {
  border-radius: 7px;
  height: 14px;
  position: absolute;
  top: 2px;
  transition: left 0.2s;
  width: 14px;
}

.smartcharts-dark .sc-switch .handle, .smartcharts-light .sc-switch .handle {
  background: #fff;
}

.sc-switch.on .handle {
  left: 16px;
}

.smartcharts-light .sc-switch.on {
  background: #4bb4b3;
}

.smartcharts-dark .sc-switch.on {
  background: #00a79e;
}

.sc-switch.off .handle {
  left: 2px;
}

.smartcharts-light .sc-switch.off {
  background: #eaeced;
}

.smartcharts-dark .sc-switch.off {
  background: hsla(0, 0%, 100%, 0.16);
}

.sc-checkbox {
  align-items: center;
  cursor: pointer;
  display: flex;
}

.sc-checkbox__label {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.43;
}

.sc-checkbox__box, .sc-checkbox__box svg {
  border-radius: 2px;
}

.smartcharts-light .sc-checkbox__box svg {
  fill: #999;
}

.smartcharts-dark .sc-checkbox__box svg {
  fill: #6e6e6e;
}

.smartcharts-dark .sc-checkbox--checked .sc-checkbox__box svg, .smartcharts-light .sc-checkbox--checked .sc-checkbox__box svg {
  background: #ff444f;
  fill: #ff444f;
}

.sc-switch-icon {
  display: flex;
}

.sc-switch-icon__icon {
  height: 120px;
  width: 160px;
}

.sc-switch-icon__description {
  padding-left: 16px;
}

.sc-fontsetting, .sc-numbercolorpicker {
  display: inline-flex;
}

.sc-numbercolorpicker {
  display: flex;
}

.sc-numbercolorpicker input {
  box-shadow: none !important;
}

.smartcharts-light .sc-numbercolorpicker input {
  background: #fff;
  border: 1px solid #d6dadb;
  color: #181c25;
}

.smartcharts-dark .sc-numbercolorpicker input {
  background: #20242f;
  border: 1px solid rgba(127, 131, 151, 0.3);
  color: #fff;
}

.smartcharts-light .sc-numbercolorpicker input:hover {
  border-color: #999 !important;
}

.smartcharts-dark .sc-numbercolorpicker input:hover {
  border-color: #6e6e6e !important;
}

.smartcharts-dark .sc-numbercolorpicker input:focus, .smartcharts-light .sc-numbercolorpicker input:focus {
  border-color: #85acb0 !important;
}

.sc-numbercolorpicker .sc-numeric-input {
  min-width: 124px;
  width: 124px;
}

.sc-numbercolorpicker .sc-color-picker {
  width: 124px;
}

.sc-numeric-input {
  height: 40px;
  margin-right: 25px;
  position: relative;
  width: 100%;
}

.sc-numeric-input .subtitle {
  margin-left: 10px;
  position: absolute;
  top: -6px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.sc-numeric-input .subtitle span {
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.4;
  padding-left: 4px;
  padding-right: 4px;
  z-index: 1;
}

.smartcharts-light .sc-numeric-input .subtitle span {
  background: #fff;
  color: #181c25;
}

.smartcharts-dark .sc-numeric-input .subtitle span {
  background: #20242f;
  color: #c2c2c2;
}

.sc-numeric-input input[type=number] {
  box-shadow: none !important;
  width: 100% !important;
}

.sc-numeric-input input[type=number] {
  -moz-appearance: textfield;
  border-radius: 4px;
  box-sizing: border-box;
  cursor: pointer;
  height: 40px;
  line-height: 40px;
  outline: none;
  padding: 10px 12px;
}

.smartcharts-light .sc-numeric-input input[type=number] {
  color: #181c25 !important;
}

.smartcharts-light .sc-numeric-input input[type=number] {
  border: 1px solid #d6dadb;
}

.smartcharts-dark .sc-numeric-input input[type=number] {
  color: #c2c2c2 !important;
}

.smartcharts-dark .sc-numeric-input input[type=number] {
  border: 1px solid #323738;
}

.sc-numeric-input input[type=number]::-webkit-inner-spin-button, .sc-numeric-input input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.sc-numeric-input input[type=number]:focus, .sc-numeric-input input[type=number]:hover {
  -moz-appearance: textfield;
}

.smartcharts-light .sc-numeric-input input[type=number]:hover {
  border-color: #999 !important;
}

.smartcharts-dark .sc-numeric-input input[type=number]:hover {
  border-color: #6e6e6e !important;
}

.smartcharts-light .sc-numeric-input input[type=number]:focus {
  border-color: #85acb0 !important;
  color: #181c25 !important;
}

.smartcharts-dark .sc-numeric-input input[type=number]:focus {
  border-color: #85acb0 !important;
  color: #fff !important;
}

.smartcharts-dark .sc-numeric-input input[type=number]:focus + .subtitle > span, .smartcharts-light .sc-numeric-input input[type=number]:focus + .subtitle > span {
  color: #85acb0 !important;
}

.sc-numeric-input .sc-numeric-input-buttons {
  border-radius: 0 3px 3px 0;
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 1px;
  top: 1px;
}

.smartcharts-light .sc-numeric-input .sc-numeric-input-buttons {
  background: #fff;
}

.smartcharts-dark .sc-numeric-input .sc-numeric-input-buttons {
  background: #20242f;
}

.sc-numeric-input .sc-numeric-input-buttons .ic-icon {
  cursor: pointer;
  height: 19px;
  line-height: 19px;
  width: 24px;
}

.smartcharts-light .sc-numeric-input .sc-numeric-input-buttons .ic-icon svg {
  fill: #181c25;
}

.smartcharts-dark .sc-numeric-input .sc-numeric-input-buttons .ic-icon svg {
  fill: #c2c2c2;
}

.sc-numeric-input .sc-numeric-input-buttons .ic-icon:first-child {
  border-radius: 0 3px 0 0;
}

.sc-numeric-input .sc-numeric-input-buttons .ic-icon:last-child {
  border-radius: 0 0 3px;
}

.smartcharts-light .sc-numeric-input .sc-numeric-input-buttons .ic-icon:hover {
  background: #e6e9e9;
}

.smartcharts-dark .sc-numeric-input .sc-numeric-input-buttons .ic-icon:hover {
  background: #282f3e;
}

.smartcharts-light .sc-numeric-input:hover input[type=number] {
  border-color: #999;
}

.smartcharts-dark .sc-numeric-input:hover input[type=number] {
  border-color: #6e6e6e;
}

.sc-changefontsize {
  margin-right: 5px;
  width: 56px;
}

.sc-changefontfamily {
  width: 138px;
}

.sc-toggle {
  align-items: center;
  display: flex;
  justify-content: space-around;
}

.sc-toggle > .ic-icon {
  height: 24px;
  width: 24px;
}

.sc-interval {
  border-radius: 4px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.smartcharts-light .sc-interval {
  background: #fff;
  color: #181c25;
}

.smartcharts-dark .sc-interval {
  background: #20242f;
  color: #c2c2c2;
}

.sc-interval__head {
  display: flex;
}

.sc-interval__head strong {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.5;
}

.smartcharts-dark .sc-interval__head strong {
  color: #fff;
}

.sc-interval__info {
  display: none;
}

.sc-interval__content {
  display: flex;
  flex-wrap: wrap;
  padding-top: 16px;
}

.sc-interval__content .sc-interval__item {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 4px;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  height: 32px;
  justify-content: center;
  letter-spacing: normal;
  line-height: 1.43;
  margin: 0 4px 8px 0;
  position: relative;
  text-align: center;
  width: 23.9%;
}

.smartcharts-light .sc-interval__content .sc-interval__item:hover {
  background: #e6e9e9;
}

.smartcharts-dark .sc-interval__content .sc-interval__item:hover {
  background: #282f3e;
}

.sc-interval__content .sc-interval__item--active {
  background: transparent !important;
}

.smartcharts-light .sc-interval__content .sc-interval__item--active {
  border-color: #85acb0;
  color: #181c25;
  font-weight: 700;
}

.smartcharts-dark .sc-interval__content .sc-interval__item--active {
  border-color: #85acb0;
  color: #fff;
  font-weight: 700;
}

.sc-interval__content .sc-interval__item--disabled {
  background: transparent !important;
}

.sc-interval__content .sc-interval__item--disabled {
  cursor: auto;
}

.sc-interval__content .sc-interval__item--disabled span {
  opacity: 0.32;
  pointer-events: none;
}

.smartcharts-mobile .sc-interval {
  padding: 8px 10px 24px;
}

.smartcharts-mobile .sc-interval__info {
  display: block;
}

.smartcharts-mobile .sc-interval__content .sc-interval__item {
  width: 31.9% !important;
}

.smartcharts-mobile .sc-interval__content .sc-interval__item {
  margin: 0 4px 8px 0;
}

.sc-studies .react-tabs__tab-list .react-tabs__tab {
  box-shadow: none !important;
  outline: none !important;
}

.sc-studies .hidden, .sc-studies .react-tabs__tab-list .react-tabs__tab:after {
  display: none;
}

.sc-studies__panel {
  box-sizing: border-box;
  height: 392px;
  padding: 8px 0 8px 8px;
  width: 360px;
}

.sc-studies__panel > h3 {
  color: #999;
  display: none;
  font-size: 14px;
  font-weight: 400;
  margin: 18px 0;
  padding: 0 8px;
}

.sc-studies__panel__head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.sc-studies__panel__head p {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 0.1;
  padding: 0 8px;
}

.smartcharts-light .sc-studies__panel__head p {
  color: #181c25;
}

.smartcharts-dark .sc-studies__panel__head p {
  color: #c2c2c2;
}

.sc-studies__panel__content {
  width: 100%;
}

.sc-studies__panel__content--active .sc-studies__list__item {
  cursor: auto;
  height: 48px;
}

.sc-studies__panel__content--active .sc-studies__list__item__box {
  height: 48px;
  padding: 4px 16px;
}

.sc-studies__panel--active {
  padding-right: 8px;
}

.sc-studies__panel--search .sc-scrollbar .sc-studies__category:first-child .sc-studies__list__item:first-child .sc-tooltip__inner, .sc-studies__panel--search .sc-scrollbar .sc-studies__category:first-child .sc-studies__list__item:nth-child(2) .sc-tooltip__inner {
  left: auto;
  position: fixed;
  top: auto;
  transform: translateY(-100%) translateX(10%);
}

.sc-studies--empty {
  align-content: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px;
  text-align: center;
}

.sc-studies--empty > .ic-icon {
  height: 80px;
  margin: 80px auto 24px;
  width: 130px;
}

.sc-studies--empty strong {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.43;
  margin-bottom: 8px;
  text-align: center;
}

.smartcharts-light .sc-studies--empty strong {
  color: #181c25;
}

.smartcharts-dark .sc-studies--empty strong {
  color: #fff;
}

.sc-studies--empty p {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

.smartcharts-light .sc-studies--empty p {
  color: #999;
}

.smartcharts-dark .sc-studies--empty p {
  color: #6e6e6e;
}

.sc-studies__list__item {
  display: block;
  height: 40px;
}

.sc-studies__list__item__box {
  align-items: center;
  border-radius: 4px;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  height: 40px;
  justify-content: space-between;
  margin-right: 4px;
  position: relative;
}

.smartcharts-light .sc-studies__list__item__box:hover {
  background: #e6e9e9;
}

.smartcharts-dark .sc-studies__list__item__box:hover {
  background: #282f3e;
}

.sc-studies__list__item__box:hover .ic-info {
  opacity: 1;
}

.sc-studies__list__item__box .info {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  padding: 8px 0 8px 16px;
  width: 100%;
}

.sc-studies__list__item__box .info .ic-icon {
  margin-right: 16px;
}

.sc-studies__list__item__box .info .text {
  display: flex;
  flex-direction: column;
  padding-left: 16px;
}

.sc-studies__list__item__box .info .text span {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.43;
  margin-right: 16px;
}

.smartcharts-light .sc-studies__list__item__box .info .text span {
  color: #181c25;
}

.smartcharts-dark .sc-studies__list__item__box .info .text span {
  color: #c2c2c2;
}

.sc-studies__list__item__box .info .text small {
  display: block;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.5;
  margin-top: 2px;
  max-width: 170px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.smartcharts-light .sc-studies__list__item__box .info .text small {
  color: #999;
}

.smartcharts-dark .sc-studies__list__item__box .info .text small {
  color: #6e6e6e;
}

.sc-studies__list__item__box .detail {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  padding: 0;
}

.sc-studies__list__item__box .detail span {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.43;
  margin-left: 8px;
  text-align: right;
}

.sc-studies__list__item__box .detail .ic-icon {
  cursor: pointer;
  height: 16px;
  transition: none;
  width: 16px;
}

.sc-studies__list__item__box .detail .ic-icon svg {
  height: 16px;
  width: 16px;
}

.smartcharts-light .sc-studies__list__item__box .detail .ic-icon svg {
  fill: #181c25;
}

.smartcharts-dark .sc-studies__list__item__box .detail .ic-icon svg {
  fill: #c2c2c2;
}

.sc-studies__list__item__box .detail .ic-icon.ic-info {
  margin-right: 16px;
}

.sc-studies__list__item__box .ic-info {
  opacity: 0;
}

.sc-studies__list__item .sc-tooltip__inner {
  height: auto;
  text-align: center;
  white-space: break-spaces;
  width: 280px;
}

.sc-studies__list__item--disabled, .sc-studies__list__item--disabled-prediction .info {
  opacity: 0.3;
  pointer-events: none;
}

.sc-studies__category__head {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.43;
  padding: 8px;
}

.smartcharts-light .sc-studies__category__head {
  color: #999;
}

.smartcharts-dark .sc-studies__category__head {
  color: #6e6e6e;
}

.sc-studies__category__body {
  width: 100%;
}

.sc-studies__info {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  padding: 16px 24px;
  position: absolute;
  right: 0;
  width: 360px;
  z-index: 2;
}

.smartcharts-light .sc-studies__info {
  background: #fff;
  color: #181c25;
}

.smartcharts-dark .sc-studies__info {
  background: #20242f;
  color: #c2c2c2;
}

.sc-studies__info__content {
  margin: -20px -20px 0;
  padding: 0;
}

.sc-studies__info__content p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.43;
  margin: 0;
  padding: 16px 24px;
}

.sc-studies__info__footer {
  position: relative;
  width: 100%;
}

.sc-studies__info__footer .sc-btn {
  width: 100%;
}

.sc-studies__info__footer .sc-btn:disabled {
  opacity: 0.32;
  pointer-events: none;
}

.sc-studies__info__footer .sc-tooltip__inner {
  height: auto;
  text-align: center;
  white-space: break-spaces;
  width: 280px;
}

.smartcharts-mobile .sc-studies .react-tabs__tab-panel {
  height: 425px !important;
}

.smartcharts-mobile .sc-studies .sc-dialog {
  max-height: calc(100vh - 90px);
  overflow-y: scroll;
}

.smartcharts-mobile .tabs--vertical .react-tabs__tab-list {
  min-width: 50px;
  width: 50px;
}

.smartcharts-mobile .tabs--vertical .react-tabs__tab-list .react-tabs__tab span:not(.sc-notification-badge):not(.ic-icon) {
  display: none;
}

.smartcharts-mobile .tabs--vertical .react-tabs__tab-list .react-tabs__tab .sc-notification-badge {
  left: 19px;
  position: absolute;
  top: 2px;
}

.smartcharts-mobile .tabs--vertical .react-tabs__tab-list .react-tabs__tab .ic-icon, .smartcharts-mobile .tabs--vertical .react-tabs__tab-list .react-tabs__tab .ic-icon svg {
  height: 22px;
  width: 22px;
}

.smartcharts-mobile .tabs--vertical .react-tabs__tab-panel {
  width: calc(100% - 50px);
}

.smartcharts-mobile .sc-studies__panel {
  width: 100%;
}

.smartcharts-mobile .sc-studies__panel > h3 {
  display: block;
}

.smartcharts-mobile .sc-studies__panel__content--active .sc-studies__list__item {
  padding: 4px;
}

.smartcharts-mobile .sc-studies__list__item .info {
  padding: 8px 0 8px 8px;
}

.smartcharts-mobile .sc-studies__list__item .info .text {
  padding-left: 0;
}

.smartcharts-mobile .sc-studies__list__item .ic-info {
  opacity: 1;
}

.smartcharts-mobile .sc-studies__list__item .detail span {
  margin-left: 16px;
}

.smartcharts-mobile .sc-studies__info {
  width: calc(100% - 50px);
}

.smartcharts-mobile .sc-studies__info > p {
  height: 360px;
  max-height: 360px;
  overflow-y: scroll;
}

.sc-search-input {
  box-sizing: border-box;
  padding: 0;
  position: relative;
  width: 100%;
}

.sc-search-input > input {
  background-color: transparent;
  border: none;
  border-radius: 4px;
  box-sizing: border-box;
  direction: ltr;
  font-size: 1.4rem;
  line-height: 2;
  outline: 0;
  padding-left: 32px;
  transition: border-color 0.2s ease-in-out;
  width: 100%;
}

.smartcharts-light .sc-search-input > input::-webkit-input-placeholder {
  color: #d6d6d6;
}

.smartcharts-dark .sc-search-input > input::-webkit-input-placeholder {
  color: #3e3e3e;
}

.smartcharts-light .sc-search-input > input:-moz-placeholder {
  color: #d6d6d6;
}

.smartcharts-dark .sc-search-input > input:-moz-placeholder {
  color: #3e3e3e;
}

.smartcharts-light .sc-search-input > input::-moz-placeholder {
  color: #d6d6d6;
}

.smartcharts-dark .sc-search-input > input::-moz-placeholder {
  color: #3e3e3e;
}

.smartcharts-light .sc-search-input > input:-ms-input-placeholder {
  color: #d6d6d6;
}

.smartcharts-dark .sc-search-input > input:-ms-input-placeholder {
  color: #3e3e3e;
}

.smartcharts-light .sc-search-input > input {
  background: #fff;
  border: 1px solid #d6dadb;
  color: #181c25;
}

.smartcharts-dark .sc-search-input > input {
  background: #20242f;
  border: 1px solid #323738;
  color: #fff;
}

.smartcharts-dark .sc-search-input > input:hover, .smartcharts-light .sc-search-input > input:hover {
  border-color: #999;
}

.smartcharts-dark .sc-search-input > input:focus, .smartcharts-light .sc-search-input > input:focus {
  border-color: #85acb0;
}

.sc-search-input .ic-icon {
  height: 16px;
  left: 8px;
  position: absolute;
  top: 6px;
  width: 16px;
}

.sc-search-input .ic-icon svg {
  height: 16px;
  top: -1px;
  width: 16px;
}

.smartcharts-light .sc-search-input .ic-icon svg {
  fill: #181c25;
}

.smartcharts-dark .sc-search-input .ic-icon svg {
  fill: #c2c2c2;
}

.sc-search-input .ic-icon.icon-reset {
  cursor: pointer;
  left: auto;
  opacity: 0;
  pointer-events: none;
  right: 8px;
  top: 5px;
}

.sc-search-input .ic-icon.icon-reset svg {
  stroke: none;
}

.smartcharts-light .sc-search-input .ic-icon.icon-reset svg {
  fill: #999;
}

.smartcharts-dark .sc-search-input .ic-icon.icon-reset svg {
  fill: #181c25;
}

.smartcharts-light .sc-search-input.active > input {
  border-color: #85acb0 !important;
  color: #181c25 !important;
}

.smartcharts-dark .sc-search-input.active > input {
  border-color: #85acb0 !important;
  color: #fff !important;
}

.sc-search-input.active .ic-icon.icon-reset {
  opacity: 1;
  pointer-events: auto;
}

.sc-views-menu .sc-dialog {
  width: 320px;
}

.form--sc-views {
  overflow-y: hidden !important;
}

.form--sc-views__input {
  display: flex;
  height: 40px;
  position: relative;
}

.form--sc-views__input .sc-input {
  border-radius: 4px 0 0 4px;
  height: 40px;
  text-align: left;
  width: calc(100% - 40px);
}

.smartcharts-light .form--sc-views__input .sc-input {
  color: #7f8397;
}

.smartcharts-dark .form--sc-views__input .sc-input {
  color: #fff;
}

.smartcharts-light .form--sc-views__input .sc-input::-moz-placeholder {
  color: #999;
}

.smartcharts-light .form--sc-views__input .sc-input::placeholder {
  color: #999;
}

.smartcharts-dark .form--sc-views__input .sc-input::-moz-placeholder {
  color: #6e6e6e;
}

.smartcharts-dark .form--sc-views__input .sc-input::placeholder {
  color: #6e6e6e;
}

.form--sc-views__input .subtitle {
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  left: 10px;
  letter-spacing: normal;
  line-height: 1.4;
  opacity: 0;
  position: absolute;
  top: -6px;
  z-index: 1;
}

.form--sc-views__input .subtitle span {
  padding: 0 4px;
}

.smartcharts-light .form--sc-views__input .subtitle span {
  background: #fff;
}

.smartcharts-dark .form--sc-views__input .subtitle span {
  background: #20242f;
}

.form--sc-views__input button {
  border: none !important;
}

.form--sc-views__input button {
  border-radius: 0 4px 4px 0;
  height: 40px;
  padding: 8px 7px;
  width: 40px;
}

.smartcharts-dark .form--sc-views__input button svg, .smartcharts-light .form--sc-views__input button svg {
  fill: #fff;
}

.form--sc-views__input--active .subtitle {
  opacity: 1;
}

.smartcharts-dark .form--sc-views__input--active .subtitle, .smartcharts-light .form--sc-views__input--active .subtitle {
  color: #85acb0;
}

.smartcharts-light .form--sc-views__input--active input {
  border-color: #85acb0;
  color: #181c25;
}

.smartcharts-dark .form--sc-views__input--active input {
  border-color: #85acb0;
  color: #fff;
}

.smartcharts-dark .form--sc-views__input--active button, .smartcharts-light .form--sc-views__input--active button {
  background: #ff444f;
}

.sc-views {
  border-radius: 0 0 4px 4px;
  height: 304px;
  position: relative;
}

.smartcharts-light .sc-views {
  background: #fff;
}

.smartcharts-dark .sc-views {
  background: #20242f;
}

.sc-views__menu {
  position: relative;
}

.sc-views__menu .ic-icon {
  height: 16px;
  margin: auto;
  position: relative;
  top: -4px;
  width: 16px;
}

.sc-views__menu .ic-icon svg {
  height: 16px !important;
  stroke: none !important;
  width: 16px !important;
}

.smartcharts-light .sc-views__menu .ic-icon svg {
  fill: #181c25 !important;
}

.smartcharts-dark .sc-views__menu .ic-icon svg {
  fill: #c2c2c2 !important;
}

.sc-views--empty {
  align-content: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.sc-views--empty > .ic-icon {
  height: 130px;
  margin: 24px auto 0;
  width: 130px;
}

.sc-views--empty p {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.5;
  margin: 0 0 46px;
  text-align: center;
}

.smartcharts-light .sc-views--empty p {
  color: #999;
}

.smartcharts-dark .sc-views--empty p {
  color: #6e6e6e;
}

.sc-views--empty button {
  align-items: center;
  background: transparent;
  display: flex;
  font-weight: 700;
  justify-content: center;
  outline: none;
  padding: 10px 16px;
}

.sc-views--empty button > .ic-icon {
  height: 16px;
  line-height: 16px;
  margin-right: 6px;
  width: 16px;
}

.smartcharts-dark .sc-views--empty button > .ic-icon, .smartcharts-light .sc-views--empty button > .ic-icon {
  fill: #ff444f;
}

.sc-views__views {
  padding: 16px 8px 0;
}

.smartcharts-light .sc-views__views {
  border-top: 1px solid #f2f3f4;
}

.smartcharts-dark .sc-views__views {
  border-top: 1px solid #282c38;
}

.sc-views__views__head {
  display: flex;
  justify-content: space-between;
  padding: 8px 16px;
}

.sc-views__views__head h5 {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.43;
  margin: 0;
}

.smartcharts-light .sc-views__views__head h5 {
  color: #999;
}

.smartcharts-dark .sc-views__views__head h5 {
  color: #6e6e6e;
}

.sc-views__views__head button {
  outline: none !important;
}

.sc-views__views__head button {
  background: transparent;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  height: 24px;
}

.smartcharts-light .sc-views__views__head button {
  border: 1px solid #999;
  color: #181c25;
}

.smartcharts-dark .sc-views__views__head button {
  border: 1px solid #6e6e6e;
  color: #fff;
}

.sc-views__views__list__item {
  align-items: center;
  border-radius: 4px;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  height: 40px;
  justify-content: space-between;
  letter-spacing: normal;
  line-height: 1.43;
  padding: 10px 16px;
  position: relative;
}

.smartcharts-light .sc-views__views__list__item {
  color: #181c25;
}

.smartcharts-dark .sc-views__views__list__item {
  color: #c2c2c2;
}

.sc-views__views__list__item .text {
  max-width: 240px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sc-views__views__list__item .text--disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.smartcharts-light .sc-views__views__list__item .ic-icon {
  fill: #181c25;
}

.smartcharts-dark .sc-views__views__list__item .ic-icon {
  fill: #c2c2c2;
}

.sc-views__views__list__item .sc-tooltip__inner {
  height: auto;
  max-width: 304px;
  text-align: center;
  white-space: break-spaces;
}

.smartcharts-light .sc-views__views__list__item:hover {
  background: #e6e9e9;
}

.smartcharts-dark .sc-views__views__list__item:hover {
  background: #282f3e;
}

.sc-views--overwrite {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 40;
}

.smartcharts-light .sc-views--overwrite {
  background: #fff;
}

.smartcharts-dark .sc-views--overwrite {
  background: #20242f;
}

.sc-views--overwrite__content {
  box-sizing: border-box;
  height: 230px;
  padding: 24px 16px 16px;
  text-align: center;
}

.sc-views--overwrite__content .ic-icon {
  height: 128px;
  margin: auto;
  width: 128px;
}

.sc-views--overwrite__content p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.43;
  text-align: center;
}

.smartcharts-light .sc-views--overwrite__content p {
  color: #181c25;
}

.smartcharts-dark .sc-views--overwrite__content p {
  color: #c2c2c2;
}

.sc-views--overwrite__footer {
  box-sizing: border-box;
  height: 72px;
  padding: 16px 24px;
  text-align: right;
}

.smartcharts-light .sc-views--overwrite__footer {
  border-top: 2px solid #f2f3f4;
}

.smartcharts-dark .sc-views--overwrite__footer {
  border-top: 2px solid #282c38;
}

.sc-views--overwrite__footer button {
  margin-left: 8px;
}

.smartcharts-mobile .sc-views-menu .sc-dialog {
  left: auto;
  width: 300px;
}

.sc-chart-size {
  display: flex !important;
  width: auto !important;
}

.sc-chart-size {
  height: auto;
}

.sc-chart-size:after {
  display: none;
}

.sc-chart-size > span {
  cursor: pointer;
  opacity: 1;
  position: relative;
  transition: scale 0.25s;
}

.sc-chart-size .cq-menu-btn {
  cursor: pointer;
  padding: 5px 0;
}

.smartcharts-light .sc-chart-size .cq-menu-btn:hover {
  background: #e6e9e9;
}

.smartcharts-dark .sc-chart-size .cq-menu-btn:hover {
  background: #282f3e;
}

.sc-dtools .tabs--vertical .react-tabs__tab-list {
  padding-top: 0 !important;
}

.sc-dtools--empty {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.sc-dtools--empty > .ic-icon {
  height: 80px;
  margin: 0 auto 24px;
  width: 130px;
}

.sc-dtools--empty p {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.5;
  margin: 0 0 46px;
  text-align: center;
}

.smartcharts-light .sc-dtools--empty p {
  color: #6e6e6e;
}

.smartcharts-dark .sc-dtools--empty p {
  color: #999;
}

.sc-dtools__panel {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: 392px;
  padding: 16px 0 16px 8px;
  width: 360px;
}

.sc-dtools__panel__head {
  padding: 0 16px 16px;
  text-align: right;
}

.sc-dtools__panel__head .sc-btn {
  cursor: pointer;
}

.sc-dtools__panel__content {
  box-sizing: border-box;
}

.sc-dtools__panel__content--active .sc-dtools__list__item {
  cursor: auto;
  height: 48px;
  padding: 4px 16px;
}

.sc-dtools__list__item {
  align-items: center;
  border-radius: 4px;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  height: 40px;
  justify-content: space-between;
  margin-right: 8px;
  padding: 10px 16px;
}

.smartcharts-light .sc-dtools__list__item {
  color: #181c25;
}

.smartcharts-dark .sc-dtools__list__item {
  color: #c2c2c2;
}

.smartcharts-light .sc-dtools__list__item:hover {
  background: #e6e9e9;
}

.smartcharts-dark .sc-dtools__list__item:hover {
  background: #282f3e;
}

.sc-dtools__list__item .info {
  align-items: center;
  display: flex;
}

.sc-dtools__list__item .info .text {
  display: flex;
  flex-direction: column;
  padding-left: 16px;
}

.sc-dtools__list__item .info .text span {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.43;
  margin-right: 16px;
}

.sc-dtools__list__item .info .text small {
  display: block;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.5;
  margin-top: 2px;
}

.smartcharts-light .sc-dtools__list__item .info .text small {
  color: #999;
}

.smartcharts-dark .sc-dtools__list__item .info .text small {
  color: #6e6e6e;
}

.sc-dtools__list__item .actions {
  display: flex;
  justify-content: space-between;
}

.sc-dtools__list__item .actions small {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.43;
  text-align: right;
}

.sc-dtools__list__item .actions .ic-icon {
  cursor: pointer;
}

.smartcharts-light .sc-dtools__list__item .actions .ic-icon svg {
  fill: #181c25;
}

.smartcharts-dark .sc-dtools__list__item .actions .ic-icon svg {
  fill: #c2c2c2;
}

.sc-dtools__category {
  margin-top: 16px;
}

.sc-dtools__category__head {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.43;
  margin-bottom: 8px;
}

.smartcharts-light .sc-dtools__category__head {
  color: #999;
}

.smartcharts-dark .sc-dtools__category__head {
  color: #6e6e6e;
}

.sc-dtools .cq-menu-dropdown {
  overflow: visible !important;
}

.sc-dtools .cq-menu-dropdown {
  box-sizing: border-box;
  width: 200px;
}

.sc-dtools .cq-menu-dropdown .body {
  overflow: visible;
  padding: 0 7px 0 16px;
}

.sc-dtools .cq-menu-dropdown .body .ciq-list {
  padding-right: 9px;
}

.sc-chart-setting .tabs--vertical .react-tabs__tab-list {
  padding-top: 0 !important;
}

.sc-chart-setting__panel {
  box-sizing: border-box;
  height: 564px;
  padding: 24px;
  width: 536px;
}

.sc-chart-setting .form__group {
  margin-bottom: 24px;
}

.sc-chart-setting .form__group .form__label {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.43;
  margin-bottom: 16px;
}

.smartcharts-light .sc-chart-setting .form__group .form__label {
  color: #181c25;
}

.smartcharts-dark .sc-chart-setting .form__group .form__label {
  color: #fff;
}

.smartcharts-light .sc-chart-setting .form__group .sc-checkbox .sc-checkbox__label {
  color: #181c25;
}

.smartcharts-dark .sc-chart-setting .form__group .sc-checkbox .sc-checkbox__label {
  color: #eaeced;
}

.sc-chart-setting .form__group--theme .form__control {
  display: flex;
  justify-content: space-between;
}

.sc-chart-setting .form__group--theme .form__group__item {
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
}

.sc-chart-setting .form__group--theme .form__group__item .ic-icon {
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  height: 182px;
  width: 238px;
}

.sc-chart-setting .form__group--theme .form__group__item .text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.43;
  padding-top: 8px;
  text-align: center;
}

.smartcharts-light .sc-chart-setting .form__group--theme .form__group__item .text {
  color: #181c25;
}

.smartcharts-dark .sc-chart-setting .form__group--theme .form__group__item .text {
  color: #eaeced;
}

.smartcharts-dark .sc-chart-setting .form__group--theme .form__group__item--active .ic-icon, .smartcharts-light .sc-chart-setting .form__group--theme .form__group__item--active .ic-icon {
  border-color: #85acb0;
}

.sc-chart-setting .form__group--theme .form__group__item--active .text {
  font-weight: 700;
}

.sc-chart-setting .form__group--language .form__control {
  display: flex;
  flex-wrap: wrap;
}

.sc-chart-setting .form__group--language .form__group__item {
  border: 1px solid transparent;
  border-radius: 4px;
  box-sizing: border-box;
  cursor: pointer;
  height: 84px;
  margin: 0 16px 16px 0;
  text-align: center;
  width: 80px;
}

.sc-chart-setting .form__group--language .form__group__item .ic-icon {
  height: 24px;
  margin: 16px auto 8px;
  width: 36px;
}

.sc-chart-setting .form__group--language .form__group__item .ic-icon svg {
  height: 24px;
  width: 36px;
}

.sc-chart-setting .form__group--language .form__group__item .text {
  display: block;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.43;
  text-align: center;
}

.smartcharts-light .sc-chart-setting .form__group--language .form__group__item .text {
  color: #181c25;
}

.smartcharts-dark .sc-chart-setting .form__group--language .form__group__item .text {
  color: #eaeced;
}

.smartcharts-light .sc-chart-setting .form__group--language .form__group__item:hover {
  background: #e6e9e9;
}

.smartcharts-dark .sc-chart-setting .form__group--language .form__group__item:hover {
  background: #282f3e;
}

.sc-chart-setting .form__group--language .form__group__item--active {
  background: transparent !important;
}

.smartcharts-dark .sc-chart-setting .form__group--language .form__group__item--active, .smartcharts-light .sc-chart-setting .form__group--language .form__group__item--active {
  border-color: #85acb0;
}

.sc-download-menu .sc-dialog {
  width: 320px;
}

.sc-download {
  border-radius: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 24px;
  grid-gap: 16px;
  font-size: 12px;
  gap: 16px;
  justify-items: center;
  line-height: 18px;
}

.sc-download__description {
  grid-column: 1/span 2;
  justify-self: start;
}

.smartcharts-light .sc-download {
  background: #fff;
  color: #181c25;
}

.smartcharts-dark .sc-download {
  background: #20242f;
  color: #c2c2c2;
}

.sc-download__item {
  align-content: center;
  border-radius: 4px;
  box-sizing: border-box;
  cursor: pointer;
  height: 88px;
  justify-content: center;
  margin-right: 8px;
  align-content: center;
  justify-content: center;
  place-content: center;
  position: relative;
  text-align: center;
  width: 88px;
}

.sc-download__item .ic-icon {
  height: 32px;
  margin: 0 auto 4px;
  width: 32px;
}

.smartcharts-light .sc-download__item:hover {
  background: #e6e9e9;
}

.smartcharts-dark .sc-download__item:hover {
  background: #282f3e;
}

.sc-download__item__label {
  display: block;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.43;
}

.smartcharts-mobile .sc-download {
  justify-content: space-around;
}

.smartcharts-mobile .sc-download__item {
  margin: 0;
}

.smartcharts-mobile .sc-download-menu .sc-dialog {
  left: auto;
  width: 300px;
}

.react-tabs {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.react-tabs__tab-list {
  border-bottom: 1px solid #aaa;
  margin: 0 0 10px;
  padding: 0;
}

.react-tabs__tab {
  border: 1px solid transparent;
  border-bottom: none;
  bottom: -1px;
  cursor: pointer;
  display: inline-block;
  list-style: none;
  padding: 6px 12px;
  position: relative;
}

.react-tabs__tab--selected {
  background: #fff;
  border-color: #aaa;
  border-radius: 5px 5px 0 0;
  color: #000;
}

.react-tabs__tab--disabled {
  color: GrayText;
  cursor: default;
}

.react-tabs__tab:focus {
  outline: none;
}

.react-tabs__tab:focus:after {
  background: #fff;
  bottom: -5px;
  content: "";
  height: 5px;
  left: -4px;
  position: absolute;
  right: -4px;
}

.react-tabs__tab-panel {
  display: none;
}

.react-tabs__tab-panel--selected {
  display: block;
}

body, html {
  margin: 0;
  touch-action: none;
}

/*! rtl:ignore */
.chartContainer {
  display: block;
  font-family: IBM Plex Sans, sans-serif;
  font-size: 12px;
  position: relative;
  transition: height 0.4s ease-in-out;
}

.smartcharts-light .chartContainer {
  background: #fff;
  color: #555975;
}

.smartcharts-dark .chartContainer {
  background: #181c25;
  color: #999;
}

/*! rtl:ignore */
.chartContainer .flutter-chart, .cq-inchart-subholder {
  height: 100%;
  width: 100%;
}

.cq-inchart-subholder {
  pointer-events: none;
  position: absolute;
  top: 0;
}

/*! rtl:ignore */
.ciq-chart {
  height: auto;
  touch-action: none;
  width: 100%;
  z-index: 4;
}

.smartcharts-light .ciq-chart {
  background: #fff;
}

.smartcharts-dark .ciq-chart {
  background: #181c25;
}

.ciq-chart--screenshot .calendar, .ciq-chart--screenshot .cq-menu-dropdown, .ciq-chart--screenshot .sc-navigation-widget, .ciq-chart--screenshot .sc-toolbar-widget, .ciq-chart--screenshot .time-picker-dropdown {
  display: none !important;
}

/*! rtl:ignore */
.cq-chart-control-left .chartContainer {
  margin-left: 100px;
  width: calc(100% - 100px);
}

.cq-change:after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  content: "";
  display: block;
  float: right; /*! rtl:ignore */
  height: 0;
  margin-right: 5px;
  margin-top: 5px;
  width: 0;
}

.cq-change.up:after {
  border-bottom: 8px solid #39b19d;
}

.cq-change.down:after {
  border-top: 8px solid #e31c4b;
}

.cq-change .cq-todays-change-percent {
  padding-left: 3px;
}

/*! rtl:ignore */
.scroll_to_recent:active, .scroll_to_recent:hover {
  opacity: 1;
}

/*! rtl:ignore */
.scroll_to_recent {
  align-items: center;
  border-radius: 4px;
  bottom: 12px;
  color: #fff;
  cursor: pointer;
  display: flex;
  height: 32px;
  justify-content: center;
  line-height: 0px;
  margin-bottom: 17px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  right: 80px;
  width: 32px;
  z-index: 12;
}

.smartcharts-light .scroll_to_recent {
  background: #f2f3f4;
}

.smartcharts-dark .scroll_to_recent {
  background: #20242f;
}

.scroll_to_recent svg {
  position: relative;
}

.smartcharts-light .scroll_to_recent svg {
  fill: #181c25;
}

.smartcharts-dark .scroll_to_recent svg {
  fill: #c2c2c2;
}

.mSticky {
  border-radius: 4px;
  display: none;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.5;
  position: absolute;
  text-align: center;
  white-space: nowrap;
  z-index: 44;
}

.smartcharts-light .mSticky {
  background: #f2f3f4;
  color: #181c25;
}

.smartcharts-dark .mSticky {
  background: #20242f;
  color: #c2c2c2;
}

.mSticky .mStickyInterior {
  border: none;
  border-radius: 4px 4px 0 0;
  box-sizing: border-box;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.5;
  padding: 8px;
  position: relative;
  text-align: center;
  width: 100%;
}

.smartcharts-light .mSticky .mStickyInterior {
  background: #d6dadb;
  color: #181c25;
}

.smartcharts-dark .mSticky .mStickyInterior {
  background: #323738;
  color: #fff;
}

.mouseDeleteInstructions {
  background: transparent;
  display: block;
  margin: 8px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 153, 51, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 153, 51, 0);
  }
  to {
    box-shadow: 0 0 0 0 rgba(255, 153, 51, 0);
  }
}
.smartcharts-mobile .mSticky {
  background: none;
}

.smartcharts-mobile .mSticky .mStickyInterior {
  padding: 0 8px !important;
}

.smartcharts-mobile .mSticky .mStickyInterior {
  border-radius: 3px 0 0 3px;
  line-height: 30px;
  margin: 0;
  width: auto;
  z-index: 99;
}

.smartcharts-mobile .ciq-chart {
  padding: 0 8px;
}

#gtx-trans {
  display: none;
}

.fast-marker {
  height: 100%;
  overflow: hidden;
  position: absolute;
  width: 100%;
}

.ciq-chart, .ciq-chart-area {
  box-sizing: border-box;
}

.ciq-chart-area, .cq-context {
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.smartcharts-light .ciq-chart-area, .smartcharts-light .cq-context {
  background: #fff;
}

.smartcharts-dark .ciq-chart-area, .smartcharts-dark .cq-context {
  background: #20242f;
}

.smartcharts {
  font-family: IBM Plex Sans, sans-serif;
  font-size: 1em;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
}

.smartcharts-light .smartcharts {
  background: #fff;
}

.smartcharts-dark .smartcharts {
  background: #20242f;
}

.smartcharts input {
  font-weight: 300;
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}

.smartcharts-light .smartcharts input {
  background-color: #fff;
  color: #7f8397;
}

.smartcharts-dark .smartcharts input {
  background-color: #20242f;
  color: #fff;
}

.smartcharts-light .smartcharts input::-moz-placeholder {
  color: #7f8397;
}

.smartcharts-light .smartcharts input::-moz-placeholder, .smartcharts-light .smartcharts input::placeholder {
  color: #7f8397;
}

.smartcharts-dark .smartcharts input::-moz-placeholder {
  color: #fff;
}

.smartcharts-dark .smartcharts input::-moz-placeholder, .smartcharts-dark .smartcharts input::placeholder {
  color: #fff;
}

.smartcharts a, .smartcharts div, .smartcharts li, .smartcharts span {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.smartcharts .cq-top-ui-widgets {
  margin: 0.2em 0.5em;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: 5;
}

.smartcharts .cq-top-ui-widgets > div {
  pointer-events: auto;
}

.smartcharts .ciq-menu {
  box-sizing: border-box;
  display: inline-block;
  position: relative;
}

.smartcharts .smartcharts-desktop, .smartcharts .smartcharts-mobile {
  height: 100%;
  position: absolute;
  width: 100%;
}

.smartcharts .cq-chart-control-left .cq-top-ui-widgets {
  left: 90px;
}

.smartcharts .cq-chart-control-left .cq-notifications {
  right: 100px;
}

.smartcharts--loading .ciq-navigation-widget, .smartcharts--loading .cq-menu-btn, .smartcharts--loading .sc-chart-footer, .smartcharts--loading .sc-toolbar-widget {
  opacity: 0.24;
}

.smartcharts .smartcharts-mobile {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.smartcharts .smartcharts-mobile .cq-top-ui-widgets {
  z-index: 13;
}

/*! rtl:ignore */
.cq-modal__overlay {
  align-items: center;
  bottom: 0;
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  overflow: hidden;
  right: 0;
  top: 0;
  width: 100%;
}

/*! rtl:ignore */
.ciq-modal .cq-modal__overlay {
  position: absolute;
  z-index: 9999;
}

.smartcharts-dark .ciq-modal .cq-modal__overlay, .smartcharts-light .ciq-modal .cq-modal__overlay {
  background: rgba(0, 0, 0, 0.72);
}

.ciq-menu {
  position: relative;
}

.smartcharts-light .ciq-menu {
  color: rgba(0, 0, 0, 0.8);
}

.smartcharts-dark .ciq-menu {
  color: #999;
}

.ciq-menu > span {
  font-weight: 400;
  padding: 0 12px 0 0;
  position: relative;
}

.ciq-menu .cq-menu-btn {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.ciq-menu.ciq-enabled > .cq-menu-btn {
  cursor: pointer;
}

.cq-menu-dropdown {
  border-radius: 3px;
  bottom: 5em;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  display: block;
  height: auto;
  line-height: 2.1em;
  margin-top: 5px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  transition: transform 0.3s, opacity 0.3s;
  z-index: 3;
}

.smartcharts-light .cq-menu-dropdown {
  background-color: #f2f3f4;
  color: #181c25;
}

.smartcharts-dark .cq-menu-dropdown {
  background-color: #20242f;
  color: #c2c2c2;
}

.cq-menu-dropdown.cq-menu-dropdown-enter-active, .cq-menu-dropdown.cq-menu-dropdown-enter-done {
  opacity: 1;
}

.cq-menu-dropdown.cq-menu-dropdown-enter-done {
  pointer-events: auto;
}

.cq-menu-dropdown .title {
  box-sizing: content-box;
  box-sizing: initial;
  display: block;
  height: 20px;
  line-height: 20px;
  padding: 9px 16px;
}

.smartcharts-light .cq-menu-dropdown .title {
  background: #fff;
  color: #181c25;
}

.smartcharts-dark .cq-menu-dropdown .title {
  background: #20242f;
  color: #fff;
}

.cq-menu-dropdown .title .title-text {
  display: inline-block;
  font-size: 1.2em;
  font-weight: 700;
}

.smartcharts-light .cq-menu-dropdown .title > .ic-icon {
  color: #181c25;
}

.smartcharts-dark .cq-menu-dropdown .title > .ic-icon {
  color: #c2c2c2;
}

.cq-menu-dropdown .icon-close-menu {
  cursor: pointer;
  height: 30px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 5px;
  top: 5px;
  width: 30px;
}

.smartcharts-mobile .ciq-menu.stxMenuActive {
  z-index: 9;
}

.smartcharts-mobile .ciq-menu .cq-menu-btn:hover > .ic-icon svg {
  background: transparent;
}

.smartcharts-mobile .cq-modal-dropdown.stxMenuActive {
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.smartcharts-mobile .cq-modal-dropdown.cq-chart-title .cq-modal__overlay .cq-menu-dropdown {
  height: 100%;
}

.smartcharts-mobile .cq-modal-dropdown.cq-chart-title .cq-modal__overlay .cq-menu-dropdown .title {
  border-bottom: none !important;
}

.smartcharts-mobile .cq-modal-dropdown .cq-modal__overlay {
  height: inherit;
  opacity: 0;
  padding: 0;
  position: relative;
  transition: opacity 0.3s;
  width: 100%;
}

.smartcharts-mobile .cq-modal-dropdown.stxMenuActive .cq-modal__overlay {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.smartcharts-mobile .cq-modal-dropdown.cq-chart-title .cq-menu-dropdown {
  transform: translateY(-3em);
}

.smartcharts-mobile .cq-modal-dropdown .cq-menu-dropdown {
  border: none;
  border-radius: 0;
  bottom: 0;
  box-shadow: none;
  height: auto;
  position: absolute;
  transform: translateY(3em);
  width: 100%;
}

.smartcharts-mobile .cq-modal-dropdown .cq-menu-dropdown.cq-menu-dropdown-enter-active, .smartcharts-mobile .cq-modal-dropdown .cq-menu-dropdown.cq-menu-dropdown-enter-done {
  transform: translateY(0);
}

.smartcharts-mobile .cq-modal-dropdown .cq-menu-dropdown .title .title-text {
  font-size: 14px;
}

.smartcharts-light .smartcharts-mobile .cq-modal-dropdown .cq-menu-dropdown .title .icon-close-menu svg {
  fill: #181c25;
}

.smartcharts-dark .smartcharts-mobile .cq-modal-dropdown .cq-menu-dropdown .title .icon-close-menu svg {
  fill: #fff;
}

.smartcharts-mobile .cq-menu-dropdown.cq-menu-dropdown-enter-done .icon-close-menu {
  opacity: 1;
  pointer-events: auto;
}

/*! rtl:ignore */
.cq-chart-unavailable {
  color: #878787;
  font-size: 1.7em;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
  z-index: 1;
}

/*! rtl:begin:ignore */
.sc-tooltip__inner {
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  height: 34px;
  left: 50%; /*! rtl:end:ignore */
  letter-spacing: normal;
  line-height: 1.5;
  opacity: 0;
  padding: 8px;
  pointer-events: none;
  position: absolute;
  top: 0; /*! rtl:begin:ignore */
  transform: translateX(-50%) translateY(calc(-100% - 8px));
  white-space: nowrap;
  width: auto;
}

.smartcharts-light .sc-tooltip__inner {
  background: #d6dadb;
  color: #181c25;
}

.smartcharts-dark .sc-tooltip__inner {
  background: #323738;
  color: #fff;
}

.sc-tooltip__inner:before {
  background: transparent;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  bottom: 0;
  content: " ";
  height: 0;
  left: calc(50% - 6px);
  position: absolute;
  transform: translateY(100%);
  width: 0;
}

.smartcharts-light .sc-tooltip__inner:before {
  border-top: 6px solid #d6dadb;
}

.smartcharts-dark .sc-tooltip__inner:before {
  border-top: 6px solid #323738;
}

.sc-tooltip--right .sc-tooltip__inner {
  left: calc(100% + 10px);
  top: calc(50% - 17px);
  transform: none;
}

.sc-tooltip--right .sc-tooltip__inner:before {
  border-bottom: 6px solid transparent !important;
  border-top: 6px solid transparent !important;
}

.sc-tooltip--right .sc-tooltip__inner:before {
  border-left: none;
  bottom: calc(50% - 6px);
  left: -6px;
  transform: translateY(0);
}

.smartcharts-light .sc-tooltip--right .sc-tooltip__inner:before {
  border-right: 6px solid #d6dadb;
}

.smartcharts-dark .sc-tooltip--right .sc-tooltip__inner:before {
  border-right: 6px solid #323738;
}

.sc-tooltip--enable:hover .sc-tooltip__inner {
  opacity: 1;
  z-index: 3;
}

.sc-notification-badge {
  border-radius: 8px;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  height: 16px;
  letter-spacing: normal;
  line-height: 1.5;
  position: absolute;
  right: 3px;
  text-align: center;
  top: 3px;
  width: 16px;
}

.smartcharts-dark .sc-notification-badge, .smartcharts-light .sc-notification-badge {
  background: #ec3f3f;
  color: #fff;
}

.sc-btn {
  outline: none !important;
}

.sc-btn {
  border: 1px solid;
  border-radius: 4px;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.43;
  padding: 5px 16px;
  text-align: center;
}

.smartcharts-dark .sc-btn, .smartcharts-light .sc-btn {
  background: transparent;
  border-color: transparent;
  color: #ff444f;
}

.sc-btn[type=button] {
  cursor: pointer;
}

.smartcharts-dark .sc-btn:hover, .smartcharts-light .sc-btn:hover {
  background: rgba(255, 68, 79, 0.08);
}

.sc-btn--sm {
  font-size: 12px;
  padding: 3px 12px;
}

.sc-btn--w100 {
  width: 100%;
}

.smartcharts-dark .sc-btn--primary, .smartcharts-light .sc-btn--primary {
  background: #ff444f;
  border-color: #ff444f;
  color: #fff;
}

.smartcharts-light .sc-btn--primary:hover {
  background: #eb3e48;
  border-color: #eb3e48;
}

.smartcharts-dark .sc-btn--primary:hover {
  background: #ff525c;
  border-color: #ff525c;
}

.sc-btn--primary--disabled {
  opacity: 0.32;
}

.smartcharts-dark .sc-btn--primary--disabled, .smartcharts-dark .sc-btn--primary--disabled:hover, .smartcharts-light .sc-btn--primary--disabled, .smartcharts-light .sc-btn--primary--disabled:hover {
  background: #ff444f;
  border-color: #ff444f;
}

.sc-btn--outline-secondary {
  background: transparent;
}

.smartcharts-light .sc-btn--outline-secondary {
  border-color: #999;
  color: #181c25;
}

.smartcharts-dark .sc-btn--outline-secondary {
  border-color: #6e6e6e;
  color: #fff;
}

.smartcharts-light .sc-btn--outline-secondary:hover {
  background: rgba(0, 0, 0, 0.08) !important;
}

.smartcharts-dark .sc-btn--outline-secondary:hover {
  background: #282c38 !important;
}

.sc-chart__status {
  border-radius: 4px;
  height: 8px;
  margin: 4px 0;
  opacity: 1;
  width: 8px;
}

.smartcharts-dark .sc-chart__status, .smartcharts-light .sc-chart__status {
  background: #f2f3f4;
}

.smartcharts-dark .sc-chart__status--online, .smartcharts-light .sc-chart__status--online {
  background: #4bb4b3;
}

.sc-chart__status--blinker {
  animation: blinking-network-status 0.4s infinite alternate;
}

.smartcharts-dark .sc-chart__status--blinker, .smartcharts-light .sc-chart__status--blinker {
  background: #4bb4b3;
}

.smartcharts-dark .sc-chart__status--offline, .smartcharts-light .sc-chart__status--offline {
  background: #cc2e3d;
}

.sc-input {
  border-right: none !important;
  outline: none !important;
}

.sc-input {
  background: transparent;
  border-radius: 4px 0 0 4px;
  box-sizing: border-box;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  height: 40px;
  letter-spacing: normal;
  line-height: 1.43;
  padding: 10px 12px;
  position: relative;
}

.smartcharts-light .sc-input {
  border: 1px solid #d6dadb;
}

.smartcharts-dark .sc-input {
  border: 1px solid #323738;
}

.sc-input::-moz-placeholder {
  font-size: 14px;
}

.sc-input::-moz-placeholder, .sc-input::placeholder {
  font-size: 14px;
}

.smartcharts-light .sc-input::-moz-placeholder {
  color: #999;
}

.smartcharts-light .sc-input::-moz-placeholder, .smartcharts-light .sc-input::placeholder {
  color: #999;
}

.smartcharts-light .sc-input:hover {
  border-color: #999;
}

.smartcharts-dark .sc-input:hover {
  border-color: #6e6e6e;
}

.smartcharts-dark .sc-input--active, .smartcharts-light .sc-input--active {
  border-color: #85acb0 !important;
}

[dir=rtl] .sc-input {
  border-right: 1px solid #d6dadb !important;
}

/*! rtl:end:ignore */
@keyframes blinking-network-status {
  40% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/*! rtl:begin:ignore */
.barrier-area {
  padding: 13px 0;
  position: absolute;
  top: 0;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  width: 100%;
}

.chart-line {
  position: absolute;
  z-index: 35;
}

.chart-line.draggable {
  pointer-events: all;
}

.chart-line.horizontal {
  font-size: 1em;
  left: 0;
  width: 100%;
}

.chart-line.horizontal:hover {
  z-index: 105;
}

.chart-line.horizontal.draggable > .draggable-area {
  height: 20px;
  position: absolute;
  top: -8px;
  width: 100%;
}

.chart-line.horizontal.draggable > .draggable-area:hover {
  background: rgba(0, 0, 0, 0.05);
}

.chart-line.horizontal .drag-line {
  border-top-color: #2c9aff;
  border-top-width: 1px;
  float: left;
  height: 1px;
  margin-left: -10px;
  position: relative;
  width: 100%;
}

.chart-line.horizontal .title-wrapper {
  align-items: center;
  display: flex;
  font-size: 11px;
  font-weight: 700;
  height: 24px;
  justify-content: center;
  padding: 3px 10px;
  position: absolute;
  top: -11px;
}

.chart-line.horizontal .title-wrapper .title {
  white-space: pre-wrap;
}

.draggable.chart-line:hover.horizontal {
  cursor: ns-resize;
}

.draggable.chart-line:hover.vertical {
  cursor: ew-resize;
}

.hide-pricelines > .barrier-area, .hide-pricelines > .chart-line.horizontal {
  display: none;
}

.drag-price {
  border: 1px solid;
  border-radius: 4px;
  display: flex;
  height: 24px;
  justify-content: space-between;
  position: absolute;
  right: -1px;
  top: -14px;
}

.smartcharts-light .drag-price:not(.smartcharts-light .drag-price--narrow) {
  background-color: #fff;
}

.smartcharts-dark .drag-price:not(.smartcharts-dark .drag-price--narrow) {
  background-color: #20242f;
}

.drag-price--narrow {
  background-color: rgba(12, 40, 247, 0.16);
  height: 25px;
  top: -12px;
}

.drag-price .arrow-icon {
  height: 41px;
  left: 2px;
  padding: 4px 0;
  position: absolute;
  transition: none;
  width: calc(100% - 2px);
}

.price {
  display: block;
  font-size: 12px;
  line-height: 18px;
  overflow: visible;
  overflow: initial;
  padding: 3px 1px;
  position: relative;
  right: 45px;
  text-align: center;
  width: -moz-max-content;
  width: max-content;
}

.price--zero {
  color: #2c9aff;
  padding: 0;
  padding: initial;
}

.smartcharts-light .price--zero {
  background-image: linear-gradient(hsla(0, 0%, 100%, 0.001) 30%, #fff 50%, hsla(0, 0%, 100%, 0.001) 75%);
}

.smartcharts-dark .price--zero {
  background-image: linear-gradient(hsla(0, 0%, 100%, 0.001) 30%, #20242f 50%, hsla(0, 0%, 100%, 0.001) 75%);
}

.draggable-area-wrapper {
  display: flex;
}

.draggable .price {
  overflow: visible;
  overflow: initial;
  position: relative;
  right: 55px;
}

.draggable .drag-icon {
  background-color: #2c9aff;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 3px;
}

.draggable .drag-icon div {
  background-color: #fff;
  height: 1px;
  margin: 1px;
  width: 8px;
}

.draggable .drag-icon--hidden {
  background-color: transparent;
}

.draggable .drag-icon--hidden div {
  background-color: #2c9aff;
}

.shade.hidden {
  opacity: 0;
}

.shade {
  height: 120px !important;
}

.shade {
  left: 0;
  opacity: 0.3;
  position: absolute;
  right: 0;
  top: -120px;
  width: 100%;
  z-index: -1;
}

.top-shade {
  background-image: linear-gradient(to bottom, transparent, var(--shade-color));
}

.between-shade {
  background-color: var(--shade-color);
  opacity: 0.2;
}

.bottom-shade {
  background-image: linear-gradient(to bottom, var(--shade-color), transparent);
}

/*! rtl:end:ignore */
.cq-comparison-loader, .sc-loader .sc-loader-spin {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' width='32' height='32'%3E%3Cpath d='M16 0C7.163 0 0 7.163 0 16s7.163 16 16 16 16-7.163 16-16S24.837 0 16 0m0 4c6.627 0 12 5.373 12 12s-5.373 12-12 12S4 22.627 4 16 9.373 4 16 4' style='opacity:.25'/%3E%3Cpath d='M16 0c8.837 0 16 7.163 16 16h-4c0-6.627-5.373-12-12-12z'%3E%3CanimateTransform attributeName='transform' calcMode='linear' dur='0.8s' from='0 16 16' repeatCount='indefinite' to='360 16 16' type='rotate'/%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
}

.smartcharts-dark .cq-comparison-loader, .smartcharts-dark .sc-loader .sc-loader-spin {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='%23fff'%3E%3Cpath d='M16 0a16 16 0 0 0 0 32 16 16 0 0 0 0-32m0 4a12 12 0 0 1 0 24 12 12 0 0 1 0-24' opacity='.25'/%3E%3Cpath d='M16 0a16 16 0 0 1 16 16h-4A12 12 0 0 0 16 4z'%3E%3CanimateTransform attributeName='transform' dur='0.8s' from='0 16 16' repeatCount='indefinite' to='360 16 16' type='rotate'/%3E%3C/path%3E%3C/svg%3E");
}

.sc-loader {
  display: none;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.sc-loader.show {
  display: block;
  z-index: 9;
}

.sc-loader .sc-loader-spin {
  height: 50px;
  left: 50%;
  margin-left: -25px;
  margin-top: -45px;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 1;
}

.smartcharts-light .sc-loader .sc-loader-spin {
  stroke: #000;
}

.smartcharts-dark .sc-loader .sc-loader-spin {
  stroke: #fff;
}

.sc-loader .sc-loader-status {
  height: 20px;
  left: 50%;
  margin-left: -100px;
  margin-top: 10px;
  padding-top: 5px;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 200px;
}

.smartcharts-light .sc-loader .sc-loader-status {
  color: #000;
}

.smartcharts-dark .sc-loader .sc-loader-status {
  color: #fff;
}

.sc-inline-loader {
  position: relative;
}

.sc-inline-loader:after {
  border-radius: 3px;
  content: " ";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.sc-inline-loader__inner {
  opacity: 1 !important;
}

.sc-inline-loader__inner {
  height: 14px;
  left: calc(50% - 25px);
  position: absolute;
  top: calc(50% - 7px);
  width: 50px;
}

.sc-inline-loader__inner__bullet {
  animation: sk-stretchdelay 1.2s ease-in-out infinite;
  border-radius: 3px;
  display: inline-block;
  height: 100%;
  margin: 0 2px;
  width: 4px;
}

.smartcharts-dark .sc-inline-loader__inner__bullet, .smartcharts-light .sc-inline-loader__inner__bullet {
  background-color: #85acb0;
}

.sc-inline-loader__inner__bullet:nth-child(2) {
  animation-delay: -1.1s;
}

.sc-inline-loader__inner__bullet:nth-child(3) {
  animation-delay: -1s;
}

.sc-inline-loader__inner__bullet:nth-child(4) {
  animation-delay: -0.9s;
}

.sc-inline-loader--enable > div, .sc-inline-loader--enable > span {
  opacity: 0.32;
}

@keyframes sk-stretchdelay {
  0%, 40%, to {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}
.sc-drawing-toast {
  align-items: center;
  animation: slideUp 0.3s ease-out;
  border-radius: 0.5rem;
  bottom: 24px;
  display: flex;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  gap: 0.5rem;
  left: 50%;
  line-height: 20px;
  max-width: 90vw;
  min-height: 3rem;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  position: fixed;
  transform: translateX(-50%);
  width: -moz-max-content;
  width: max-content;
  z-index: 1000;
}

.smartcharts-light .sc-drawing-toast {
  background: #000;
  border: 1px solid hsla(0, 0%, 100%, 0.04);
  box-shadow: 0 4px 8px 2px rgba(0, 0, 0, 0.03), 0 4px 8px 2px rgba(0, 0, 0, 0.02);
  color: #fff;
}

.smartcharts-dark .sc-drawing-toast {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 8px 2px rgba(0, 0, 0, 0.03), 0 4px 8px 2px rgba(0, 0, 0, 0.02);
  color: #000;
}

.sc-drawing-toast__content {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: space-between;
  width: 100%;
}

.sc-drawing-toast__message {
  flex: 1;
}

.sc-drawing-toast__cancel {
  background: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  padding: 8px 12px;
  transition: background-color 0.2s ease;
}

.smartcharts-light .sc-drawing-toast__cancel {
  color: #fff;
}

.smartcharts-light .sc-drawing-toast__cancel:hover {
  background: hsla(0, 0%, 100%, 0.08);
}

.smartcharts-light .sc-drawing-toast__cancel:active {
  background: hsla(0, 0%, 100%, 0.12);
}

.smartcharts-dark .sc-drawing-toast__cancel {
  color: #000;
}

.smartcharts-dark .sc-drawing-toast__cancel:hover {
  background: rgba(0, 0, 0, 0.08);
}

.smartcharts-dark .sc-drawing-toast__cancel:active {
  background: rgba(0, 0, 0, 0.12);
}

.sc-drawing-toast__cancel:focus {
  outline: 2px solid;
}

.smartcharts-dark .sc-drawing-toast__cancel:focus, .smartcharts-light .sc-drawing-toast__cancel:focus {
  outline-color: #85acb0;
}

@media (max-width: 768px) {
  .sc-drawing-toast {
    left: 0;
    margin: 0 16px;
    max-width: calc(100vw - 32px);
    right: 0;
    transform: none;
  }
  .sc-drawing-toast__message {
    font-size: 14px;
  }
}
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
@media (max-width: 768px) {
  @keyframes slideUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
.sc-deletion-snackbar {
  align-items: center;
  animation: slideUpSnackbar 0.3s ease-out;
  border-radius: 0.5rem;
  bottom: 24px;
  display: flex;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  gap: 0.5rem;
  left: 50%;
  line-height: 20px;
  max-width: 90vw;
  min-height: 3rem;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  position: fixed;
  transform: translateX(-50%);
  width: -moz-max-content;
  width: max-content;
  z-index: 1000;
}

.smartcharts-light .sc-deletion-snackbar {
  background: #000;
  border: 1px solid hsla(0, 0%, 100%, 0.04);
  box-shadow: 0 4px 8px 2px rgba(0, 0, 0, 0.03), 0 4px 8px 2px rgba(0, 0, 0, 0.02);
  color: #fff;
}

.smartcharts-dark .sc-deletion-snackbar {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 8px 2px rgba(0, 0, 0, 0.03), 0 4px 8px 2px rgba(0, 0, 0, 0.02);
  color: #000;
}

.sc-deletion-snackbar__content {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  width: 100%;
}

.sc-deletion-snackbar__message {
  flex: 1;
}

.sc-deletion-snackbar__close {
  align-items: center;
  background: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  height: 24px;
  justify-content: center;
  min-width: 24px;
  padding: 4px 8px;
  transition: background-color 0.2s ease;
}

.smartcharts-light .sc-deletion-snackbar__close {
  color: #fff;
}

.smartcharts-light .sc-deletion-snackbar__close:hover {
  background: hsla(0, 0%, 100%, 0.08);
}

.smartcharts-light .sc-deletion-snackbar__close:active {
  background: hsla(0, 0%, 100%, 0.12);
}

.smartcharts-dark .sc-deletion-snackbar__close {
  color: #000;
}

.smartcharts-dark .sc-deletion-snackbar__close:hover {
  background: rgba(0, 0, 0, 0.08);
}

.smartcharts-dark .sc-deletion-snackbar__close:active {
  background: rgba(0, 0, 0, 0.12);
}

.sc-deletion-snackbar__close:focus {
  outline: 2px solid;
}

.smartcharts-dark .sc-deletion-snackbar__close:focus, .smartcharts-light .sc-deletion-snackbar__close:focus {
  outline-color: #85acb0;
}

.smartcharts-light .sc-deletion-snackbar__close .ic-icon > svg {
  fill: #fff;
}

.smartcharts-dark .sc-deletion-snackbar__close .ic-icon > svg {
  fill: #000;
}

@media (max-width: 768px) {
  .sc-deletion-snackbar {
    left: 0;
    margin: 0 16px;
    max-width: calc(100vw - 32px);
    right: 0;
    transform: none;
  }
  .sc-deletion-snackbar__message {
    font-size: 14px;
  }
}
@keyframes slideUpSnackbar {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
@media (max-width: 768px) {
  @keyframes slideUpSnackbar {
    0% {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
}
.cq-last-digits {
  bottom: 45px;
  left: calc(50% - 150px);
  position: absolute;
  visibility: hidden;
}

.cq-last-digits.show {
  visibility: visible;
}

.cq-last-digits .cq-bars {
  height: 70px;
}

.smartcharts-dark .cq-last-digits .cq-bars, .smartcharts-light .cq-last-digits .cq-bars {
  color: #7f8397;
}

.smartcharts-dark .cq-last-digits .cq-bars .min, .smartcharts-light .cq-last-digits .cq-bars .min {
  color: #e31c4b;
}

.smartcharts-light .cq-last-digits .cq-bars .max {
  color: #2d9f93;
}

.smartcharts-dark .cq-last-digits .cq-bars .max {
  color: #39b19d;
}

.cq-last-digits .cq-bars .cq-bar-value {
  font-size: 12px;
  margin: -16px 0 0 -6px;
  opacity: 0;
  transition: opacity 0.8s linear;
}

.cq-last-digits .cq-bars .cq-bar-value.show {
  opacity: 1;
}

.cq-last-digits .cq-bars .cq-bar {
  border-radius: 16px;
  bottom: 40px;
  position: absolute;
  transition: height 0.8s ease-in-out;
  width: 10px;
}

.smartcharts-light .cq-last-digits .cq-bars .cq-bar {
  background-color: #999cac;
}

.smartcharts-dark .cq-last-digits .cq-bars .cq-bar {
  background-color: #555975;
}

.cq-last-digits .cq-bars .cq-bar .cq-bar-title {
  bottom: -20px;
  font-size: 14px;
  position: absolute;
  text-align: center;
  width: 10px;
}

.smartcharts-dark .cq-last-digits .cq-bars .cq-bar.min, .smartcharts-light .cq-last-digits .cq-bars .cq-bar.min {
  background-color: #e31c4b;
}

.smartcharts-light .cq-last-digits .cq-bars .cq-bar.max {
  background-color: #2d9f93;
}

.smartcharts-dark .cq-last-digits .cq-bars .cq-bar.max {
  background-color: #39b19d;
}

.cq-last-digits .cq-bar-footer {
  font-size: 12px;
  left: -75px;
  position: absolute;
  text-align: center;
  top: 60px;
  width: 475px;
}

.smartcharts-light .cq-last-digits .cq-bar-footer {
  color: #000;
}

.smartcharts-dark .cq-last-digits .cq-bar-footer {
  color: #fff;
}

.cq-last-digits.minimised {
  bottom: 10px;
}

.cq-last-digits.minimised .cq-bars {
  height: 25px;
}

.cq-last-digits.minimised .cq-bar-footer {
  top: 8px;
}

.cq-bottom-ui-widgets {
  position: absolute;
  width: 100%;
}

.cq-chart-controls {
  align-items: stretch;
  border-radius: 2px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  position: absolute;
  transition: z-index 0.3s linear;
  z-index: 9;
}

.smartcharts-light .cq-chart-controls {
  background: #fff;
  box-shadow: inset 0 1px 0 0 #f2f3f4;
}

.smartcharts-dark .cq-chart-controls {
  background: #20242f;
  box-shadow: inset 0 1px 0 0 #20242f;
}

.cq-chart-controls.active {
  z-index: 5;
}

.cq-chart-controls .ciq-menu {
  width: auto;
}

.cq-chart-controls .ciq-menu > span {
  margin: 0;
  padding: 0;
}

.cq-chart-controls .ciq-menu:after {
  display: none;
  right: 5px;
  top: 11px;
  transform: rotate(225deg);
}

.smartcharts-dark .cq-chart-controls .ciq-menu.ciq-enabled.stxMenuActive, .smartcharts-light .cq-chart-controls .ciq-menu.ciq-enabled.stxMenuActive {
  box-shadow: 0 -2px 0 0 #ff444f;
}

.smartcharts-light .cq-chart-controls .ciq-menu.ciq-enabled.stxMenuActive .cq-menu-btn {
  background: #fff;
}

.smartcharts-dark .cq-chart-controls .ciq-menu.ciq-enabled.stxMenuActive .cq-menu-btn {
  background: #20242f;
}

.smartcharts-light .cq-chart-controls .ciq-menu.ciq-enabled.stxMenuActive .cq-menu-btn > .ic-icon {
  color: #7f8397;
}

.smartcharts-dark .cq-chart-controls .ciq-menu.ciq-enabled.stxMenuActive .cq-menu-btn > .ic-icon {
  color: #fff;
}

.cq-chart-controls .ciq-menu.ciq-enabled.stxMenuActive .cq-menu-btn > .ic-icon .ic-subtitle {
  display: none;
  font-weight: 700;
}

.smartcharts-light .cq-chart-controls .ciq-menu.ciq-enabled.stxMenuActive .cq-menu-btn > .ic-icon .ic-subtitle {
  color: #7f8397;
}

.smartcharts-dark .cq-chart-controls .ciq-menu.ciq-enabled.stxMenuActive .cq-menu-btn > .ic-icon .ic-subtitle {
  color: #fff;
}

.smartcharts-light .cq-chart-controls .ciq-menu.ciq-enabled .cq-menu-btn:hover {
  background: #e6e9e9;
}

.smartcharts-dark .cq-chart-controls .ciq-menu.ciq-enabled .cq-menu-btn:hover {
  background: #282f3e;
}

.cq-chart-controls .ciq-menu .cq-menu-btn {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding: 3px 5px;
  position: relative;
}

.cq-chart-controls .ciq-menu .cq-menu-btn > .ic-icon {
  padding: 0.35em 0.5em;
}

.cq-chart-controls .ciq-menu .cq-menu-btn > .ic-icon.active .ic-subtitle {
  font-weight: 700;
}

.smartcharts-light .cq-chart-controls .ciq-menu .cq-menu-btn > .ic-icon.active .ic-subtitle {
  color: #7f8397;
}

.smartcharts-dark .cq-chart-controls .ciq-menu .cq-menu-btn > .ic-icon.active .ic-subtitle {
  color: #fff;
}

.cq-chart-controls .ciq-menu .cq-menu-btn > .ic-icon .ic-subtitle {
  display: none;
  font-size: 1em;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}

.smartcharts-light .cq-chart-controls .ciq-menu .cq-menu-btn > .ic-icon .ic-subtitle {
  color: rgba(0, 0, 0, 0.8);
}

.smartcharts-dark .cq-chart-controls .ciq-menu .cq-menu-btn > .ic-icon .ic-subtitle {
  color: #999;
}

.cq-chart-controls .ciq-menu .sc-tooltip__inner {
  display: none !important;
}

.cq-chart-control-bottom .cq-chart-controls .ciq-menu .cq-menu-dropdown {
  left: 50%;
  transform: translateX(-50%) translateY(3em);
}

.cq-chart-control-bottom .cq-chart-controls .ciq-menu .cq-menu-dropdown.cq-menu-dropdown-enter-active, .cq-chart-control-bottom .cq-chart-controls .ciq-menu .cq-menu-dropdown.cq-menu-dropdown-enter-done {
  transform: translateX(-50%) translateY(0);
}

.cq-chart-control-left .cq-chart-controls .ciq-menu .cq-menu-dropdown {
  bottom: auto;
  left: 9em;
  top: -1em;
  transform: translateX(-3em);
}

.cq-chart-control-left .cq-chart-controls .ciq-menu .cq-menu-dropdown.cq-menu-dropdown-enter-active, .cq-chart-control-left .cq-chart-controls .ciq-menu .cq-menu-dropdown.cq-menu-dropdown-enter-done {
  transform: translateX(0);
}

.cq-chart-controls .ciq-menu .cq-menu-dropdown.cq-menu-dropdown-exit-active {
  opacity: 0;
  z-index: -3;
}

.cq-chart-controls .ciq-menu .cq-menu-dropdown.cq-menu-dropdown-enter-active, .cq-chart-controls .ciq-menu .cq-menu-dropdown.cq-menu-dropdown-enter-done {
  opacity: 1;
  z-index: 6;
}

.cq-chart-control-bottom .cq-chart-controls {
  bottom: 0;
  height: 40px;
  padding: 0 5px;
  width: 100%;
}

.cq-chart-control-left .cq-chart-controls {
  flex-flow: column;
  height: 100%;
  left: 0;
  padding: 5px 0;
  top: 0;
  width: 100px;
}

.cq-chart-control-left .cq-chart-controls .ciq-menu {
  height: auto;
  min-height: 45px;
}

.smartcharts-dark .cq-chart-control-left .cq-chart-controls .ciq-menu .stxMenuActive, .smartcharts-light .cq-chart-control-left .cq-chart-controls .ciq-menu .stxMenuActive {
  box-shadow: 2px 0.3px 0 0 #ff444f;
}

.cq-chart-control-left .cq-chart-controls .ciq-menu .cq-menu-btn {
  padding: 0 5px;
}

.smartcharts-mobile .cq-chart-controls {
  height: 40px;
  justify-content: space-around;
  padding: 0 0.7em;
}

.smartcharts-light .smartcharts-mobile .cq-chart-controls {
  box-shadow: inset 0 1px 0 0 #f2f3f4;
}

.smartcharts-dark .smartcharts-mobile .cq-chart-controls {
  box-shadow: inset 0 1px 0 0 #20242f;
}

.smartcharts-mobile .cq-chart-controls.active {
  z-index: 5;
}

.smartcharts-mobile .cq-chart-controls .cq-menu-btn {
  padding: 0;
}

.smartcharts-mobile .cq-chart-controls .ciq-menu {
  padding: 0;
  width: auto;
}

.smartcharts-mobile .cq-chart-controls .ciq-menu .cq-menu-btn > .ic-icon {
  padding: 0.35em 0;
}

.smartcharts-mobile .cq-chart-controls .ciq-menu .cq-menu-dropdown {
  border: none;
  box-shadow: none;
  height: auto;
  left: -1px;
  padding: 0;
}

.smartcharts-mobile .cq-chart-controls .cq-menu-btn, .smartcharts-mobile .cq-chart-controls .sc-chart-size > span {
  padding: 0 !important;
}

.smartcharts-mobile .cq-chart-controls .ic-icon-with-sub > svg {
  padding: 5px 10px;
}

.smartcharts-480 .smartcharts-desktop .cq-chart-control-bottom .cq-chart-controls .ciq-menu {
  width: 50px;
}

.smartcharts-480 .smartcharts-desktop .cq-chart-control-bottom .cq-chart-controls .ciq-menu .cq-menu-btn > .ic-icon {
  padding: 0.35em 0;
}

.smartcharts-480 .smartcharts-desktop .cq-chart-control-bottom .cq-chart-controls .ciq-menu .cq-menu-btn .ic-subtitle {
  display: none;
}

.smartcharts-900 .smartcharts-desktop .cq-chart-control-bottom .cq-chart-controls .ciq-menu {
  min-width: 45px;
  width: auto;
}

.smartcharts-900 .smartcharts-desktop .cq-chart-control-bottom .cq-chart-controls .ciq-menu .cq-menu-btn > .ic-icon {
  padding: 0.35em 0;
}

.smartcharts-900 .smartcharts-desktop .cq-chart-control-bottom .cq-chart-controls .ciq-menu .cq-menu-btn .ic-subtitle {
  display: none;
}

.smartcharts-1280 .smartcharts-desktop .cq-chart-controls .ciq-menu {
  min-width: 70px;
  width: auto;
}

.smartcharts-1280 .smartcharts-desktop .cq-chart-controls .ciq-menu .cq-menu-btn > .ic-icon {
  padding: 0.35em 0.5em;
}

.smartcharts-1280 .smartcharts-desktop .cq-chart-controls .ciq-menu .cq-menu-btn .ic-subtitle {
  display: none;
}

.sc-chart-footer {
  bottom: 0;
  display: flex;
  height: 31px;
  justify-content: flex-end;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 9;
}

.smartcharts-light .sc-chart-footer {
  background: #fff;
  border-top: 1px solid #f2f3f4;
  color: #181c25;
}

.smartcharts-dark .sc-chart-footer {
  background: #20242f;
  border-top: 1px solid #20242f;
  color: #c2c2c2;
}

.sc-chart-footer .ciq-menu .cq-menu-btn {
  cursor: pointer;
  padding: 8px;
}

.sc-chart-footer .ciq-menu .cq-menu-btn .ic-icon {
  height: 16px;
  line-height: 8px;
  width: 16px;
}

.smartcharts-light .sc-chart-footer .ciq-menu .cq-menu-btn .ic-icon svg {
  fill: #181c25;
}

.smartcharts-dark .sc-chart-footer .ciq-menu .cq-menu-btn .ic-icon svg {
  fill: #c2c2c2;
}

.sc-chart-footer .ciq-menu .cq-menu-btn .ic-subtitle {
  display: none;
}

.sc-chart-footer .ciq-menu .cq-menu-btn .ic-icon-with-sub {
  line-height: 8px;
}

.sc-chart-footer .ciq-menu .sc-tooltip__inner {
  display: none;
}

.smartcharts-light .sc-chart-footer .ciq-menu:hover {
  background: #e6e9e9;
}

.smartcharts-dark .sc-chart-footer .ciq-menu:hover {
  background: #282f3e;
}

.sc-chart-footer__item {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.5;
  padding: 8px;
  position: relative;
  text-align: right;
}

.sc-chart-footer__item--status {
  margin-right: 16px;
  padding-left: 0;
  padding-right: 0;
}

.sc-chart-footer__item--time {
  margin-right: 8px;
  padding-left: 0;
  padding-right: 0;
}

.sc-chart-footer__item--time span {
  padding-left: 16px;
  padding-right: 16px;
}

.smartcharts-light .sc-chart-footer__item--time span {
  border-left: 1px solid #f2f3f4;
  border-right: 1px solid #f2f3f4;
}

.smartcharts-dark .sc-chart-footer__item--time span {
  border-left: 1px solid #20242f;
  border-right: 1px solid #20242f;
}

.sc-chart-footer__item .sc-tooltip__inner {
  top: 9px;
}

.sc-chart-footer__item .sc-tooltip__inner:before {
  display: none;
}

/*! rtl:begin:ignore */
.cq-chart-title {
  display: inline-block;
  margin: 0.2em 0.8em;
  top: 1em;
  z-index: 41;
}

.cq-chart-title.ciq-menu.ciq-enabled .cq-menu-btn > .cq-symbol-select-btn {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.cq-chart-title.ciq-menu.ciq-enabled .cq-menu-btn > .cq-symbol-select-btn > .ic-icon.cq-symbol-dropdown {
  display: block;
  margin-left: 10px;
  margin-right: 0;
  width: 12px;
}

.cq-chart-title.ciq-menu.ciq-enabled .cq-menu-btn > .cq-symbol-select-btn > .ic-icon.cq-symbol-dropdown svg {
  width: 12px;
}

.smartcharts-light .cq-chart-title.ciq-menu.ciq-enabled .cq-menu-btn > .cq-symbol-select-btn > .ic-icon.cq-symbol-dropdown svg {
  fill: #181c25;
}

.smartcharts-dark .cq-chart-title.ciq-menu.ciq-enabled .cq-menu-btn > .cq-symbol-select-btn > .ic-icon.cq-symbol-dropdown svg {
  fill: #999;
}

.smartcharts-dark .cq-chart-title.ciq-menu.ciq-enabled.stxMenuActive > .cq-menu-btn > .cq-symbol-select-btn, .smartcharts-light .cq-chart-title.ciq-menu.ciq-enabled.stxMenuActive > .cq-menu-btn > .cq-symbol-select-btn {
  border: 1px solid #85acb0;
}

.cq-chart-title.ciq-menu.ciq-enabled.stxMenuActive > .cq-menu-btn > .cq-symbol-select-btn > .ic-icon.cq-symbol-dropdown svg {
  transform: rotate(180deg);
}

.smartcharts-light .cq-chart-title.ciq-menu.ciq-enabled.stxMenuActive > .cq-menu-btn > .cq-symbol-select-btn > .ic-icon.cq-symbol-dropdown svg {
  fill: rgba(0, 0, 0, 0.8);
}

.smartcharts-dark .cq-chart-title.ciq-menu.ciq-enabled.stxMenuActive > .cq-menu-btn > .cq-symbol-select-btn > .ic-icon.cq-symbol-dropdown svg {
  fill: #999;
}

.smartcharts-light .cq-chart-title.ciq-enabled .cq-symbol-select-btn {
  background: #fff;
  border: 1px solid #fff;
}

.smartcharts-dark .cq-chart-title.ciq-enabled .cq-symbol-select-btn {
  background: #181c25;
  border: 1px solid #20242f;
}

.cq-chart-title .cq-menu-btn {
  border-radius: 4px;
  padding: 8px;
}

.smartcharts-light .cq-chart-title .cq-menu-btn {
  background: #f2f3f4;
}

.smartcharts-dark .cq-chart-title .cq-menu-btn {
  background: #20242f;
}

.cq-chart-title .cq-symbol-select-btn {
  align-items: center;
  border-radius: 4px;
  display: flex;
  font-family: IBM Plex Sans, sans-serif;
  padding: 0.6em 1em;
  position: relative;
}

.smartcharts-light .cq-chart-title .cq-symbol-select-btn {
  color: rgba(0, 0, 0, 0.8);
}

.smartcharts-dark .cq-chart-title .cq-symbol-select-btn {
  color: #fff;
}

.cq-chart-title .cq-symbol-select-btn__container {
  display: flex;
  justify-content: space-between;
}

.smartcharts-dark .cq-chart-title .cq-symbol-select-btn:hover, .smartcharts-light .cq-chart-title .cq-symbol-select-btn:hover {
  border: 1px solid #999;
}

.cq-chart-title .cq-symbol-select-btn > .ic-icon.cq-symbol-dropdown {
  display: none;
  position: relative;
}

.cq-chart-title .cq-symbol-select-btn > .ic-icon.cq-symbol-dropdown svg {
  transition: transform 0.2s ease-in-out;
}

.cq-chart-title .cq-symbol-select-btn > .ic-frx, .cq-chart-title .cq-symbol-select-btn > .ic-icon, .cq-chart-title .cq-symbol-select-btn > .ic-otc, .cq-chart-title .cq-symbol-select-btn > .ic-wld {
  height: 32px;
  transform: scale(1.3);
  width: 32px;
}

.cq-chart-title .cq-symbol-select-btn > .ic-frx > svg, .cq-chart-title .cq-symbol-select-btn > .ic-icon > svg, .cq-chart-title .cq-symbol-select-btn > .ic-otc > svg, .cq-chart-title .cq-symbol-select-btn > .ic-wld > svg {
  height: 32px;
}

.cq-chart-title .cq-symbol-select-btn .cq-symbol-info {
  display: flex;
  flex-direction: column;
  margin: 0 0 0 20px;
}

@media (min-width: 768px) {
  .cq-chart-title .cq-symbol-select-btn .cq-symbol-info {
    min-height: 4.2rem;
    min-width: 15rem;
  }
}
.cq-chart-title .cq-symbol-select-btn .cq-chart-price, .cq-chart-title .cq-symbol-select-btn .cq-symbol {
  font-size: 1.2em;
  line-height: 22px;
  text-align: left;
}

.cq-chart-title .cq-symbol-select-btn .cq-chart-price .cq-animated-price, .cq-chart-title .cq-symbol-select-btn .cq-symbol .cq-animated-price {
  transition: color 0.3s ease-out;
}

.cq-chart-title .cq-symbol-select-btn .cq-chart-price .divider, .cq-chart-title .cq-symbol-select-btn .cq-symbol .divider {
  padding: 0 3px;
}

.cq-chart-title .cq-symbol-select-btn .cq-chart-price > div, .cq-chart-title .cq-symbol-select-btn .cq-symbol > div {
  line-height: 1.5;
}

.cq-chart-title .cq-symbol-select-btn .cq-symbol {
  font-size: 1.6em;
  font-weight: 700;
  line-height: 24px;
  padding-right: 1rem;
  text-align: left;
  width: auto;
}

.smartcharts-light .cq-chart-title .cq-symbol-select-btn .cq-symbol {
  color: #181c25;
}

.smartcharts-dark .cq-chart-title .cq-symbol-select-btn .cq-symbol {
  color: #fff;
}

.cq-chart-title .cq-symbol-select-btn .cq-symbol.closed-no-opentime {
  line-height: calc(24px + 1.13em);
}

.cq-chart-title .cq-symbol-select-btn .cq-chart-closed .cq-closed-icon {
  height: 12px;
  margin-right: 5px;
  margin-top: 3px;
  width: 12px;
}

.cq-chart-title .cq-symbol-select-btn .cq-chart-closed .cq-closed-icon svg {
  left: 0;
  position: absolute;
}

.cq-chart-title .cq-symbol-select-btn .cq-chart-closed .cq-closed-opening {
  font-size: 1.2em;
  line-height: 1.5;
  text-align: left;
}

.cq-chart-title .cq-symbol-select-btn .cq-chart-closed .cq-closed-opening .cq-closed-opening-time {
  font-weight: 700;
}

.smartcharts-light .cq-chart-title .cq-symbol-select-btn .cq-chart-closed .cq-closed-opening .cq-closed-opening-time {
  color: rgba(0, 0, 0, 0.8);
}

.smartcharts-dark .cq-chart-title .cq-symbol-select-btn .cq-chart-closed .cq-closed-opening .cq-closed-opening-time {
  color: #fff;
}

.cq-chart-title .cq-symbol-select-btn .cq-symbol-closed-text {
  border: 2px solid #e31c4b;
  border-radius: 4px;
  color: #e31c4b;
  display: flex;
  flex-direction: column;
  height: 20px;
  justify-content: center;
  padding: 0 5px;
  text-align: center;
  text-transform: uppercase;
  width: auto;
}

.cq-chart-title .cq-symbol-select-btn .cq-chart-closed > *, .cq-chart-title .cq-symbol-select-btn .cq-chart-price > * {
  position: relative;
}

.cq-chart-title .cq-symbol-select-btn .cq-chart-closed, .cq-chart-title .cq-symbol-select-btn .cq-chart-price {
  display: flex;
  vertical-align: text-bottom;
}

.smartcharts-dark .cq-chart-title .cq-symbol-select-btn .cq-chart-closed, .smartcharts-dark .cq-chart-title .cq-symbol-select-btn .cq-chart-price, .smartcharts-light .cq-chart-title .cq-symbol-select-btn .cq-chart-closed, .smartcharts-light .cq-chart-title .cq-symbol-select-btn .cq-chart-price {
  color: #999;
}

.cq-chart-title .cq-menu-dropdown {
  bottom: auto;
  left: 0;
  transform: translateX(0) translateY(-3em);
}

.cq-chart-title .cq-menu-dropdown.cq-menu-dropdown-enter-active, .cq-chart-title .cq-menu-dropdown.cq-menu-dropdown-enter-done {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

.cq-chart-title .cq-menu-dropdown.cq-menu-dropdown-enter-done {
  z-index: 6;
}

.smartcharts-mobile .cq-top-ui-widgets {
  margin: 0 !important;
}

.smartcharts-mobile .cq-top-ui-widgets {
  padding: 0;
  width: 100%;
  z-index: 3;
}

.smartcharts-mobile .cq-chart-title {
  display: block;
  margin: 0;
  top: 0;
  width: 100%;
}

.smartcharts-mobile .cq-chart-title .cq-symbol-select-btn {
  margin: 0.3em 0.4em;
}

.smartcharts-mobile .cq-chart-title .cq-menu-dropdown {
  margin: 0;
  top: 0;
  width: 100%;
} /*! rtl:end:ignore */
.sc-mcd {
  display: flex;
  height: 100%;
  max-width: 600px;
  min-width: 560px;
  width: auto;
}

.smartcharts-light .sc-mcd {
  background: #fff;
  box-shadow: 0 2px 8px 0 #999cac;
  color: #181c25;
}

.smartcharts-dark .sc-mcd {
  background: #20242f;
  box-shadow: 0 2px 8px 0 #191c31;
  color: #c2c2c2;
}

.sc-mcd__tabs {
  box-sizing: border-box;
  width: 240px;
}

.smartcharts-light .sc-mcd__tabs {
  background: #f2f3f4;
}

.smartcharts-dark .sc-mcd__tabs {
  background: #282c38;
}

.sc-mcd__tabs__head {
  box-sizing: border-box;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  height: 56px;
  letter-spacing: normal;
  line-height: 1.5;
  padding: 16px 24px;
}

.sc-mcd__content {
  display: flex;
  flex-direction: column;
  min-width: 320px;
  width: -moz-max-content;
  width: max-content;
}

.sc-mcd__content__head {
  box-sizing: border-box;
  height: 56px;
  padding: 12px 16px 10px;
}

.smartcharts-light .sc-mcd__content__head {
  border-bottom: 2px solid #f2f3f4;
}

.smartcharts-dark .sc-mcd__content__head {
  border-bottom: 2px solid #282c38;
}

.sc-mcd__content__body {
  height: calc(100% - 56px);
  position: relative;
  transform: translateZ(0);
}

.sc-mcd__content__body__scroll {
  height: 100%;
  overflow-y: auto;
  position: relative;
}

.sc-mcd__filter {
  border-bottom: none;
  border-radius: 0 0 0 5px;
  margin: 0;
  min-width: 240px;
  padding: 0;
  width: 240px;
}

.sc-mcd__filter__group-icon {
  margin-right: 4.5px !important;
}

.sc-mcd__filter__group-icon {
  margin-left: auto;
}

.sc-mcd__filter__group-icon--open {
  transform: rotate(180deg);
}

.sc-mcd__filter__subgroups {
  display: none;
}

.sc-mcd__filter__subgroups-item {
  box-shadow: none !important;
  outline: none !important;
}

.sc-mcd__filter__subgroups-item {
  align-items: center;
  border-radius: 0;
  box-sizing: border-box;
  cursor: pointer;
  direction: ltr;
  display: flex;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.43;
  padding: 10px 50px;
  text-transform: capitalize;
  width: 100%;
}

.smartcharts-light .sc-mcd__filter__subgroups-item:hover {
  background-color: #e6e9e9;
  border-left-color: #e6e9e9;
}

.smartcharts-dark .sc-mcd__filter__subgroups-item:hover {
  background-color: #282f3e;
  border-left-color: #282f3e;
}

.sc-mcd__filter__subgroups-item--selected {
  font-weight: 800;
}

.smartcharts-light .sc-mcd__filter__subgroups-item--selected {
  background-color: #fff !important;
  border-left-color: #e31c4b !important;
}

.smartcharts-light .sc-mcd__filter__subgroups-item--selected {
  color: #181c25;
}

.smartcharts-dark .sc-mcd__filter__subgroups-item--selected {
  background-color: #181c25 !important;
  border-left-color: #ff444f !important;
}

.smartcharts-dark .sc-mcd__filter__subgroups-item--selected {
  color: #fff;
}

.sc-mcd__filter__subgroups--open {
  animation: display 2s linear;
  display: block;
  opacity: 1;
}

.sc-mcd__filter__item {
  box-shadow: none !important;
  outline: none !important;
}

.sc-mcd__filter__item {
  align-items: center;
  border-radius: 0;
  box-sizing: border-box;
  cursor: pointer;
  direction: ltr;
  display: flex;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.43;
  padding: 10px 12px;
  width: 100%;
}

.smartcharts-light .sc-mcd__filter__item {
  border-left: 4px solid #f2f3f4;
}

.smartcharts-dark .sc-mcd__filter__item {
  border-left: 4px solid #20242f;
}

.sc-mcd__filter__item .ic-icon {
  display: inline-flex;
  height: 16px;
  margin-right: 1.3em;
  position: relative;
  top: 2px;
  vertical-align: middle;
  width: 16px;
}

.smartcharts-light .sc-mcd__filter__item:hover {
  background-color: #e6e9e9;
  border-left-color: #e6e9e9;
}

.smartcharts-dark .sc-mcd__filter__item:hover {
  background-color: #282f3e;
  border-left-color: #282f3e;
}

.smartcharts-light .sc-mcd__filter__item--active {
  background-color: #fff !important;
  border-left-color: #e31c4b !important;
}

.smartcharts-light .sc-mcd__filter__item--active {
  color: #181c25;
}

.smartcharts-dark .sc-mcd__filter__item--active {
  background-color: #181c25 !important;
  border-left-color: #ff444f !important;
}

.smartcharts-dark .sc-mcd__filter__item--active {
  color: #fff;
}

.sc-mcd__filter__item--selected {
  font-weight: 800;
}

.smartcharts-light .sc-mcd__filter__item--selected {
  background-color: #fff !important;
  border-left-color: #e31c4b !important;
}

.smartcharts-light .sc-mcd__filter__item--selected {
  color: #181c25;
}

.smartcharts-dark .sc-mcd__filter__item--selected {
  background-color: #181c25 !important;
  border-left-color: #ff444f !important;
}

.smartcharts-dark .sc-mcd__filter__item--selected {
  color: #fff;
}

.smartcharts-light .sc-mcd__filter__item--selected .ic-icon svg {
  fill: #181c25;
}

.smartcharts-dark .sc-mcd__filter__item--selected .ic-icon svg {
  fill: #fff;
}

.smartcharts-light .sc-mcd__filter__item--selected .ic-icon:not(.ic-synthetic_index):not(.ic-cryptocurrency) svg {
  stroke: #181c25;
}

.smartcharts-dark .sc-mcd__filter__item--selected .ic-icon:not(.ic-synthetic_index):not(.ic-cryptocurrency) svg {
  stroke: #fff;
}

.sc-mcd__category {
  padding-bottom: 12px;
  position: relative;
}

.smartcharts-light .sc-mcd__category {
  border-bottom: 4px solid #f2f3f4;
}

.smartcharts-dark .sc-mcd__category {
  border-bottom: 4px solid #282c38;
}

.sc-mcd__category .empty-category {
  border-radius: 4px;
  font-size: 14px;
  padding: 0.9em 1.2em;
}

.smartcharts-light .sc-mcd__category .empty-category {
  background-color: #fff;
}

.smartcharts-dark .sc-mcd__category .empty-category {
  background-color: #20242f;
}

.sc-mcd__category:last-child {
  margin-bottom: 10px !important;
}

.sc-mcd__category:last-child {
  border-bottom: none;
}

.sc-mcd__category--has-subtitle {
  padding-top: 6.5em;
}

.sc-mcd__category--favorite .sc-mcd__category__content {
  margin: 0 3px 4px 8px;
}

.sc-mcd__category--synthetic_index {
  padding: 0;
}

@media (min-width: 1024px) {
  .sc-mcd__category--synthetic_index {
    visibility: hidden;
  }
}
.sc-mcd__category__head {
  display: block;
  font-size: 1.4em;
  font-weight: 700;
  line-height: 40px;
  padding: 0 20px;
  position: relative;
  top: 0;
  transform: translateZ(0);
}

.smartcharts-light .sc-mcd__category__head {
  color: #181c25;
}

.smartcharts-dark .sc-mcd__category__head {
  color: #fff;
}

.sc-mcd__category__head .category-name-postfix {
  margin-left: 5px;
}

.sc-mcd__category__head .category-subtitle {
  font-weight: 400;
  line-height: normal;
}

.smartcharts-light .sc-mcd__category__head .category-subtitle {
  color: #7f8397;
}

.smartcharts-dark .sc-mcd__category__head .category-subtitle {
  color: #eaeced;
}

.sc-mcd__category__content--has-subcategory {
  border-radius: 4px;
  margin: 0 3px 4px 8px;
}

.smartcharts-light .sc-mcd__category__content--has-subcategory {
  border: 1px solid #fff;
}

.smartcharts-dark .sc-mcd__category__content--has-subcategory {
  border: 1px solid #20242f;
}

.sc-mcd__category__content--has-subcategory:last-child {
  margin-bottom: 0;
}

.sc-mcd__category__content .subcategory {
  align-items: center;
  border-radius: 4px 4px 0 0;
  display: flex;
  font-size: 1.4em;
  font-weight: 700;
  height: 40px;
  padding: 0 20px;
}

.smartcharts-light .sc-mcd__category__content .subcategory {
  background-color: #fff;
  color: #181c25;
}

.smartcharts-dark .sc-mcd__category__content .subcategory {
  background-color: #20242f;
  color: #fff;
}

.sc-mcd__item {
  align-items: center;
  cursor: pointer;
  direction: ltr;
  display: flex;
  font-size: 1.4em;
  height: 40px;
  justify-content: space-between;
  line-height: normal;
  padding-left: 20px;
  padding-right: 20px;
}

.smartcharts-light .sc-mcd__item {
  background-color: #fff;
  border-bottom: 1px solid #fff;
}

.smartcharts-dark .sc-mcd__item {
  background-color: #20242f;
  border-bottom: 1px solid #20242f;
}

.sc-mcd__item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.sc-mcd__item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.sc-mcd__item:not(:first-child):not(:last-child) {
  border-radius: 4px;
}

.sc-mcd__item__name {
  align-items: center;
  display: flex;
}

.sc-mcd__item__name > span {
  margin-right: 16px;
}

.sc-mcd__item__detail {
  align-items: center;
  display: flex;
}

.smartcharts-light .sc-mcd__item__detail .ic-icon svg {
  fill: #181c25;
  stroke: #181c25;
}

.smartcharts-dark .sc-mcd__item__detail .ic-icon svg {
  fill: #999;
  stroke: #999;
}

.sc-mcd__item .closed-market {
  border: 1px solid #f44336;
  border-radius: 4px;
  color: #f44336;
  font-size: 0.64em;
  padding: 3px 6px;
}

.smartcharts-light .sc-mcd__item:hover {
  background: #e6e9e9;
  color: #181c25;
}

.smartcharts-dark .sc-mcd__item:hover {
  background: #282f3e;
  color: #fff;
}

.smartcharts-light .sc-mcd__item:hover .sc-mcd__item__detail .ic-icon svg {
  fill: #181c25;
  stroke: #181c25;
}

.smartcharts-dark .sc-mcd__item:hover .sc-mcd__item__detail .ic-icon svg {
  fill: #fff;
  stroke: #fff;
}

.smartcharts-light .sc-mcd__item--selected {
  background: #d6dadb !important;
  color: #181c25 !important;
}

.smartcharts-dark .sc-mcd__item--selected {
  background: #323738 !important;
  color: #fff !important;
}

.sc-mcd__item--selected .sc-mcd__item__name {
  font-weight: 700;
}

.smartcharts-light .sc-mcd__item--selected .sc-mcd__item__detail .ic-icon svg {
  fill: #181c25;
}

.smartcharts-dark .sc-mcd__item--selected .sc-mcd__item__detail .ic-icon svg {
  fill: #999;
}

.smartcharts-light .sc-mcd__item--market-selected, .smartcharts-light .sc-mcd__item--market-selected:hover {
  background-color: #d6dadb !important;
  color: #181c25 !important;
}

.smartcharts-dark .sc-mcd__item--market-selected, .smartcharts-dark .sc-mcd__item--market-selected:hover {
  background-color: #384156 !important;
  color: #fff !important;
}

.sc-mcd--nested .sc-mcd__category {
  border-bottom: none;
  max-height: 40px;
  overflow-y: hidden;
  padding: 0;
  transition: max-height 0.5s ease-in-out;
  width: 100%;
}

.sc-mcd--nested .sc-mcd__category__head {
  align-items: center;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  padding-left: 17px;
  padding-right: 20px;
  position: relative;
}

.sc-mcd--nested .sc-mcd__category__head .category-title-left {
  align-items: center;
  display: flex;
}

.sc-mcd--nested .sc-mcd__category__head .category-title-left__placeholder {
  margin-left: 40px;
}

.sc-mcd--nested .sc-mcd__category__head .category-title-left__subgroup {
  font-weight: 400;
}

.sc-mcd--nested .sc-mcd__category__head .category-title-left .ic-icon {
  margin-right: 16px;
  position: relative;
  top: -1px;
}

.smartcharts-light .sc-mcd--nested .sc-mcd__category__head .category-title-left .ic-icon {
  color: #181c25;
}

.smartcharts-dark .sc-mcd--nested .sc-mcd__category__head .category-title-left .ic-icon {
  color: #c2c2c2;
}

.sc-mcd--nested .sc-mcd__category__head .category-title-left .ic-icon svg {
  height: 24px;
  width: 24px;
}

.smartcharts-light .sc-mcd--nested .sc-mcd__category__head .category-title-left .ic-icon svg {
  fill: #181c25;
}

.smartcharts-dark .sc-mcd--nested .sc-mcd__category__head .category-title-left .ic-icon svg {
  fill: #c2c2c2;
}

.sc-mcd--nested .sc-mcd__category__head .ic-icon.arrow {
  transition: transform 0.3s ease-in-out;
}

.smartcharts-light .sc-mcd--nested .sc-mcd__category__head .ic-icon.arrow {
  fill: #181c25;
}

.smartcharts-dark .sc-mcd--nested .sc-mcd__category__head .ic-icon.arrow {
  fill: #c2c2c2;
}

.sc-mcd--nested .sc-mcd__category__content .subcategory {
  font-weight: 400;
}

.smartcharts-light .sc-mcd--nested .sc-mcd__category__content .subcategory {
  color: #999;
}

.smartcharts-dark .sc-mcd--nested .sc-mcd__category__content .subcategory {
  color: #6e6e6e;
}

.sc-mcd--nested .sc-mcd__category--active {
  max-height: 2000px;
}

.sc-mcd--nested .sc-mcd__category--active .sc-mcd__category__head > .ic-icon.arrow {
  transform: rotate(180deg);
}

.smartcharts-mobile .sc-mcd {
  box-shadow: none;
  flex-direction: column;
  height: 100%;
  min-width: 375px;
  width: 100%;
}

.smartcharts-mobile .sc-mcd__content {
  height: 100%;
  width: 100%;
}

.smartcharts-mobile .sc-mcd__content__head {
  border-bottom: none;
}

.smartcharts-mobile .sc-mcd__category--favorite .sc-mcd__category__content, .smartcharts-mobile .sc-mcd__category__content--has-subcategory {
  margin: 0 8px 4px;
}

.smartcharts-mobile .sc-mcd__category__content .subcategory {
  padding: 0 45px 0 48px;
}

.smartcharts-mobile .sc-mcd__category .empty-category {
  padding: 0.9em 3.33em;
}

.smartcharts-mobile .sc-mcd__item {
  padding-left: 45px;
  padding-right: 45px;
}

.smartcharts-mobile .sc-mcd--nested {
  min-height: calc(100% - 38px);
}

.sc-highlow {
  height: 160px;
  width: 160px;
}

.spot__shape-circule {
  border-radius: 100%;
  height: 6px;
  line-height: 1px;
  margin-left: 77px;
  margin-top: 77px;
  position: absolute;
  width: 6px;
}

.smartcharts-dark .spot__fill-red, .smartcharts-light .spot__fill-red {
  background-color: #e31c4b;
}

.smartcharts-dark .spot__fill-blue, .smartcharts-light .spot__fill-blue {
  background-color: #39b19d;
}

.spot__label {
  line-height: 1.5;
  margin-left: 0;
  padding: 4px;
  position: absolute;
  text-align: center;
  white-space: nowrap;
  z-index: 1;
}

.smartcharts-light .spot__label {
  background-color: rgba(0, 0, 0, 0.16);
  color: rgba(0, 0, 0, 0.8);
}

.smartcharts-dark .spot__label {
  background-color: #303342;
  color: #fff;
}

.spot__label:after {
  border-style: solid;
  border-width: 4px;
  content: "";
  left: 0;
  margin-left: 0;
  position: absolute;
}

.spot__label[data-label-pos=top] {
  border-radius: 3px 3px 3px 0;
  margin-left: 79px;
  margin-top: 42px;
}

.spot__label[data-label-pos=top]:after {
  top: 100%;
}

.smartcharts-light .spot__label[data-label-pos=top]:after {
  border-color: rgba(0, 0, 0, 0.16) transparent transparent rgba(0, 0, 0, 0.16);
}

.smartcharts-dark .spot__label[data-label-pos=top]:after {
  border-color: #303342 transparent transparent #303342;
}

.spot__label[data-label-pos=bottom] {
  border-radius: 0 3px 3px;
  margin-left: 79px;
  margin-top: 91px;
}

.spot__label[data-label-pos=bottom]:after {
  bottom: 100%;
}

.smartcharts-light .spot__label[data-label-pos=bottom]:after {
  border-color: transparent transparent rgba(0, 0, 0, 0.16) rgba(0, 0, 0, 0.16);
}

.smartcharts-dark .spot__label[data-label-pos=bottom]:after {
  border-color: transparent transparent #303342 #303342;
}

.cq-dialog--indicator-prediction .sc-dialog {
  border-radius: 8px;
  width: 440px;
}

.cq-indicator-prediction {
  padding: 24px;
}

.cq-indicator-prediction strong {
  display: block;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 24px;
}

.smartcharts-light .cq-indicator-prediction strong {
  color: #181c25;
}

.smartcharts-dark .cq-indicator-prediction strong {
  color: #c2c2c2;
}

.cq-indicator-prediction p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.smartcharts-light .cq-indicator-prediction p {
  color: #181c25;
}

.smartcharts-dark .cq-indicator-prediction p {
  color: #c2c2c2;
}

.cq-indicator-prediction__footer {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.cq-indicator-prediction__footer .sc-btn {
  margin-left: 8px;
  padding: 10px 16px;
}

.cq-indicator-prediction__footer .sc-btn--outline-secondary {
  border-width: 2px;
}

/*! rtl:begin:ignore */
.sc-navigation-widget {
  bottom: 80px;
  direction: ltr;
  left: 13px;
  position: absolute;
  width: 32px;
  z-index: 4;
}

.sc-navigation-widget__item--scale {
  margin-bottom: 8px;
}

.sc-navigation-widget__item--zoom .ic-icon:first-child {
  margin-bottom: 2px;
}

.sc-navigation-widget__item--hidden {
  display: none;
}

.sc-navigation-widget__item--disabled {
  opacity: 0.5;
  pointer-events: none;
}

.sc-navigation-widget__item .ic-icon {
  border-radius: 4px;
  cursor: pointer;
  height: 32px;
  line-height: 41px;
  margin: auto;
  transition: none;
  width: 32px;
}

.smartcharts-light .sc-navigation-widget__item .ic-icon {
  background-color: #f2f3f4;
}

.smartcharts-dark .sc-navigation-widget__item .ic-icon {
  background-color: #20242f;
}

.smartcharts-light .sc-navigation-widget__item .ic-icon svg {
  fill: #181c25;
}

.smartcharts-dark .sc-navigation-widget__item .ic-icon svg {
  fill: #c2c2c2;
} /*! rtl:end:ignore */
.smartcharts-mobile .sc-navigation-widget__item--indent {
  margin-bottom: calc(10% - 1rem);
}

@keyframes move-background {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(46px);
  }
}
.pagination {
  bottom: 0 !important;
}
.pagination {
  top: 0;
}

.pagination__loader {
  color: #000;
  height: 100%;
  margin-left: -10000px;
  opacity: 0.7;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.pagination__loader-background {
  animation-duration: 0.6s;
  animation-iteration-count: infinite;
  animation-name: move-background;
  animation-timing-function: linear;
  bottom: 0;
  left: -46px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.smartcharts-light .pagination__loader-background {
  background: repeating-linear-gradient(-55deg, rgba(255, 0, 0, 0) 1px, #f4f4f6 2px, #f4f4f6 11px, rgba(255, 0, 0, 0) 12px, rgba(255, 0, 0, 0) 20px);
}

.smartcharts-dark .pagination__loader-background {
  background: repeating-linear-gradient(-55deg, rgba(255, 0, 0, 0) 1px, #181c25 2px, #181c25 11px, rgba(255, 0, 0, 0) 12px, rgba(255, 0, 0, 0) 20px);
}

.cq-chart-settings {
  height: auto !important;
}

.cq-chart-settings {
  display: flex;
  flex-direction: column;
}

.cq-chart-settings .ciq-num-input > input[type=number] {
  width: 5.5em;
}

.cq-chart-settings .buttons {
  border-radius: 0 0 4px 4px;
  box-sizing: border-box;
  display: flex;
  height: 72px;
  justify-content: space-between;
  padding: 16px 24px 24px;
}

.smartcharts-light .cq-chart-settings .buttons {
  background: #fff;
  border-top: 1px solid #f2f3f4;
}

.smartcharts-dark .cq-chart-settings .buttons {
  background: #20242f;
  border-top: 1px solid #282c38;
}

.cq-chart-settings .buttons .sc-btn--delete {
  border-radius: 4px;
  cursor: pointer;
  height: 32px;
  padding: 5px;
  width: 32px;
}

.smartcharts-light .cq-chart-settings .buttons .sc-btn--delete svg {
  fill: #181c25;
}

.smartcharts-dark .cq-chart-settings .buttons .sc-btn--delete svg {
  fill: #c2c2c2;
}

.smartcharts-light .cq-chart-settings .buttons .sc-btn--delete:hover {
  background: #e6e9e9;
}

.smartcharts-dark .cq-chart-settings .buttons .sc-btn--delete:hover {
  background: #282f3e;
}

.cq-chart-settings .buttons .sc-btn--reset {
  margin-right: 8px;
  padding: 5px 12px;
}

.cq-chart-settings input[type=number] {
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  line-height: 1.6em;
  margin-right: 5px;
  padding-left: 6px;
  width: 3.2em;
}

/*! rtl:begin:ignore */
.sc-toolbar-widget {
  border-radius: 4px;
  box-sizing: content-box;
  box-sizing: initial;
  direction: ltr;
  left: 1.2em;
  position: absolute;
  top: 102px;
  width: 40px;
  z-index: 4;
}

.smartcharts-light .sc-toolbar-widget {
  background: #fff;
  border: 8px solid #f2f3f4;
}

.smartcharts-dark .sc-toolbar-widget {
  background: #181c25;
  border: 8px solid #20242f;
}

.sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-chart-mode__menu, .sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-download__menu, .sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-dtools__menu, .sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-studies__menu, .sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-views__menu {
  box-sizing: border-box;
  height: 40px;
  padding: 8px;
  width: 40px;
}

.sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-chart-mode__menu .ic-icon, .sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-download__menu .ic-icon, .sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-dtools__menu .ic-icon, .sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-studies__menu .ic-icon, .sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-views__menu .ic-icon {
  height: 24px !important;
  width: 24px !important;
}

.sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-chart-mode__menu .ic-icon, .sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-download__menu .ic-icon, .sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-dtools__menu .ic-icon, .sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-studies__menu .ic-icon, .sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-views__menu .ic-icon {
  top: 0;
}

.sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-chart-mode__menu .ic-icon svg, .sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-download__menu .ic-icon svg, .sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-dtools__menu .ic-icon svg, .sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-studies__menu .ic-icon svg, .sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-views__menu .ic-icon svg {
  height: 24px !important;
  width: 24px !important;
}

.sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-chart-mode__menu .ic-icon svg, .sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-download__menu .ic-icon svg, .sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-dtools__menu .ic-icon svg, .sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-studies__menu .ic-icon svg, .sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-views__menu .ic-icon svg {
  bottom: 0;
  position: relative;
}

.smartcharts-light .sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-chart-mode__menu .ic-icon svg, .smartcharts-light .sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-download__menu .ic-icon svg, .smartcharts-light .sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-dtools__menu .ic-icon svg, .smartcharts-light .sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-studies__menu .ic-icon svg, .smartcharts-light .sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-views__menu .ic-icon svg {
  fill: #181c25;
}

.smartcharts-dark .sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-chart-mode__menu .ic-icon svg, .smartcharts-dark .sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-download__menu .ic-icon svg, .smartcharts-dark .sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-dtools__menu .ic-icon svg, .smartcharts-dark .sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-studies__menu .ic-icon svg, .smartcharts-dark .sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-views__menu .ic-icon svg {
  fill: #c2c2c2;
}

.sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-chart-mode__menu .ic-icon svg {
  height: 20px !important;
  width: 20px !important;
}

.sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-chart-mode__menu .ic-icon svg {
  bottom: -2px;
}

.smartcharts-light .sc-toolbar-widget .ciq-menu .cq-menu-btn:hover {
  background: #e6e9e9;
}

.smartcharts-dark .sc-toolbar-widget .ciq-menu .cq-menu-btn:hover {
  background: #282f3e;
}

.sc-toolbar-widget .sc-tooltip__inner {
  left: calc(100% + 15px);
}

.sc-toolbar-widget--bottom {
  bottom: 38px;
  top: auto;
}

.sc-toolbar-widget:hover {
  z-index: 5;
}

.smartcharts-mobile .sc-toolbar-widget {
  background: transparent;
  border: none;
  gap: 8px;
}

.smartcharts-mobile .sc-toolbar-widget .ciq-menu .cq-menu-btn {
  border-radius: 32px;
}

.smartcharts-mobile .sc-toolbar-widget .sc-tooltip__inner {
  display: none !important;
} /*! rtl:end:ignore */
/*------------------------------------*
 *  # Base Constants
 *------------------------------------*/
/* LAYOUT CONSTANTS */
/*------------------------------------*
 *  # SASS Mixins and Functions
 *------------------------------------*/
/*
 * RTL Language Mixin
 */
/*
 * SASS interpolation
 */
/*
 * PX to EM
 * @param $px - px value to be converted
 * @param $base - base font size (in `em`)
 * Note: 'em' values are calculate based on the element font-size
 *       to properly converts 'px' to 'em', please pass in the element font-size with it
 * Usage example:
    padding: em(16px, 1.6em); // font-size in 'em'
 */
/*
 * Set property by passing a property name, and values.
 * @param $property name - padding, margin etc.
 * @param $values        - values in `px` (space separated for multiple values)
 * @param $font-size     - base font-size in `em`
 * Usage example:
   @include toEm(padding, 8px 16px 8px, 1.6em);
 */
/*
 * Generate typefaces key-value pair of variable name and config
 * Example:
   --paragraph-center-bold-black: (14px, center, bold, black)
 */
/*
 * Sets font-size, font-weight, color, text-transform, text-align and line-height
 * Usage example:
   @include setTypeface(16px, bold, black, uppercase);
 */
/*
 * Set typefaces by passing a typeface variable name
 * @param $var   - typeface variable
 * @param $tt    - text-transform property
 * @param $align - text-align property
 * Usage example:
   @include typeface(--paragraph-bold-black, uppercase, center);
 */
/*
 * Range Slider Thumb styling is set here
 */
/*
 * SVG icons colors
 */
/*
 * Bar Spinner Animation
 * @param $count    - number of bars
 * @param $duration - duration of animation
 * @param $phase    - each bar phase change delay
 * Usage example:
   @include createBarspinnerAnimation(5, 1.2s, 0,1);
 */
/*
 * Tooltip colors
 * @param $color - color property
 * Usage example:
   @include tooltipColor(var(--brand-primary));
 */
/*
 * Convert Tooltip colors
 * @param $color - css color property
 * Usage example:
   @include convertTooltipColor(var(--status-default));
 */
/*
    Constants
*/
/*
    Variables
*/
/*
    List of all typefaces variables in the format: --$FONT_SIZES-$TEXT_ALIGN-$FONT_WEIGHTS-COLORS.
    See $FONT_SIZES, $TEXT_ALIGN, $FONT_WEIGHTS, $COLORS maps above for references.
    Variables name example: --title-center-semibold-red
 */
/*
    to use styles without modifier class on .inline-icon
    use @extend

    e.g. style icon on parent hover:
        a:hover .inline-icon {
            @extend %inline-icon-active;
        }
*/
.notifications-toggle:hover .notifications-toggle__icon {
  /* postcss-bem-linter: ignore */
}
.notifications-toggle:hover .notifications-toggle__icon .color1-fill {
  fill: var(--color-text-primary);
}
.notifications-toggle:hover .notifications-toggle__icon {
  /* postcss-bem-linter: ignore */
}
.notifications-toggle:hover .notifications-toggle__icon .color1-stroke {
  stroke: var(--color-text-primary);
}
.notifications-toggle:hover .notifications-toggle__icon {
  /* postcss-bem-linter: ignore */
}
.notifications-toggle:hover .notifications-toggle__icon .color2-fill {
  fill: none;
}
.notifications-toggle:hover .notifications-toggle__icon {
  /* postcss-bem-linter: ignore */
}
.notifications-toggle:hover .notifications-toggle__icon .color2-stroke {
  stroke: none;
}
/**
 * Define Breakpoints here.
 */
/** Need to add new breakpoints for mixins */
.notifications {
  /** @define notifications-toggle; weak */
}
.notifications-toggle {
  position: relative;
  margin-right: 0.8rem;
}
.notifications-toggle__icon {
  width: 26px;
  height: 26px;
  pointer-events: none;
}
.notifications-toggle__icon-wrapper {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.notifications-toggle__icon-wrapper--active {
  cursor: default;
}
.notifications-toggle__icon .color1-fill {
  fill: var(--color-text-secondary);
}
.notifications-toggle__icon .color1-stroke {
  stroke: var(--color-text-secondary);
}
.notifications-toggle__step {
  position: absolute;
  left: 1rem;
  top: -2px;
  pointer-events: none;
}
.notifications-toggle--active .dc-popover {
  pointer-events: none;
}
.notifications {
  /** @define notifications-dialog; weak */
}
.notifications-dialog {
  position: fixed;
  width: 264px;
  height: 525px;
  background: var(--color-surface-primary);
  border-radius: 4px;
  box-shadow: 0 4px 8px 2px var(--color-shadow-medium);
  transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.25s linear;
  opacity: 0;
  transform: translate3d(0, -20px, 0);
}
@media (min-width: 1280px) {
  .notifications-dialog {
    top: 58px;
    right: 2.8rem;
  }
}
@media (min-width: 601px) and (max-width: 1279px) {
  .notifications-dialog {
    top: 48px;
    right: 2.8rem;
  }
}
@media (max-width: 600px) {
  .notifications-dialog {
    position: relative;
    right: auto;
    right: initial;
    width: 100%;
    height: 100%;
    box-shadow: none;
    opacity: 1;
    opacity: initial;
    transform: none;
  }
}
.notifications-dialog__header {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--color-surface-border);
}
.notifications-dialog__header-text {
  margin: 1rem 0;
}
@media (max-width: 600px) {
  .notifications-dialog__header {
    display: none;
  }
}
.notifications-dialog__footer {
  height: 3.7rem;
  align-items: end;
  display: flex;
  justify-content: end;
  padding-left: 1.3rem;
  background: var(--color-surface-primary);
  box-shadow: 0 4px 8px 2px var(--color-shadow-medium);
  transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.25s linear;
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.notifications-dialog__separator {
  border-bottom: 1px solid var(--color-notification-info-border);
}
.notifications-dialog__clear {
  border: 1px solid var(--color-notification-info-border);
  height: 2.4rem;
  width: auto;
  bottom: 0.6rem;
  right: 1.7rem;
  padding: 0.7rem;
}
.notifications-dialog__clear:hover {
  background: var(--color-button-secondary-hover);
}
.notifications-dialog__content {
  padding: 0.8rem 0;
  height: calc(100% - 37px);
  border-radius: 4px;
}
.notifications-dialog__content--empty {
  display: flex;
}
.notifications-dialog__content--sticky {
  display: flex;
  position: sticky;
  bottom: 0;
}
@media (max-width: 600px) {
  .notifications-dialog__content {
    height: calc(100vh - 40px);
  }
}
.notifications-dialog--enter-done {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.notifications-dialog--enter, .notifications-dialog--exit {
  opacity: 0;
  transform: translate3d(0, -20px, 0);
}
.notifications {
  /** @define notifications-empty; weak */
}
.notifications-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.notifications-empty__container {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notifications-empty__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.notifications-empty__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
}
.notifications-empty__icon .color1-fill {
  fill: var(--color-text-secondary);
}
.notifications-empty__header {
  padding: 8px;
}
.notifications {
  /** @define notifications-item; weak */
}
.notifications-item {
  padding: 0.8rem;
  margin-left: 3.2rem;
  margin-right: 0.8rem;
  position: relative;
}
.notifications-item:not(:last-child):after {
  position: absolute;
  content: "";
  bottom: 0;
  left: -3.2rem;
  width: calc(100% + 4rem);
  height: 1px;
  background: var(--color-interactive-disabled);
}
.notifications-item__cta-button {
  padding: 0.3rem 0.8rem;
  margin: 0.8rem 0 0.8rem auto;
  height: auto;
  width: auto;
  white-space: normal;
}
@media (max-width: 600px) {
  .notifications-item__cta-button {
    margin: 0.8rem 0 1.6rem auto;
  }
}
.notifications-item__link-wrapper {
  display: flex;
  justify-content: flex-end;
}
.notifications-item__title {
  margin-bottom: 4px;
  position: relative;
}
.notifications-item__title-icon {
  position: absolute;
  left: -26px;
  top: 2px;
  height: 16px;
  width: 16px;
  pointer-events: none;
}
.notifications-item__message {
  font-size: 1.2rem;
  color: var(--color-text-primary);
  line-height: 1.5;
}
.notifications-item__message a {
  text-decoration: none;
  font-weight: bold;
  color: var(--color-text-primary);
}
.notifications-item__action {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 600px) {
  .notifications-item {
    display: flex;
    flex-direction: column;
  }
  .notifications-item:after {
    left: -1.8rem;
    width: calc(100% + 1.4em);
    height: 2px;
  }
}
/*------------------------------------*
 *  # Base Constants
 *------------------------------------*/
/* LAYOUT CONSTANTS */
/*------------------------------------*
 *  # SASS Mixins and Functions
 *------------------------------------*/
/*
 * RTL Language Mixin
 */
/*
 * SASS interpolation
 */
/*
 * PX to EM
 * @param $px - px value to be converted
 * @param $base - base font size (in `em`)
 * Note: 'em' values are calculate based on the element font-size
 *       to properly converts 'px' to 'em', please pass in the element font-size with it
 * Usage example:
    padding: em(16px, 1.6em); // font-size in 'em'
 */
/*
 * Set property by passing a property name, and values.
 * @param $property name - padding, margin etc.
 * @param $values        - values in `px` (space separated for multiple values)
 * @param $font-size     - base font-size in `em`
 * Usage example:
   @include toEm(padding, 8px 16px 8px, 1.6em);
 */
/*
 * Generate typefaces key-value pair of variable name and config
 * Example:
   --paragraph-center-bold-black: (14px, center, bold, black)
 */
/*
 * Sets font-size, font-weight, color, text-transform, text-align and line-height
 * Usage example:
   @include setTypeface(16px, bold, black, uppercase);
 */
/*
 * Set typefaces by passing a typeface variable name
 * @param $var   - typeface variable
 * @param $tt    - text-transform property
 * @param $align - text-align property
 * Usage example:
   @include typeface(--paragraph-bold-black, uppercase, center);
 */
/*
 * Range Slider Thumb styling is set here
 */
/*
 * SVG icons colors
 */
/*
 * Bar Spinner Animation
 * @param $count    - number of bars
 * @param $duration - duration of animation
 * @param $phase    - each bar phase change delay
 * Usage example:
   @include createBarspinnerAnimation(5, 1.2s, 0,1);
 */
/*
 * Tooltip colors
 * @param $color - color property
 * Usage example:
   @include tooltipColor(var(--brand-primary));
 */
/*
 * Convert Tooltip colors
 * @param $color - css color property
 * Usage example:
   @include convertTooltipColor(var(--status-default));
 */
/*
    Constants
*/
/*
    Variables
*/
/*
    List of all typefaces variables in the format: --$FONT_SIZES-$TEXT_ALIGN-$FONT_WEIGHTS-COLORS.
    See $FONT_SIZES, $TEXT_ALIGN, $FONT_WEIGHTS, $COLORS maps above for references.
    Variables name example: --title-center-semibold-red
 */
/*
    to use styles without modifier class on .inline-icon
    use @extend

    e.g. style icon on parent hover:
        a:hover .inline-icon {
            @extend %inline-icon-active;
        }
*/
/**
 * Define Breakpoints here.
 */
/** Need to add new breakpoints for mixins */
/** @define acc-info */
.acc-info {
  align-items: center;
  display: flex;
  flex-direction: row;
  height: 100%;
  justify-content: center;
  cursor: pointer;
}
@media (min-width: 1280px) {
  .acc-info {
    padding: 0 1.6rem;
  }
}
.acc-info__preloader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 4.7rem;
  z-index: 2;
  background: var(--color-surface-primary);
  padding: 0.8rem 0.8rem 0.8rem 0;
}
@media (max-width: 600px) {
  .acc-info__preloader {
    position: relative;
    height: 5.5rem;
  }
  .acc-info__preloader:before {
    display: none;
  }
}
.acc-info__container {
  display: flex;
  align-items: center;
  -webkit-box-align: center;
  gap: 1.6rem;
}
@media (max-width: 600px) {
  .acc-info__container {
    width: 100%;
    gap: 0.8rem;
    justify-content: space-between;
  }
  .acc-info__container--logged-out {
    justify-content: flex-end;
    padding-right: 1.6rem;
  }
}
.acc-info__container--loading {
  padding: 0 1.6rem 0 0;
}
.acc-info__wrapper {
  align-items: center;
  display: flex;
  flex-direction: row;
  height: 100%;
  justify-content: center;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.acc-info__wrapper--highlighted {
  height: 5.2rem;
  z-index: 10001;
  position: relative;
  background: var(--color-interactive-hover);
  border-radius: 8px;
}
.acc-info__id {
  pointer-events: none;
}
.acc-info__id-icon {
  vertical-align: middle;
  margin-right: 0.8rem;
}
.acc-info__separator {
  border-right: 1px solid var(--color-surface-border);
  height: 3.2rem;
}
.acc-info__balance {
  pointer-events: none;
  margin-right: 0.8rem;
}
.acc-info__account-type-and-balance {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1rem 0.1rem 0;
  pointer-events: none;
}
.acc-info__select-arrow {
  pointer-events: none;
  transform: rotate(0);
  transform-origin: 50% 45%;
  transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.acc-info__select-arrow--invert {
  transform: rotate(180deg);
}
@media (min-width: 1280px) {
  .acc-info {
    /* Removed hover effect for acc-info */
    /* &:hover:not(.show):not(&--is-disabled) {
        background: var(--color-interactive-hover);

        .symbols {
            background: transparent;
        }
    } */
  }
}
@media (max-width: 600px) {
  .acc-info__balance--no-currency {
    white-space: nowrap;
  }
}
.acc-info--is-demo .acc-info__balance {
  color: var(--color-text-success);
}
.acc-info--is-disabled {
  cursor: not-allowed;
}
.acc-info--show .acc-info__select-arrow {
  transform: rotate(180deg);
}
.acc-info--show .acc-info__select-arrow--invert {
  transform: rotate(0deg);
}
.acc-info--no-switcher {
  cursor: default;
}
.acc-info__button {
  border-radius: 24px;
}
@media (max-width: 600px) {
  .acc-info__button {
    height: 2.8rem !important;
  }
}
.acc-info__transfer-button {
  background-color: var(--color-button-primary-bg);
  border-radius: 24px;
  transition: opacity 0.2s ease;
  margin-right: 1.6rem;
}
.acc-info__transfer-button:hover {
  opacity: 0.8;
}
.acc-info__transfer-button:active {
  opacity: 0.6;
}
.acc-info__wallets {
  gap: 0.8rem;
}
.acc-info__wallets-container {
  align-items: center;
  display: flex;
  gap: 0.8rem;
}
.acc-info__wallets-account-type-and-balance {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  pointer-events: none;
}
.acc-info__wallets-balance {
  color: var(--color-text-secondary);
  margin-right: 0;
}
.acc-info__account-type-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.acc-info__content {
  display: flex;
  flex-direction: column;
}
.acc-info__balance-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
[dir=rtl] .acc-info__balance-section {
  direction: ltr;
  text-align: right;
}

/* @define acc-switcher; weak */
.acc-switcher__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  position: absolute;
  transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.25s linear;
  box-shadow: 0 8px 16px 0 var(--color-shadow-medium);
  right: 0;
  top: calc(100% + 4px);
  width: 19.6rem;
  padding: 0.8rem;
  background: var(--color-modal-bg);
  border: 1px solid var(--color-surface-border);
  z-index: 10;
}
[dir=rtl] .acc-switcher__wrapper {
  right: auto;
  left: 0;
  direction: rtl;
}
.acc-switcher__wrapper .dc-themed-scrollbars {
  scrollbar-color: var(--color-text-secondary) transparent;
}
.acc-switcher__wrapper .dc-themed-scrollbars::-webkit-scrollbar-thumb {
  background: var(--color-text-secondary);
}
.acc-switcher__list {
  display: flex;
  flex-flow: column nowrap;
  height: 100%;
}
.acc-switcher__accounts {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
  border-radius: 4px;
  position: relative;
}
.acc-switcher__account {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 0.8rem 1.6rem;
  position: relative;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s ease;
}
.acc-switcher__account--selected {
  background: var(--color-interactive-hover);
}
.acc-switcher__account:not(.acc-switcher__account--selected):hover {
  background-color: var(--color-interactive-hover) !important;
}
.acc-switcher__loader {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
}
.acc-switcher__loader-skeleton {
  width: 17.8rem;
  height: 3.2rem;
}
@media (max-width: 600px) {
  .acc-switcher__loader-skeleton {
    width: 100%;
    height: 4.8rem;
  }
}
.acc-switcher__error-container {
  display: flex;
  width: 100%;
}
.acc-switcher__error-items {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
}
.acc-switcher__error-message {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.8rem;
  width: 100%;
  padding: 0.4rem;
  border-radius: 8px;
  background: var(--component-sectionMessage-bg-warning);
}
@media (max-width: 600px) {
  .acc-switcher__error-message {
    padding: 1.2rem;
  }
}
.acc-switcher__refresh-button {
  border-radius: 2.4rem !important;
  position: relative !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}
.acc-switcher__refresh-button svg {
  position: absolute;
  right: 0.8rem;
}
@media (max-width: 600px) {
  .acc-switcher__refresh-button svg {
    right: 1.6rem;
  }
}
[dir=rtl] .acc-switcher__refresh-button svg {
  right: 0.8rem;
  left: auto;
}
.acc-switcher__account-details {
  display: flex;
  flex-direction: column;
  width: 100%;
}
[dir=rtl] .acc-switcher__account-details {
  text-align: right;
}

/** @define account-switcher-action-sheet */
.account-switcher-action-sheet {
  padding: 0.8rem;
}
.account-switcher-action-sheet .acc-switcher__wrapper {
  position: relative;
  box-shadow: none;
  border-radius: 0;
  width: 100%;
  top: auto;
  top: initial;
  right: auto;
  right: initial;
  border: none;
  background: none;
}
.account-switcher-action-sheet .acc-switcher__list {
  padding: 0;
}
.account-switcher-action-sheet .acc-switcher__account {
  margin-bottom: 0.8rem;
}
.account-switcher-action-sheet .acc-switcher__account:last-child {
  margin-bottom: 0;
}

/** @define set-currency; weak */
.set-currency {
  margin-right: 8px;
}
.set-currency .dc-btn {
  display: flex;
  align-items: center;
}
@media (max-width: 600px) {
  .set-currency .dc-btn {
    height: 2.8rem !important;
  }
}

/** @define no-currency; weak */
.no-currency {
  font-size: 0.8rem;
  text-align: center;
  font-weight: 400;
  color: var(--color-text-black);
  text-transform: none;
  line-height: inherit;
  text-transform: none;
  color: var(--color-text-secondary);
  line-height: 1.5;
  text-align: right;
}

/** @define badge-server; weak */
.badge-server {
  display: inline-block;
  background-color: var(--brand-info)-2;
  padding: 0.2rem;
  border-radius: 0.2rem;
  margin-left: 0.5rem;
  height: 2.2rem;
}
.badge-server-bot {
  color: var(--color-surface-primary);
}
.badge-server--disabled {
  background-color: var(--color-interactive-disabled);
}

@media (min-width: 601px) and (max-width: 1279px) {
  .dc-modal__container_accounts-switcher {
    left: 0;
    right: 0;
    max-width: 44rem;
    margin: auto;
  }
}
