﻿@media screen and (max-width: 1000px)
        {
            table thead
            {
                border: none;
                clip: rect(0 0 0 0);
                height: 1px;
                margin: -1px;
                overflow: hidden;
                padding: 0;
                position: absolute;
                width: 1px;
            }
        
            table tr
            {
                border-bottom: 3px solid #ddd;
                display: block;
            }
        
            table td
            {
                border-bottom: 1px solid #ddd;
                display: block;
                text-align: left;
            }
        
            table td::before
            {
                content: attr(data-label);
                float: left;
            }
        
        }