@media(max-width:768px){	

    .rcube-table thead{
        display:none;
    }

    .rcube-table,
    .rcube-table tbody,
    .rcube-table tr,
    .rcube-table td{
        display:block;
        width:100%;
    }

    .rcube-table tr{
        margin-bottom:20px;
        background:#fff;
        border-radius:16px;
        overflow:hidden;
        box-shadow:0 5px 20px rgba(0,0,0,0.08);
    }

    .rcube-table td{
        text-align:right;
        padding-left:50%;
        position:relative;
    }

    .rcube-table td:before{
        position:absolute;
        left:15px;
        top:18px;
        font-weight:700;
        text-align:right;
    }

}