
#breadcrumbs {
    margin-bottom: 2rem;
}

#breadcrumbs .delimiter {
    padding: 0 0.2rem;
}

.content > .description {
    margin-bottom: 4rem;
}


/* Product */

.Product .product-body {

}

.Product .product-body .colums {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: stretch;
    column-gap: 4rem;
}

.Product .product-body .colums > .column {
    flex: 0 0 calc(50% - 2rem);
}

.Product .product-body .colums > .column-image {

}

.Product .product-body .colums > .column-image img {
    display: block;
    height: auto;
    max-width: 100%;
}

.Product .product-body .colums > .column-description {
    margin-bottom: 1rem;
    color: var(--main-text-color);
}

.Product .product-body .colums > .column-description .subtitle {
    margin-bottom: 0.3em;
}

.Product .product-body .colums > .column-description .product-title {
    margin-bottom: 1rem;
    font-family: var(--secondary-font-family);
    font-weight: var(--secondary-font-weight);
    font-size: 2.5rem;
}

.Product .product-body .colums > .column-description.expert-line .product-title,
.Product .product-body .colums > .column-description.expert-line .subtitle,
.Product .product-body .colums > .column-description .product-title.expert-line,
.Product .product-body .colums > .column-description .subtitle.expert-line
{
    color: var(--expert-line-color-darker);
}

.Product .product-body .colums > .column-description.effect-line .product-title,
.Product .product-body .colums > .column-description.effect-line .subtitle,
.Product .product-body .colums > .column-description .product-title.effect-line,
.Product .product-body .colums > .column-description .subtitle.effect-line
{
    color: var(--effect-line-color-darker);
}

.Product .product-body .colums > .column-description.zero-line .product-title,
.Product .product-body .colums > .column-description.zero-line .subtitle,
.Product .product-body .colums > .column-description .product-title.zero-line,
.Product .product-body .colums > .column-description .subtitle.zero-line
{
    color: var(--zero-line-color-darker);
}

.Product .product-body .colums > .column-description .description {
    margin-bottom: 1rem;
}

.Product .product-body .colums > .column-description .capacity-wrapper {
    margin-bottom: 1rem;
}

.Product .product-body .colums > .column-description .price {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    white-space: nowrap;
}

.Product .product-body .colums > .column-description .price .original-price {
    display: inline-block;
    text-decoration: line-through;
    color: red;
    white-space: nowrap;
}

@media(max-width: 1300px){

}

@media(max-width: 840px){
    .Product .product-body .colums {
        flex-flow: row wrap;
        justify-content: flex-start;
        align-items: flex-start;
        column-gap: 0;
        row-gap: 2rem;
    }

    .Product .product-body .colums > .column.column-image {
        flex: 0 0 100%;
        max-width: 400px;
    }

    .Product .product-body .colums > .column {
        flex: 0 0 100%;
    }
}

@media(max-width: 450px){
    .Product .product-body .colums > .column.column-image {
        flex: 0 0 100%;
        max-width: 400px;
    }
}


/* Product Labels */

.has-label .preview,
.has-label .product-image
{
    position: relative;
}

.has-label .preview:before,
.has-label .product-image:before
{
    display: var(--fa-display, block);
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    width: 4rem;
    height: 4rem;
    padding: 0.3em;
    box-sizing: border-box;
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    font-size: 2em;
}

.has-label.label-new .preview:before,
.has-label.label-new .product-image:before
{
    content: "\f005";
    color: red;
}

.has-label.label-new-recipe .preview:before,
.has-label.label-new-recipe .product-image:before
{
    content: "\e4f3";
    color: red;
}

.product-variants .has-label.label-promotion .preview:before,
.product-list .product-item.has-label.label-promotion .preview:before,
.has-label.label-promotion > .colums > .column-image > .product-image:before
{
    content: "\f4d3";
    color: red;
}

.product-variants .has-label.label-vip .preview:before,
.product-list .product-item.has-label.label-vip .preview:before,
.has-label.label-vip > .colums > .column-image > .product-image:before
{
    content: "\f521";
    color: yellow;
}


/* Crossover-Product-List */

.Product .crossselling-products {
    margin-bottom: 4rem;
}

.Product .crossselling-products > h3 {
    font-size: 0.9em;
    margin-bottom: 1rem;
}

.Product .crossselling-products .product-list.grid ul {
    display: flex;
    flex-flow: row wrap;
    align-items: stretch;
    justify-content: flex-start;
    row-gap: 2rem;
    column-gap: 2rem;
    margin: 0;
    padding: 0;
}

