/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600&display=swap');




/* La Bonne Excuse */
.labonne-banner {
    background: #5e212b;
    color: #fff;
    padding: 10px 20px;
    border-radius: 3px;
    margin: 0 0 20px;
}

.labonne-banner a {
    color: #fff;
}

@media (max-width: 600px) {
    .labonne-banner {
        margin: 0 10px 20px;
    }
}
.labonne-banner + #menu .product-image {
    width: 30%;
    padding: 0 0 0 10px;
    margin: 0;
}
.labonne-banner + #menu .product-image img {
    width: 100%;
}

/* End La Bonne Excuse */

*{
    -webkit-box-sizing:border-box;
            box-sizing:border-box;
}
html{
    font-size:62.5%;
    margin:0;
    padding:0;
}
body{
    font-size:1.6rem;
    color:#353535;
    font-family: 'Roboto', sans-serif;
    margin:0;
    background: #f6f6f6;

    position: relative;
    overflow-x: hidden;
    width: 100%;
    height: 100%;
}
body.show_shoppingcart {
    position: fixed;
}
h1,h2,h3,h4{
    margin: 0;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
}
:focus {
    outline: none;
}
img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.button, button, input[type="submit"] {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 5px 20px;
    font-size: 1.6rem;
    line-height: 1.5;
    border-radius: 3px;
    -webkit-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    -o-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    -webkit-appearance: none;-moz-appearance: none;appearance: none;
    color: #fff;
    background-color: #ff2446;
    border-color: #ff2446;

    background-color: rgb(var(--color1));
    border-color: rgb(var(--color1));
}
.button:hover, button:hover, input[type="submit"]:hover {
    color: #fff;

    background-color: #ff2446cc;
    border-color: #ff2446;

    background-color: rgba(var(--color1), 0.8);
    border-color: rgb(var(--color1));
    cursor: pointer;
}
.button:focus, button:focus, input[type="submit"]:focus {
    -webkit-box-shadow: 0 0 0 0.15rem #ff2446cc;
            box-shadow: 0 0 0 0.15rem #ff2446cc;
    -webkit-box-shadow: 0 0 0 0.15rem rgba(var(--color1), 0.8);
            box-shadow: 0 0 0 0.15rem rgba(var(--color1), 0.8);
}
button.highlight {
    background: #ff2446cc;
    background: rgba(var(--color1), 0.8);
}
button[disabled="disabled"],
button[disabled],
input[disabled="disabled"],
input[disabled],
input[disabled="disabled"] + label,
input[disabled] + label {
    cursor: not-allowed!important;
}


/* Inputs */
::-webkit-input-placeholder {
    color: #d4d4d4;
}
::-moz-placeholder {
    color: #d4d4d4;
}
:-ms-input-placeholder {
    color: #d4d4d4;
}
::-ms-input-placeholder {
    color: #d4d4d4;
}
::placeholder {
    color: #d4d4d4;
}
select {
    height: 40px;
}
.formInput {
    margin: 0 0 20px;
    font-family: Roboto, sans-serif;
    font-size: 16px;
    line-height: 20px;
}
.formInput label {
    margin-bottom: 3px;
    display: block;
    color: #303030;
    font-size: 14px;
    font-weight: 600;
    font-family:inherit;
}
.formInput.error label {
    color: #ff2446;
    color: rgb(var(--color1));
}
.formInput input[type="text"], .formInput input[type="email"], .formInput input[type="tel"], select {
    width: 100%!important;
    -webkit-appearance: none!important;
    border: none;
    padding: 7px 15px!important;
    border-radius: 3px!important;
    background: #fff!important;
    font-family: 'Roboto',sans-serif;
    font-size: 14px;
    line-height: 24px;
    border: 1px solid #ccc;
}
form#customer_info_form > div {
    margin: 0 0 20px;
}
.formInputWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}
.formInputWrapper.customer-name > .formInput {
    width: 40%;
}
.formInputWrapper.customer-name > .formInput:nth-child(2) {
    width: 30%;
    padding: 0 15px;
}

