@charset "utf-8";

/*
   Lisa Sullivan: Live Acoustics

   Columns Style Sheet
   Author: Lisa Sullivan
   Date:   06/14/2024

   Filename:         dlr_columns.css

*/



/* Column Styles */

@media only screen and (max-width: 1200px) {

 table, tbody, tr, td, th {
        display: block;
 }    
 
 thead, tfoot {
        display: none;
}

tbody td {
    position: relative;
    padding-left: 25%;
}

td::before {
    content: attr(data-label);
        position: absolute;
        top:0px;
        left: 0px;
        padding: 5px;
        width: 40%;
}
}