.Product .crossselling-products .product-list.grid ul li.product-item {
    display: block;
    flex: 0 0 calc(33.333% - 2.5rem);
    width: calc(33.333% - 2.5rem);
    margin: 0;
    padding: 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

@media(max-width: 768px){
    .Product .crossselling-products .product-list.grid ul li.product-item {
        flex: 0 0 calc(50% - 2.5rem);
        width: calc(50% - 2.5rem);
    }
}

@media(max-width: 450px){
    .Product .crossselling-products .product-list.grid ul li.product-item {
        flex: 0 0 calc(100% - 2.5rem);
        width: calc(100% - 2.5rem);
    }
}

.Product .crossselling-products .product-list.grid ul li.product-item > a.product-wrapper {
    display: block;
    position: relative;
    padding-bottom: 2.4rem;
}

.Product .crossselling-products .product-list.grid ul li.product-item > a.product-wrapper .preview {
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    transition: background-size 0.2s ease-out;
    transition-delay: 0.2s;
}

.Product .crossselling-products .product-list.grid ul li.product-item > a.product-wrapper:hover .preview,
.Product .crossselling-products .product-list.grid ul li.product-item > a.product-wrapper:focus .preview {
    background-size: 120% 120%;
}

.Product .crossselling-products .product-list.grid ul li.product-item > a.product-wrapper .preview img {
    display: block;
    height: auto;
    max-width: 100%;
    opacity: 0;
}

.Product .crossselling-products .product-list.grid ul li.product-item > a.product-wrapper .title {
    background: #FFFFFF;
    text-align: center;
    text-decoration: none;
    color: #000000;
    padding: 0.5rem;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
}





/* Product-Variants-List */

.Product .product-variants {
    margin-top: 1rem;
}

.Product .product-variants > h3 {
    font-size: 0.9em;
    margin-bottom: 1rem;
}

.Product .product-variants .product-list.grid ul {
    display: flex;
    flex-flow: row wrap;
    align-items: stretch;
    justify-content: flex-start;
    row-gap: 1rem;
    column-gap: 1rem;
    margin: 0;
    padding: 0;
}

.Product .product-variants .product-list.grid ul li.product-item {
    display: block;
    flex: 0 0 calc(33.333% - 2.5rem);
    width: calc(33.333% - 2.5rem);
    margin: 0;
    padding: 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.Product .product-variants .product-list.grid ul li.product-item > a.product-wrapper {
    display: block;
    position: relative;
    padding-bottom: 0;
}

.Product .product-variants .product-list.grid ul li.product-item > a.product-wrapper .preview {
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    /*transition: background-size 0.2s ease-out;
    transition-delay: 0.2s;*/
}

/*.Product .product-variants .product-list.grid ul li.product-item > a.product-wrapper:hover .preview,
.Product .product-variants .product-list.grid ul li.product-item > a.product-wrapper:focus .preview {
    background-size: 120% 120%;
}*/

.Product .product-variants .product-list.grid ul li.product-item > a.product-wrapper .preview img {
    display: block;
    height: auto;
    max-width: 100%;
    opacity: 0;
}

.Product .product-variants .product-list.grid ul li.product-item > a.product-wrapper .title {
    background: rgba(255,255,255,0.5);
    text-align: center;
    text-decoration: none;
    color: #000000;
    padding: 0.5rem;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
}

.Product .product-variants .product-list.grid ul li.product-item > a.product-wrapper:hover .title,
.Product .product-variants .product-list.grid ul li.product-item > a.product-wrapper:focus .title
{
    background: #FFFFFF;
}



/* Product Extra - Tabs */

.Product .extra-content > .tabs-holder {}

.Product .extra-content > .tabs-holder > .tab {}

.Product .extra-content > .tabs-holder > .tab .tab-label {
    display: none;
}

.Product .extra-content > .tabs-holder > .tab .tab-content {}

/* Product Extra - Content Ingrients */

.Product .extra-content .ingredients-tab ul.ingredients-list {
    width: 100%;
    overflow: hidden;
    margin: 4rem 0;
}

.Product .extra-content .ingredients-tab ul.ingredients-list li {
    display: flex;
    flex-flow: row nowrap;
    align-items: stretch;
    column-gap: 0.5rem;
}

.Product .extra-content .ingredients-tab ul.ingredients-list li.list-head,
.Product .extra-content .ingredients-tab ul.ingredients-list li.list-entry
{

}

.Product .extra-content .ingredients-tab ul.ingredients-list li.list-head {
    border-bottom: 1px solid var(--main-text-grey);
}

.Product .extra-content .ingredients-tab ul.ingredients-list li.list-entry {
    border-bottom: 1px solid var(--main-text-grey);
}

.Product .extra-content .ingredients-tab ul.ingredients-list li.list-entry:last-child {
    border-bottom-width: 0;
}


.Product .extra-content .ingredients-tab ul.ingredients-list li .column {
    padding: 0.5rem 0;
}

.Product .extra-content .ingredients-tab ul.ingredients-list li .column.name {
    flex: 1 1 calc(20% - 0.5rem);
    width: calc(20% - 0.5rem);
}

.Product .extra-content .ingredients-tab ul.ingredients-list li .column.valuation {
    flex: 1 1 calc(70% - 0.5rem);
    width: calc(70% - 0.5rem);
}

.Product .extra-content .ingredients-tab ul.ingredients-list li .column.result {
    flex: 1 1 calc(10% - 0.5rem);
    width: calc(10% - 0.5rem);
    text-align: center;

    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-around;
}

.Product .extra-content .ingredients-tab ul.ingredients-list li .column.result .icon {

}

.Product .extra-content .ingredients-tab ul.ingredients-list li .column.result .icon:before {
    display: var(--fa-display, inline-block);
    width: 1rem;
    height: 1rem;
    box-sizing: border-box;
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 400);
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    font-size: 1.4em;
}

.Product .extra-content .ingredients-tab ul.ingredients-list li.neutral .column.result .icon:before {
    content: '\f111';
}

.Product .extra-content .ingredients-tab ul.ingredients-list li.gut .column.result .icon:before {
    content: '\f058';
}

.Product .extra-content .ingredients-tab ul.ingredients-list li.fragwuerdig .column.result .icon:before {
    content: '\f057';
}



/* ShopAccountEditorPage */


.ShopAccountEditorPage_BaseData {

}

form.AccountForm {
    background: #FFFFFF;
    padding: 2rem;
    position: relative;
    margin-bottom: 100px;
}

form.AccountForm .loading {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: url('../images/loading.svg') center center no-repeat rgba(230,230,230,0.6);
}

form.AccountForm .loading.active {
    display: block;
}

form.AccountForm p.message {
    padding: 0.5em 1em;
    color: #FFF;
    box-sizing: border-box;
    border-radius: 0.3em;
    width: 500px;
    max-width: 100%;
    margin-bottom: 2rem;
}

form.AccountForm p.message.good {
    background: green;
}

form.AccountForm p.message.error {
    background: orange;
}

form.AccountForm fieldset {
    display: contents;
}

form.AccountForm fieldset > .field {
    margin-bottom: 0.5em;
}

form.AccountForm fieldset > .CompositeField > .field {
    margin-bottom: 0.5em;
}

form.AccountForm fieldset > .field > label {
    font-weight: normal;
    font-size: 1em;
    line-height: 1.4em;
}

form.AccountForm fieldset > .field.required > label {
    
}

form.AccountForm fieldset .field.required > label:after {
    content: ' *';
    font-size: 1.4em;
    color: orange;
}

form.AccountForm fieldset > .field > .middleColumn,
form.AccountForm fieldset > .CompositeField .field > .middleColumn
{
    width: 500px;
    max-width: 100%;
    position: relative;
}

form.AccountForm fieldset .field .message.validation,
form.AccountForm fieldset .field .message.error
{
    display: block;
    color: orange;
}

form.AccountForm fieldset .field .description {
    display: block;
    width: 500px;
    max-width: 100%;
    font-style:italic;
    font-size: 0.8em;
    margin-top: 0.3em;
}

form.AccountForm fieldset .field.grid-field .description {
    width: 100%;
}

form.AccountForm fieldset > .field.attention > .middleColumn:before,
form.AccountForm fieldset > .CompositeField .field.attention > .middleColumn:before
 {
    content: "\f06a";
    display: var(--fa-display, inline-block);
    width: 1em;
    height: 1em;
    margin-right: 0.5em;
    box-sizing: border-box;
    font-family: "FontAwesome";
    font-weight: var(--fa-style, 400);
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    font-size: 1.0em;
    text-transform: none;
    color: orange;
    position: absolute;
    top: 0.5em;
    right: 100%;
}

form.AccountForm fieldset > .field > .middleColumn input,
form.AccountForm fieldset > .field > .middleColumn select,
form.AccountForm fieldset > .CompositeField .field > .middleColumn input,
form.AccountForm fieldset > .CompositeField .field > .middleColumn select
{
    width: 100%;
    box-sizing: border-box;
    padding: 0.4em;
    font-family: Arial, Helvetica, 'sans-serif';
    font-size: 1em;
    background: #FFFFFF;
    border: 1px solid #CCCCCC;
}

form.AccountForm fieldset > .field > .middleColumn input {

}

form.AccountForm fieldset > .field > .middleColumn select {

}

form.AccountForm button.toggle-password-edit {
    border-radius: 0;
    border-width: 0;
    appearance: none;
    background: var(--highlighting-text-color);
    color: #FFFFFF;
    padding: 1em 1.2em;
    margin-top: 1.5em;
    margin-bottom: 1.5em;
    font-size: 1em;
}

form.AccountForm .btn-toolbar {
    margin-top: 2em;
}

form p.required-info {
    font-weight: bold;
    margin-top: 1em;
}

form p.required-info:before {
    content: '* ';
    color: orange;
    font-size: 1.4em;
    font-weight: normal;
}

form.AccountForm .btn-toolbar button[type="submit"]{
    background: green;
    border-width: 0;
    font-size: 1.4em;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 0.3em 0.7em;
}

.ShopAccountEditorPage_Overview > .content {

}

.ShopAccountEditorPage_Overview > .content > .column-wrapper {
    display: flex;
    flex-flow: row wrap;
    row-gap: var(--content-padding);
    column-gap: var(--content-padding);
}

.ShopAccountEditorPage_Overview > .content > .column-wrapper .column {
    flex: 1 1 auto;
}

.ShopAccountEditorPage_Overview > .content > .column-wrapper .column.menu {
    flex: 0 0 330px;
}

.ShopAccountEditorPage_Overview > .content > .column-wrapper .column.advertisement {
    flex: 1 1 600px;
    min-width: 600px;
    max-width: 100%;
}

@media (max-width: 768px){
    .ShopAccountEditorPage_Overview > .content > .column-wrapper .column.advertisement {
        flex: 1 1 100%;
        min-width: 0;
    }

    .ShopAccountEditorPage_Overview .element-wrapper.AdvtLocationElement > .wrapper {
        padding: 0;
        background-color: transparent;
    }
}

.ShopAccountEditorPage_Overview > .content > .column-wrapper .column.advertisement > .element-wrapper:first-child {
    margin-top: 0;
}

.ShopAccountEditorPage_Overview ul.account-overview-menu {
    display: block;
    margin: 0;
    padding: 0;
    width: 300px;
    max-width: 100%;
}

.ShopAccountEditorPage_Overview ul.account-overview-menu li {
    display: block;
    list-style: none;
    margin: 0 0 0.5em 0;
    padding: 0;
}

.ShopAccountEditorPage_Overview ul.account-overview-menu li a,
.ShopAccountEditorPage_Overview ul.account-overview-menu li a:visited,
.ShopAccountEditorPage_Overview ul.account-overview-menu li a:focus,
.ShopAccountEditorPage_Overview ul.account-overview-menu li a:hover,
.ShopAccountEditorPage_Overview ul.account-overview-menu li a:active
{
    display: block;
    max-width: 100%;
    color: var(--highlighting-text-color);
    background-color: rgba(200,200,200,0.5);
    padding: 0.5em 0.7em;
    text-decoration: none;
    border-left: 4px solid var(--highlighting-text-color);
    font-weight: bold;
    font-size: 1.1em;
}

.ShopAccountEditorPage_Overview ul.account-overview-menu li.inactive a,
.ShopAccountEditorPage_Overview ul.account-overview-menu li.inactive a:visited,
.ShopAccountEditorPage_Overview ul.account-overview-menu li.inactive a:focus,
.ShopAccountEditorPage_Overview ul.account-overview-menu li.inactive a:hover,
.ShopAccountEditorPage_Overview ul.account-overview-menu li.inactive a:active
{
    color: #888;
    border-color: #888;
    font-weight: normal;
    opacity: 0.5;
}


.ShopAccountEditorPage_Overview p.contact-data {

}

.ShopAccountEditorPage_Overview p.contact-data .label {
    color: var(--highlighting-text-color);
}

.ShopAccountEditorPage_Overview p.contact-data .label.customer-nr {
    font-weight: bold;
}

.ShopAccountEditorPage_Overview p.contact-data .label.customer-nr + .value {
    display: inline-block;
    font-weight: bold;
    margin-bottom: 0.8em;
}

.ShopAccountEditorPage_Overview p.contact-data .value.firm {
    display: inline-block;
    font-weight: bold;
    margin-bottom: 0.2em;
}


.ShopAccountEditorPage_Overview p.contact-data .label.email {
    display: inline-block;
    margin-top: 0.5em;
}




.ShopAccountEditorPage_CustomerOrders .tabs {

}

.ShopAccountEditorPage_CustomerOrders .tabs > .tab {
    margin-bottom: 1rem;
}

.ShopAccountEditorPage_CustomerOrders .tabs > .tab {
    background: #FFFFFF;
}


.ShopAccountEditorPage_CustomerOrders .tabs > .tab > button.header {
    border: none;
    border-radius: 0;
    padding: 1rem;
    margin: 0;
    width: 100%;
    font-size: 1.5rem;
    color: #FFFFFF;
    text-align: left;
    background-color: var(--highlighting-text-color);
}

.ShopAccountEditorPage_CustomerOrders .tabs > .tab.disabled > button.header
{
    background-color: #EEEEEE;
}

.ShopAccountEditorPage_CustomerOrders .tabs > .tab > button.header:after {
    content: "\f077";
    font-family: 'FontAwesome';
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    float: right;
}

.ShopAccountEditorPage_CustomerOrders .tabs > .tab.closed > button.header:after {
    content: "\f078";
}

.ShopAccountEditorPage_CustomerOrders .tabs > .tab.disabled > button.header:after,
.ShopAccountEditorPage_CustomerOrders .tabs > .tab.closed.disabled > button.header:after
{
    display: none;
}

.ShopAccountEditorPage_CustomerOrders .tabs > .tab > .content {
    display: block;
    border-bottom: 2px solid var(--highlighting-text-color);
    padding: 1rem;
}

.ShopAccountEditorPage_CustomerOrders .tabs > .tab.closed > .content {
    display: none;
}


.ShopAccountEditorPage_CustomerOrders ul.order-list {
    margin-bottom: 2em;
    background: #F6F5F5;
}

.ShopAccountEditorPage_CustomerOrders ul.customer-list {

}

.ShopAccountEditorPage_CustomerOrders ul.customer-list > li {

}

.ShopAccountEditorPage_CustomerOrders ul.customer-list > li button.orders-toggle ,
.ShopAccountEditorPage_CustomerOrders .order-list button.detail-action
{
    background: var(--highlighting-text-color);
    color: #FFFFFF;
    border-width: 0;
    padding: 0.3em 0.5em 0.3em 0.5em;
    font-size: 0.8em;
    line-height: 1em;
    margin-top: 0.5em;
    margin-left: 0.3em;
}

.ShopAccountEditorPage_CustomerOrders ul.customer-list > li button.orders-toggle.open {
    margin-bottom: 2em;
}

.ShopAccountEditorPage_CustomerOrders .order-list button.detail-action {
    margin-bottom: 1em;
}

.ShopAccountEditorPage_CustomerOrders ul.customer-list > li button.orders-toggle::after,
.ShopAccountEditorPage_CustomerOrders .order-list button.detail-action:after
{
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 0.3em solid transparent;
    border-right: 0.3em solid transparent;
    border-bottom: 0.3em solid #FFFFFF;
    margin-left: 0.5em;
    transition: transform 0.2s ease-out;
    position: relative;
    top: -0.25em;
}

.ShopAccountEditorPage_CustomerOrders ul.customer-list > li button.orders-toggle.open::after,
.ShopAccountEditorPage_CustomerOrders .order-list button.detail-action.open::after
{
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 0.3em solid transparent;
    border-right: 0.3em solid transparent;
    border-top: 0.3em solid #FFFFFF;
    border-bottom: 0;
    margin-left: 0.5em;
    transition: transform 0.2s ease-out;
}

.ShopAccountEditorPage_Orders ul.order-list > li,
.ShopAccountEditorPage_CustomerOrders ul.order-list > li
{
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--highlighting-text-color);
}