.formInputWrapper.customer-street > .formInput,
.formInputWrapper.customer-zipcode-and-city > .formInput{
    width: 50%;
}
.formInputWrapper.customer-street > .formInput:nth-child(2),
.formInputWrapper.customer-zipcode-and-city > .formInput:nth-child(2){
    padding-left: 7.5px;
}
.formInputWrapper.customer-street > .formInput:nth-child(1),
.formInputWrapper.customer-zipcode-and-city > .formInput:nth-child(1){
    padding-right: 7.5px;
}
select {
    width: auto!important;
    -webkit-appearance: auto!important;
}
.formInput input:focus,
.formInput textarea:focus {
    -webkit-box-shadow: 0 0 10px #00000026;
            box-shadow: 0 0 10px #00000026;
}
input[type="datetime-local"] {
    height: 42px;
}
.formInput textarea{
    width: 100%;
    -webkit-appearance: none!important;
    border: none;
    padding: 7px 15px!important;
    min-height: 110px;
    border-radius: 3px;
    background: #fff;
    font-family: 'Roboto',sans-serif;
    font-size: 14px;
    line-height: 24px;
    border: 1px solid #ccc;
}
.formInput input[type="number"] {
    -webkit-appearance: none;
    border: none;
    text-align: center;
    padding: 5px!important;
    width: 40px!important;
    background: #f4f5f5;
    font-family: 'Roboto',sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
}
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  -webkit-appearance: none;
          appearance: none;
}
/* Checkbox & radio */
input[type="checkbox"]{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #000;
    border-radius:3px;
    cursor: pointer;
    margin:0;
    padding: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
}
input[type="checkbox"] + label {
    line-height: 24px;
}
input[type="checkbox"]:checked{
    background-image:url(../images/checkbox-check.svg);
    background-repeat:no-repeat;
    background-size:12px auto;
    background-position:center;
    background-color: #000;
}

input[type="radio"] {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #000;
    border-radius: 100%;
    cursor: pointer;
    margin: 0;
    padding: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
}
input[type="radio"] + label {
    line-height: 24px;
}
input[type="radio"]:checked {
    background: #000;
    -webkit-box-shadow: inset 0 0 0px 4px #fff;
            box-shadow: inset 0 0 0px 4px #fff;
}

/* explain */
.explain {
    font-size: 13px;
    line-height: 20px;
    margin: 5px 0 10px 0;
    padding-left: 30px;
    position: relative;
}
.explain:before {
    content: '?';
    background: #ff2446;
    background: rgb(var(--color1));
    width: 18px;
    height: 18px;
    line-height: 18px;
    display: inline-block;
    color: #fff;
    text-align: center;
    border-radius: 100%;
    position: absolute;
    left: 0;
    font-weight: bold;
    top: 2px;
}

/* Header */
header {
    padding: 10px 0;
    background: #fff;
    border-bottom: 1px solid #cccccc;
}
header .logo {
    display: block;
    font-size: 0;
    line-height: 0;
}
header .logo img {
    height: auto!important;
}
header .logo img {
    max-width: 400px;
    max-height: 50px;
    width: auto;
}
header .flex-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
header .information {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.4rem;
    line-height: 2rem;
}
header .information > div {
    margin-left: 15px;
}
header .information a {
    color: #6e6e6e;
    text-decoration: none;
}
header .information a:hover {
    color: #353535;
}

/* Main */
main {
    padding: 40px 0;
}
.sw{
    max-width:1400px;
    margin:0 auto;
    padding:0 15px;
}
.order-wrapper{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -ms-flex-wrap:wrap;
        flex-wrap:wrap;
}
.categories-menu {
    width: 200px;
    padding-left: 20px;
}
.products-outer{
    width: calc(100% - 550px);
    padding: 0 20px;
}
.sidebar{
    width: 350px;
}

/* Footer */
footer {
    padding: 20px;
    text-align: center;
}
footer a {
    color: #6e6e6e;
    font-size: 1.4rem;
    line-height: 2rem;
    text-decoration: none;
}
footer a:hover {
    color: #353535;
}
.footer-links a {
    margin: 5px 15px;
}
.footer-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

/* About us page */
.about_us_content {
    line-height: 26px;
}
.about_us_content, .about_us_title {
    max-width: 800px;
    margin: 0 auto;
}
.about_us_title {
    margin-bottom: 20px;
}

