#webisco-cart form{
    width: 100%;
}

#webisco-cart .cell {
    position: relative;
    padding-left: 5px;
    padding-right: 5px;
}

#webisco-cart .cell input[type="submit"][value="Löschen"] {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: none;
    background: #eee;
    color: transparent; /* приховати текст */
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    line-height: 24px;
    padding: 0;
    margin: 0 auto;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 1;
}

#webisco-cart .cell .remove-cross {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 24px;
    height: 24px;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #c00;
    font-weight: bold;
    pointer-events: none;
    z-index: 2;
}

#webisco-cart .cell input[type="submit"][value="Löschen"]:hover {
    background: #c00;
}

#webisco-cart .cell input[type="submit"][value="Löschen"]:hover + .remove-cross {
    color: #fff;
}



#webisco-cart,#webisco-cart-sum {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-content: flex-start;
    align-items: flex-start;
    gap: 0;
    -moz-column-gap: auto;
    column-gap: auto;
    row-gap: auto
}

#webisco-cart #calc,#webisco-cart-sum #calc {
    margin-top: 1em !important
}

#webisco-cart .table,#webisco-cart-sum .table {
    border-radius: 0 !important;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    gap: 0;
    -moz-column-gap: auto;
    column-gap: auto;
    row-gap: 0;
    width: 100%
}

#webisco-cart .table .row,#webisco-cart .table .header,#webisco-cart-sum .table .row,#webisco-cart-sum .table .header {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-content: stretch;
    align-items: stretch;
    gap: 0;
    -moz-column-gap: .4em;
    column-gap: .4em;
    row-gap: auto;
    width: 100%;
    border-radius: 0 !important;
    position: relative
}

#webisco-cart .table .row:before,#webisco-cart .table .header:before,#webisco-cart-sum .table .row:before,#webisco-cart-sum .table .header:before {
    content: "";
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-gray-3)
}

#webisco-cart .table .row.webisco-cart-row-odd:before,#webisco-cart .table .row.webisco-cart-row-even:before,#webisco-cart .table .header.webisco-cart-row-odd:before,#webisco-cart .table .header.webisco-cart-row-even:before,#webisco-cart-sum .table .row.webisco-cart-row-odd:before,#webisco-cart-sum .table .row.webisco-cart-row-even:before,#webisco-cart-sum .table .header.webisco-cart-row-odd:before,#webisco-cart-sum .table .header.webisco-cart-row-even:before {
    display: block
}

#webisco-cart .table .row .cell,#webisco-cart .table .header .cell,#webisco-cart-sum .table .row .cell,#webisco-cart-sum .table .header .cell {
    padding-top: .3em !important;
    padding-bottom: .3em !important;
    border-radius: 0 !important;
    border: 0 !important;
    order: 1;
    line-height: 1.3em;
    width: auto;
    height: auto;
    flex-shrink: 1;
    align-content: center !important;
    -webkit-hyphens: auto;
    hyphens: auto;
    margin-bottom: 5px !important;
    margin-top: 5px !important
}

#webisco-cart .table .row .cell:nth-child(1),#webisco-cart .table .header .cell:nth-child(1),#webisco-cart-sum .table .row .cell:nth-child(1),#webisco-cart-sum .table .header .cell:nth-child(1) {
    order: 1
}

#webisco-cart .table .row .cell:nth-last-child(8),#webisco-cart .table .header .cell:nth-last-child(8),#webisco-cart-sum .table .row .cell:nth-last-child(8),#webisco-cart-sum .table .header .cell:nth-last-child(8) {
    width: 24px !important;
    flex-basis: 24px !important;
    order: 8;
    padding-left: 0;
    padding-right: 0;
}