.ShopAccountEditorPage_CustomerOrders ul.order-list > li {
    padding: 0.3em;
}

.ShopAccountEditorPage_Orders ul.order-list > li:last-child
{
    border-bottom-width: 0;
}

.ShopAccountEditorPage_Orders ul.order-list > li > .header,
.ShopAccountEditorPage_CustomerOrders .order-list .content
{
    display: flex;
    flex-flow: row wrap;
    column-gap: 1.5em;
    row-gap: 1.5em;
}



.ShopAccountEditorPage_Orders ul.order-list > li > .header .column {
    flex: 0 0 auto;
    min-width: calc(15% - 1.5em);
}

.ShopAccountEditorPage_CustomerOrders .order-list .column {
    flex: 0 0 auto;
    width: calc(calc(100% / 7) - 1.5em);
}

.ShopAccountEditorPage_CustomerOrders .customer-list .order-list .column {
    flex: 0 0 auto;
    width: calc(calc(100% / 5) - 1.5em);
}

.ShopAccountEditorPage_CustomerOrders .order-list .column.order-state {
    text-align: right;
}

.ShopAccountEditorPage_CustomerOrders .customer-list .order-list .details-wrapper .column {
    width: calc(100% / 6);
}

.ShopAccountEditorPage_Orders ul.order-list > li > .header .column .label,
.ShopAccountEditorPage_CustomerOrders .order-list .column .label
{
    display: block;
}

.ShopAccountEditorPage_Orders ul.order-list > li > .header .column .value,
.ShopAccountEditorPage_CustomerOrders .order-list .header .column .value,
.ShopAccountEditorPage_CustomerOrders .order-list .header .column .label
{
    font-weight: bold;
}

.ShopAccountEditorPage_CustomerOrders .order-list .column .value {
    display: inline-block;
    line-height: 1.6em;
    vertical-align: bottom;
}

.ShopAccountEditorPage_CustomerOrders .order-list .details-wrapper .column .value {
    display: inline-block;
    line-height: 1em;
    vertical-align: middle;
}

.ShopAccountEditorPage_Orders ul.order-list > li > .header .column.order-shipping .value .inline-label,
.ShopAccountEditorPage_CustomerOrders .order-list .column.order-shipping .value .inline-label
{
    color: orange;
    padding-right: 0.2em;
    font-weight: normal;
}

.ShopAccountEditorPage_Orders ul.order-list > li > .header .column.order-shipping .value .inline-label:after,
.ShopAccountEditorPage_CustomerOrders .order-list .column.order-shipping .value .inline-label:after
{
    content: ':';
}

.ShopAccountEditorPage_CustomerOrders .order-list .column.order-shipping .value .address-preview
{
    line-height: 1.0em !important;
    display: block;
}

.ShopAccountEditorPage_Orders ul.order-list > li > .header .column.order-shipping .value .address-preview > span:after,
.ShopAccountEditorPage_CustomerOrders .order-list .column.order-shipping .value .address-preview > span:after
{
    content: ', ';
}

.ShopAccountEditorPage_Orders ul.order-list > li > .header .column.order-shipping .value .address-preview > span:nth-child(2):after,
.ShopAccountEditorPage_CustomerOrders .order-list .column.order-shipping .value .address-preview > span:nth-child(2):after
{
    content: '';
}

.ShopAccountEditorPage_Orders ul.order-list > li > .header .column.order-shipping .value .address-preview > span:last-child:after,
.ShopAccountEditorPage_CustomerOrders .order-list .column.order-shipping .value .address-preview > span:last-child:after
{
    content: '';
}

.ShopAccountEditorPage_CustomerOrders .order-list .column.order-total {
    text-align: right;
}


.ShopAccountEditorPage_Orders ul.order-list > li > .header .column.order-state
{
    flex: 1 1 auto;
    margin-bottom: 1.5em;
    max-width: 50%;
}

.ShopAccountEditorPage_Orders ul.order-list > li > .header .column.order-state .progress,
.ShopAccountEditorPage_CustomerOrders .order-list .column.order-state .progress
{
    display: block;
    background: #FFFFFF;
    border: 1px solid #CCCCCC;
    border-radius: 5px;
    height: 10px;
    overflow: hidden;
}

.ShopAccountEditorPage_CustomerOrders .order-list .column.order-state .progress {
    margin-top: 0.5em;
}

.ShopAccountEditorPage_Orders ul.order-list > li > .header .column.order-state .progress:before,
.ShopAccountEditorPage_CustomerOrders .order-list .column.order-state .progress:before
{
    display: block;
    content: '';
    background-color: #CCCCCC;
    height: 10px;
    font-size: 0;
    width: 20%;
}

.ShopAccountEditorPage_Orders ul.order-list > li > .header .column.order-state .value,
.ShopAccountEditorPage_CustomerOrders .order-list .column.order-state .value
{
    font-size: 0.8em;
    font-weight: 500;
}

.ShopAccountEditorPage_Orders ul.order-list > li > .header .column.order-state.inprogress .progress:before,
.ShopAccountEditorPage_CustomerOrders .order-list .column.order-state .progress[data-state="INPROGRESS"]:before
{
    background-color: orange;
    width: 50%;
}

.ShopAccountEditorPage_Orders ul.order-list > li > .header .column.order-state.inprogress .value {
    color: orange;
}

.ShopAccountEditorPage_Orders ul.order-list > li > .header .column.order-state.pending .progress:before,
.ShopAccountEditorPage_CustomerOrders .order-list .column.order-state .progress[data-state="PENDING"]:before
{
    background-color: grey;
    width: 10%;
}

.ShopAccountEditorPage_Orders ul.order-list > li > .header .column.order-state.pending .value {
    color: grey;
}

.ShopAccountEditorPage_Orders ul.order-list > li > .header .column.order-state.invoice .progress:before,
.ShopAccountEditorPage_CustomerOrders .order-list .column.order-state .progress[data-state="INVOICE"]:before
{
    background-color: grey;
    width: 30%;
}

.ShopAccountEditorPage_Orders ul.order-list > li > .header .column.order-state.invoice .value {
    color: grey;
}

.ShopAccountEditorPage_Orders ul.order-list > li > .header .column.order-state.canceled .progress:before,
.ShopAccountEditorPage_CustomerOrders .order-list .column.order-state .progress[data-state="CANCELED"]:before
{
    background-color: darkred;
    width: 100%;
}

.ShopAccountEditorPage_Orders ul.order-list > li > .header .column.order-state.canceled .value {
    color: darkred;
}

