/**
 * Copyright (c) 2020, 2021 Visa, Inc.
 *
 * This source code is licensed under the MIT license
 * https://github.com/visa/visa-chart-components/blob/master/LICENSE
 *
 **/
.o-layout {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.o-layout--chart {
  width: 100%;
}
.is--vertical .o-layout--chart {
  width: 90%;
}

/**
* Copyright (c) 2020, 2021, 2023, 2024 Visa, Inc.
*
* This source code is licensed under the MIT license
* https://github.com/visa/visa-chart-components/blob/master/LICENSE
*
**/
line-chart {
  cursor: default;
}
line-chart .annotations {
  pointer-events: none;
}
line-chart .annotations .handle {
  pointer-events: all;
}
line-chart .screen-reader-info {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
line-chart .data-table-link {
  color: #767676;
  text-decoration: none;
  font-size: 12px;
  margin-left: 5%;
}
line-chart .hidden {
  display: none;
}
line-chart .axis {
  font-size: 12px;
}
line-chart .axis text {
  fill: #767676;
}
line-chart .axis-label {
  text-anchor: middle;
  font: 1rem sans-serif;
}
line-chart .axis-mark {
  color: #949494;
  stroke-width: 2px;
}
line-chart .axis path {
  color: transparent;
  stroke-width: 2px;
}
line-chart .grid line {
  stroke: #c9c9c9;
  stroke-opacity: 0.6;
}
line-chart .grid path {
  stroke-width: 0;
  stroke: #767676;
}
line-chart .line-group {
  transition: opacity 0.5s linear;
}
line-chart .line-group__inactive {
  opacity: 0;
}
line-chart .line-group .line-plot {
  fill: none;
}
line-chart .line-group .dot {
  stroke: #ffffff;
}
line-chart .line-group .line-series-label {
  font-size: 1em;
}
line-chart .line-legend {
  font-size: 1em;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
line-chart .line-legend .legend {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}