.ShopAccountEditorPage_OrderDetail h1 {

}

.ShopAccountEditorPage_OrderDetail h2 {

}

.ShopAccountEditorPage_OrderDetail ul.position-list {
    display: block;
    padding: 0;
    margin: 0 0 3rem 0;
    font-size: 1rem;
}

.ShopAccountEditorPage_OrderDetail ul.position-list > li {
    margin: 0 0 0.3em ;
    padding: 0 0 0.8em;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    column-gap: 1em;
    border-bottom: 1px solid var(--highlighting-text-color);
    width: 100%;
}

.ShopAccountEditorPage_OrderDetail ul.position-list > li:last-child {
    border-width: 0;
}

.ShopAccountEditorPage_OrderDetail ul.position-list > li > .column {
    flex: 0 0 10%;
    padding: 0.5em 0 0 0;
}

.ShopAccountEditorPage_OrderDetail ul.position-list > li > .column .label {
    display: block;
    font-size: 0.8em;
    margin-bottom: 0.2em;
}

.ShopAccountEditorPage_OrderDetail ul.position-list > li > .column .value {
    display: block;
    color: var(--highlighting-text-color);
}

.ShopAccountEditorPage_OrderDetail ul.position-list > li > .column.image {
    flex: 0 0 80px;
}

.ShopAccountEditorPage_OrderDetail ul.position-list > li > .column.image img {
    max-width: 100%;
    width: 80px;
}

.ShopAccountEditorPage_OrderDetail ul.position-list > li > .column.name {
    flex: 0 0 300px;
}

.ShopAccountEditorPage_OrderDetail ul.position-list > li > .column.name .label {

}

.ShopAccountEditorPage_OrderDetail ul.position-list > li > .column.name .value {
    font-weight: bold;
}

.ShopAccountEditorPage_OrderDetail ul.position-list > li > .column.article-number {

}

.ShopAccountEditorPage_OrderDetail ul.position-list > li > .column.article-number .label {

}

.ShopAccountEditorPage_OrderDetail ul.position-list > li > .column.article-number .value {

}

.ShopAccountEditorPage_OrderDetail ul.position-list > li > .column.quantity {
    text-align: right;
}

.ShopAccountEditorPage_OrderDetail ul.position-list > li > .column.quantity .label {

}

.ShopAccountEditorPage_OrderDetail ul.position-list > li > .column.quantity .value {

}

.ShopAccountEditorPage_OrderDetail ul.position-list > li > .column.single-price {
    text-align: right;
}

.ShopAccountEditorPage_OrderDetail ul.position-list > li > .column.single-price .label {

}

.ShopAccountEditorPage_OrderDetail ul.position-list > li > .column.single-price .value {

}

.ShopAccountEditorPage_OrderDetail ul.position-list > li > .column.total-price {
    text-align: right;
}

.ShopAccountEditorPage_OrderDetail ul.position-list > li > .column.total-price .label {

}

.ShopAccountEditorPage_OrderDetail ul.position-list > li > .column.total-price .value {
    font-weight: bold;
}

@media (max-width: 1100px) {
    .ShopAccountEditorPage_OrderDetail ul.position-list > li {
        justify-content: flex-start;
    }

    .ShopAccountEditorPage_OrderDetail ul.position-list > li > .column.image {
        flex: 0 0 100%;
    }

    .ShopAccountEditorPage_OrderDetail ul.position-list > li > .column.image img {
        width: 60px;
    }

    .ShopAccountEditorPage_OrderDetail ul.position-list > li > .column.name {
        flex: 0 0 105%;
    }

    .ShopAccountEditorPage_OrderDetail ul.position-list > li > .column.article-number {
        flex: 0 0 50%;
    }

    .ShopAccountEditorPage_OrderDetail ul.position-list > li > .column.quantity {
        flex: 0 0 45%;
        text-align: left;
    }

    .ShopAccountEditorPage_OrderDetail ul.position-list > li > .column.single-price {
        flex: 0 0 50%;
        text-align: left;
    }

    .ShopAccountEditorPage_OrderDetail ul.position-list > li > .column.total-price {
        flex: 0 0 100%;
        text-align: left;
        border-top: 1px solid #888;
        margin-top: 0.2em;
    }

    .ShopAccountEditorPage_OrderDetail ul.position-list > li > .column.total-price:before {
        content: '';
        border-top: 1px solid #888;
        display: block;
        position: relative;
        top: -0.35em;
    }
}