#webisco-cart .table .row .cell:nth-last-child(8)>.btn-delete,#webisco-cart .table .header .cell:nth-last-child(8)>.btn-delete,#webisco-cart-sum .table .row .cell:nth-last-child(8)>.btn-delete,#webisco-cart-sum .table .header .cell:nth-last-child(8)>.btn-delete {
    color: var(--color-white);
    border: 0 !important;
    background-color: var(--color-gray-5) !important;
    position: relative;
    width: 24px !important;
    max-width: auto;
    min-width: auto;
    font-size: 24px;
    line-height: 24px;
    letter-spacing: var(--button-letter-spacing);
    font-weight: var(--button-font-weight);
    text-transform: var(--button-text-transform);
    border-radius: 50%;
    padding: 0;
    min-height: 24px;
    margin: 0;
    cursor: pointer;
    text-align: center;
    outline: none;
    -moz-transition-property: all;
    -moz-transition-duration: .4s;
    -moz-transition-timing-function: ease-in-out;
    -moz-transition-delay: 0s;
    -webkit-transition-property: all;
    -webkit-transition-duration: .4s;
    -webkit-transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0s;
    -o-transition-property: all;
    -o-transition-duration: .4s;
    -o-transition-timing-function: ease-in-out;
    -o-transition-delay: 0s;
    transition-property: all;
    transition-duration: .4s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    -webkit-hyphens: none;
    hyphens: none;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    gap: 0;
    -moz-column-gap: .25em;
    column-gap: .25em;
    row-gap: auto
}

#webisco-cart .table .row .cell:nth-last-child(8)>.btn-delete i,#webisco-cart .table .header .cell:nth-last-child(8)>.btn-delete i,#webisco-cart-sum .table .row .cell:nth-last-child(8)>.btn-delete i,#webisco-cart-sum .table .header .cell:nth-last-child(8)>.btn-delete i {
    position: relative;
    display: inline-block;
    height: 1.2em;
    bottom: 0;
    -moz-transition-property: all;
    -moz-transition-duration: .4s;
    -moz-transition-timing-function: ease-in-out;
    -moz-transition-delay: 0s;
    -webkit-transition-property: all;
    -webkit-transition-duration: .4s;
    -webkit-transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0s;
    -o-transition-property: all;
    -o-transition-duration: .4s;
    -o-transition-timing-function: ease-in-out;
    -o-transition-delay: 0s;
    transition-property: all;
    transition-duration: .4s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s
}

#webisco-cart .table .row .cell:nth-last-child(8)>.btn-delete i.icon,#webisco-cart .table .header .cell:nth-last-child(8)>.btn-delete i.icon,#webisco-cart-sum .table .row .cell:nth-last-child(8)>.btn-delete i.icon,#webisco-cart-sum .table .header .cell:nth-last-child(8)>.btn-delete i.icon {
    color: var(--color-white) !important;
    height: auto !important;
    font-size: 1.2em
}

#webisco-cart .table .row .cell:nth-last-child(8)>.btn-delete i svg *,#webisco-cart .table .header .cell:nth-last-child(8)>.btn-delete i svg *,#webisco-cart-sum .table .row .cell:nth-last-child(8)>.btn-delete i svg *,#webisco-cart-sum .table .header .cell:nth-last-child(8)>.btn-delete i svg * {
    fill: var(--color-white) !important
}

#webisco-cart .table .row .cell:nth-last-child(8)>.btn-delete .icon,#webisco-cart .table .header .cell:nth-last-child(8)>.btn-delete .icon,#webisco-cart-sum .table .row .cell:nth-last-child(8)>.btn-delete .icon,#webisco-cart-sum .table .header .cell:nth-last-child(8)>.btn-delete .icon {
    font-size: 1em !important
}

#webisco-cart .table .row .cell:nth-last-child(8)>.btn-delete:hover,#webisco-cart .table .header .cell:nth-last-child(8)>.btn-delete:hover,#webisco-cart-sum .table .row .cell:nth-last-child(8)>.btn-delete:hover,#webisco-cart-sum .table .header .cell:nth-last-child(8)>.btn-delete:hover {
    color: var(--color-white);
    border: 0 !important;
    background-color: var(--color-state-red) !important;
    position: relative;
    width: 24px !important;
    max-width: auto;
    min-width: auto;
    font-size: 24px;
    line-height: 24px;
    letter-spacing: var(--button-letter-spacing);
    font-weight: var(--button-font-weight);
    text-transform: var(--button-text-transform);
    border-radius: 50%;
    padding: 0;
    min-height: 24px;
    margin: 0;
    cursor: pointer;
    text-align: center;
    outline: none;
    -moz-transition-property: all;
    -moz-transition-duration: .4s;
    -moz-transition-timing-function: ease-in-out;
    -moz-transition-delay: 0s;
    -webkit-transition-property: all;
    -webkit-transition-duration: .4s;
    -webkit-transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0s;
    -o-transition-property: all;
    -o-transition-duration: .4s;
    -o-transition-timing-function: ease-in-out;
    -o-transition-delay: 0s;
    transition-property: all;
    transition-duration: .4s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    -webkit-hyphens: none;
    hyphens: none;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    gap: 0;
    -moz-column-gap: .25em;
    column-gap: .25em;
    row-gap: auto
}