/* Thankyou page */
.thankyou-outer h1 {
    margin: 0 0 20px;
}
.thankyou-outer {
    margin: 60px 0;
    text-align: center;
}
/*Error page*/
.error-outer {
    margin: 60px 0;
    text-align: center;
}
.error-outer h1 {
    margin: 0 0 20px 0;
    color: #ff2446;
}
.failure-options a.button {
    text-decoration: none;
    margin-top: 25px;
}

/* Categories menu */
.categories-menu-inner {
    position: fixed;
    width: 190px;
}
.categorymenu-line {
    color: #6e6e6e;
    font-size: 1.6rem;
    line-height: 2.4rem;
    margin: 0 0 10px;
}
.categorymenu-line.active {
    color: #000;
}
.categorymenu-line:hover {
    cursor: pointer;
    color: #353535;
}

/* Progress bar */
.progress-container {
    width: 3px;
    height: 100%;
    background: #ccc;
    position: absolute;
    left: -20px;
    top: -5px;
} 
.progress-bar {
    width: 3px;
    background: #ff2446;
    background: rgb(var(--color1));
    height: 0%;
}


/* Categories */
.category {
    margin: 0 0 30px;
}
.category:last-child {
    margin: 0;
}
.category h2 {
    margin: 0 0 20px;
}
.subcategory h3 {
    font-weight: 400;
    font-size: 1.8rem;
    margin: 0 0 20px;
    color: #6e6e6e;
}