@media (max-width: 768px) {
    .ShopAccountEditorPage_OrderDetail ul.position-list > li {
        column-gap: 0;
    }

    .ShopAccountEditorPage_OrderDetail ul.position-list > li > .column.name {
        flex: 0 0 100%;
    }

    .ShopAccountEditorPage_OrderDetail ul.position-list > li > .column.article-number {
        flex: 0 0 100%;
        text-align: left;
    }

    .ShopAccountEditorPage_OrderDetail ul.position-list > li > .column.quantity {
        flex: 0 0 50%;
    }

    .ShopAccountEditorPage_OrderDetail ul.position-list > li > .column.single-price {
        flex: 0 0 50%;
        text-align: right;
    }
}

.ShopAccountEditorPage_OrderDetail .summary {

}

.ShopAccountEditorPage_OrderDetail .summary > .row {

}

.ShopAccountEditorPage_OrderDetail .summary > .row > .label {

}

.ShopAccountEditorPage_OrderDetail .summary > .row > .value {

}

.ShopAccountEditorPage_OrderDetail .summary > .row.order-total {
    margin-bottom: 0.3rem;
}

.ShopAccountEditorPage_OrderDetail .summary > .row.order-total > .label {
    font-weight: bold;
}

.ShopAccountEditorPage_OrderDetail .summary > .row.order-total > .label:after {
    content: ':';
}

.ShopAccountEditorPage_OrderDetail .summary > .row.order-total > .value {
    color: var(--highlighting-text-color);
    font-weight: bold;
}

.ShopAccountEditorPage_OrderDetail .summary > .row.shipping {
    margin-bottom: 0.3rem;
}

.ShopAccountEditorPage_OrderDetail .summary > .row.shipping > .label {
    font-weight: bold;
}

.ShopAccountEditorPage_OrderDetail .summary > .row.shipping > .label:after {
    content: ':';
}

.ShopAccountEditorPage_OrderDetail .summary > .row.shipping > .value {
    color: var(--highlighting-text-color);
    font-weight: bold;
}

.ShopAccountEditorPage_OrderDetail .summary > .row.total {
    display: inline-block;
    margin-bottom: 3rem;
    border-top: 1px solid #000000;
}

.ShopAccountEditorPage_OrderDetail .summary > .row.total:before {
    content: '';
    display: block;
    border-top: 1px solid #000000;
    margin: 0.2em 0;

}

.ShopAccountEditorPage_OrderDetail .summary > .row.total > .label {
    display: inline-block;
    font-weight: bold;
}

.ShopAccountEditorPage_OrderDetail .summary > .row.total > .label:after {
    display: inline-block;
    content: ':';
}

.ShopAccountEditorPage_OrderDetail .summary > .row.total > .value {
    color: var(--highlighting-text-color);
    font-weight: bold;
}

.ShopAccountEditorPage_OrderDetail .shipping-method {
    margin-bottom: 0.3rem;
}

.ShopAccountEditorPage_OrderDetail .shipping-method > .label {
    font-weight: bold;
}

.ShopAccountEditorPage_OrderDetail .shipping-method > .label:after {
    content: ':';
}

.ShopAccountEditorPage_OrderDetail .shipping-method > .value {
    color: var(--highlighting-text-color);
    font-weight: bold;
}

.ShopAccountEditorPage_OrderDetail .payment-method {
    margin-bottom: 3rem;
}

.ShopAccountEditorPage_OrderDetail .payment-method > .label {
    font-weight: bold;
}

.ShopAccountEditorPage_OrderDetail .payment-method > .label:after {
    content: ':';
}

.ShopAccountEditorPage_OrderDetail .payment-method > .value {
    color: var(--highlighting-text-color);
    font-weight: bold;
}

.ShopAccountEditorPage_OrderDetail .delivery-address
{
    margin-bottom: 1rem;
}

.ShopAccountEditorPage_OrderDetail .invoice-address
{
    margin-bottom: 3rem;
}

.ShopAccountEditorPage_OrderDetail .delivery-address > .label,
.ShopAccountEditorPage_OrderDetail .invoice-address > .label
{
    font-weight: bold;
}

.ShopAccountEditorPage_OrderDetail .delivery-address > .label:after,
.ShopAccountEditorPage_OrderDetail .invoice-address > .label:after
{
    content: ':';
}

.ShopAccountEditorPage_OrderDetail .delivery-address > .value,
.ShopAccountEditorPage_OrderDetail .invoice-address > .value
{

}

.ShopAccountEditorPage_OrderDetail .delivery-address > .value > .address-preview,
.ShopAccountEditorPage_OrderDetail .invoice-address > .value > .address-preview
{

}