#webisco-cart .table .row .cell:nth-last-child(8)>.btn-delete:hover i,#webisco-cart .table .header .cell:nth-last-child(8)>.btn-delete:hover i,#webisco-cart-sum .table .row .cell:nth-last-child(8)>.btn-delete:hover i,#webisco-cart-sum .table .header .cell:nth-last-child(8)>.btn-delete:hover i {
    position: relative;
    display: inline-block;
    height: 1.2em;
    bottom: 0;
    -moz-transition-property: all;
    -moz-transition-duration: .4s;
    -moz-transition-timing-function: ease-in-out;
    -moz-transition-delay: 0s;
    -webkit-transition-property: all;
    -webkit-transition-duration: .4s;
    -webkit-transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0s;
    -o-transition-property: all;
    -o-transition-duration: .4s;
    -o-transition-timing-function: ease-in-out;
    -o-transition-delay: 0s;
    transition-property: all;
    transition-duration: .4s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s
}

#webisco-cart .table .row .cell:nth-last-child(8)>.btn-delete:hover i.icon,#webisco-cart .table .header .cell:nth-last-child(8)>.btn-delete:hover i.icon,#webisco-cart-sum .table .row .cell:nth-last-child(8)>.btn-delete:hover i.icon,#webisco-cart-sum .table .header .cell:nth-last-child(8)>.btn-delete:hover i.icon {
    color: var(--color-white) !important;
    height: auto !important;
    font-size: 1.2em
}

#webisco-cart .table .row .cell:nth-last-child(8)>.btn-delete:hover i svg *,#webisco-cart .table .header .cell:nth-last-child(8)>.btn-delete:hover i svg *,#webisco-cart-sum .table .row .cell:nth-last-child(8)>.btn-delete:hover i svg *,#webisco-cart-sum .table .header .cell:nth-last-child(8)>.btn-delete:hover i svg * {
    fill: var(--color-white) !important
}

#webisco-cart .table .row .cell:nth-last-child(7),#webisco-cart .table .header .cell:nth-last-child(7),#webisco-cart-sum .table .row .cell:nth-last-child(7),#webisco-cart-sum .table .header .cell:nth-last-child(7) {
    width: 60px !important;
    flex-basis: 60px !important;
    order: 1;
    padding-left: 0;
    padding-right: 0;
}

#webisco-cart .table .row .cell:nth-last-child(7)>a,#webisco-cart .table .header .cell:nth-last-child(7)>a,#webisco-cart-sum .table .row .cell:nth-last-child(7)>a,#webisco-cart-sum .table .header .cell:nth-last-child(7)>a {
    float: left;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    gap: 0;
    -moz-column-gap: auto;
    column-gap: auto;
    row-gap: auto
}

#webisco-cart .table .row .cell:nth-last-child(7)>a>img,#webisco-cart .table .header .cell:nth-last-child(7)>a>img,#webisco-cart-sum .table .row .cell:nth-last-child(7)>a>img,#webisco-cart-sum .table .header .cell:nth-last-child(7)>a>img {
    width: auto;
    max-width: 100%
}

#webisco-cart .table .row .cell:nth-last-child(6),#webisco-cart .table .header .cell:nth-last-child(6),#webisco-cart-sum .table .row .cell:nth-last-child(6),#webisco-cart-sum .table .header .cell:nth-last-child(6) {
    width: 110px;
    flex-basis: 110px;
    order: 3
}

#webisco-cart .table .row .cell:nth-last-child(5),#webisco-cart .table .header .cell:nth-last-child(5),#webisco-cart-sum .table .row .cell:nth-last-child(5),#webisco-cart-sum .table .header .cell:nth-last-child(5) {
    width: 15%;
    flex-basis: 90px;
    order: 4
}

