@media only screen and (max-width: 480px) {
                table tr:first-child td:not(:nth-child(1)){display: none;}
                table tr td{width: 100% !important; display: block;}
                
                table tr:not(:nth-child(1)) td:not(:nth-child(1)){text-align: left !important; padding-left: 40%;
                    box-sizing: border-box;
                    -moz-box-sizing: border-box;
                    -webkit-box-sizing: border-box;
                    -ms-box-sizing: border-box;
                    position: relative;
                }
                table tr:not(:nth-child(1)) td:not(:nth-child(1)):before{
                    position: absolute;
                    top: 2px;
                    left: 6px;
                    width: 45%; 
                    padding-right: 0px; 
                    white-space: nowrap;
                    text-align:left;
                    font-weight: bold;
                }
                
                table tr:not(:nth-child(1)) td span{
                    float: left;
                    width: 100%;
                    font-size: 20px;
                    color: #333 !important;
                    border-bottom: 3px solid #eee;
                }
                table tr:nth-child(3n + 4){
                    display: none !important;
                }
                table tr:not(:nth-child(1)) td:nth-child(2):before{
                    content: "Monday";   
                }
                table tr:not(:nth-child(1)) td:nth-child(3):before{
                    content: "Tuesday";   
                }
                table tr:not(:nth-child(1)) td:nth-child(4):before{
                    content: "Wednesday";   
                }
                table tr:not(:nth-child(1)) td:nth-child(5):before{
                    content: "Thursday";   
                }
                table tr:not(:nth-child(1)) td:nth-child(6):before{
                    content: "Friday";   
                }
            }