.ShopAccountEditorPage_Orders ul.order-list > li > .header .column.order-state.shipping .progress:before,
.ShopAccountEditorPage_CustomerOrders .order-list .column.order-state .progress[data-state="SHIPPING"]:before
{
    background-color: rgb(0, 55, 100);
    width: 80%;
}

.ShopAccountEditorPage_Orders ul.order-list > li > .header .column.order-state.shipping .value {
    color: darkgreen;
}

.ShopAccountEditorPage_Orders ul.order-list > li > .header .column.order-state.completed .progress:before,
.ShopAccountEditorPage_CustomerOrders .order-list .column.order-state .progress[data-state="COMPLETED"]:before
{
    background-color: darkgreen;
    width: 100%;
}

.ShopAccountEditorPage_Orders ul.order-list > li > .header .column.order-state.completed .value
{
    color: darkgreen;
}

.ShopAccountEditorPage_Orders ul.order-list > li > .details,
.ShopAccountEditorPage_CustomerOrders ul.order-list > li > .details
{

}

.ShopAccountEditorPage_Orders ul.order-list > li > .details ul.order-action-menu,
.ShopAccountEditorPage_CustomerOrders ul.order-list > li > .details ul.order-action-menu
{
    display: flex;
    flex-flow: row;
    column-gap: 1em;
}

.ShopAccountEditorPage_Orders ul.order-list > li > .details ul.order-action-menu li,
.ShopAccountEditorPage_CustomerOrders ul.order-list > li > .details ul.order-action-menu li
{

}

.ShopAccountEditorPage_Orders ul.order-list > li > .details ul.order-action-menu li > a,
.ShopAccountEditorPage_Orders ul.order-list > li > .details ul.order-action-menu li > span,
.ShopAccountEditorPage_CustomerOrders ul.order-list > li > .details ul.order-action-menu li > a,
.ShopAccountEditorPage_CustomerOrders ul.order-list > li > .details ul.order-action-menu li > span
{
    display: inline-block;
    max-width: 100%;
    color: #FFFFFF;
    background-color: var(--highlighting-text-color);
    padding: 0.3em 0.7em;
    text-decoration: none;
    font-weight: normal;
    font-size: 1.0em;
}

.ShopAccountEditorPage_Orders ul.order-list > li > .details ul.order-action-menu li.inactive > a,
.ShopAccountEditorPage_Orders ul.order-list > li > .details ul.order-action-menu li > span,
.ShopAccountEditorPage_CustomerOrders ul.order-list > li > .details ul.order-action-menu li.inactive > a,
.ShopAccountEditorPage_CustomerOrders ul.order-list > li > .details ul.order-action-menu li > span
{
    background-color: #CCCCCC;
}

.ShopAccountEditorPage_CustomerOrders ul.customer-list {
    font-size: 1rem;
}

.ShopAccountEditorPage_CustomerOrders ul.customer-list > li {
    margin: 0 0 0.5rem;
    padding: 0 0 0.5rem;
    border-bottom: 1px solid #CCC;
}

.ShopAccountEditorPage_CustomerOrders ul.customer-list > li > .header {
    display: flex;
    flex-flow: row wrap;
    column-gap: 1em;
}

.ShopAccountEditorPage_CustomerOrders ul.customer-list > li > .header > .column {
    flex: 0 0 calc(25% - 1rem);
    box-sizing: border-box;
    padding: 0.3em;
}

.ShopAccountEditorPage_CustomerOrders ul.customer-list > li > .header > .column:first-child {
    flex: 0 0 25%;
}

.ShopAccountEditorPage_CustomerOrders ul.customer-list > li > .header > .column > .label {
    display: block;
    font-size: 0.8em;
    margin-bottom: 0.3em;
}

.ShopAccountEditorPage_CustomerOrders ul.customer-list > li > .header > .column > .value {
    display: block;
    color: var(--highlighting-text-color);
    font-weight: bold;
}

.ShopAccountEditorPage_CustomerOrders ul.customer-list > li > .header > .column.customer-nr,
.ShopAccountEditorPage_CustomerOrders ul.customer-list > li > .header > .column.alt-customer-nr {
    text-align: right;
}

.ShopAccountEditorPage_CustomerOrders ul.customer-list > li > .header > .column.order-count {
    text-align: right;
}

@media (max-width: 768px){
    .ShopAccountEditorPage_CustomerOrders ul.customer-list > li > .header > .column.name {
        flex: 0 0 100%;
    }

    .ShopAccountEditorPage_CustomerOrders ul.customer-list > li > .header > .column.customer-nr {
        flex: 0 0 calc(50% - 1em);
        text-align: left;
    }

    .ShopAccountEditorPage_CustomerOrders ul.customer-list > li > .header > .column.order-count {
        flex: 0 0 calc(50% - 1em);
        text-align: right;
    }
}

.ShopAccountEditorPage_CustomerOrders .order-list .details-wrapper {
    
}

.ShopAccountEditorPage_CustomerOrders .order-list .details-wrapper.hidden,
.ShopAccountEditorPage_CustomerOrders .order-list .details-wrapper.hidden.loaded,
.ShopAccountEditorPage_CustomerOrders .order-list .details-wrapper.hidden.loaded.loading
{
    display: none;
}

.ShopAccountEditorPage_CustomerOrders .order-list .details-wrapper.loading {
    background: url('../images/loading.svg') center center no-repeat rgba(230,230,230,0.6);
    min-height: 200px;
}

.ShopAccountEditorPage_CustomerOrders .order-list .details-wrapper.loaded,
.ShopAccountEditorPage_CustomerOrders .order-list .details-wrapper.loaded.loading {
    background: #EEEEEE;
}

.ShopAccountEditorPage_CustomerOrders .order-list .details-wrapper .content-wrapper,
.ShopAccountEditorPage_CustomerOrders .order-list .details-wrapper.loaded .content-wrapper,
.ShopAccountEditorPage_CustomerOrders .order-list .details-wrapper.loaded.loading .content-wrapper
{
    padding: 1rem;
    background: #EFEFEF;
}

.ShopAccountEditorPage_CustomerOrders .order-list .details-wrapper.loading .content-wrapper {
    display: none;
}




.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 15%;
    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.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.name {
        flex: 0 0 45%;
    }

    .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 {

}





.ShopAccountEditorPage_PaymentEditor {

}

.ShopAccountEditorPage_PaymentEditor h1 {

}

.ShopAccountEditorPage_PaymentEditor h2 {
}

.ShopAccountEditorPage_PaymentEditor ul.option-list {
    background: #FFFFFF;
    padding: 2rem;
    margin-top: 1rem;
}

.ShopAccountEditorPage_PaymentEditor ul.option-list > li {
    margin: 0 0 1.5rem 0;
    padding: 0 0 2rem 0;
    border-bottom: 1px solid var(--highlighting-text-color);
}

.ShopAccountEditorPage_PaymentEditor ul.option-list > li:last-child {
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    border-width: 0;
}

.ShopAccountEditorPage_PaymentEditor ul.option-list > li.favorite {

}

.ShopAccountEditorPage_PaymentEditor .option-list .option-header {
    display: block;
    /* overflow: hidden; */
    font-size: 1.4rem;
    position: relative;
    min-height: 3rem;
}

.ShopAccountEditorPage_PaymentEditor .option-list .option-header input[type="checkbox"] {
    position: absolute;
    left: -100%;
}

.ShopAccountEditorPage_PaymentEditor .option-list .option-header .toggle-button {
    display: inline-block;
    height: 32px;
    width: 62px;
    border-radius: 15px;
    border: 2px solid #888888;
    padding: 2px;
    margin: 0 1em 0 0;
    overflow: hidden;
    position: relative;
    top: 0.5rem;
    box-sizing: border-box;
    background-color: #FFFFFF;
}
.ShopAccountEditorPage_PaymentEditor .option-list .option-header input:checked + .toggle-button {
    border-color: var(--highlighting-text-color);
    
}

