﻿/* =========================================
   MY ORDERS - MOBILE TABLE FIX
   ========================================= */

.my-orders-header {
    display: table-header-group !important;
    visibility: visible !important;
}

    .my-orders-header tr {
        display: table-row !important;
    }

    .my-orders-header th {
        display: table-cell !important;
        visibility: visible !important;
        white-space: nowrap;
    }


/* Mobile */
@media only screen and (max-width: 767px) {

    .my-orders-table {
        min-width: 700px;
    }

        .my-orders-table thead {
            display: table-header-group !important;
        }

        .my-orders-table tbody {
            display: table-row-group !important;
        }

        .my-orders-table tr {
            display: table-row !important;
        }

        .my-orders-table th,
        .my-orders-table td {
            display: table-cell !important;
            visibility: visible !important;
            white-space: nowrap;
        }

        .my-orders-table th {
            font-size: 12px;
            padding: 10px 8px;
        }

        .my-orders-table td {
            font-size: 12px;
            padding: 10px 8px;
        }

    .my-orders-responsive {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}
