/* Full screen chart */
.toggle-chart {
    transition: all linear 0.5s;
}

.toggle-chart.full-page {
    position: fixed;
    left: 10px;
    top: 10px;
    z-index: 10000;
    background: #fff;
    padding: 0;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border-radius: 10px;
    box-shadow: 0 0 20px #fff;
    overflow: hidden;
}

.toggle-chart.full-page .chartdiv,
.toggle-chart.full-page .chart-content {
    height: 100%;
    width: 100%;
}

.chart-toggle-size {
    position: absolute;
    font-size: 16px;
    color: #ccc;
    width: 30px;
    height: 30px;
    padding: 6px;
    margin: 5px 50px;
    border-radius: 50%;
    box-shadow: 0 0 2px #aaa;
    z-index: 1000;
    cursor: pointer;
    transition: color linear 0.5s;
}

.toggle-chart.toggle-chart-sm .chart-toggle-size {
    margin: 5px 15px;
}

.chart-toggle-size:hover {
    color: #999;
    box-shadow: 0 0 2px #777;
}

.toggle-chart.full-page .chart-toggle-size {
    margin: 5px;
}

.chart-toggle-size > .fa {
    display: block;
    position: relative;
    left: 2px;
}