.ShopAccountEditorPage_PaymentEditor .option-list .option-header .toggle-button > span {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

.ShopAccountEditorPage_PaymentEditor .option-list .option-header .toggle-button span:before {
    display: block;
    content: '';
    height: 24px;
    width: 24px;
    background-color: #888888;
    border-radius: 50%;
    position: relative;
}

.ShopAccountEditorPage_PaymentEditor .option-list .option-header input + .toggle-button span:before {

}

.ShopAccountEditorPage_PaymentEditor .option-list .option-header input:checked + .toggle-button span:before {
    background-color: var(--highlighting-text-color);
    left: 30px;
}

.ShopAccountEditorPage_PaymentEditor .option-list .option-header .title {
    color: #666666;
    font-weight: bold;
    text-transform: uppercase;
}

.ShopAccountEditorPage_PaymentEditor .option-list .option-header input:checked ~ .title {
    color: var(--highlighting-text-color);
}

.ShopAccountEditorPage_PaymentEditor .option-list .form-wrapper {

}

.ShopAccountEditorPage_PaymentEditor .option-list form.AccountForm.AccountPaymentEditorForm {
    display: block;
    font-size: 1.2rem;
    padding: 2rem 2rem 2rem calc(73px + 1em);
    box-sizing: border-box;
    max-width: 100%;
    overflow: hidden;
}

@media (max-width: 768px){
    .ShopAccountEditorPage_PaymentEditor .option-list form.AccountForm.AccountPaymentEditorForm {
        font-size: 1.2rem;
        padding: 2rem 0;
    }
}

.ShopAccountEditorPage_PaymentEditor .option-list form.AccountForm.AccountPaymentEditorForm fieldset {

}

.ShopAccountEditorPage_PaymentEditor .option-list form.AccountForm.AccountPaymentEditorForm fieldset > label {
    display: block;
    font-weight: bold;
    margin-bottom: 1.0em;
}

.ShopAccountEditorPage_PaymentEditor .option-list form.AccountForm.AccountPaymentEditorForm fieldset .field {
    margin-bottom: 1.0em;
    line-height: 1.3em;
}

.ShopAccountEditorPage_PaymentEditor .option-list form.AccountForm.AccountPaymentEditorForm fieldset .field.checkbox {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
}

.ShopAccountEditorPage_PaymentEditor .option-list form.AccountForm.AccountPaymentEditorForm fieldset .field label {
    display: inline-block;
    width: 400px;
    max-width: 100%;
}

.ShopAccountEditorPage_PaymentEditor .option-list form.AccountForm.AccountPaymentEditorForm fieldset .field.required label {
    font-size: 1em;
}

.ShopAccountEditorPage_PaymentEditor .option-list form.AccountForm.AccountPaymentEditorForm fieldset .field .middleColumn {

}

.ShopAccountEditorPage_PaymentEditor .option-list form.AccountForm.AccountPaymentEditorForm fieldset .field .middleColumn textarea,
.ShopAccountEditorPage_PaymentEditor .option-list form.AccountForm.AccountPaymentEditorForm fieldset .field .middleColumn input
{
    display: inline-block;
    width: 400px;
    max-width: 100%;
    padding: 0.4em;
    border: 2px solid #CCC;
    border-radius: 0;
    font-size: 1em;
    box-sizing: border-box;
}

.ShopAccountEditorPage_PaymentEditor .option-list form.AccountForm.AccountPaymentEditorForm fieldset .field input[type="checkbox"] {
    padding: 1em;
    font-size: 1em;
    width: 1.5em;
    height: 1.5em;
    margin-right: 1em;
    cursor: pointer;
}

.ShopAccountEditorPage_PaymentEditor .option-list form.AccountForm.AccountPaymentEditorForm fieldset .field.CompositeField {
    max-width: 100%;
    margin-bottom: 3em;
}

.ShopAccountEditorPage_PaymentEditor .option-list form.AccountForm.AccountPaymentEditorForm .btn-toolbar {

}

.ShopAccountEditorPage_PaymentEditor .option-list form.AccountForm.AccountPaymentEditorForm .btn-toolbar button[type="submit"]{font-size: 1.2em;}

.ShopAccountEditorPage_PaymentEditor .option-list form.AccountForm.AccountPaymentEditorForm .btn-toolbar button[type="submit"] span {

}








.ShopAccountEditorPage_ShippingEditor {

}

.ShopAccountEditorPage_ShippingEditor h1 {

}

.ShopAccountEditorPage_ShippingEditor h2 {
}

.ShopAccountEditorPage_ShippingEditor ul.option-list {
    background: #FFFFFF;
    padding: 2rem;
    margin-top: 1rem;
}

.ShopAccountEditorPage_ShippingEditor ul.option-list > li {
    margin: 0 0 1.5rem 0;
    padding: 0 0 2rem 0;
    border-bottom: 1px solid var(--highlighting-text-color);
}

.ShopAccountEditorPage_ShippingEditor ul.option-list > li:last-child {
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    border-width: 0;
}

.ShopAccountEditorPage_ShippingEditor ul.option-list > li.favorite {

}

.ShopAccountEditorPage_ShippingEditor .option-list .option-header {
    display: block;
    /* overflow: hidden; */
    font-size: 1.4rem;
    position: relative;
    min-height: 3rem;
}

.ShopAccountEditorPage_ShippingEditor .option-list .option-header input[type="checkbox"] {
    position: absolute;
    left: -100%;
}

.ShopAccountEditorPage_ShippingEditor .option-list .option-header .toggle-button {
    display: inline-block;
    height: 32px;
    width: 62px;
    border-radius: 15px;
    border: 2px solid #888888;
    padding: 2px;
    margin: 0 1em 0 0;
    overflow: hidden;
    position: relative;
    top: 0.5rem;
    box-sizing: border-box;
    background-color: #FFFFFF;
}
.ShopAccountEditorPage_ShippingEditor .option-list .option-header input:checked + .toggle-button {
    border-color: var(--highlighting-text-color);
}

.ShopAccountEditorPage_ShippingEditor .option-list .option-header .toggle-button > span {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

.ShopAccountEditorPage_ShippingEditor .option-list .option-header .toggle-button span:before {
    display: block;
    content: '';
    height: 24px;
    width: 24px;
    background-color: #888888;
    border-radius: 50%;
    position: relative;
}

.ShopAccountEditorPage_ShippingEditor .option-list .option-header input + .toggle-button span:before {

}

.ShopAccountEditorPage_ShippingEditor .option-list .option-header input:checked + .toggle-button span:before {
    background-color: var(--highlighting-text-color);
    left: 30px;
}

.ShopAccountEditorPage_ShippingEditor .option-list .option-header .title {
    color: #666666;
    font-weight: bold;
    text-transform: uppercase;
}

.ShopAccountEditorPage_ShippingEditor .option-list .option-header input:checked ~ .title {
    color: var(--highlighting-text-color);
}

.ShopAccountEditorPage_ShippingEditor .option-list .favorite .option-header input:checked ~ .title:after {
    content: '\f005';
    display: var(--fa-display, inline-block);
    width: 1em;
    height: 1em;
    margin-left: 0.2em;
    box-sizing: border-box;
    font-family: "FontAwesome";
    font-weight: var(--fa-style, 400);
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    font-size: 0.6em;
    text-transform: none;
    vertical-align: top;
    color: ;
}

.ShopAccountEditorPage_ShippingEditor .option-list .form-wrapper {

}

.ShopAccountEditorPage_ShippingEditor .option-list form.AccountForm.AccountShippingEditorForm {
    display: block;
    font-size: 1.0rem;
    padding: 2rem 2rem 2rem calc(73px + 1em);
    box-sizing: border-box;
    max-width: 100%;
    overflow: hidden;
}

@media (max-width: 768px){
    .ShopAccountEditorPage_ShippingEditor .option-list form.AccountForm.AccountShippingEditorForm {
        font-size: 1.2rem;
        padding: 2rem 0;
    }
}

.ShopAccountEditorPage_ShippingEditor .option-list form.AccountForm.AccountShippingEditorForm fieldset {

}

.ShopAccountEditorPage_ShippingEditor .option-list form.AccountForm.AccountShippingEditorForm fieldset > label {
    display: block;
    font-weight: bold;
    margin-bottom: 1.0em;
}

.ShopAccountEditorPage_ShippingEditor .option-list form.AccountForm.AccountShippingEditorForm fieldset .field {
    margin-bottom: 1.0em;
    line-height: 1.3em;
}

.ShopAccountEditorPage_ShippingEditor .option-list form.AccountForm.AccountShippingEditorForm fieldset .field.textarea .description {
    display: inline-block;
    background: #F0F4F7;
    padding: 1em;
    margin: 0.3em 0 1em;
}

.ShopAccountEditorPage_ShippingEditor .option-list form.AccountForm.AccountShippingEditorForm fieldset .field.textarea .description p {
    margin: 0;
    padding: 0;
}

.ShopAccountEditorPage_ShippingEditor .option-list form.AccountForm.AccountShippingEditorForm fieldset .field.checkbox {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
}

.ShopAccountEditorPage_ShippingEditor .option-list form.AccountForm.AccountShippingEditorForm fieldset .field.checkbox {
    flex-flow: row wrap;
}

.ShopAccountEditorPage_ShippingEditor .option-list form.AccountForm.AccountShippingEditorForm fieldset .field.checkbox .description {
    display: inline-block;
    background: #F0F4F7;
    padding: 1em;
    margin-top: 0.5em;
}
.ShopAccountEditorPage_ShippingEditor .option-list form.AccountForm.AccountShippingEditorForm fieldset .field.checkbox .description > p {
    margin: 0;
    padding: 0;
}

.ShopAccountEditorPage_ShippingEditor .option-list form.AccountForm.AccountShippingEditorForm fieldset .field label {
    display: inline-block;
    width: 400px;
    max-width: 100%;
}

.ShopAccountEditorPage_ShippingEditor .option-list form.AccountForm.AccountShippingEditorForm fieldset .field.required label {
    font-size: 1em;
}

.ShopAccountEditorPage_ShippingEditor .option-list form.AccountForm.AccountShippingEditorForm fieldset .field .middleColumn {

}

.ShopAccountEditorPage_ShippingEditor .option-list form.AccountForm.AccountShippingEditorForm fieldset .field .middleColumn textarea,
.ShopAccountEditorPage_ShippingEditor .option-list form.AccountForm.AccountShippingEditorForm fieldset .field .middleColumn input
{
    display: inline-block;
    width: 400px;
    max-width: 100%;
    padding: 0.4em;
    border: 2px solid #CCC;
    border-radius: 0;
    font-size: 1em;
    box-sizing: border-box;
}

.ShopAccountEditorPage_ShippingEditor .option-list form.AccountForm.AccountShippingEditorForm fieldset .field.textarea .middleColumn {
    width: 100%;
}

.ShopAccountEditorPage_ShippingEditor .option-list form.AccountForm.AccountShippingEditorForm fieldset .field.textarea label {
    width: 100%;
    margin-bottom: 0.3em;
}

.ShopAccountEditorPage_ShippingEditor .option-list form.AccountForm.AccountShippingEditorForm fieldset .field .middleColumn textarea {
    width: 100%;
}

.ShopAccountEditorPage_ShippingEditor .option-list form.AccountForm.AccountShippingEditorForm fieldset .field .middleColumn select {
    display: inline-block;
    width: 400px;
    max-width: 100%;
    padding: 0.4em;
    border: 2px solid #CCC;
    border-radius: 0;
    font-size: 1em;
    box-sizing: border-box;
}

.ShopAccountEditorPage_ShippingEditor .option-list form.AccountForm.AccountShippingEditorForm fieldset .field input[type="checkbox"] {
    padding: 1em;
    font-size: 1em;
    width: 1.5em;
    height: 1.5em;
    margin-right: 1em;
    cursor: pointer;
}

.ShopAccountEditorPage_ShippingEditor .option-list form.AccountForm.AccountShippingEditorForm fieldset .field.CompositeField {
    max-width: 100%;
    margin-bottom: 3em;
}

.ShopAccountEditorPage_ShippingEditor .option-list form.AccountForm.AccountShippingEditorForm .btn-toolbar {

}

.ShopAccountEditorPage_ShippingEditor .option-list form.AccountForm.AccountShippingEditorForm .btn-toolbar button[type="submit"]{font-size: 1.2em;}

.ShopAccountEditorPage_ShippingEditor .option-list form.AccountForm.AccountShippingEditorForm .btn-toolbar button[type="submit"] span {

}

form.AccountShippingEditorForm .grid-field__table {
    margin-bottom: 1em;
}

form.AccountShippingEditorForm table.grid-field__table tr td.bottom-all .pagination-records-number {
    display: none;
}

form.AccountShippingEditorForm th.main.col-action_SetOrderSortOrder,
form.AccountShippingEditorForm tr.ss-gridfield-item > td.col-SortOrder
{
    display: none;
}

form.AccountShippingEditorForm tr.ss-gridfield-item > td.col-SortOrder input {
    display: none;
}

form.AccountShippingEditorForm tr.ss-gridfield-inline-new td.col-ValueCurrency input {
    padding: 0;
    color: #666;
    border-width: 0;
    font-size: 1em;
    background: transparent;
    width: 50px;
}

form.AccountShippingEditorForm td.col-ValueAmount input,
form.AccountShippingEditorForm td.col-ConditionValue input
{
    width: 80px;
    font-size: 1em;
}

form.AccountShippingEditorForm .info-box {
    font-size: 1rem;
    /* margin-bottom: 2em; */
    overflow: hidden;
}

form.AccountShippingEditorForm .info-box button.info-toggle {
    font-size: 1em;
    color: #FFFFFF;
    text-transform: uppercase;
    border-radius: 0.3em;
    border-width: 0;
    background: var(--highlighting-text-color);
    padding: 0.5em 0.5em;
    margin-bottom: 1em;
    float: right;
}

form.AccountShippingEditorForm .info-box button.info-toggle:before {
    content: '\f05a';
    display: var(--fa-display, inline-block);
    width: 1em;
    height: 1em;
    margin-right: 0.5em;
    box-sizing: border-box;
    font-family: "FontAwesome";
    font-weight: var(--fa-style, 400);
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    font-size: 1em;
    text-transform: none;
}

form.AccountShippingEditorForm .info-box .info-content {
    display: none;
    border-right: 2px solid var(--highlighting-text-color);
    padding: 1em 1em 0 1em;
    overflow: hidden;
    background-color: #F0F4F7;
    clear: both;
}

form.AccountShippingEditorForm .info-box .info-content p:last-child {
    margin-bottom: 2em;
}

form.AccountShippingEditorForm .info-box .info-toggle.open + .info-content {
    display: block;
    margin-bottom: 2em;
}

.info-content .cost-overview-table {
    margin-bottom: 2em;
}

.info-content .cost-overview-table .table-header {
    margin-bottom: 0.5em;
}

.info-content .cost-overview-table .table-header .wrapper {
    border-bottom: 1px solid #000000;
}

.info-content .cost-overview-table .table-header .wrapper,
.info-content .cost-overview-table .table-body .entry
{
    display: flex;
    flex-flow: row nowrap;
    column-gap: 20px;
}

.info-content .cost-overview-table .column {
    flex: 0 0 10%;
    margin-bottom: 0;
}

.info-content .cost-overview-table .table-header .wrapper .column {
    font-weight: bold;
    font-size: 0.8em;
}

.info-content .cost-overview-table .table-body {

}

.info-content .cost-overview-table .table-body .entry {

}

.info-content .cost-overview-table .table-body .entry .mobile-label {
    display: none;
}

.info-content .cost-overview-table .table-body .entry .column {

}

.info-content .cost-overview-table .table-header .wrapper .column.country-col,
.info-content .cost-overview-table .table-body .entry .column.country-col
{
    flex: 0 0 10%;
}

.info-content .cost-overview-table .table-header .wrapper .column.condition-value-col,
.info-content .cost-overview-table .table-body .entry .column.condition-value-col
{
    flex: 0 0 14%;
    text-align: right;
}

.info-content .cost-overview-table .table-header .wrapper .column.condition-col,
.info-content .cost-overview-table .table-body .entry .column.condition-col
{
    flex: 0 0 30%;
}

.info-content .cost-overview-table .table-body .entry .column.condition-col span.bigger {

}

.info-content .cost-overview-table .table-body .entry .column.condition-col span.smaller {

}

.info-content .cost-overview-table .table-body .entry .column.condition-col span.bigger,
.info-content .cost-overview-table .table-body .entry .column.condition-col span.smaller
{
    font-weight: bold;
}

.info-content .cost-overview-table .table-header .wrapper .column.value-amount-col,
.info-content .cost-overview-table .table-body .entry .column.value-amount-col
{
    flex: 0 0 14%;
    text-align: right;
}

.info-content .cost-overview-table .table-header .wrapper .column.value-date-col,
.info-content .cost-overview-table .table-body .entry .column.value-date-col
{
    flex: 0 0 10%;
    text-align: right;
}


/* ShopAccountEditorPage_CustomerManager */

.ShopAccountEditorPage_CustomerManager .tabs {

}

.ShopAccountEditorPage_CustomerManager .tabs > .tab {
    margin-bottom: 1rem;
}

.ShopAccountEditorPage_CustomerManager .tabs > .tab:first-child {
    background: #EEEEEE;
}

.ShopAccountEditorPage_CustomerManager .tabs > .tab:first-child .content form {
    background: none;
}

.ShopAccountEditorPage_CustomerManager .tabs > .tab > button.header {
    border: none;
    border-radius: 0;
    padding: 1rem;
    margin: 0;
    width: 100%;
    font-size: 1.5rem;
    color: #FFFFFF;
    text-align: left;
    background-color: var(--highlighting-text-color);
}

.ShopAccountEditorPage_CustomerManager .tabs > .tab.secondary > button.header {
    background-color: #444444;
}

.ShopAccountEditorPage_CustomerManager .tabs > .tab.disabled > button.header,
.ShopAccountEditorPage_CustomerManager .tabs > .tab.secondary.disabled > button.header
{
    background-color: #EEEEEE;
}

.ShopAccountEditorPage_CustomerManager .tabs > .tab > button.header:after {
    content: "\f077";
    font-family: 'FontAwesome';
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    float: right;
}

.ShopAccountEditorPage_CustomerManager .tabs > .tab.closed > button.header:after {
    content: "\f078";
}

.ShopAccountEditorPage_CustomerManager .tabs > .tab.disabled > button.header:after,
.ShopAccountEditorPage_CustomerManager .tabs > .tab.closed.disabled > button.header:after
{
    display: none;
}

.ShopAccountEditorPage_CustomerManager .tabs > .tab > .content {
    display: block;
    border-bottom: 2px solid var(--highlighting-text-color);
}

.ShopAccountEditorPage_CustomerManager .tabs > .tab.closed > .content {
    display: none;
}

.ShopAccountEditorPage_CustomerManager .tabs > .tab > .content > .description {
    padding: 2rem 2rem 0;
    margin-bottom: 1rem;
}

.ShopAccountEditorPage_CustomerManager .tabs > .tab > .content > .description .header {
    display: block;
    color: var(--highlighting-text-color);
}

.ShopAccountEditorPage_CustomerManager .tabs > .tab > .content > .note {
    padding: 2rem;
    margin-bottom: 1rem;
    border: 1px solid var(--highlighting-text-color);
    background-color: #FFFFFF;
}

.ShopAccountEditorPage_CustomerManager .tabs > .tab.secondary > .content > .note {
    border: 1px solid var(--main-text-color);
}


.ShopAccountEditorPage_CustomerManager .tabs > .tab > .content > .note > p:last-child {
    margin-bottom: 0;
}

.ShopAccountEditorPage_CustomerManager .tabs > .tab > .content > .note .header {
    display: block;
    color: var(--highlighting-text-color);
}

.ShopAccountEditorPage_CustomerManager .filter-header {
    margin: 2em 0;
}

.ShopAccountEditorPage_CustomerManager .filter-header .option {
    margin-bottom: 0.5em;
}

.ShopAccountEditorPage_CustomerManager .filter-header .option > label {
    display: block;
    font-size: 0.8em;
    color: var(--highlighting-text-color);
    margin-bottom: 0.2em;
}

.ShopAccountEditorPage_CustomerManager form input[type="checkbox"] {

}

.ShopAccountEditorPage_CustomerManager form .field.checkbox {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    margin-top: 1em;
}

.ShopAccountEditorPage_CustomerManager form .field .checkbox:not(.field),
.ShopAccountEditorPage_CustomerManager form .field .radio:not(.field) {
    display: inline-block;
    width: 3em;
    height: 3em;
    margin-right: 1em;
    padding: 5px;
    border: 2px solid var(--main-text-color);
    box-sizing: border-box;
    background-color: #FFFFFF;
    appearance: none;
    border-radius: 6px;
    position: relative;
    top: -0.1em;
    cursor: pointer;
}

.ShopAccountEditorPage_CustomerManager form .checkbox label.right,
.ShopAccountEditorPage_CustomerManager form .radio label.right {
    display: inline-block;
}

.ShopAccountEditorPage_CustomerManager form .checkbox .right-title {

}

.ShopAccountEditorPage_CustomerManager form .field .checkbox:not(.field):before,
.ShopAccountEditorPage_CustomerManager form .field .radio:not(.field):before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    background-color: var(--highlighting-text-color);
    border-radius: 4px;
}

.ShopAccountEditorPage_CustomerManager form .field .checkbox:not(.field)[disabled],
.ShopAccountEditorPage_CustomerManager form .field .radio:not(.field)[disabled]
{
    border: 2px solid #CCCCCC;
    background-color: #CCCCCC;
}

.ShopAccountEditorPage_CustomerManager form .field .checkbox:not(.field)[disabled]:checked,
.ShopAccountEditorPage_CustomerManager form .field .radio:not(.field)[disabled]:checked
{
    border: 2px solid var(--main-text-color);
    background-color: #FFFFFF;
}

.ShopAccountEditorPage_CustomerManager form .field .checkbox:not(.field)[disabled]:checked::before,
.ShopAccountEditorPage_CustomerManager form .field .radio:not(.field)[disabled]:checked::before {
    background-color: var(--main-text-color);
}

.ShopAccountEditorPage_CustomerManager form .field .checkbox:not(.field):checked::before,
.ShopAccountEditorPage_CustomerManager form .field .radio:not(.field):checked::before {
    transform: scale(1);
}

.ShopAccountEditorPage_CustomerManager form#Form_AccountCustomerManagerEditForm .btn-toolbar button {
    font-size: 1.2em;
    padding: 1em 1.4em;
}

