/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

select {
    color:black !important;
}

@media (max-width: 768px) {
    .eoancol {
        max-width: 100% !important;
    }

    div.colseparator {
        width: 100%;
    } 

    /* Force table to not be like tables anymore */
    .the-table-responsive, 
    .the-table-responsive thead, 
    .the-table-responsive tbody, 
    .the-table-responsive th, 
    .the-table-responsive td, 
    .the-table-responsive tr { 
        display: block; 
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    .the-table-responsive thead tr { 
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .the-table-responsive tr { border: 1px solid #ccc; }

    .the-table-responsive td { 
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee; 
        position: relative;
        padding-left: 40% !important; 
        padding-right: 1% !important;
        white-space: normal;
        /*text-align:left;*/
        text-align:center;
        vertical-align: middle;
        word-wrap: break-word;
        
        width: 100%; 
    }

    .the-table-responsive td:before { 
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 10px;
        left: 6px;
        width: 35%; 
        padding-right: 10px; 
        white-space: nowrap;
        text-align:left;
        font-weight: bold;
    }

    /*
    Label the data
    */
    .the-table-responsive td:before { content: attr(data-label); }    

    .the-table-responsive td {         
        vertical-align: middle;
    }    
}