/**
 * AmCharts 5 Stock Chart Styles for ForTraders
 * Based on: https://www.amcharts.com/demos/stock-chart/
 * @version 2.1.0
 */

/* Chart controls container */
div[id$="-controls"] {
    height: auto;
    padding: 5px 5px 0 16px;
    max-width: 100%;
}

/* Chart container */
.tech_graph {
    width: 100%;
    height: 600px;
    max-width: 100%;
}

/* Responsive heights */
@media (max-width: 768px) {
    .tech_graph {
        height: 500px;
    }
}

@media (max-width: 480px) {
    .tech_graph {
        height: 400px;
    }
}

