/* ==========================
Atterberg — Table Container
============================= */
.atterberg-page .table-panel {
    height: 600px;
}

#atterberg-table-container {
    flex: 1;
    overflow: auto;
    min-height: 0;
}
/* ==========================
Atterberg — Chart
============================= */
#atterberg-chart {
    flex: 2 1 600px;
    height: 600px;
    min-width: 600px;
    max-width: 900px;
    margin-top:0;
    align-self: flex-start;
}
 
/* ==========================
Responsive — Tablet
============================= */
@media (max-width: 1024px) {
 
    #atterberg-chart {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        height: 450px;
        flex: none;
    }
 
    #atterberg-table-container {
        overflow: hidden;
        max-height: 300px;
        max-width: 600px;
    }
 
    #atterberg-table-container:hover {
        overflow: auto;
    }
}
 
/* ==========================
Responsive — Mobile
============================= */
@media (max-width: 600px) {
 
    #atterberg-chart {
        height: 350px;
    }
}