/* General */

.tx-cart { counter-reset: step; }

.tx-cart label, .tx-cart label em { display: inline; }

.tx-cart .bg-light-grey { background-color: #f5f5f5; }

.tx-cart .border-left-grey { border-left: 1px solid #ddd; }

.tx-cart .clear-padding { padding: 0 !important; }

.top-buffer { margin-top: 2em; }
.bottom-buffer { margin-bottom: 2em; }

.tx-cart .cart-form-wrapper {
    border-radius: 4px;
    padding: 32px;
    margin-bottom: 32px;
}

.tx-cart .cart-form-wrapper .action-btn {
    padding: 0 10px;
    line-height: 40px;
}

.tx-cart .cart-form-wrapper .coupon-input {
    width: 220px;
    margin-right: 12px;
}

@media (max-width: 575px) {
    .tx-cart .cart-form-wrapper .coupon-input {
        width: 100%;
        margin-bottom: 20px;
    }
    .tx-cart .cart-form-wrapper {
        border-radius: 4px;
        padding: 12px;
        margin-bottom: 12px;
    }
    .top-buffer { margin-top: 12px; }
    .basket-list__buttons {
        padding-right: 0 !important;
    }
}

.tx-cart .coupon-list .coupon-item {
    padding: 15px;
    border-radius: 3px;
    border: 1px solid #d4d4d4;
    background: #fff;
    margin-bottom: 16px;
}
.tx-cart .checkout-step-table.data-table {
    border-radius: 3px;
    background: #fff;
    padding: 24px;
}

.tx-cart .typo3-messages{
    margin: 0;
    padding: 0;
    list-style: none;
}

.form-control-inline {
    min-width: 0;
    width: auto;
    display: inline;
}

.tx-cart .field { margin-bottom: 0.5em; }

.tx-cart .price { min-width: 65px; display: block }

.order-total-gross {
    width: 75px;
    text-align: right;
}

/* Checkout */
.tx-cart #checkout-step-billing-address, .tx-cart #checkout-step-shipping-address, .tx-cart #checkout-step-shipping-method, .tx-cart #checkout-step-payment-method, .tx-cart #checkout-step-coupon, .tx-cart #checkout-step-review {
    border-radius: 4px;
    padding: 32px;
}

@media (max-width: 575px) {
    .tx-cart #checkout-step-billing-address, .tx-cart #checkout-step-shipping-address, .tx-cart #checkout-step-shipping-method, .tx-cart #checkout-step-payment-method, .tx-cart #checkout-step-coupon, .tx-cart #checkout-step-review {
        padding: 12px;
    }
}

.tx-cart .shipping-method {
    padding: 15px;
    border-radius: 3px;
    border: 1px solid #d4d4d4;
    background: #fff;
    margin-bottom: 16px;
}

.tx-cart .payment-method {
    padding: 15px;
    border-radius: 3px;
    border: 1px solid #d4d4d4;
    background: #fff;
    margin-bottom: 16px;
}

.tx-cart .shipping-method input {
    margin-left: 0;
    margin-right: 12px;
    margin-top: 0;
}

.tx-cart .payment-method input {
    margin-left: 0;
    margin-right: 12px;
    margin-top: 0;
}

.tx-cart .checkout-step-title, .tx-cart .confirmation-step-title {
    background: #f5f5f5;
    margin: 0;
    /*padding: 0 2em;*/
    line-height: 2;
}

.tx-cart .confirmation-step-title {
    font-size: 1rem;
    font-weight: 300;
}

/*.tx-cart .checkout-step-content { padding: 1em; }*/

.tx-cart .checkout-step-number::before {
    counter-increment: step;
    content: counter(step);
}

.tx-cart #form-order .checkout-step-number, .tx-cart #form-cart .checkout-step-number {
    background: var(--theme-color);
    color: #fff;
    display: inline-block;
    width: 2em;
    border-radius: 50%;
    text-align: center;
    height: 2em;
    line-height: 2em;
    font-size: 0.75em;
    vertical-align: middle;
    margin-right: 1em;
    margin-top: -3px;
}

.shipping-same-as-billing-wrapper { margin: 1em 0; }
.company-order-wrapper { margin: 1em 0; }

.tx-cart .checkout-step-content-list .checkout-step-fields .field .validation-error { margin-bottom: 0; }

#form-order .checkout-step-title { padding-bottom: 24px }

.method-item-name { font-weight: bold; }

.checkout-step-table, .checkout-review-table, .checkout-product-table, .show-properties.table  { width: 100%; }

.checkout-review-column { margin: 1em -1em; }

.coupon-hint.not-usable { color: red; }

/* Order History*/

.show-properties.table { margin-bottom: 1em; }

.order-history-detail .column { padding-bottom: 2em; }

.basket-list__row:last-child {
    border-bottom: 1px solid #e4e4e4;
}

.basket-list__row {
    display: flex;
    border: 1px solid #e4e4e4;
    border-bottom: 0;
    height: 98px;
    font-size: 15px;
    color: #000;
    background: #fff;
}
@media (max-width: 991px) {
    .basket-list__row {
        margin-bottom: 65px;
        border-bottom: 1px solid #e4e4e4;
        display: block !important;
        height: 120px;
        position: relative;
        padding-left: 120px;
    }
}

