@import './reset.css';

* {
    box-sizing: border-box;
}

html {
    width: 100%;
}

body {
    background: #f6f6f6;
    color: #333;
    font-family: "Signika Negative", serif;
    font-size: calc(15px + 0.390625vw);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

@media (min-width:768px) {
    body {
        font-size: 18px;
    }
}

@media (max-width:768px) {}


header {
    width: 100%;
    z-index: 60;
    background: rgba(255, 255, 255, 1);
    border-bottom: solid 1px #ddd;
    font-size: 2.4rem;
    font-weight: 700;
    text-align: left;
    font-family: "Afacad", sans-serif;
}

.header_content {
    display: flex;
    margin: 0 auto;
    max-width: 1200px;
    padding: 25px 55px 25px 55px;
    justify-content: center;
}

.header_icon {
    margin-left: auto;
    align-self: center;
    text-align: right;
}

.header_icon svg:hover {
    fill: rgb(255, 174, 0);
}

.header_icon svg {
    cursor: pointer;
    display: block;
    width: 32px;
    height: 32px;
}

@media screen and (max-width: 1120px) {
    .header_content {
        text-align: center;
        padding: 25px 50px 25px 50px;
    }
}

@media (max-width:768px) {
    header {
        border-bottom: solid 1px #aaa;
    }

    .header_content {
        padding: 4vw 4vw 4vw 4vw;
    }
}

footer {
    margin-top: auto;
    max-width: 100%;
    min-height: 40px;

    background-color: #fff;
    border-top: solid 1px #ddd;
    align-content: center;
    text-align: center;
    font-size: 0.8rem;

}

footer>div {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: center;
}

footer>div div {
    padding: 0 10px;
}

footer>div+div {
    padding-top: 0;
    font-weight: 700;
    font-size: 0.75rem;
}


a {
    text-decoration: none;
    color: #000;
}

a:hover {
    color: rgb(255, 174, 0);
}

h1 {
    font-size: 1.8em;
    font-weight: 700;
}

h2 {
    font-size: 1.2em;
    font-weight: 700;
    text-transform: uppercase;
}

h2.pending {
    color: #999;
    font-style: italic;
}

h3 {
    font-size: 1.2em;
    font-weight: 600;
}

h4 {
    font-size: 1em;
    font-weight: 500;
}

h5 {
    font-size: 0.9em;
    font-weight: 700;
}

p {
    font-size: 0.9em;
    font-weight: 500;
}

strong {
    font-weight: 600;
}
/*
hr {
    display: block;
    height: 0px;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, .18);
    box-shadow: 0px 1px 0px rgba(255, 255, 255, 0.95);
    margin: 20px 0px;
    padding: 0px;
}
    */
hr {
    border: 0;
    border-bottom: 1px dashed #aaa;
    background: none;
    margin: 25px 0;
}

h2+div,
h3+div {
    margin-top: 20px;
}



/*
    MAIN
*/

.main {
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 10px;
    padding: 20px;
    line-height: 1.5;

    display: flex;
    flex-direction: row-reverse;
    align-self: stretch;
    flex-wrap: nowrap;
}

@media screen and (max-width: 1120px) {
    .main {
        max-width: 800px;
        flex-direction: column;
    }
}

@media (max-width:768px) {
    .main {
        padding: 0 0 1vw 0;
    }
}







/*
    CONTENT
*/

.content {
    flex: 1 1;
    margin-left: 15px;
}

.content+.content {
    margin-left: 0px;
    margin-right: 15px;
}

@media screen and (max-width: 1120px) {
    .content {
        margin-left: 0px;
    }

    .content+.content {
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 3vw;
    }
}

@media screen and (max-width: 768px) {
    .content+.content {
        margin-top: 0vw;
    }
}



/*
    BLOCK
*/

.block {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: none;
    border: solid 1px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 30px;
}

.block+.block {
    margin-top: 30px;
}

.block.dark {
    background-color: #333;
    border-radius: 3px;
    border: none;
    border: solid 1px #000;
    color: #fff;
}

.content_complete {
    padding: 0 0 0 2px;
}

@media screen and (max-width: 1120px) {
    .block+.block {
        margin-top: 3vw;
    }

    .block.dark {
        background-color: #d4d4d4;
        background-color: #161616;
        margin-top: 0;

        color: #000;
        color: #fff;
    }
}

@media screen and (max-width: 768px) {
    .block {
        border-radius: 0px;
        border-left: 0;
        border-right: 0;
        padding: 30px 20px;
    }

    .block.dark {
        border-radius: 0px;
        border-left: 0;
        border-right: 0;
        border-top: 0;
        border-bottom: solid 0px #ccc;
    }

    h2 {
        padding: 0 10px;
    }

    .content_complete {
        padding: 0 10px;
    }

    .block+.block {
        margin-top: 2vw;
    }
}

/*
    ROW
*/

.row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.row_list {
    font-size: 1rem;
}

.row+.row {
    margin-top: 15px;
}

.row.spaced {
    margin-top: 25px;
}

.row.nospace {
    margin-top: 0px;
}
.row.spacebelow {
    margin-bottom: 25px;
}

.row+div {
    margin-top: 10px;
}

div+.row {
    margin-top: 25px;
}

div+.row.closer {
    margin-top: 20px;
}

.wrapper_block+.wrapper_block {
    margin-top: 10px;
}

.row.close+.row.close,
.row.below+.row.close {
    margin-top: 10px;
}

.row+.row.below {
    margin-top: 0px;
    font-size: 0.8rem;
}

.row_wrapper+.row_wrapper {
    margin-top: 10px;
}

.row.spaceout {
    margin-top: 0px;
    margin-bottom: 0px;
}

.row_group {
    padding: 15px 0 15px 0;
}

.row_group.nospace {
    padding-top: 0px;
}

@media screen and (max-width: 1120px) {

    .row.close+.row.close,
    .row.below+.row.close {
        margin-top: 8px;
    }

    div+.row {
        margin-top: 15px;
    }
}

@media (max-width:768px) {

    .row.close+.row.close,
    .row.below+.row.close {
        margin-top: 5px;
    }
}

/*
    ITEM
*/
.item_list_source {
    padding-top: 2px;
    width: 8%;
    font-size: 0.65em;
    font-weight: 400;
    color: #ddd;
}

.item_list_source a:hover {
    color: rgb(255, 174, 0);
}

.item_list_source a {
    color: #ddd;
}

.item_list_desc {
    width: 49%;
    font-size: 0.9em;
    font-weight: 400;
}

.item_list_desc_discount {
    width: 39%;
    font-size: 0.9em;
    font-weight: 400;
}

.row.below .item_list_desc,
.row.below .item_list_price,
.row.below .item_list_quantity,
.row.below .item_list_desc_discount {
    font-weight: 300;
}

.item_list_price {
    width: 15%;
    font-size: 0.85em;
    font-weight: 500;
    text-align: center;
}

.item_list_quantity {
    width: 15%;
    font-size: 0.85em;
    font-weight: 400;
    text-align: center;
}

.item_list_discount {
    width: 10%;
    font-size: 0.85em;
    font-weight: 400;
    text-align: center;
}

.item_list_price_total {
    width: 13%;
    font-size: 0.85em;
    font-weight: 500;
    text-align: right;
}


.item_list_gesamt {
    margin-left: auto;
    margin-left: 0;
    width: 80%;
    font-size: 1em;
    font-weight: 700;
}

.item_list_gesamt_price {
    width: 20%;
    font-size: 1em;
    font-weight: 600;
    text-align: right;
}

.item_duo_left {
    margin-right: 2%;
    width: 48%;
}

.item_duo_right {
    margin-left: 2%;
    width: 48%;
}

.item_large_left {
    margin-right: 2%;
    width: 58%;
}

.item_small_right {
    margin-left: 2%;
    width: 38%;
}



.item_small_left {
    margin-right: 2%;
    width: 38%;
}

.item_large_right {
    margin-left: 2%;
    width: 58%;
}



.item_right {
    width: 40%;
    margin-left: auto;
    text-align: right;
}

.item_header {
    width: 40%;
}

.item_icon_text {
    margin-left: auto;
    margin-right: 8px;
    font-size: 0.9rem;
    margin-top: 5px;
    text-transform: uppercase;
}

.item_icon:hover {
    fill: rgb(150, 0, 0);
}

.item_icon {
    width: 20px;
    margin-top: 5px;
    text-align: right;
}

.item_fat {
    color: #fff;
}

@media screen and (max-width: 1120px) {
    .item_fat {
        color: #000;
        color: #fff;
    }

    .item_list_source {
        color: #666;
    }

    .item_list_source a:hover {
        color: rgb(255, 174, 0);
    }

    .item_list_source a {
        color: #444;
        color: #ddd;
    }

    .item_list_desc {
        font-size: 0.85em;
    }
}

@media screen and (max-width: 768px) {
    .item_list_desc {
        width: 49%;
        font-size: 0.8em;
    }
    .item_list_desc_discount {
        width: 39%;
        font-size: 0.8em;
    }

    .item_list_price {
        width: 14%;
        font-size: 0.75em;
    }

    .item_list_discount {
        font-size: 0.75em;
    }

    .item_list_quantity {
        width: 14%;
        font-size: 0.75em;
    }

    .item_list_price_total {
        font-size: 0.75em;
    }
}
@media screen and (max-width: 500px) {
    .item_list_desc {
        width: 51%;
        font-size: 0.8em;
    }
    .item_list_desc_discount {
        width: 41%;
        font-size: 0.7em;
    }
    .item_list_price {
        padding-top: 1px;
        font-size: 0.65em;
    }
    .item_list_discount {
        padding-top: 1px;
        font-size: 0.65em;
    }
    .item_list_quantity {
        width: 12%;
        padding-top: 1px;
        font-size: 0.65em;
    }
    .item_list_price_total {
        padding-top: 1px;
        font-size: 0.65em;
    }
}

/*
    TEXT
*/

.text_normal {
    font-size: 0.95rem;
    font-weight: 500;
}

.text_alert {
    color: #ac2828;
    text-indent: 5px;
    font-size: 0.85rem;
    font-weight: 500;
}

.text_small {
    font-size: 0.9rem;
    font-weight: 400;
}

.text_smaller {
    font-size: 0.85rem;
    font-weight: 400;
    color: #666;
}

.text_tiny {
    font-size: 0.7rem;
    font-weight: 300;
    color: #888;
}

.text+.text {
    margin-top: 2px;
}

.text_normal+.text_smaller {
    margin-top: 5px;
}

.text_small+.text_normal {
    margin-top: 10px;
}


/*
    BUTTON
*/

button:hover {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.95) 0%, rgba(40, 40, 40, 0.95) 100%);
}

