/* XY Plot */
.rv-xy-plot text {
  font-weight: bold;
  text-transform: uppercase;
}

.rv-xy-plot__axis__line {
  stroke-width: 2px;
  stroke: var(--neutral300);
  fill: none;
}

.rv-xy-plot {
  color: #c3c3c3;
  position: relative;
}

.rv-xy-plot__inner {
  display: block;
}

.rv-xy-plot__axis {}

.rv-xy-plot__axis__tick {}

.rv-xy-plot__axis__tick__line {
  stroke: var(--neutral300);
}

.rv-xy-plot__axis__tick__text {
  fill: var(--neutral700);
  font-size: 11px;
}

.rv-xy-plot__axis__title text {
  font-size: 11px;
  fill: var(--neutral700);
}


.rv-xy-plot__grid-lines {}

.rv-xy-plot__grid-lines__line {
  stroke: var(--neutral300);
}

.rv-xy-plot__series--line {
  fill: none;
  stroke: var(--neutral900);
  stroke-width: 2px;
}

/* Discrete Color Legend */
.rv-discrete-color-legend.horizontal {
  box-sizing: border-box;
  overflow-y: auto;
  font-size: 12px;
  display: flex;
  justify-content: center;
  white-space: nowrap;
}

.rv-discrete-color-legend-item {
  align-items: center;
  display: flex;
  font-size: 12px;
  font-weight: bold;
  padding: 8px 16px 8px 0;
  text-align: center;
  text-transform: uppercase;
}

.rv-discrete-color-legend-item:last-child {
  padding-right: 0;
}

.rv-discrete-color-legend-item__color {
  border-radius: 100px;
  height: 8px;
  margin-top: -2px;
  vertical-align: middle;
  width: 8px;
}

.rv-discrete-color-legend-item__title {
  color: var(--neutral700);
  margin-left: 6px;
}

/* Radial Chart */
.rv-radial-chart__svg {
  display: block;
}

.rv-radial-chart__series--pie > path {
  stroke: #fff;
  stroke-width: 1px;
}

/* Hint Chart */
.rv-hint {
  position: absolute;
  pointer-events: none;
}

.rv-hint__content {
  border-radius: 4px;
  padding: 7px 10px;
  font-size: 12px;
  background: rgba(40, 52, 66, 0.9);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  color: #fff;
  font-weight: bold;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Continuous Size Legend */
.rv-continuous-size-legend {
  font-size: 12px;
}

.rv-continuous-size-legend .rv-bubbles {
  text-align: justify;
  overflow: hidden;
  margin-bottom: 5px;
  width: 100%;
}

.rv-continuous-size-legend .rv-bubble {
  background: var(--neutral300);
  display: inline-block;
  vertical-align: bottom;
}

.rv-continuous-size-legend .rv-spacer {
  display: inline-block;
  font-size: 0;
  line-height: 0;
  width: 100%;
}

/* Legend Titles */
.rv-legend-titles {
  font-weight: bold;
  height: 16px;
  position: relative;
}

.rv-legend-titles__left,
.rv-legend-titles__right,
.rv-legend-titles__center {
  color: var(--neutral700);
  overflow: hidden;
  position: absolute;
  text-transform: uppercase;
  white-space: nowrap;
}

.rv-legend-titles__left {
  position: absolute;
}

.rv-legend-titles__center {
  display: block;
  text-align: center;
  width: 100%;
}

.rv-legend-titles__right {
  position: absolute;
  right: 0;
}

.rv-crosshair {
  position: absolute;
}

/* Treemap */
.rv-treemap {
  font-size: 12px;
  position: relative;
}

.rv-treemap__leaf {
  overflow: hidden;
  position: absolute;
}

.rv-treemap__leaf__content {
  display: block;
  font-size: 10px;
  font-weight: bold;
  overflow: hidden;
  padding: 4px;
  text-transform: uppercase;
  text-overflow: ellipsis;
}
