/**
 * @license Highcharts
 *
 * (c) 2009-2016 Torstein Honsi
 *
 * License: www.highcharts.com/license
 */
.highcharts-container {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: left;
    z-index: 0;
    /* #1072 */
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    overflow: visible;
    text-shadow: 0 0 3px rgba(var(--background-rgb), 1);
}

.highcharts-root {
    display: block;
}

.highcharts-root text {
    stroke-width: 0;
}

.highcharts-strong {
    font-weight: bold;
}

.highcharts-emphasized {
    font-style: italic;
}

.highcharts-anchor {
    cursor: pointer;
}

.highcharts-background {
/*    fill: none;*/
}

.highcharts-plot-border,
.highcharts-plot-background {
    fill: none;
}

/*
.highcharts-label-box {
    fill: none;
}
*/

.highcharts-button-box {
    fill: rgba(var(--background-rgb), 1);
    stroke: rgba(var(--graphic-rgb), 0.5);
}

.highcharts-tracker-line {
    stroke-linejoin: round;
    stroke: rgba(192, 192, 192, 0.01);
    stroke-width: 22;
    fill: none;
}

.highcharts-tracker-area {
    fill: rgba(192, 192, 192, 0.0001);
    stroke-width: 0;
}

/* Titles */
.highcharts-title {
    font-size: 2em;
    text-shadow: 0 0 5px rgba(var(--background-rgb), 1);;
}

.highcharts-subtitle {
}

/* Axes */
.highcharts-axis-line {
    fill: none;
/*    stroke: rgba(var(--graphic-rgb),0.3);*/
}

.highcharts-yaxis .highcharts-axis-line {
    stroke-width: 0;
}

.highcharts-axis-title {
    fill: #FFF;
}

.highcharts-axis-labels {
    fill: rgb(var(--text-rgb));
    cursor: default;
    font-size: 0.8em;
}

.highcharts-yaxis-labels {
    color: rgba(var(--text-rgb), 0.75);
    font-size: 0.7em;
}

.highcharts-grid-line {
    fill: none;
    stroke: rgba(var(--graphic-rgb), 0.15);

}

.no-grid .highcharts-grid-line, .no-grid .highcharts-axis-line {stroke-width: 0 !important}

.highcharts-xaxis-grid .highcharts-grid-line {
    stroke: rgba(var(--graphic-rgb), 0.1);
/*    stroke-width: 0;*/
}

.highcharts-tick {
    stroke: rgba(var(--graphic-rgb),0.25);
}

.highcharts-yaxis .highcharts-tick {
    stroke-width: 1;
}

.highcharts-minor-grid-line {
    stroke: rgba(var(--graphic-rgb),0.1);
}

.highcharts-crosshair-thin {
    stroke-width: 1px;
    stroke: var(--graphic-rgb);
}

.highcharts-crosshair-category {
    stroke: #ccd6eb;
    stroke-opacity: 0.25;
}


/* Tooltip */
.highcharts-tooltip-container {
    z-index: 1051 !important; /* makes it go above modal-windows and navigation menu */
}

.highcharts-tooltip {
    cursor: default;
    pointer-events: none;
    white-space: normal !important;
    -webkit-transition: stroke 150ms;
    transition: stroke 150ms;
    text-align: center;
    min-width: 20em;
    color: #FFF;
    text-shadow: none;
}

.highcharts-tooltip-box {
    stroke-width: 2px;
/*    stroke: #fff;*/
    stroke-linecap: round;
    stroke-linejoin: round;
    
    fill: #171717;
    fill-opacity: 0.85;

}

div.highcharts-tooltip {
    -webkit-filter: none;
    filter: none;
}

.highcharts-tooltip-title {
    white-space: normal;
    font-size: 1.3em;
}

.highcharts-tooltip-desc {
    white-space: normal;
    font-size: 0.8em;
}

.highcharts-tooltip-label {
    font-size: 0.9em;
    border: 1px solid rgba(255,255,255,0.1);;
    margin-top: 10px;
    width: auto;
    display: inline-block;
    padding: 2px 7px;
    border-radius: 3px;
    background: rgba(255,255,255,0.1);
}

.highcharts-tooltip-label-color {
    width: 20px;
    height: 20px;
}

.highcharts-selection-marker {
    fill: #335cad;
    fill-opacity: 0.25;
}

