.wind-chart {
  color: #424242;
  font-size: 12px;
  position: relative;
  line-height: 1.2;
}

.wind-chart .axis {
  font-family: inherit;
  font-size: inherit;
}

.wind-chart .chart-title {
  font-size: 16px;
  font-weight: bold;
}

.wind-chart .chart-subtitle {
  font-size: 12px;
}

.wind-chart .peak-label {
  font-size: 12px;
}

.wind-chart .scrollable {
  position: relative;
  overflow-x: auto;
  display: grid;
  grid-template-areas: "stack";
}

.wind-chart .scrollable > svg {
  display: block;
  grid-area: stack;
}

.wind-chart .scrollable > .left-svg {
  position: sticky;
  left: 0;
  top: 0;
  pointer-events: none;
}

.wind-chart .axis line {
  color: #9e9e9e;
}

.wind-chart .axis .secondary line {
  color: #e0e0e0;
}

.wind-chart .axis .day-change text {
  font-weight: bold;
}

.wind-chart .axis .day-change line {
  stroke-width: 2px;
}

.wind-chart .wind-g .line-path {
  stroke-width: 2px;
  stroke-linecap: round;
}

.wind-chart .gust-g .line-path {
  stroke-width: 3px;
  stroke-linecap: round;
}

.wind-chart .halo-label {
  fill: none;
  stroke: #ffffff;
  stroke-width: 3px;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.wind-chart .band-rect {
  fill-opacity: 0.6;
}