/* Products */
.products {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.products > div:nth-child(odd) {
    margin-right: 10px;
}
.products > div:nth-child(even) {
    margin-left: 10px;
}
.product {
    width: calc(50% - 10px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 20px;
    position: relative;
}
.product-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;

    background: #fff;
    color: #6e6e6e;
    padding: 15px;
    padding-left: 10px;
    border-left: 5px solid #fff;
    font-size: 14px;
    border-radius: 3px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
}
.product-info {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}
.product-image {
    width: 140px;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-left: 10px;
}
.product-image img {
    border-radius: 3px;
}
.product.active .product-inner {
    border-left: 5px solid #ff2446;
    border-left: 5px solid rgb(var(--color1));
}
/*
.product-inner .product-inner_count {
    position: absolute;
    width: 24px;
    height: 24px;
    right: 2px;
    top: -12px;
    background: rgb(var(--color1));
    border-radius: 100%;
    text-align: center;
    color: #fff;
    line-height: 24px;
}
*/
.product-inner .product-inner_count {
    color: #ff2446;
    color: rgb(var(--color1));
    display: inline-block;
    width: 30px;
    font-weight: bold;
}
.product-inner .product-inner_count:after {
    content: 'x';
}
.product.has-extras .product-inner .product-inner_count,
.product-inner .product-inner_count:empty {
    display: none;
}
.product-inner:hover {
    cursor: pointer;
    -webkit-box-shadow: 0px 10px 15px #0000001f;
            box-shadow: 0px 10px 15px #0000001f;
}
.product-inner:focus {
    -webkit-box-shadow: 0px 10px 15px #00000014;
            box-shadow: 0px 10px 15px #00000014;
    background: #f7f7f7;
}
.product-inner:active {
    -webkit-box-shadow: 0px 10px 15px #00000014;
            box-shadow: 0px 10px 15px #00000014;
    background: #f7f7f7;
}
.product_name {
    font-size: 18px;
    line-height: 22px;
    font-weight: bold;
}
.product_info {
    padding-right: 5px;
}
.product_name {
    color: #303030;
    font-size: 16px;
}
.product_description,
.product_price {
    color: #6e6e6e;
    font-size: 14px;
    padding-top: 8px;
}
.product_image {
    max-width: 130px!important;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}
.product_image img {
    width: 100%;
    border-radius: 3px;
}
/* Additions */
.product .additions {
    background: #fff;
    padding: 15px;
    -webkit-box-shadow: 0px 22px 24px 0px rgb(46 51 51 / 15%);
            box-shadow: 0px 22px 24px 0px rgb(46 51 51 / 15%);
    position: absolute;
    width: 100%;
    z-index: 1;
    top: 100%;
    display: none;
}
.product .additions .required_additions, 
.product .additions .optional_additions {
    margin: 0 0 20px;
}
.product .additions_title {
    font-size: 1.4rem;
    font-weight: bold;
}
.product.openAdditions .additions {
    display: block;
}
.product .additions button {
    width: 100%;
}
.product .addition {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 5px 0;
}
.product .addition input {
    margin: 0 10px 0 0;
}
.product .addition label {
    width: 100%;
    color: #6e6e6e;
    font-size: 14px;
}
.product .addition label span {
    float: right;
}

/* Shoppingcart */
.shoppingcart {
    background: #fff;
    padding: 15px 15px 10px 15px;
    -webkit-box-shadow: 0px 22px 24px 0px rgb(46 51 51 / 7%);
            box-shadow: 0px 22px 24px 0px rgb(46 51 51 / 7%);
    border-radius: 3px;
    font-size: 13px;
    position: absolute;
    width: 350px;
}
body.sticky .shoppingcart {
    position: fixed;
    top: 40px;
}
.shoppingcart-image {
    width: calc(100% + 30px);
    margin-top: -15px;
    margin-left: -15px;
    margin-bottom: 15px;
    height: 130px;
    border-radius: 3px 3px 0 0;
    background-size: cover;
}
.shoppingcart-intro {
    display: none;
}
.shoppingcart-items::-webkit-scrollbar {
    width: 5px;
}
.shoppingcart-items::-webkit-scrollbar-track {
    background: #f4f5f5;
}
.shoppingcart-items::-webkit-scrollbar-thumb {
    background: #888;
}
.shoppingcart-items::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.shoppingcart-items {
    max-height: 180px;
    overflow-y: auto;
    padding: 5px 5px 0 5px;
}
.shoppingcart-order {
    margin: 15px 5px 0px;
    color: #6e6e6e;
}
.shopping-cart-buttons, .shopping-cart-total {
    margin-left: 5px;
    margin-right: 5px;
}
.shoppingcart-buttons button {
    width: 100%;
    margin: 0 0 15px;
}
button.change-order {
    background-color: #ff244640;
    border-color: #ff2446;
    color: #ff2446;

    background-color: rgba(var(--color1), 0.25);
    border-color: rgb(var(--color1));
    color: rgb(var(--color1));
    margin-top: 20px;
}
.shoppingcart-buttons .button-container{
    padding-top:15px;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
    -webkit-box-pack:justify;
        -ms-flex-pack:justify;
            justify-content:space-between;
}
.shoppingcart-buttons .button-container > *{
    opacity: .8;
    font-size: 12px;
    cursor: pointer;
    background-color: transparent;
    color: #a9a9a9;
    border-color: #a9a9a9;
}
.shoppingcart-buttons .button-container > .button:first-child {
    border-right: 0;
}
.shoppingcart-buttons .button-container > .button:last-child {
    border-left: 0;
}
.shoppingcart-buttons .button-container > .button:not(.active):hover {
    background-color: #f7f7f7;
}
.shoppingcart-buttons .button-container > .button.active {
    background-color: #ff244640;
    border-color: #ff2446;
    color: #ff2446;

    background-color: rgba(var(--color1), 0.25);
    border-color: rgb(var(--color1));
    color: rgb(var(--color1));
    cursor: pointer;
    opacity: 1;
    border-right: 1px solid;
    border-left: 1px solid;
    font-weight: bold;
}
.shoppingcart-additions {
    color: #828585;
}
.shoppingcart-additions span:after {
    content: ', ';
}
.shoppingcart-additions span:last-child:after {
    display: none;
}
.deliver-button {
    border-radius: 3px 0 0 3px;
}
.takeaway-button {
    border-radius: 0 3px 3px 0;
}
.shoppingcart-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 5px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.shoppingcart-item .product-count {
    color: #000;
}
.shoppingcart-item .product-name {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding-left: 5px;
}
.shoppingcart-item .product-total {
    width: 60px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    text-align: right;
}
.product-count-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 65px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
button.number-button {
    border-radius: 100%;
    padding: 0;
    width: 22px;
    height: 22px;
    line-height: 22px;
    background: transparent;

    color: #ff2446;
    border: 2px solid #ff2446;

    color: rgb(var(--color1));
    border: 2px solid rgb(var(--color1));
    position: relative;
    -webkit-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}
button.number-button.minus:before {
    content: '';
    width: 10px;
    height: 2px;
    position: absolute;
    top: 8px;
    right: 4px;
    z-index: 12;
    background: #ff2446;

    background: rgb(var(--color1));
}
button.number-button.plus:before {
    content: '';
    width: 10px;
    height: 2px;
    position: absolute;
    top: 8px;
    right: 4px;
    z-index: 12;
    background: #ff2446;

    background: rgb(var(--color1));
}
button.number-button.plus:after {
    content: '';
    width: 2px;
    height: 10px;
    position: absolute;
    top: 4px;
    right: 8px;
    z-index: 12;
    background: #ff2446;

    background: rgb(var(--color1));
}
button.number-button:hover {
    background-color: rgb(var(--color1));
    color: #fff;
}
button.number-button:hover:after, 
button.number-button:hover:before {
    background: #fff;
}
button.number-button:active {
    -webkit-box-shadow: 0 0 0 0.15rem #ff244680;
            box-shadow: 0 0 0 0.15rem #ff244680;

    -webkit-box-shadow: 0 0 0 0.15rem rgba(var(--color1), 0.5);

            box-shadow: 0 0 0 0.15rem rgba(var(--color1), 0.5);
}
.shoppingcart-buttons, 
.shoppingcart-total {
    margin-left: 5px;
    margin-right: 5px;
}
.shoppingcart-total {
    padding-top: 20px;
    border-top: 1px solid #dedede;
    margin-top: 15px;
    font-weight: bold;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    color: #000;
}
.shoppingcart-order span {
    color: #000;
}
.orderbutton_outer button.open-cart {
    display: none;
}
.shoppingcart .changebutton_outer {
    display: none;
}

.shoppingcart[data-mode="takeaway"] .shoppingcart-delivery-costs{
    display:none;
}
.shoppingcart-delivery-costs{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px 0 0;
    border-top: 1px solid #dedede;
    margin: 10px 5px 0;
}


.shoppingcart-coupon-code{
    display:none;
}
.shoppingcart-coupon-code.show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    padding-top: 15px;
    border-top: 1px solid #dedede;
    margin-top: 15px;
}
.coupon_input{
    display:none;
    width: 100%;
    padding-top: 15px;
    position: relative;
}
.coupon_input.show {
    display: block;
}
button.coupon_button {
    width: 100%;
    font-size: 1.2rem;
    line-height: 2rem;
    width: 100%;
}
input#couponInput {
    width: 100%;
    -webkit-appearance: none!important;
    border: none;
    padding: 4px 15px!important;
    border-radius: 3px!important;
    background: #fff!important;
    font-family: 'Roboto',sans-serif;
    font-size: 12px;
    line-height: 16px;
    border: 1px solid #ccc;
}
.coupon_submit {
    display: none;
    position: absolute;
    right: 0;
    top: 15px;
    width: 90px;
    height: 26px;
    background-color: #ff2446;
    background-color: rgb(var(--color1));
    border-color: rgb(var(--color1));
    line-height: 2.6rem;
    padding: 0 10px;
    text-align: center;
    color: #fff;
    border-radius: 0px 3px 3px 0px;
    cursor: pointer;
}
.coupon_submit:hover {
    opacity: 0.8;
}
.show_coupon_submit .coupon_submit{
    display:block;
}