#webisco-cart .table .row .cell:nth-last-child(4),#webisco-cart .table .header .cell:nth-last-child(4),#webisco-cart-sum .table .row .cell:nth-last-child(4),#webisco-cart-sum .table .header .cell:nth-last-child(4) {
    width: 100%;
    flex-grow: 3;
    flex-basis: 310px;
    order: 5
}

#webisco-cart .table .row .cell:nth-last-child(3),#webisco-cart .table .header .cell:nth-last-child(3),#webisco-cart-sum .table .row .cell:nth-last-child(3),#webisco-cart-sum .table .header .cell:nth-last-child(3) {
    width: 90px;
    flex-basis: 90px;
    order: 6;
    text-align: left
}

#webisco-cart .table .row .cell:nth-last-child(2),#webisco-cart .table .header .cell:nth-last-child(2),#webisco-cart-sum .table .row .cell:nth-last-child(2),#webisco-cart-sum .table .header .cell:nth-last-child(2) {
    width: 55px;
    flex-basis: 55px;
    order: 7;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
}

#webisco-cart .table .row .cell:nth-last-child(2) input,#webisco-cart .table .header .cell:nth-last-child(2) input,#webisco-cart-sum .table .row .cell:nth-last-child(2) input,#webisco-cart-sum .table .header .cell:nth-last-child(2) input {
    margin: 0;
    padding-top: .3em;
    padding-right: .5em;
    padding-bottom: .3em;
    padding-left: .5em;
    min-height: auto;
    line-height: 1.2em;
    max-width:100%;
}


.webisco-order-progress-title{
    padding-right: 7px;
}

.webisco-order-progress-separator{
    padding-left: 3px;
    padding-right: 3px;
}

#webisco-order-comment-checkbox{
    display: flex;
    gap: 6px;
    margin-top: 7px;
    margin-bottom: 7px;
}

#webisco-order-comment-checkbox input{
    margin-top: 6px;
}

.webisco-order-header.table .cell{
    width: 50%;
}

.webisco-order{
    overflow-x: auto;
}

.webisco-order-items.table{
    min-width: 700px;
}

.webisco-order-items.table .header{
    display: flex;
    width: 100%;
}

.webisco-order-items.table .header .cell{
    width: 100%;
    max-width: 16.6%;
}

.webisco-order-items.table .row .cell{
    max-width: 16.6%;
}


@media only screen and (max-width: 800px) {
    #webisco-cart .table .row .cell:nth-last-child(2) input,#webisco-cart .table .header .cell:nth-last-child(2) input,#webisco-cart-sum .table .row .cell:nth-last-child(2) input,#webisco-cart-sum .table .header .cell:nth-last-child(2) input {
        width:auto;
        display: inline-block;
        float: none;
        margin-bottom: 0
    }
}

#webisco-cart .table .row .cell:nth-last-child(1),#webisco-cart .table .header .cell:nth-last-child(1),#webisco-cart-sum .table .row .cell:nth-last-child(1),#webisco-cart-sum .table .header .cell:nth-last-child(1) {
    width: 100% !important;
    flex-grow: 2;
    flex-basis: 90px;
    order: 8;
    display: inline-flex;
    justify-content: flex-end;
    align-self: center
}

#webisco-cart .table .row .cell:empty,#webisco-cart .table .header .cell:empty,#webisco-cart-sum .table .row .cell:empty,#webisco-cart-sum .table .header .cell:empty {
    display: none !important
}

#webisco-cart .table .row .cell:empty+.cell:empty+.cell,#webisco-cart .table .header .cell:empty+.cell:empty+.cell,#webisco-cart-sum .table .row .cell:empty+.cell:empty+.cell,#webisco-cart-sum .table .header .cell:empty+.cell:empty+.cell {
    width: 100% !important;
    flex-basis: 100% !important
}