.ShopAccountEditorPage_CustomerManager .filter-header .option input,
.ShopAccountEditorPage_CustomerManager .filter-header .option select
{
    padding: 0.3em;
    box-sizing: border-box;
    border-radius: 0;
    border: 1px solid var(--main-text-color);
    appearance: none;
}
.ShopAccountEditorPage_CustomerManager .filter-header .option input {
    width: 200px;
    max-width: 100%;
}

.ShopAccountEditorPage_CustomerManager .filter-header .option select {
    width: 170px;
    max-width: 100%;
    outline: none;
}

.ShopAccountEditorPage_CustomerManager .filter-header .option button {
    border-radius: 0;
    border-width: 0;
    appearance: none;
    background: var(--highlighting-text-color);
    color: #FFFFFF;
    padding: 0.4em 1.0em;
    margin-top: 0.5em;
}

.ShopAccountEditorPage_CustomerManager .filter-header .option label.sortby_direction_wrapper {
    display: inline-block;
}

.ShopAccountEditorPage_CustomerManager .filter-header .option label.sortby_direction_wrapper > input {
    height: 0;
    width: 0;
    padding: 0;
    margin: 0;
    border: none;
}

.ShopAccountEditorPage_CustomerManager .filter-header .option label.sortby_direction_wrapper input + .sortby_state {
    color: var(--highlighting-text-color);
}