.ShopAccountEditorPage_OrderDetail .delivery-address > .value > .address-preview > ul.wrapper,
.ShopAccountEditorPage_OrderDetail .invoice-address > .value > .address-preview > ul.wrapper
{

}

.ShopAccountEditorPage_OrderDetail .delivery-address > .value > .address-preview > ul.wrapper > li.row,
.ShopAccountEditorPage_OrderDetail .invoice-address > .value > .address-preview > ul.wrapper > li.row
{

}

.ShopAccountEditorPage_OrderDetail .delivery-address > .value > .address-preview > ul.wrapper > li.row .label,
.ShopAccountEditorPage_OrderDetail .invoice-address > .value > .address-preview > ul.wrapper > li.row .label
{

}

.ShopAccountEditorPage_OrderDetail .delivery-address > .value > .address-preview > ul.wrapper > li.row .label:after,
.ShopAccountEditorPage_OrderDetail .invoice-address > .value > .address-preview > ul.wrapper > li.row .label:after
{
    content: ':';
}

.ShopAccountEditorPage_OrderDetail .delivery-address > .value > .address-preview > ul.wrapper > li.row.name,
.ShopAccountEditorPage_OrderDetail .invoice-address > .value > .address-preview > ul.wrapper > li.row.name
{

}

.ShopAccountEditorPage_OrderDetail .delivery-address > .value > .address-preview > ul.wrapper > li.row.name .first-name,
.ShopAccountEditorPage_OrderDetail .invoice-address > .value > .address-preview > ul.wrapper > li.row.name .first-name
{

}

.ShopAccountEditorPage_OrderDetail .delivery-address > .value > .address-preview > ul.wrapper > li.row.name .surname-name,
.ShopAccountEditorPage_OrderDetail .invoice-address > .value > .address-preview > ul.wrapper > li.row.name .surname-name
{

}

.ShopAccountEditorPage_OrderDetail .delivery-address > .value > .address-preview > ul.wrapper > li.row.firm,
.ShopAccountEditorPage_OrderDetail .invoice-address > .value > .address-preview > ul.wrapper > li.row.firm
{

}

.ShopAccountEditorPage_OrderDetail .delivery-address > .value > .address-preview > ul.wrapper > li.row.firm .value,
.ShopAccountEditorPage_OrderDetail .invoice-address > .value > .address-preview > ul.wrapper > li.row.firm .value
{

}

.ShopAccountEditorPage_OrderDetail .delivery-address > .value > .address-preview > ul.wrapper > li.row.street,
.ShopAccountEditorPage_OrderDetail .invoice-address > .value > .address-preview > ul.wrapper > li.row.street
{

}

.ShopAccountEditorPage_OrderDetail .delivery-address > .value > .address-preview > ul.wrapper > li.row.street .value,
.ShopAccountEditorPage_OrderDetail .invoice-address > .value > .address-preview > ul.wrapper > li.row.street .value
{

}

.ShopAccountEditorPage_OrderDetail .delivery-address > .value > .address-preview > ul.wrapper > li.row.location,
.ShopAccountEditorPage_OrderDetail .invoice-address > .value > .address-preview > ul.wrapper > li.row.location
{

}

.ShopAccountEditorPage_OrderDetail .delivery-address > .value > .address-preview > ul.wrapper > li.row.location .postalcode,
.ShopAccountEditorPage_OrderDetail .invoice-address > .value > .address-preview > ul.wrapper > li.row.location .postalcode
{

}

.ShopAccountEditorPage_OrderDetail .delivery-address > .value > .address-preview > ul.wrapper > li.row.location .city,
.ShopAccountEditorPage_OrderDetail .invoice-address > .value > .address-preview > ul.wrapper > li.row.location .city
{

}

.ShopAccountEditorPage_OrderDetail .delivery-address > .value > .address-preview > ul.wrapper > li.row.country,
.ShopAccountEditorPage_OrderDetail .invoice-address > .value > .address-preview > ul.wrapper > li.row.country
{

}

.ShopAccountEditorPage_OrderDetail .delivery-address > .value > .address-preview > ul.wrapper > li.row.country .value,
.ShopAccountEditorPage_OrderDetail .invoice-address > .value > .address-preview > ul.wrapper > li.row.country .value
{

}

.ShopAccountEditorPage_OrderDetail .delivery-address > .value > .address-preview > ul.wrapper > li.row.phone,
.ShopAccountEditorPage_OrderDetail .invoice-address > .value > .address-preview > ul.wrapper > li.row.phone
{

}