.basket-list__product.row--bordered {
    border-right: 1px solid #e4e4e4;
}
@media (max-width: 991px) {
    .basket-list__product {
        position: absolute;
        top: 0;
        left: 0;
        width: 105px;
        height: 119px;
    }
}
@media (max-width: 575px) {
    .basket-list__product {
        display: none;
    }
    .basket-list__row {
        padding-left: 20px;
    }
}
.basket-list__product {
    flex: 0 0 108px;
}
.basket-list__image {
    object-fit: scale-down;
    max-width: 100%;
    height: 100%;
    padding: 10px;
}
.basket-list__name {
    flex: 1;
    padding-left: 15px;
    padding-right: 15px;
}
@media (max-width: 991px) {
    .basket-list__name {
        width: 70%;
        padding: 15px 0 0;
        margin-bottom: 5px;
    }
}
.basket-list__namelink {
    font-size: 15px;
    color: var(--theme-color);
    text-decoration: underline;
    text-decoration-color: var(--theme-color);
}
.basket-list__variant {
    flex: 0 0 130px;
    padding-right: 15px;
}
@media (max-width: 991px) {
    .basket-list__variant {
        margin-bottom: 5px;
    }
}
.basket-list__stock {
    flex: 0 0 160px;
    padding-right: 15px;
}
.basket-list__stock .instock {
    color: var(--theme-color);
}
.basket-list__pricestock {
    flex: 0 0 160px;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 991px) {
    .basket-list__pricestock {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }
}
.basket-list__pricestock .s-dph {
    font-size: 15px;
    align-self: flex-start;
}
.basket-list__pricestock .bez-dph {
    color: #878787;
    font-size: 12px;
    align-self: flex-start;
}
.basket-list__amount {
    flex: 0 0 120px;
}
@media (max-width: 991px) {
    .basket-list__amount {
        width: auto;
        position: absolute;
        left: 15px;
        bottom: -51px;
        z-index: 1;
    }
}
.basket-list__amountbox {
    width: 60px;
    height: 42px;
    position: relative;
    margin-right: 10px;
}

.basket-list__priceall {
    flex: 0 0 160px;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 991px) {
    .basket-list__priceall {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }
}
.basket-list__priceall .s-dph {
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
    font-size: 15px;
    font-weight: 600;
    align-self: flex-start;
}

.basket-list__priceall .bez-dph {
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
    color: #878787;
    font-size: 12px;
    align-self: flex-start;
}

.basket-list__stock__mobile .instock {
    color: #36b81d;
}
.basket-list__buttons {
    flex: 0 1 61px;
    padding-right: 15px;
}
.basket-list__remove {
    cursor: pointer;
    line-height: 1;
}
@media (max-width: 991px) {
    .basket-list__stock__mobile {
        display: flex !important
    ;
    }
}
@media (max-width: 991px) {
    .basket-list__buttons {
        position: absolute;
        top: 15px;
        right: 15px;
        padding: 0;
    }
}
@media (max-width: 991px) {
    .basket-list__pricestock .s-dph {
        margin-right: 10px;
        align-self: center;
    }
}

@media (max-width: 991px) {
    .basket-list__priceall .s-dph {
        margin-right: 10px;
        align-self: center;
    }
}
@media (max-width: 991px) {
    .basket-list__row::after {
        content: "";
        display: block;
        left: -1px;
        right: -1px;
        height: 55px;
        border: 1px solid #e4e4e4;
        border-top: 0;
        position: absolute;
        bottom: -56px;
        background: #fafafa;
    }
}
@media (max-width: 991px) {
    .basket-list__namelink {
        display: block;
        width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        /*padding-right: 35px;*/
    }
}
.basket-list__rowheader {
    font-size: 13px;
    color: #666;
    padding-bottom: 15px;
}
@media (max-width: 991px) {
    .basket-list__rowheader {
        display: none !important;
    }
}

.basket-list__product {
    flex: 0 0 108px;
}
@media (max-width: 991px) {
    .basket-list__product {
        position: absolute;
        top: 0;
        left: 0;
        width: 105px;
        height: 119px;
    }
}
.basket-list__name {
    flex: 1;
    padding-left: 15px;
    padding-right: 15px;
}
@media (max-width: 991px) {
    .basket-list__name {
        width: 70%;
        padding: 15px 0 0;
        margin-bottom: 5px;
    }
}
.basket-list__variant {
    flex: 0 0 130px;
    padding-right: 15px;
}
@media (max-width: 1369px) {
    .basket-list__variant {
        display: none !important;
    }
}
.basket-list__stock {
    flex: 0 0 160px;
    padding-right: 15px;
}
@media (max-width: 1199px) {
    .basket-list__stock {
        display: none !important;
    }
}
.basket-list__pricestock {
    flex: 0 0 160px;
    flex-direction: column;
    justify-content: center;
}
.basket-list__amount {
    flex: 0 0 120px;
}
@media (max-width: 991px) {
    .basket-list__amount {
        width: auto;
        position: absolute;
        left: 15px;
        bottom: -51px;
        z-index: 1;
    }
    .basket-list__pricestock {
        display: none !important;
    }
    .basket-list__name {
        display: none !important;
    }
}
.basket-list__priceall {
    flex: 0 0 160px;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 991px) {
    .basket-list__priceall {
        display: none !important;
    }
}
.basket-list__buttons {
    flex: 0 1 61px;
    padding-right: 15px;
}
@media (max-width: 991px) {
    .basket-list__pricestock {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }
}
@media (max-width: 991px) {
    .basket-list__priceall {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }
}
/*@media (max-width: 991px) {*/
/*    .basket-list__stock__mobile {*/
/*        display: flex !important*/
/*    ;*/
/*    }*/
/*}*/