cd.shop {
    margin-bottom: 2rem;
}
table.cartview td, table.cartview.th {
    vertical-align: top;
}
table.cartview tr {
    background: none !important;
}
@media(max-width: 529px) {
    table.cartview, table.cartview tbody, table.cartview tfoot, table.cartview tr, table.cartview td, table.cartview th {
        display: block;
        border: none;
    }
    table.cartview thead {
        display: none;
    }
    table.cartview tr.articlerow {
        display: flex;
        flex-flow: row wrap;
        padding-bottom: .5rem;
        padding-top: .5rem;
        border-bottom: 1px solid #999;
    }
    tr.articlerow > * {
        flex: 1 100%;
    }
    td.articleid::before {
        content: 'Art-Nr. '
    }
    td.articlequant, td.articleprice, td.articletotal {
        flex: 1 33%;
    }
    td.articlequant {
        text-align: left;
    }
    td.articlequant::before {
        content: 'Anzahl '
    }
    td.articleprice::before {
        content: 'Einzelpreis '
    }
    td.articletotal::before {
        content: 'Gesamtpreis '
    }
    table.cartview tfoot {
        padding-top: .5rem;
    }
    table.cartview tfoot tr {
        display: flex;
        justify-content: flex-end;
    }
}
label.required::after {
    content: "*"
}
.error {
    color: red;
}
ol.shopsteps {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 1.5rem 0;
    padding: 0;
}
ol.shopsteps a {
    color: inherit;
    text-decoration: none;
}
ol.shopsteps > li {
    flex: 1 auto;
    background-color: #e0e0e0;
    padding: .25rem;
    list-style-position: inside;
    text-align: center;
    position: relative;
    height: 2rem;
    overflow-y: hidden;
    margin-bottom: 2px;
}

@media(min-width: 530px) {
    ol.shopsteps > li + li {
        margin-left: 2px;
    }
    ol.shopsteps > li:not(:last-child)::after {
        position: absolute;
        right: 0;
        top: 0;
        content: '';
        line-height: 0;
        width: 0;
        height: 0;
        font-size: 0;
        border-left: .75rem solid transparent;
        border-top: 1rem solid white;
        border-bottom: 1rem solid white;
    }
}
ol.shopsteps li.active {
    background-color: #666666;
    color: white;
}

ol.shopsteps li.ready {
    /*background-color: #666666;*/
    /*color: white;*/
}

ol.shopsteps li.ready a::after {
    color: limegreen;
    content: " ✔";
}
@media print {
    ol.shopsteps {
        display: none;
    }
}