.shoppingcart-coupon-code.active_coupon #couponInput {
    display: none;
}
.shoppingcart-coupon-code.active_coupon .coupon_button {
    display: none;
}
.shoppingcart-coupon-code.active_coupon  .coupon_submit {
    display: none;
}
.shoppingcart-coupon-code.active_coupon {
    padding-top: 0;
}
.coupon_row {
    font-weight: bold;
    text-align: center;
}


/* Mobile cart */
.mobile-cart {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 10px 10px 20px 10px;
    border-top: 1px solid #cccccc;
    z-index: 5;
}
.mobile-cart button {
    width: 100%;
}
button.open-cart {
    width: 100%;
    background-image: url(../images/shoppingcart.svg);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: 10px center;
}

/* Mobile submit */
.mobile-submit {
    display: none;
}


/* Order form */
.orderform-outer {
    display: none;
    padding: 40px 0;
}
.orderform-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.orderform-wrapper.loading {
    position: relative;
}
.orderform-wrapper.loading:before {
    content: '';
    position: absolute;
    left: -15px;
    top: -15px;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    background-color: rgb(246 246 246 / 60%);
    cursor: wait;
    z-index: 99;
}
.form-outer {
    width: calc(100% - 550px);
    padding: 0 20px;
    margin-left: 200px;
}
form h2 {
    margin: 0 0 20px;
}
.location-part {
    display: none;
}
.adress-text {
    font-size: 1.6rem;
    line-height: 2.6rem;
    display: inline-block;
    cursor:pointer;
}
.edit-adress {
    width: 20px;
    height: 20px;
    cursor: pointer;
    background-image: url(../images/pencil.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px auto;
    float: right;
    margin-left: 7px;
}
.location-part.loading-api-info input[type='text']{
    background-color:#eee!important;
}
.delivery-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.delivery-method-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 22px;
}
.delivery-method-wrapper input[type="radio"] {
    opacity: 0;
    position: fixed;
    width: 0;
}
.delivery-method-wrapper label {
    display: inline-block;
    background-color: transparent;
    padding: 9px 20px;
    font-size: 16px;
    border: 1px solid #a9a9a9;
    border-radius: 3px;
    font-weight: 500;
    margin-right: 15px;
    cursor: pointer;
    color: #a9a9a9;
    line-height: 20px!important;
}
.delivery-method-wrapper input[type="radio"]:checked + label {
    background-color: #ff244640;
    border-color: #ff2446;
    color: #ff2446;

    background-color: rgba(var(--color1), 0.25);
    border-color: rgb(var(--color1));
    color: rgb(var(--color1));
}
.delivery-method-wrapper input[type="radio"]:focus + label {
    background-color: #ff244640;
    border-color: #ff2446;
    color: #ff2446;

    background-color: rgba(var(--color1), 0.25);
    border-color: rgb(var(--color1));
    color: rgb(var(--color1));
}
.dateselect.dateselect_delivery {
    display: none;
}
.dateselect {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.dateselect select {
    margin-right: 15px;
}

.orderform-outer .shoppingcart .product-count-wrapper {
    font-weight: bold;
    width: 20px;
}
.orderform-outer .shoppingcart .product-count-wrapper button {
    display: none;
}
.orderform-outer .shoppingcart .changebutton_outer {
    display: block;
}
.orderform-outer .shoppingcart .orderbutton_outer {
    display: none;
}


/* Payment */
.payment-method-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 22px;
}
.payment-method-wrapper input[type="radio"] {
    opacity: 0;
    position: fixed;
    width: 0;
}
.payment-method-wrapper label {
    display: inline-block;
    background-color: transparent;
    padding: 9px 20px;
    font-size: 16px;
    border: 1px solid #a9a9a9;
    border-radius: 3px;
    font-weight: 500;
    margin-right: 15px;
    cursor: pointer;
    color: #a9a9a9;
    line-height: 20px!important;
}
.payment-method-wrapper input[type="radio"]:checked + label {
    background-color: #ff244640;
    border-color: #ff2446;
    color: #ff2446;

    background-color: rgba(var(--color1), 0.25);
    border-color: rgb(var(--color1));
    color: rgb(var(--color1));
}
.payment-method-wrapper input[type="radio"]:focus + label {
    background-color: #ff244640;
    border-color: #ff2446;
    color: #ff2446;

    background-color: rgba(var(--color1), 0.25);
    border-color: rgb(var(--color1));
    color: rgb(var(--color1));
}
.formInput.formInput-ideal input[type="radio"]:checked + label {
    position: relative;
}
.formInput.formInput-ideal input[type="radio"]:checked + label:after {
    display: block;
}
.formInput.formInput-ideal input[type="radio"] + label:after {
    display: none;
}
.formInput.formInput-ideal label:after {
    content: '+ € 0,29 servicekosten';
    position: absolute;
    bottom: -25px;
    left: 0;
    font-size: 1.4rem;
    font-style: italic;
    color: #a9aaae;
    width: 150px;
}
h1.pm-title {
    margin-bottom: 20px;
}


