/* [project]/app/chart/CandlestickChart.css [app-client] (css) */
.cc-root {
  background: #0d0d14;
  flex-direction: column;
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  display: flex;
  overflow: hidden;
}

.cc-toolbar {
  padding: calc(6px + env(safe-area-inset-top, 0px)) 12px 6px
    calc(12px + env(safe-area-inset-left, 0px));
  background: #0a0a10;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.cc-toolbar-group {
  gap: 4px;
  display: flex;
}

.cc-btn {
  color: #555;
  letter-spacing: .08em;
  cursor: pointer;
  text-transform: uppercase;
  background: none;
  border: 1px solid #2a2a3e;
  border-radius: 2px;
  padding: 4px 12px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  transition: border-color .15s, color .15s, background .15s;
}

.cc-btn--active {
  color: #2ecc71;
  background: #2ecc710f;
  border-color: #2ecc71;
}

.cc-chart-wrap {
  flex: 1 1 0;
  min-height: 0;
  position: relative;
  overflow: hidden;
}

.cc-chart-svg {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
}

.cc-nav-wrap {
  background: #090910;
  border-top: 1px solid #1e1e2e;
  flex-shrink: 0;
}

.cc-nav-svg {
  width: 100%;
  display: block;
}

.cc-root .grid .tick line {
  stroke: #1e1e2e;
}

.cc-root .grid .domain {
  display: none;
}

.cc-root .nav-brush .selection {
  fill: #64a0ff1f;
  stroke: #64a0ff80;
  stroke-width: 1px;
}

.cc-root .nav-brush .handle {
  fill: #64a0ff73;
}

.cc-root .nav-brush .overlay {
  cursor: crosshair;
}

.cc-root .ch-price-label rect, .cc-root .ch-time-label rect {
  fill: #1a1a2e;
  stroke: #2a2a4e;
  stroke-width: 1px;
}

.cc-root .volume-layer .vol-bar {
  shape-rendering: crispedges;
}

.cc-ohlc-widget {
  z-index: 2;
  white-space: nowrap;
  pointer-events: none;
  background: #0a0a10bf;
  border: 1px solid #2a2a3e;
  border-radius: 2px;
  flex-direction: column;
  gap: 2px;
  min-width: 118px;
  padding: 5px 8px;
  font-family: Share Tech Mono, monospace;
  font-size: 11px;
  line-height: 1.5;
  display: flex;
  position: absolute;
  top: 8px;
  left: 8px;
}

.cc-ohlc-widget .cc-ohlc-row {
  align-items: baseline;
  gap: 6px;
  display: flex;
}

.cc-ohlc-widget .cc-ohlc-lbl {
  color: #888;
}

.cc-ohlc-widget .cc-ohlc-val {
  flex: 1;
}

.cc-ohlc-widget--hidden {
  display: none;
}

/*# sourceMappingURL=app_chart_CandlestickChart_1t4t6p7.css.map*/