@media only screen and (max-width: 800px) {
    #webisco-cart .table .row,#webisco-cart .table .header,#webisco-cart-sum .table .row,#webisco-cart-sum .table .header {
        display:flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-content: flex-start;
        align-items: flex-start;
        gap: 0;
        -moz-column-gap: 1em;
        column-gap: 1em;
        row-gap: 0;
        margin-bottom: 20px !important
    }

    #webisco-cart .table .row:before,#webisco-cart .table .header:before,#webisco-cart-sum .table .row:before,#webisco-cart-sum .table .header:before {
        bottom: -10px
    }

    #webisco-cart .table .row .cell,#webisco-cart .table .header .cell,#webisco-cart-sum .table .row .cell,#webisco-cart-sum .table .header .cell {
        height: auto !important;
        width: 100%;
        flex-basis: 100% !important;
        text-align: left;
        padding-top: 0 !important;
        margin-bottom: 0 !important;
        margin-top: 0 !important
    }

    #webisco-cart .table .row .cell.blank,#webisco-cart .table .header .cell.blank,#webisco-cart-sum .table .row .cell.blank,#webisco-cart-sum .table .header .cell.blank {
        display: none
    }

    #webisco-cart .table .row .cell:not(:empty):before,#webisco-cart .table .header .cell:not(:empty):before,#webisco-cart-sum .table .row .cell:not(:empty):before,#webisco-cart-sum .table .header .cell:not(:empty):before {
        font-weight: var(--font-weight-medium);
        margin-right: .5em;
        display: inline-block
    }

    #webisco-cart .table .row .cell:not(:empty):nth-last-child(8),#webisco-cart .table .header .cell:not(:empty):nth-last-child(8),#webisco-cart-sum .table .row .cell:not(:empty):nth-last-child(8),#webisco-cart-sum .table .header .cell:not(:empty):nth-last-child(8) {
        order: 2;
        align-self: center;
        padding: 0!important;
    }

    #webisco-cart .table .row .cell:not(:empty):nth-last-child(7),#webisco-cart .table .header .cell:not(:empty):nth-last-child(7),#webisco-cart-sum .table .row .cell:not(:empty):nth-last-child(7),#webisco-cart-sum .table .header .cell:not(:empty):nth-last-child(7) {
        width: calc(100% - 24px - 1em) !important;
        flex-basis: calc(100% - 24px - 1em) !important;
        padding-bottom: 1em !important
    }

    #webisco-cart .table .row .cell:not(:empty):nth-last-child(6),#webisco-cart .table .header .cell:not(:empty):nth-last-child(6),#webisco-cart-sum .table .row .cell:not(:empty):nth-last-child(6),#webisco-cart-sum .table .header .cell:not(:empty):nth-last-child(6) {
        width: auto !important;
        flex-basis: auto !important
    }

    #webisco-cart .table .row .cell:not(:empty):nth-last-child(6):before,#webisco-cart .table .header .cell:not(:empty):nth-last-child(6):before,#webisco-cart-sum .table .row .cell:not(:empty):nth-last-child(6):before,#webisco-cart-sum .table .header .cell:not(:empty):nth-last-child(6):before {
        content: "Art.-Nr.: "
    }

    #webisco-cart .table .row .cell:not(:empty):nth-last-child(5),#webisco-cart .table .header .cell:not(:empty):nth-last-child(5),#webisco-cart-sum .table .row .cell:not(:empty):nth-last-child(5),#webisco-cart-sum .table .header .cell:not(:empty):nth-last-child(5) {
        width: auto !important;
        flex-basis: auto !important;
        padding: 0.5rem!important;
    }

    #webisco-cart .table .row .cell:not(:empty):nth-last-child(5):before,#webisco-cart .table .header .cell:not(:empty):nth-last-child(5):before,#webisco-cart-sum .table .row .cell:not(:empty):nth-last-child(5):before,#webisco-cart-sum .table .header .cell:not(:empty):nth-last-child(5):before {
        content: "Hersteller: "
    }

    #webisco-cart .table .row .cell:not(:empty):nth-last-child(4):before,#webisco-cart .table .header .cell:not(:empty):nth-last-child(4):before,#webisco-cart-sum .table .row .cell:not(:empty):nth-last-child(4):before,#webisco-cart-sum .table .header .cell:not(:empty):nth-last-child(4):before {
        content: "Beschreibung: "
    }

    #webisco-cart .table .row .cell:not(:empty):nth-last-child(3):before,#webisco-cart .table .header .cell:not(:empty):nth-last-child(3):before,#webisco-cart-sum .table .row .cell:not(:empty):nth-last-child(3):before,#webisco-cart-sum .table .header .cell:not(:empty):nth-last-child(3):before {
        content: "Einzelpreis: "
    }

    #webisco-cart .table .row .cell:not(:empty):nth-last-child(2):before,#webisco-cart .table .header .cell:not(:empty):nth-last-child(2):before,#webisco-cart-sum .table .row .cell:not(:empty):nth-last-child(2):before,#webisco-cart-sum .table .header .cell:not(:empty):nth-last-child(2):before {
        content: "Menge: "
    }

    #webisco-cart .table .row .cell:not(:empty):nth-last-child(1):before,#webisco-cart .table .header .cell:not(:empty):nth-last-child(1):before,#webisco-cart-sum .table .row .cell:not(:empty):nth-last-child(1):before,#webisco-cart-sum .table .header .cell:not(:empty):nth-last-child(1):before {
        content: "Summe: "
    }

    #webisco-cart .table .row .cell:not(:empty):nth-child(1):before,#webisco-cart .table .header .cell:not(:empty):nth-child(1):before,#webisco-cart-sum .table .row .cell:not(:empty):nth-child(1):before,#webisco-cart-sum .table .header .cell:not(:empty):nth-child(1):before {
        display: none !important
    }

    #webisco-cart .table .row .cell:empty,#webisco-cart .table .header .cell:empty,#webisco-cart-sum .table .row .cell:empty,#webisco-cart-sum .table .header .cell:empty {
        background-color: red
    }

    #webisco-cart .table .row .cell:nth-last-child(7)>a>img,#webisco-cart .table .header .cell:nth-last-child(7)>a>img,#webisco-cart-sum .table .row .cell:nth-last-child(7)>a>img,#webisco-cart-sum .table .header .cell:nth-last-child(7)>a>img {
        max-height: 200px;
    }
    #webisco-cart .table .row .cell:nth-last-child(7)>a,#webisco-cart .table .header .cell:nth-last-child(7)>a,#webisco-cart-sum .table .row .cell:nth-last-child(7)>a,#webisco-cart-sum .table .header .cell:nth-last-child(7)>a {
        justify-content: center;
    }
}

