/* these heights are defaults -- usually overriden by inline */

.chart-container { 
    height: 500px;
    position: relative;
}

.chart-container.tall {
    height: 1200px;
} 

.page-header {
    margin-top: 0px;
}

@media screen and (max-width: 767px) {
    .chart-container {
        height: 425px;
    }
    
    .chart-container.tall {
        height: 950px;
    }
}