/*Laden*/
body.loading .order-wrapper > div {
    opacity: 0;
}
body.loading .order-wrapper:before {
    content: 'Menukaart laden...';
    font-size: 2.4rem;
    line-height: 3.4rem;
    color: #9e9e9e;
    display: block;
    width: 100%;
    text-align: center;
}
body .order-wrapper > div {
    transition: 0.1s ease-in-out;
}
body.loading footer{
    opacity:0;
}

/*Payment messages*/
main.payment-message {
    text-align: center;
}

input[name="alcohol_checker"] {
    vertical-align: middle;
    display: inline-block;
    margin-top: -4px;
}


p.labelle_text {
    max-width: 101%;
    font-size: 1.4rem;
    line-height: 2.4rem;
    margin: -5px 0 0 0;
}

@media (max-width: 1300px) {
    .sidebar,
    .shoppingcart {
        width: 300px;
    }
    .categories-menu {
        width: 150px;
    }
    .products-outer {
        width: calc(100% - 450px);
        padding: 0 20px;
    }
    .form-outer {
        width: calc(100% - 450px);
        padding: 0 20px;
        margin-left: 150px;
    }
}


@media (max-width: 1100px) {
    header {
        padding: 5px 0;
        height: 53px;
    }
    header .logo img {
        max-width: 350px;
        max-height: 42px;
    }
    
    main {
        padding: 60px 0 40px;
    }
    .products-outer {
        width: calc(100% - 300px);  
        padding-left: 0;
    }
    .form-outer {
        width: calc(100% - 300px);
        padding: 0 20px;
        margin-left: 0;
    }
    body.sticky .shoppingcart {
        position: fixed;
        top: 60px;
    }


    .categories-menu {
        width: 100%;
        position: absolute;
        left: 0;
        top: 53px;
        height: 40px;
        background: #fff;
        z-index: 10;
        padding: 0;
        -webkit-box-shadow: 0px 10px 15px #00000014;
                box-shadow: 0px 10px 15px #00000014;
    }
    body.sticky .categories-menu {
        position: fixed;
        top: 0;
    }
    .categories-menu-lines {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        height: 100%;
    }
    .categorymenu-line {
        margin: 2px 0;
        font-size: 1.4rem;
        -ms-flex-negative: 0;
            flex-shrink: 0;
        padding: 0 10px;
    }
    .categorymenu-line.active {
        color: #000;
        background: #f6f6f6;
        border-radius: 30px;
    }
    .categories-menu-inner {
        position: absolute;
        height: 40px!important;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
    }
    .categories-menu-lines::-webkit-scrollbar {
        height: 1px;
    }
    .categories-menu-lines::-webkit-scrollbar-track {
        background: #f4f5f5;
    }
    .categories-menu-lines::-webkit-scrollbar-thumb {
        background: #888;
    }
    .categories-menu-lines::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

    .progress-bar {
        height: 2px!important;
        width: 0;
    }
    .progress-container {
        width: 100%;
        height: 2px;
        background: #fff;
        position: absolute;
        left: 0;
        top: 38px;
    }


    

}