.ShopAccountEditorPage_CustomerManager .filter-header .option label.sortby_direction_wrapper input + .sortby_state .upwards {
    display: inline-block;
}

.ShopAccountEditorPage_CustomerManager .filter-header .option label.sortby_direction_wrapper input + .sortby_state .downwards {
    display: none;
}

.ShopAccountEditorPage_CustomerManager .filter-header .option label.sortby_direction_wrapper input:checked + .sortby_state .upwards {
    display: none;
}

.ShopAccountEditorPage_CustomerManager .filter-header .option label.sortby_direction_wrapper input:checked + .sortby_state .downwards {
    display: inline-block;
}

.ShopAccountEditorPage_CustomerManager ul.customer-list {
    display: flex;
    flex-flow: column nowrap;
    align-items: stretch;
    font-size: 1rem;
}

.ShopAccountEditorPage_CustomerManager ul.customer-list > li {
    margin: 0 0 ;
    padding: 0.5rem 0 0.5rem;
    border-top: 1px solid #CCC;
    position: relative;
}

.ShopAccountEditorPage_CustomerManager ul.customer-list > li.attention:before {
    content: "\f06a";
    display: var(--fa-display, inline-block);
    width: 1em;
    height: 1em;
    margin-right: 0.5em;
    box-sizing: border-box;
    font-family: "FontAwesome";
    font-weight: var(--fa-style, 400);
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    font-size: 1.2em;
    text-transform: none;
    color: orange;
    position: absolute;
    top: 1em;
    right: 100%;
}

.ShopAccountEditorPage_CustomerManager ul.customer-list > li:hover {
    background: #F8F8F8;
}

.ShopAccountEditorPage_CustomerManager ul.customer-list > li.active:hover {
    background: #FFFFFF;
}

.ShopAccountEditorPage_CustomerManager ul.customer-list > li > .header {
    display: flex;
    flex-flow: row wrap;
    column-gap: 1em;
}

.ShopAccountEditorPage_CustomerManager ul.customer-list > li > .header > .column {
    flex: 1 1 auto;
    box-sizing: border-box;
    padding: 0.3em;
}

.ShopAccountEditorPage_CustomerManager ul.customer-list > li > .header > .column:first-child {
    flex: 0 0 25%;
}

.ShopAccountEditorPage_CustomerManager ul.customer-list > li > .header > .column > .label {
    display: block;
    font-size: 0.8em;
    margin-bottom: 0.3em;
    color: #CCC;
}

.ShopAccountEditorPage_CustomerManager ul.customer-list > li.active > .header > .column > .label,
.ShopAccountEditorPage_CustomerManager ul.customer-list > li.active:hover > .header > .column > .label,
.ShopAccountEditorPage_CustomerManager ul.customer-list > li:hover > .header > .column > .label
{
    color: var(--main-text-color);
}

.ShopAccountEditorPage_CustomerManager ul.customer-list > li > .header > .column > .value {
    display: block;
    color: var(--highlighting-text-color);
    font-weight: bold;
}

.ShopAccountEditorPage_CustomerManager ul.customer-list > li > .header > .column.name {
    cursor: pointer;
}

.ShopAccountEditorPage_CustomerManager ul.customer-list > li > .header > .column.name > .label {

}

.ShopAccountEditorPage_CustomerManager ul.customer-list > li > .header > .column.name > .value {

}

.ShopAccountEditorPage_CustomerManager ul.customer-list > li > .header > .column.customer-nr {
    text-align: left;
}

.ShopAccountEditorPage_CustomerManager ul.customer-list > li > .header > .column.customer-nr > .label {

}

.ShopAccountEditorPage_CustomerManager ul.customer-list > li > .header > .column.customer-nr > .value {

}

.ShopAccountEditorPage_CustomerManager ul.customer-list > li > .header > .column.actions {

}

.ShopAccountEditorPage_CustomerManager ul.customer-list > li > .header > .column.actions .restore-button,
.ShopAccountEditorPage_CustomerManager ul.customer-list > li > .header > .column.actions .edit-button {
    border-radius: 0;
    border-width: 0;
    appearance: none;
    background: var(--highlighting-text-color);
    color: #FFFFFF;
    padding: 0.4em 1.0em;
    margin-top: 0;
}

.ShopAccountEditorPage_CustomerManager ul.customer-list > li > .header > .column.actions .restore-button {
    position: relative;
}

.ShopAccountEditorPage_CustomerManager ul.customer-list > li > .header > .column.actions .restore-button .loading {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: ;
    background: url('../images/loading-white.svg') center center no-repeat #444444;
    background-size:contain;
}

.ShopAccountEditorPage_CustomerManager ul.customer-list > li > .header > .column.actions .restore-button[disabled] .loading {
    display: block;
}

@media (max-width: 991px){
    .ShopAccountEditorPage_CustomerManager ul.customer-list > li > .header > .column.name {
        flex: 0 0 100%;
    }

    .ShopAccountEditorPage_CustomerManager ul.customer-list > li > .header > .column.actions {
        flex: 0 0 100%;
    }

    .ShopAccountEditorPage_CustomerManager ul.customer-list > li > .header > .column .value {
        /*color: var(--main-text-color);*/
        font-size: 0.8em;
    }

    .ShopAccountEditorPage_CustomerManager ul.customer-list > li > .header > .column.name .value {
        /*color: var(--highlighting-text-color);*/
        font-size: 1em;
    }
}

.ShopAccountEditorPage_CustomerManager ul.customer-list > li.customer .edit-form {
    display: none;
    margin-top: 0.5em;
    background: #EEEEEE;
}

.ShopAccountEditorPage_CustomerManager ul.customer-list > li.customer.active .edit-form {
    display: block;
}