button {
    cursor: pointer;
    background: linear-gradient(0deg, rgba(10, 10, 10, 0.95) 0%, rgba(50, 50, 50, 0.95) 100%);
    background: rgb(40, 40, 40);
    border-radius: 5px;
    font-family: "Signika Negative", serif;
    color: #eee;
    font-weight: 500;
    font-size: 1.1rem;
    width: 100%;
    padding: 12px;
    border: none;
}

button.level {
    width: 60%;
    margin: 0 auto;
    padding: 6px;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.text_button {
    font-size: 0.9rem;
    font-weight: 400;
    align-self: center;
}

.link_button {
    display: flex;
    font-size: 0.85rem;
    margin-left: 10px;
    line-height: 0;
    font-weight: 500;
    text-transform: uppercase;
    color: #444;
}

.link_button.above {
    margin-bottom: 10px;
}

.link_button svg {
    margin-right: 10px;
    fill: #444;
    width: 12px;
    height: 12px;
    align-self: center;
}

.link_button div {
    align-self: center;
    padding-top: 1px;
}

div.code_local_payment_button {
    cursor: pointer;
    background: linear-gradient(0deg, rgba(10, 10, 10, 0.95) 0%, rgba(50, 50, 50, 0.95) 100%);
    border-radius: 5px;
    font-family: "Signika Negative", serif;
    color: #eee;
    font-weight: 500;
    font-size: 1.1rem;
    width: 100%;
    padding: 12px;
    border: none;
    margin-top: 20px;
    text-align: center;
}





label {
    width: 100%;
    position: relative;
    display: inline-block;
}

label span {
    padding: 10px;
    pointer-events: none;
    position: absolute;
    left: 10px;
    top: 4px;
    transition: 0.2s;
    opacity: 0.5;
    font-family: monospace;
    font-family: "Signika Negative", serif;
    font-size: 0.85rem;
    margin-top: 0px;
}

input {
    width: 100%;
    background: linear-gradient(0deg, rgba(250, 250, 250, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
    background: #f8f8f8;
    border-radius: 3px;
    box-shadow:
        inset 0 1px 2px rgba(0, 0, 0, 0.35),
        inset 0 -1px 1px rgba(0, 0, 0, 0.05),
        0 1px 0px rgba(255, 255, 255, 1);
    border: none;
    font-weight: 500;
    padding: 14px 15px 12px 15px;
    font-family: "Afacad", sans-serif;
    font-family: monospace;
    font-family: "Signika Negative", serif;
    font-size: 0.9rem;
}

input:focus,
input:not(:placeholder-shown) {
    border-color: #000;
    background: linear-gradient(0deg, rgba(250, 250, 250, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

input:focus+span,
input:not(:placeholder-shown)+span {
    opacity: 1;
    color: #444;
    background-color: #fff;
    transform: scale(0.85) translateY(-70%) translateX(-5px);
    padding: 5px;
}

input.alert {
    background-color: rgba(255, 0, 0, 0.18);
}


.info {
    width: 100%;
    padding: 20px;
    margin-top: 15px;
    background-color: #f8f8f8;
    border: solid 1px #ddd;
    border-radius: 3px;

    font-size: 1.2em;
    font-weight: 700;
    text-transform: uppercase;
}



.select_item {
    border: 1px solid #dfdfdf;
    border-radius: 3px 3px 0px 0px;
    color: #333;
    background-color: rgb(250, 250, 250);
}

.select_item_active {
    background-color: #fff;
}

.select_item_header {
    padding: 15px;
    cursor: pointer;
    user-select: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
}

.select_item_header svg {
    width: 18px;
    margin-right: 25px;
}

.select_item_header_text {
    display: flex;
    flex: 1 0 auto;
}

.select_item_header_text div+div {
    text-align: right;
    margin-left: auto;
}

.select_item_content {
    display: none;
    padding: 0px 20px 15px 20px;
    font-size: 0.9rem;
    font-weight: 400;
}

.select_item_content_smaller {
    font-size: 0.85rem;
    margin-top: 2px;
}



.accordion_item {
    border: 1px solid #dfdfdf;
    border-radius: 3px 3px 0px 0px;
    color: #999;
    background-color: rgb(250, 250, 250);
    font-weight: 400;
}

.accordion_item+.accordion_item {
    border-top: none;
    border-radius: 0px 0px 3px 3px;
}

.accordion_item+.accordion_item.first_item {
    border: 1px solid #dfdfdf;
    border-radius: 3px 3px 0px 0px;
}

.accordion_item_close {
    border-bottom: none;
    border-radius: 0;
}

.accordion_item.accordion_active {
    background-color: #fff;
    color: #222;
    font-weight: 700;
}

.accordion_item.accordion_active .accordion-header {
    color: #000;
}

.accordion_header {
    padding: 15px;
    cursor: pointer;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 0.95rem;
    display: flex;
}

.accordion_header.spaced {
    padding: 25px;
}

.accordion_header svg {
    width: 18px;
    margin-right: 25px;
}

.accordion_header svg.accordion_radio {
    margin-right: 10px;
    margin-top: 1px;
    padding-top: 2px;
}

.accordion_header svg.accordion_icon {
    fill: #333;
    margin-right: 30px;
}

.accordion_header_text {
    display: flex;
    flex: 1 0 auto;
}

.accordion_header_text div+div {
    text-align: right;
    margin-left: auto;
}

.accordion_content {
    padding: 0px 20px 15px 20px;
    font-size: 0.9rem;
    font-weight: 400;
}

.accordion_content.spaced {
    padding: 0px 20px 30px 20px;
}

.accordion_content_smaller {
    font-size: 0.85rem;
    margin-top: 2px;
}

.accordion_header.code_state_accordion_closed+.accordion_content {
    display: none;
}

@media (max-width:768px) {
    /*
    .accordion  {
        margin-left: -10px;
        margin-right: -10px;
    }
    */
}




#payment-form {
    margin-top: 0px;
}

#payment-form button {
    margin-top: 20px;
}

#payment-message {
    margin-top: 15px;
    font-size: 0.95em;
    font-weight: 500;
    color: #ac2828;
    text-align: center;
}

.hidden {
    display: none;
}

.spinner,
.spinner:before,
.spinner:after {
    border-radius: 50%;
}

.spinner {
    color: #ffffff;
    font-size: 22px;
    text-indent: -99999px;
    margin: 0px auto;
    position: relative;
    width: 20px;
    height: 20px;
    box-shadow: inset 0 0 0 2px;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.spinner:before,
.spinner:after {
    position: absolute;
    content: "";
}

.spinner:before {
    width: 10.4px;
    height: 20.4px;
    background: #0055DE;
    background: rgb(40, 40, 40);
    border-radius: 20.4px 0 0 20.4px;
    top: -0.2px;
    left: -0.2px;
    -webkit-transform-origin: 10.4px 10.2px;
    transform-origin: 10.4px 10.2px;
    -webkit-animation: loading 2s infinite ease 1.5s;
    animation: loading 2s infinite ease 1.5s;
}

.spinner:after {
    width: 10.4px;
    height: 10.2px;
    background: #0055DE;
    background: rgb(40, 40, 40);
    border-radius: 0 10.2px 10.2px 0;
    top: -0.1px;
    left: 10.2px;
    -webkit-transform-origin: 0px 10.2px;
    transform-origin: 0px 10.2px;
    -webkit-animation: loading 2s infinite ease;
    animation: loading 2s infinite ease;
}

@-webkit-keyframes loading {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loading {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


#code_target_summary_invoice {
    display: none;
}

#code_target_summary_delivery {
    display: none;
}

#code_target_summary_total_price_invoice {
    display: none;
}

#code_target_summary_total_price_delivery {
    display: none;
}

#code_target_summary_total_price_delivery_invoice {
    display: none;
}

.code_target_delivery_edit_button {
    display: none;
}

#code_block_info_step_pending {
    display: none;
}