@media (max-width: 991px) {
    .product {
        width: 100%;
    }
    .products > div:nth-child(odd),
    .products > div:nth-child(even) {
        margin-left: 0;
        margin-right: 0;
    }
}


@media (max-width: 768px) {
    body {
        padding-bottom: 80px;
    }
    
    .products-outer {
        width: 100%;
        padding: 0;
    }
    .form-outer {
        width: 100%;
        padding: 0;
    }

    .mobile-cart {
        display: block;
    }
    body.show_shoppingcart .shoppingcart {
        display: block;
        -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
                transform: translateY(0);
    }
    .shoppingcart-image {
        display: none;
    }
    .shoppingcart {
        position: fixed;
        left: 0;
        top: 40px;
        z-index: 11;
        width: 100%;
        height: calc(100vh - 40px);
        border-radius: 10px 10px 0 0;
        -webkit-transform: translateY(100%);
            -ms-transform: translateY(100%);
                transform: translateY(100%);
        -webkit-transition: cubic-bezier(0.075, 0.82, 0.165, 1) .5s;
        -o-transition: cubic-bezier(0.075, 0.82, 0.165, 1) .5s;
        transition: cubic-bezier(0.075, 0.82, 0.165, 1) .5s;
    }
    body:after {
        position: fixed;
        left: 0;
        right: 0;
        content: '';
        background: #000;
        width: 100%;
        height: 100%;
        top: 0;
        z-index: 10;
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        -webkit-transition: cubic-bezier(0.075, 0.82, 0.165, 1) .5s;
        -o-transition: cubic-bezier(0.075, 0.82, 0.165, 1) .5s;
        transition: cubic-bezier(0.075, 0.82, 0.165, 1) .5s;
    }
    body.show_shoppingcart:after {
        opacity: .7;
        visibility: visible;
    }
    body.sticky .shoppingcart {
        top: 40px;
    }    
    .shoppingcart-intro {
        display: block;
        text-align: center;
        margin: 0 5px 20px;
        font-weight: bold;
        color: #000;
        position: relative;
        line-height: 2rem;
    }
    .shoppingcart-intro .shoppingcart-close {
        width: 20px;
        height: 20px;
        position: absolute;
        right: 0;
        top: 0;
        cursor: pointer;
    }
    .shoppingcart-close:before {
        height: 20px;
        width: 2px;
        background-color: #000;
        -webkit-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
                transform: rotate(-45deg);
        Z-index: 2;
        content: '';
        position: absolute;
        right: 10px;
    }
    .shoppingcart-close:after {
        height: 20px;
        width: 2px;
        background-color: #000;
        -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
                transform: rotate(45deg);
        Z-index: 2;
        content: '';
        position: absolute;
        right: 10px;
    }
    .shoppingcart-close:hover:before,
    .shoppingcart-close:hover:after {
        background:#ff2446;

        background:rgb(var(--color1));
    } 

    .orderbutton_outer {
        width: 100%;
        background: #fff;
        padding: 20px 0 0 0;
        margin: 10px 0 0 0;
        border-top: 1px solid #cccccc;
        z-index: 12;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .orderbutton_outer button.open-cart {
        display: block;
        width: 36px;
        -webkit-box-flex: 0;
            -ms-flex-positive: 0;
                flex-grow: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
        margin-right: 10px;
        padding: 0;
        background-position: center center;
    }
    .orderbutton_outer button {
        margin: 0;
    }
    button.open-cart span {
        font-weight: bold;
        margin-left: 20px;
    }

    .delivery-method-wrapper {
        margin-top: 0;
    }
    .delivery-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }


    /* Mobile submit */
    .mobile-submit {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 10px 10px 20px 10px;
        border-top: 1px solid #cccccc;
        z-index: 5;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin: 0!important;
    }
    .mobile-submit input {
        width: 100%;
    }
    .mobile-submit .open-cart {
        display: block;
        width: auto;
        -webkit-box-flex: 0;
            -ms-flex-positive: 0;
                flex-grow: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
        margin-right: 10px;
        padding-left: 50px;
        background-position: 20px center;
    }
}


@media (max-width: 600px) {
    header .information {
        display: none;
    }

    header .sw {
        padding: 0 15px;
    }
    .order-outer .sw {
        padding: 0;
    }

    .category {
        margin: 0 0 10px;
    }
    .category h2 {
        margin: 0 0 5px;
    }
    .category h2, .category h3 {
        padding: 0 15px;
    }

    .product {
        margin: 0;
        border-bottom: 1px solid #cccccc;
    }
    .products .product:first-child {
        border-top: 1px solid #cccccc;
    }
    .products .product:last-child {
        margin: 0 0 30px;
    }
    .product-inner:hover {
        -webkit-box-shadow: 0px 10px 15px #00000014;
                box-shadow: 0px 10px 15px #00000014;
        background: #f7f7f7;
    }

    .product-inner {
        border-radius: 0;
    }

    .formInputWrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .formInputWrapper.customer-name > .formInput, 
    .formInputWrapper.customer-name > .formInput:nth-child(2) {
        width: 100%;
        padding: 0;
    }
    .formInputWrapper.customer-street > .formInput, 
    .formInputWrapper.customer-zipcode-and-city > .formInput {
        width: 100%;
        padding: 0!important;
    }
}