.ShopAccountEditorPage_OrderDetail .delivery-address > .value > .address-preview > ul.wrapper > li.row.phone .label,
.ShopAccountEditorPage_OrderDetail .invoice-address > .value > .address-preview > ul.wrapper > li.row.phone .label
{

}

.ShopAccountEditorPage_OrderDetail .delivery-address > .value > .address-preview > ul.wrapper > li.row.phone .value,
.ShopAccountEditorPage_OrderDetail .invoice-address > .value > .address-preview > ul.wrapper > li.row.phone .value
{

}

.ShopAccountEditorPage_OrderDetail .delivery-address > .value > .address-preview > ul.wrapper > li.row.fax,
.ShopAccountEditorPage_OrderDetail .invoice-address > .value > .address-preview > ul.wrapper > li.row.fax
{

}

.ShopAccountEditorPage_OrderDetail .delivery-address > .value > .address-preview > ul.wrapper > li.row.fax .label,
.ShopAccountEditorPage_OrderDetail .invoice-address > .value > .address-preview > ul.wrapper > li.row.fax .label
{

}

.ShopAccountEditorPage_OrderDetail .delivery-address > .value > .address-preview > ul.wrapper > li.row.fax .value,
.ShopAccountEditorPage_OrderDetail .invoice-address > .value > .address-preview > ul.wrapper > li.row.fax .value
{

}

.ShopAccountEditorPage_OrderDetail .delivery-address > .value > .address-preview > ul.wrapper > li.row.mobile,
.ShopAccountEditorPage_OrderDetail .invoice-address > .value > .address-preview > ul.wrapper > li.row.mobile
{

}

.ShopAccountEditorPage_OrderDetail .delivery-address > .value > .address-preview > ul.wrapper > li.row.mobile .label,
.ShopAccountEditorPage_OrderDetail .invoice-address > .value > .address-preview > ul.wrapper > li.row.mobile .label
{

}

.ShopAccountEditorPage_OrderDetail .delivery-address > .value > .address-preview > ul.wrapper > li.row.mobile .value,
.ShopAccountEditorPage_OrderDetail .invoice-address > .value > .address-preview > ul.wrapper > li.row.mobile .value
{

}

.ShopAccountEditorPage_OrderDetail .order-message {

}

.ShopAccountEditorPage_OrderDetail .order-message .label {
    display: block;
    font-weight: bold;
}

.ShopAccountEditorPage_OrderDetail .order-message .label:after {
    content: ':';
}

.ShopAccountEditorPage_OrderDetail .order-message .value {

}

.ShopAccountEditorPage_OrderDetail .demand-note {
    margin-bottom: 10rem;
}

.ShopAccountEditorPage_OrderDetail .demand-note > .label {
    display: block;
    color: var(--highlighting-text-color);
    font-weight: bold;
}

.ShopAccountEditorPage_OrderDetail .demand-note > .label:after {
    content: ':';
}

.ShopAccountEditorPage_OrderDetail .demand-note > .value {

}

.ShopAccountEditorPage_OrderDetail .demand-note > .value > .row {
    display: block;
}

.ShopAccountEditorPage_OrderDetail .demand-note > .value > .row > .label {
    display: inline-block;
    min-width: 50px;
    font-weight: bold;
}

.ShopAccountEditorPage_OrderDetail .demand-note > .value > .row > .label:after {
    content: ':';
}

.ShopAccountEditorPage_OrderDetail .demand-note > .value > .row > .value {

}

.ShopAccountEditorPage_OrderDetail .demand-note > .value > .row.name {

}

.ShopAccountEditorPage_OrderDetail .demand-note > .value > .row.name > .label {

}

.ShopAccountEditorPage_OrderDetail .demand-note > .value > .row.name > .value {

}

.ShopAccountEditorPage_OrderDetail .demand-note > .value > .row.iban {

}

.ShopAccountEditorPage_OrderDetail .demand-note > .value > .row.iban > .label {

}

.ShopAccountEditorPage_OrderDetail .demand-note > .value > .row.iban > .value {

}

.ShopAccountEditorPage_OrderDetail .demand-note > .value > .row.bic {

}

.ShopAccountEditorPage_OrderDetail .demand-note > .value > .row.bic > .label {

}

.ShopAccountEditorPage_OrderDetail .demand-note > .value > .row.bic > .value {

}

.ShopAccountEditorPage_OrderDetail .demand-note > .value > .row.bank {

}

.ShopAccountEditorPage_OrderDetail .demand-note > .value > .row.bank > .label {

}

.ShopAccountEditorPage_OrderDetail .demand-note > .value > .row.bank > .value {

}