#code_block_info_step_active {
    display: block;
}

#code_block_info_output {
    display: none;
}

#code_block_info_step_complete {
    display: none;
}

#code_block_delivery_step_pending {
    display: block;
}

#code_block_delivery_step_active {
    display: none;
}

#code_block_delivery_step_complete {
    display: none;
}

#code_target_delivery_complete_pickup {
    display: none;
}

#code_target_delivery_complete_send {
    display: none;
}

#code_block_payment_step_pending {
    display: block;
}

#code_block_payment_step_active {
    display: none;
}

#code_block_payment_send {
    display: none;
}

#code_payment_step_complete {
    display: none;
}

.code_stripe_payment_button {
    display: none;
}


#code_block_guest_access {
}

#code_block_account_access {
    display: none;
}

#code_block_login_output {
    display: none;
}

.code_state_no_access {
    display: none;
}

#code_block_account_password {
    display: none;
}

#code_block_password_request_output {
    display: none;
}

#code_block_account_password_code {
    display: none;
}

#code_block_password_code_output {
    display: none;
}

#code_block_account_password_reset {
    display: none;
}

#code_block_password_reset_output {
    display: none;
}

.code_block_signup_company {
    display: none;
}

#code_block_signup_output {
    display: none;
}

#code_block_signup_code_output {
    display: none;
}

#code_block_account_signup_code {
    display: none;
}

#code_block_signup_resend_code {
    display: none;
}

#code_block_signup_open_login {
    display: none;
}

#code_block_signup_code_open_login {
    display: none;
}

#code_block_edit_output {
    display: none;
}

.code_block_send_alt_company {
    display: none;
}


#code_block_info_complete_company{
    display: none;
}
.code_block_accouny_company{
    display: none;
}