#webisco-cart .table .header .cell,#webisco-cart-sum .table .header .cell {
    margin-top: 0 !important
}

#webisco-cart .table .header:before,#webisco-cart-sum .table .header:before {
    display: block
}

@media only screen and (max-width: 800px) {
    #webisco-cart .table .header,#webisco-cart-sum .table .header {
        display:none
    }
}

@media only screen and (min-width: 800px) {
    #webisco-cart-sum .table {
        width:auto
    }
}

#webisco-cart-sum .table .row:before {
    display: block;
    bottom: auto;
    top: -1px
}

#webisco-cart-sum .table .row.webisco-cart-sum-total:before {
    height: 3px
}

#webisco-cart-sum .table .row.webisco-cart-sum-total .cell:nth-last-child(1) {
    font-size: 1.2em;
    font-weight: var(--font-weight-bold)
}

#webisco-cart-sum .table .row.webisco-cart-sum-total .cell:nth-last-child(2):after {
    content: ":"
}

#webisco-cart-sum .table .row .cell:before {
    display: none !important
}

#webisco-cart-sum .table .row .cell:nth-last-child(2) {
    font-weight: var(--font-weight-medium);
    width: 100% !important;
    flex-basis: 100% !important;
    display: inline-flex;
    justify-content: flex-end;
    align-self: center
}

#webisco-cart-sum .table .row .cell:nth-last-child(1) {
    width: 110px !important;
    flex-grow: 1;
    flex-basis: 110px !important
}

@media only screen and (max-width: 800px) {
    #webisco-cart-sum .table .row {
        display:flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-content: flex-start;
        align-items: flex-start;
        gap: 0;
        -moz-column-gap: 0;
        column-gap: 0;
        row-gap: 0;
        margin-bottom: 0 !important
    }

    #webisco-cart-sum .table .row .cell {
        padding-top: .5em !important;
        margin-bottom: 5px !important;
        margin-top: 5px !important
    }
}