.ShopAccountEditorPage_CustomerManager ul.customer-list > li.customer .edit-form form {
    background: none;

}

.ShopAccountEditorPage_CustomerManager ul.customer-list > li.customer .edit-form form .form-section-title {
    margin: 2em 0 1em;
}

.ShopAccountEditorPage_CustomerManager ul.customer-list > li.customer .edit-form form .btn-toolbar {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}

.ShopAccountEditorPage_CustomerManager ul.customer-list > li.customer .edit-form form .btn-toolbar button {
    font-size: 1.2em;
    padding: 1em 1.4em;
}

.ShopAccountEditorPage_CustomerManager ul.customer-list > li.customer .edit-form form .btn-toolbar button[disabled] {
    background-color: #CCCCCC;
}

.ShopAccountEditorPage_CustomerManager ul.customer-list > li.customer .edit-form form .btn-toolbar button[name="action_HandleCustomerAccountArchive"] {
    background-color: darkred;
}

.ShopAccountEditorPage_CustomerManager ul.customer-list > li.customer .edit-form form .btn-toolbar button[name="action_HandleCustomerAccountDelete"] {
    background-color: rgb(34, 34, 34);
}

.ShopAccountEditorPage_CustomerManager button.toggle-info {
    background: none;
    appearance: none;
    border: none;
    font-size: 1em;
    margin-bottom: 0.5em;
}

.ShopAccountEditorPage_CustomerManager button.toggle-info > i {
    display: inline-block;
    color: var(--highlighting-text-color);
}

.ShopAccountEditorPage_CustomerManager button.toggle-info > span {
    color: var(--main-text-color);
    font-size: 0.9em;
    vertical-align: text-top;
}

.ShopAccountEditorPage_CustomerManager .toggle-info-content.hidden {
    display: none;
}

.ShopAccountEditorPage_CustomerManager .toggle-info-content {
    display: inline-block;
    padding: 0.6em 0.7em;
    background: #FFFFFF;
    margin-bottom: 1em;
}

.ShopAccountEditorPage_CustomerManager .toggle-info-content p {
    margin: 0 0 0.5em 0;
}

.ShopAccountEditorPage_CustomerManager .toggle-info-content ul {
    margin: 0;
    padding: 0;
}

.ShopAccountEditorPage_CustomerManager .toggle-info-content ul li {
    list-style: disc;
    list-style-position: inside;
    margin: 0;
    padding: 0;
}



/* ShopAccountEditorPage_NewsletterManager */

.ShopAccountEditorPage_NewsletterManager .tabs {

}

.ShopAccountEditorPage_NewsletterManager .tabs > .tab {
    margin-bottom: 1rem;
}

.ShopAccountEditorPage_NewsletterManager .tabs > .tab:first-child {
    background: #EEEEEE;
}

.ShopAccountEditorPage_NewsletterManager .tabs > .tab:first-child .content form {
    background: none;
}

.ShopAccountEditorPage_NewsletterManager .tabs > .tab > button.header {
    border: none;
    border-radius: 0;
    padding: 1rem;
    margin: 0;
    width: 100%;
    font-size: 1.5rem;
    color: #FFFFFF;
    text-align: left;
    background-color: var(--highlighting-text-color);
}

.ShopAccountEditorPage_NewsletterManager .tabs > .tab.secondary > button.header {
    background-color: #444444;
}

.ShopAccountEditorPage_NewsletterManager .tabs > .tab.disabled > button.header,
.ShopAccountEditorPage_NewsletterManager .tabs > .tab.secondary.disabled > button.header
{
    background-color: #EEEEEE;
}

.ShopAccountEditorPage_NewsletterManager .tabs > .tab > button.header:after {
    content: "\f077";
    font-family: 'FontAwesome';
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    float: right;
}

.ShopAccountEditorPage_NewsletterManager .tabs > .tab.closed > button.header:after {
    content: "\f078";
}

.ShopAccountEditorPage_NewsletterManager .tabs > .tab.disabled > button.header:after,
.ShopAccountEditorPage_NewsletterManager .tabs > .tab.closed.disabled > button.header:after
{
    display: none;
}

.ShopAccountEditorPage_NewsletterManager .tabs > .tab > .content {
    display: block;
    border-bottom: 2px solid var(--highlighting-text-color);
    padding: 20px;
}

.ShopAccountEditorPage_NewsletterManager .tabs > .tab.closed > .content {
    display: none;
}

.ShopAccountEditorPage_NewsletterManager .tabs > .tab > .content > .description {
    padding: 2rem 2rem 0;
    margin-bottom: 1rem;
}

.ShopAccountEditorPage_NewsletterManager .tabs > .tab > .content > .description .header {
    display: block;
    color: var(--highlighting-text-color);
}

.ShopAccountEditorPage_NewsletterManager .tabs > .tab > .content > .note {
    padding: 2rem;
    margin-bottom: 1rem;
    border: 1px solid var(--highlighting-text-color);
    background-color: #FFFFFF;
}

.ShopAccountEditorPage_NewsletterManager .tabs > .tab.secondary > .content > .note {
    border: 1px solid var(--main-text-color);
}


.ShopAccountEditorPage_NewsletterManager .tabs > .tab > .content > .note > p:last-child {
    margin-bottom: 0;
}

.ShopAccountEditorPage_NewsletterManager .tabs > .tab > .content > .note .header {
    display: block;
    color: var(--highlighting-text-color);
}

.ShopAccountEditorPage_NewsletterManager #newsletter-customers .recipient-list {

}

.ShopAccountEditorPage_NewsletterManager #newsletter-customers .recipient-list .list-header {
    margin-bottom: 1em;
}

.ShopAccountEditorPage_NewsletterManager #newsletter-customers .recipient-list ul.list-data {
    display: block;
    margin: 0;
    padding: 0;
}

.ShopAccountEditorPage_NewsletterManager #newsletter-customers .recipient-list .list-header,
.ShopAccountEditorPage_NewsletterManager #newsletter-customers .recipient-list ul.list-data li {
    list-style: none;
    display: flex;
    flex-flow: row nowrap;
    column-gap: 0.5em;
}

.ShopAccountEditorPage_NewsletterManager #newsletter-customers .recipient-list ul.list-data li:hover {
    background-color: #EEEEEE;
}

.ShopAccountEditorPage_NewsletterManager #newsletter-customers .recipient-list .list-header .column {
    color: var(--highlighting-text-color);
}

.ShopAccountEditorPage_NewsletterManager #newsletter-customers .recipient-list .list-header .column,
.ShopAccountEditorPage_NewsletterManager #newsletter-customers .recipient-list .list-data .column 
{
    overflow: hidden;
    text-overflow: ellipsis;
}

.ShopAccountEditorPage_NewsletterManager #newsletter-customers .recipient-list .list-header .column.name,
.ShopAccountEditorPage_NewsletterManager #newsletter-customers .recipient-list .list-data .column.name
{
    flex: 0 0 30%;
}

.ShopAccountEditorPage_NewsletterManager #newsletter-customers .recipient-list .list-header .column.salutation,
.ShopAccountEditorPage_NewsletterManager #newsletter-customers .recipient-list .list-data .column.salutation
{
    flex: 0 0 30%;
}

.ShopAccountEditorPage_NewsletterManager #newsletter-customers .recipient-list .list-header .column.email,
.ShopAccountEditorPage_NewsletterManager #newsletter-customers .recipient-list .list-data .column.email
{
    flex: 0 0 30%;
}

#Form_getAccountAbsenceManagerForm {

}

#Form_getAccountAbsenceManagerForm .column-wrapper {
    display: flex;
    flex-flow: row nowrap;
    column-gap: 2em;
    align-items: flex-start;
    column-gap: 2em;
}

#Form_getAccountAbsenceManagerForm .column-wrapper .column-left {
    flex: 0 0 400px;
    padding-top: 0.5em;
}

#Form_getAccountAbsenceManagerForm .column-wrapper .column-left > * {
    margin-bottom: 0.5em;
}

#Form_getAccountAbsenceManagerForm .column-wrapper .column-right {
    flex: 1 1 100%;
}

#Form_getAccountAbsenceManagerForm .column-wrapper .column-right > h3 {
    margin-top: 0;
}

#Form_getAccountAbsenceManagerForm .column-wrapper .column-right .absence-preview {
    border: 1px solid var(--highlighting-text-color);
}

#Form_getAccountAbsenceManagerForm .column-wrapper .column-right .absence-preview img {
    display: block;
    max-width: 100%;
    height: auto;    
}

.absence-notification {
    display: flex;
    flex-flow: row nowrap;
    column-gap: 1em;
    align-items: center;
    background-color: #eba307;
    border: 0px solid var(--highlighting-text-color);
    color: #FFFFFF;
    margin-bottom: 2em;
    border-radius: 0.5em;
    font-size: 1em;
    max-width: 100%;
    width: 900px;
}

.absence-notification:before {
    content: '\f017';
    display: var(--fa-display, inline-block);
    margin-right: 0.5em;
    box-sizing: border-box;
    font-family: "FontAwesome";
    font-weight: var(--fa-style, 400);
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 2.5em;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    padding: 1em 0 1em 1em;
    box-sizing: border-box;
}

.absence-notification  > .wrapper {
    box-sizing: border-box;
    padding: 1em 2em 1em 1em;
}

.absence-notification  > .wrapper > p {
    margin: 0;
    padding: 0;
    font-size: 0.8em;
    font-weight: bold;
}