/* Mobile styles */
@media (max-width: 767px) {
    .courseMainDiv {
        margin-bottom: 15px;
    }

    .cartInfo{
        display: flex;
        /*flex: 1;*/
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        /*padding: 10px;*/
    }

    .removeItemBtn{
        /*width: 100%;*/
    }

    .table1 thead {
        display: none;
    }
    .table1, .table1 tbody, .table1 tr, .table1 td{
        display: block;
        width: 100%;
    }
    .table1 tr{
        margin-bottom: 15px;
    }
    .table1 tbody tr td{
        text-align: right;
        padding-left: 50%;
        position: relative;
    }
    .table1 td:before{
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 50%;
        padding-left: 15px;
        font-weight: 600;
        font-size: 18px;
        text-align: left;
    }
    .table1 tr:nth-of-type(2n){
        background-color: #f2f2f2;
    }
    .table1 tr td:nth-of-type(1){
        display: none;
    }
}