﻿.chart_tile {
	background-color: var(--white-color);
    border: 1px solid var(--black20per-color);
    border-radius: 4px;
    margin: 0 10px;
}

.chartInfo {
    overflow: visible !important;
    width: 33%;
    padding: 30px 10px 0 0;
}

.container_sticky_0 {
    width: 50%;
    position: sticky;
    top: 0;
}

.chartLegend {
    font-size: 12px;
    overflow: visible !important;
    width: 50%;
    align-self: center;
    margin: 10px 0 10px 20px;
}

.canvas-block {
    overflow: visible !important;
    height: 100px;
    width: 100%;
    align-self: center;
    padding-bottom: 10%;
    padding-top: 10%;
}

.container_vertical-center {
    height:100%;
    display:flex;
    align-items: center;
}

.chartLegendItem {
    overflow: visible !important;
    display: inline-block;
    width: 14px;
    height: 14px;
    position: absolute;
    left: 0;
}

.chart-list {
    width: 100%;
    word-wrap: break-word;
}
.chart-list li {
    margin-bottom: 5px;
    padding-left: 25px;
    position: relative;
}

.chart-list li:last-of-type {
    margin-bottom: 0;
}

.chart-list label {
    font-weight: normal;
    cursor: pointer;
}

.chartLegendItem {
    cursor: pointer;
}

.chartLegend .disabled label {
    cursor: pointer !important;
    pointer-events: auto !important;
    text-decoration: line-through;
}

.chartCriteria label,
.chartStatistic label {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.9);
    text-transform: uppercase;
}

.chartCriteriaTable,
.chartStatisticTable,
.chartLegend {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.9);
}

.chartCriteriaTable td, .chartCriteriaTable td:first-child {
    border: 0 !important;
	background-color: transparent;
}

.chartCriteriaTable td {
    word-break: break-word;
    line-height: 1.7;
}

.chartCriteriaTable label {
    text-transform: none;
    font-weight: normal;
}

.chartStatistic {
    padding-top: 50px;
    padding-bottom: 50px;
}

.chartStatisticTable td,
.chartStatisticTable td:first-child {
    border: 0 !important;
	background-color: transparent;
}

.chartStatisticTable td {
    line-height: 1.7;
}

.chartStatisticTable label {
    text-transform: none;
    font-weight: normal;
}

.statKey {
    text-align: left !important;
    white-space: nowrap;
}

.chartCriteria hr, .chartStatistic hr {
    margin-top: 5px;
    margin-bottom: 5px;
    border-top: 2px solid rgba(0, 0, 0, 0.6);
}

.lowercase {
    text-transform: lowercase;
}

.chartCriteriaTable p {
    display: inline;
}

.statIntervalSeparator {
    margin-left: 3px;
    margin-right: 3px;
}

#chartjs-tooltip div.tooltip__caret_before:before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 5px solid rgba(0, 0, 0, 0.8);
    left: -5px;
    top: 8px;
}

#chartjs-tooltip div.tooltip__caret_after:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid rgba(0, 0, 0, 0.8);
    right: -5px;
    top: 8px;
}