/* Sticky colonne su mobile in visione tabellare */
@media(max-width:980px){
    .table-wrap{
        position:relative;
        overflow-x:auto !important;
        overflow-y:visible !important;
        -webkit-overflow-scrolling:touch;
        scrollbar-width:thin;
        border:1px solid #ddd;
        background:#fff;
    }

    main table{
        border-collapse:separate !important;
        border-spacing:0 !important;
        width:max-content !important;
        min-width:100% !important;
    }

    main table th,
    main table td{
        background:#fff;
    }

    main table th{
        background:#f2f2f2 !important;
    }

    main table .sticky-col-1{
        position:sticky !important;
        left:0 !important;
        z-index:5 !important;
        background:#fff !important;
        box-shadow:2px 0 4px rgba(0,0,0,.12);
        max-width:90px !important;
        min-width:70px !important;
        width:70px !important;
    }

    main table th.sticky-col-1{
        z-index:8 !important;
        background:#f2f2f2 !important;
    }

    main table .sticky-col-2{
        position:sticky !important;
        left:var(--sticky-first-width,70px) !important;
        z-index:4 !important;
        background:#fff !important;
        box-shadow:2px 0 4px rgba(0,0,0,.10);
        max-width:180px !important;
        min-width:145px !important;
    }

    main table th.sticky-col-2{
        z-index:7 !important;
        background:#f2f2f2 !important;
    }

    main table .sticky-col-1 img{
        max-width:54px !important;
        max-height:54px !important;
        object-fit:cover;
        border-radius:6px;
    }

    main table td.sticky-col-1,
    main table td.sticky-col-2{
        white-space:normal !important;
        overflow:hidden !important;
        text-overflow:ellipsis !important;
    }

    main table td.sticky-col-2{
        font-weight:800;
    }
}