.highcharts-graph {
    fill: none;
    stroke-width: 1.5px;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.highcharts-state-hover .highcharts-graph {
    stroke-width: 3;
}

/*
.highcharts-point-inactive {
    opacity: 0.2;
    -webkit-transition: opacity 50ms;
    transition: opacity 50ms;
}

.highcharts-series-inactive {
    opacity: 0.2;
    -webkit-transition: opacity 50ms;
    transition: opacity 50ms;
}
*/

.highcharts-state-hover path {
    -webkit-transition: stroke-width 50ms;
    transition: stroke-width 50ms;
    /* quick in */
}

.highcharts-state-normal path {
    -webkit-transition: stroke-width 250ms;
    transition: stroke-width 250ms;
}

/* Legend hover affects points and series */
g.highcharts-series,
.highcharts-point,
.highcharts-markers,
.highcharts-data-labels {
    -webkit-transition: opacity 250ms;
    transition: opacity 250ms;
}

.highcharts-legend-series-active g.highcharts-series:not(.highcharts-series-hover),
.highcharts-legend-point-active .highcharts-point:not(.highcharts-point-hover),
.highcharts-legend-series-active .highcharts-markers:not(.highcharts-series-hover),
.highcharts-legend-series-active .highcharts-data-labels:not(.highcharts-series-hover) {
    opacity: 0.2;
}

/* Series options */


.highcharts-area {
    stroke-width: 0;
}

.highcharts-markers {
    stroke-width: 1px;
    stroke: rgba(var(--graphic-rgb), 0.5);
}

.highcharts-point {
    stroke-width: 0.4px;
}

.highcharts-dense-data .highcharts-point, .no-border .highcharts-point {
    stroke-width: 0;
}

.highcharts-data-label {
    font-size: 0.8em;
    font-weight: normal;
}

.highcharts-data-label span {
    white-space: normal !important;
/*
    background: rgba(var(--background-rgb), 0.1);
    border-radius: 3px;
*/
}

.highcharts-bar-series .highcharts-data-label {
    font-size: 0.7em;
}

.highcharts-data-label.round-datalabels span {
    height: 26px;
    width: 26px;
    background: rgba(var(--graphic-rgb),.15);
    border-radius: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.highcharts-data-label text,
text.highcharts-data-label {
    fill: #333333;
}

.highcharts-data-label-connector {
    fill: none;
}

.highcharts-data-label-hidden {
    pointer-events: none;
}

.highcharts-halo {
    fill-opacity: .25;
    stroke-width: 4px;
    stroke: rgba(var(--graphic-rgb), 0.2);
}

.highcharts-series:not(.highcharts-pie-series) .highcharts-point-select,
.highcharts-markers .highcharts-point-select {
    fill: #cccccc;
    stroke: #000000;
}

.highcharts-column-series .highcharts-point {
    -webkit-transition: fill-opacity 250ms;
    transition: fill-opacity 250ms;
}

.highcharts-column-series .highcharts-point-hover {
    fill-opacity: 0.75;
    -webkit-transition: fill-opacity 50ms;
    transition: fill-opacity 50ms;
}

.highcharts-pie-series .highcharts-point {
    stroke-linejoin: round;
    stroke: #ffffff;
}

.highcharts-pie-series .highcharts-point-hover {
    fill-opacity: 0.75;
    -webkit-transition: fill-opacity 50ms;
    transition: fill-opacity 50ms;
}

.highcharts-solidgauge-series .highcharts-point {
    stroke-width: 0;
}


/* Legend */
.highcharts-legend-box {
    fill: rgba(var(--graphic-rgb),0.05);
    stroke-width: 0.4;
    stroke: rgba(--graphic-rgb,0.2);
}

.highcharts-legend-item > span {
    font-weight: normal;
    font-size: 0.9em;
    cursor: pointer;
    stroke-width: 0;
}

.highcharts-legend-item:hover text {
/*    fill: #000000;*/
}

.highcharts-legend-item-hidden * {
    fill: #cccccc !important;
    stroke: #cccccc !important;
    -webkit-transition: fill 250ms;
    transition: fill 250ms;
}

.highcharts-legend-nav-active {
    fill: #003399;
    cursor: pointer;
}

.highcharts-legend-nav-inactive {
    fill: #cccccc;
}

circle.highcharts-legend-nav-active,
circle.highcharts-legend-nav-inactive {
    /* tracker */
    fill: rgba(192, 192, 192, 0.0001);
}

.highcharts-legend-title-box {
    fill: none;
    stroke-width: 0;
}

/* Bubble legend */
.highcharts-bubble-legend-symbol {
    stroke-width: 2;
    fill-opacity: 0.5;
}

.highcharts-bubble-legend-connectors {
    stroke-width: 1;
}

.highcharts-bubble-legend-labels {
    fill: #333333;
}

/* Loading */
.highcharts-loading {
    position: absolute;
    background-color: #ffffff;
    opacity: 0.5;
    text-align: center;
    z-index: 10;
    -webkit-transition: opacity 250ms;
    transition: opacity 250ms;
}

.highcharts-loading-hidden {
    height: 0 !important;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: opacity 250ms, height 250ms step-end;
    transition: opacity 250ms, height 250ms step-end;
}

.highcharts-loading-inner {
    font-weight: bold;
    position: relative;
    top: 45%;
}

/* Plot bands and polar pane backgrounds */
.highcharts-plot-band,
.highcharts-pane {

}

/*
.highcharts-plot-line {
    fill: none;
    stroke: rgba(var(--graphic-rgb),.9);
    stroke-width: 2px;
}
*/

.highcharts-plot-line-label {
    color: #FFF;
    color: rgb(var(--text-rgb));
}

/* Highcharts More and modules */
/*
.highcharts-boxplot-box {
    fill: #ffffff;
}

.highcharts-boxplot-median {
    stroke-width: 2px;
}

.highcharts-bubble-series .highcharts-point {
    fill-opacity: 0.5;
}

.highcharts-errorbar-series .highcharts-point {
    stroke: #000000;
}

.highcharts-gauge-series .highcharts-data-label-box {
    stroke: #cccccc;
    stroke-width: 1px;
}
*/



/* Exporting module */
.highcharts-contextbutton {
    fill: #ffffff;
    /* needed to capture hover */
    stroke: none;
    stroke-linecap: round;
}

.highcharts-contextbutton:hover {
    fill: #e6e6e6;
    stroke: #e6e6e6;
}

.highcharts-button-symbol {
    stroke: #666666;
    stroke-width: 3px;
}

.highcharts-menu {
    border: 1px solid #999999;
    background: #ffffff;
    padding: 5px 0;
    -webkit-box-shadow: 3px 3px 10px #888;
    box-shadow: 3px 3px 10px #888;
}

.highcharts-menu-item {
    padding: 0.5em 1em;
    background: none;
    color: #333333;
    cursor: pointer;
    -webkit-transition: background 250ms, color 250ms;
    transition: background 250ms, color 250ms;
}

.highcharts-menu-item:hover {
    background: #335cad;
    color: #ffffff;
}

/* Drilldown module */
.highcharts-drilldown-point {
    cursor: pointer;
}

.highcharts-drilldown-data-label text,
text.highcharts-drilldown-data-label,
.highcharts-drilldown-axis-label {
    cursor: pointer;
    fill: #003399;
    font-weight: bold;
    text-decoration: underline;
}

/* No-data module */
.highcharts-no-data text {
    font-weight: bold;
    font-size: 12px;
    fill: #666666;
}

/* Drag-panes module */
.highcharts-axis-resizer {
    cursor: ns-resize;
    stroke: black;
    stroke-width: 2px;
}

/* Bullet type series */
.highcharts-bullet-target {
    stroke-width: 0;
}

/* Lineargauge type series */
.highcharts-lineargauge-target {
    stroke-width: 1px;
    stroke: #333333;
}

.highcharts-lineargauge-target-line {
    stroke-width: 1px;
    stroke: #333333;
}

/* Annotations module */
.highcharts-annotation-label-box {
    stroke-width: 1px;
    stroke: #000000;
    fill: #000000;
    fill-opacity: 0.75;
}

.highcharts-annotation-label text {
    fill: #e6e6e6;
}

/* Gantt */
.highcharts-treegrid-node-collapsed,
.highcharts-treegrid-node-expanded {
    cursor: pointer;
}

.highcharts-point-connecting-path {
    fill: none;
}

.highcharts-grid-axis .highcharts-tick {
    stroke-width: 1px;
}

.highcharts-grid-axis .highcharts-axis-line {
    stroke-width: 1px;
}



/* CUSTOM CHART STYLES */
/*
[data-chart="wheel_competence"] .highcharts-xaxis-grid .highcharts-grid-line,
[data-chart="competence_compare_std"] .highcharts-xaxis-grid .highcharts-grid-line {
    stroke-width: 1px;
}
*/

[data-chart="column_option_distribution"] .highcharts-axis-labels {
    font-size: 0.8em;
}

[data-chart="solidgauge_multiple_competence"] .highcharts-title {
    text-align: center;
    font-size: 1em;
    white-space: normal;
}

[data-chart="bar_relative_diff"] .highcharts-axis-labels {
    font-size: 0.7em;
}

[data-chart="column_question"] .highcharts-xaxis-labels span {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap !important;
    text-shadow: none;
}

[data-chart="solidgauge_single_competence"] .highcharts-data-label {
    text-align: center;
}

[data-chart="solidgauge_single_competence"] .highcharts-pane:nth-child(1) {
    fill: rgba(var(--graphic-rgb),.05);
    stroke-width: 0.4;
    stroke: rgba(var(--graphic-rgb),.2);
}

[data-chart="solidgauge_single_competence"] .highcharts-pane:nth-child(2) {
    fill: rgba(var(--graphic-rgb),.2);
    stroke-width: 0.5;
    stroke: rgba(var(--graphic-rgb),.2);
}

[data-chart="solidgauge_single_competence"] .highcharts-pane:nth-child(3) {
    fill: rgba(var(--graphic-rgb),.05);
    stroke-width: 0.4;
    stroke: rgba(var(--graphic-rgb),.2);
}

[data-chart="solidgauge_multiple_competence"] .highcharts-pane:nth-child(1) {
    fill: rgba(var(--graphic-rgb),.05);
    stroke-width: 0.4;
    stroke: rgba(var(--graphic-rgb)5,.2);
}

[data-chart="solidgauge_multiple_competence"] .highcharts-pane:nth-child(2) {
    fill: rgba(var(--graphic-rgb),.05);
    stroke-width: 0.4;
    stroke: rgba(var(--graphic-rgb),.2);
}

[data-chart="bar_single_competence"] .highcharts-title {
    font-size: 0.8em;
}

[data-chart="bar_single_competence"] .highcharts-plot-band {
    fill: rgba(var(--graphic-rgb),.1);
}
