/** Shopify CDN: Minification failed

Line 58:21 Unexpected "#9219524297009"

**/
table.custom-table{
    border-collapse: collapse;
    /* width: 100%; */
    display: flex;
    flex-flow: column;
    width: 100%;
    /* height: 226px; */
    /* align-items: center; */

    /* width: 100%;
    height: 100%; */
    /* table-layout: fixed; */
    /* border-collapse: collapse; */
    font-size: 1.4rem;
    border-style: hidden;
    box-shadow: 0 0 0 0.1rem rgba(var(--color-foreground), 0.2);
}

table.custom-table thead{
    flex: 0 0 auto;
}

table.custom-table tbody{
    flex: 1 1 auto;
    display: block;
    overflow-y: auto;
    overflow-x: hidden;
}

table.custom-table tr {
    width: 100%;
    display: table;
    table-layout: fixed;
    border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.2);
    opacity: 1;
    transition: opacity 500ms;
}

table.custom-table thead tr{
    min-height: 60px;
}

table.custom-table tbody tr{
    min-height: 54px;
}

table.custom-table th,
table.custom-table td{
    padding: 10px 1em;
    border: 0;
}

table.custom-table tr#9219524297009{
    height: 70px !important;
}


.cell-center {
    text-align: center;
}

.cell-right {
    text-align: right;
}

.cell-left {
    text-align: left;
}

table.custom-table .th-checkbox,
table.custom-table .td-checkbox {
    /* text-align: right !important; */
    width: 50px;
}

table.custom-table input[type="checkbox"] {
    /* Add if not using autoprefixer */
    -webkit-appearance: none;
    /* Remove most all native input styles */
    appearance: none;
    /* For iOS < 15 */
    background-color: #fff;
    /* Not removed via appearance */
    margin: 0;

    cursor: pointer;

    font: inherit;
    color: currentColor;
    width: 1.15em;
    height: 1.15em;
    border: 0.10em solid rgba(var(--color-foreground), 0.2);
    border-radius: 0.15em;
    transform: translateY(-0.075em);

    display: grid;
    place-content: center;
}

table.custom-table input[type="checkbox"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    transform: scale(0);
    transform-origin: bottom left;
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em rgba(var(--color-foreground), 0.2);
    /* Windows High Contrast Mode */
    /* background-color: #000; */
}

table.custom-table input[type="checkbox"]:checked::before {
    transform: scale(1);
    background-color: #000;
}

table.custom-table input[type="checkbox"]:not(:checked)::before {
    background-color: var();
    transform: scale(1);
}


/* PAGINATION STYLES */

ul.pagination-list{
    list-style: none;
    display: flex;
    /* gap: 10px; */
    align-items: center;
    justify-content: center;
    padding: 0;
}

ul.pagination-list >li {
    border: 1px solid #eee;
    /* padding: 0 10px; */
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

ul.pagination-list >li.active {
    color: #fff;
    background-color: #000;
    cursor: unset;
}

ul.pagination-list >li:not(:last-child){
    border-right: none;
}

ul.pagination-list >li.previous-page-btn.disabled,
ul.pagination-list >li.next-page-btn.disabled{
    cursor: no-drop;
}

ul.pagination-list >li.previous-page-btn.disabled > svg,
ul.pagination-list >li.next-page-btn.disabled > svg{
    opacity: 0.5;
}
