:root {
    --default-bg-color: #F8F8F8;
    --bar-bg-color: #005FA8;
    --bar-text-color: #FFF;
    --main-text-color: #000;
    --primary-ctrl-bg-color: #00B844;
    --block-border-color: #DDDDDD;
    --border-dark-color: #545454;
}

* {
    box-sizing: border-box;
}
body {
    margin: 0;
    color: var(--main-text-color);
    font-family: "Roboto Condensed";
    font-size: 14px;
    line-height: 1.231;
}
img {
    height:auto;
    max-width:100%;
    vertical-align:middle;
    border:0;
    imagine-rendering: -webkit-optimize-contrast;
}
.page .main-content__body {
    margin-bottom: 5rem;
}

.form-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    color: var(--bar-text-color);
    font-size: 1rem;
    font-weight: bold;
    border-radius: .3125rem;
    padding: .5rem 0 .5rem .7rem;
    cursor: pointer;
    border: 1px solid;
    flex-grow: 1;
}
.order-form__controls .form-btn {
    margin-top: .5rem;
}
.form-btn--submit {
    background-color: var(--primary-ctrl-bg-color);
}
.form-btn--submit:after {
    content: "";
    display: block;
    padding: 1rem 1.6rem;
    background: url("../img/check-solid.svg") no-repeat center center transparent;
    border-left: 1px solid var(--bar-text-color);
    margin-left: 3.2rem;
}
.confirmation-code__controls .form-btn--submit:after {
    padding-top: .8rem;
    padding-bottom: .8rem;
}
.form-btn--reset {
    background-color: var(--default-bg-color);
    color: var(--border-dark-color);
    font-weight: bold;
}
.form-btn--reset:after {
    content: "\d7";
    display: block;
    padding: 1rem 1.1rem;
    border-left: 1px solid var(--border-dark-color);
    margin-left: 3.2rem;
    font-size: 1.5rem;
    line-height: 0;
    font-weight: normal;

}
.main-wrapper {
    max-width: 1024px;
    margin: 0 auto;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.container {
    margin-right:auto;
    margin-left:auto;
}

.main-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .5rem 1rem;
}
.main-header .lekkerland-logo {
    margin-left: 1rem;
}
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background-color: var(--bar-bg-color);
    color: var(--bar-text-color);
    padding: .7rem 1.5rem .55rem .625rem;
}
.top-bar__title-date {
    display: flex;
    align-items: baseline;
}
.top-bar__title {
    text-transform: uppercase;
    font-size: 1.25rem;
    font-weight: bold;
}
.top-bar__date {
    font-size: .6875rem;
    font-weight: bold;
    margin-left: 1rem;
    white-space: nowrap;
}
.bottom-bar {
    display: flex;
    justify-content: center;
    background-color: var(--bar-bg-color);
    color: var(--bar-text-color);
    font-size: 1.125rem;
    font-weight: bold;
    padding: 1rem 2rem;
}

.shopping-cart {
    position: relative;
}
.shopping-cart__amount {
    position: absolute;
    top: -.4rem;
    right: -1rem;
    font-size: .5625rem;
    line-height: 1;
    color: var(--bar-text-color);
    background-color: var(--primary-ctrl-bg-color);
    padding: .2rem .3rem .17rem .5rem;
}
.shopping-cart__amount:after {
    content: "";
    background-color: var(--primary-ctrl-bg-color);
    position: absolute;
    bottom: -4px;
    left: 10px;
    width: 5px;
    height: 4px;
    transform: matrix(-1, 1, 0, 2, -8, -5);
}

.main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: var(--default-bg-color);
    position: relative;
}
.main-content__body {
    max-width: 718px;
    margin: 0 auto 4rem;
    padding: .4375rem;
    flex-grow: 1;
}

.order-form {}
.order-form__section {
    margin-top: 2rem;
}
.order-form__controls {
    display: flex;
    justify-content: stretch;
    align-items: center;
    flex-direction: column;
}

.section {}
.section--order-list {
    margin-top: 1rem;
}
.section__title {
    color: var(--main-text-color);
    font-size: 1.25rem;
    line-height: 1.2;
}
.section--order-list .section__title {
    text-align: center;
}
.section__notice {
    background-color: #F5ECA28D;
    padding: .5rem;
    font-size: .75rem;
    font-weight: bold;
}
.section--confirmed-product-list .section__notice {
    margin-right: auto;
    margin-left: .5rem;
}
.section__body {
    background-color: #fff;
    border: 1px solid var(--block-border-color);
}
.section__body--no-border {
    border: none;
}
.section__body--spaced {
    padding: .5rem 1.5rem 1.5rem;
}
.section--verification .section__body--spaced, .section--email-confirmed .section__body--spaced {
    padding: .5rem .5rem 1rem;
}

.product-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
    background-color: transparent;
}
.product-list__item {
    background-color: #fff;
}
.section--confirmed-product-list .product-list__item {
    padding-bottom: 1.9rem;
}

.product {
    border: 1px solid var(--block-border-color);
    color: var(--border-dark-color);
    display: flex;
    flex-direction: column;
    margin-top: .8rem;
    padding-right: 5rem;
    position: relative;
}
.product:first-child {
    margin-top: 1.4rem;
}
.product__pic-info {
    display: flex;
    align-items: center;
}
.product__pic {
    width: 4.9rem;
    height: auto;
    max-height: 100%;
}
.product__info {
}
.product__counter {
    margin: 1rem 1.5rem;

}
.product__label {}
.product__amount-info {
    display: flex;
    align-items: center;
    position: absolute;
    right: 0.5rem;
    bottom: 0.3rem;
}
.product__amount {
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--main-text-color);
}

.label {
    font-size: .625rem;
    color: #fff;
    position: absolute;
    top: -.5rem;
    right: -.5rem;
    margin-left: auto;
    transform: rotate(45deg);
}
.label:before {
    content: "";
    display: block;
    width: 4.625rem;
    height: 4.625rem;
    background: url("../img/UVP-label.svg") no-repeat left top transparent;
    background-size: contain;
    transform: rotate(-45deg);
}
.label:after {
    content: "UVP: ";
    position: absolute;
    top: 1.18rem;
    left: 0.75rem;
}
.label__text {
    position: absolute;
    top: 1.18rem;
    left: 2.2rem;
}

.order-counter {
    display: flex;
    align-items: center;
}
.order-counter__amount {
    display: block;
    width: 84px;
    height: 44px;
    border: 1px solid var(--block-border-color);
    font-size: 1.0625rem;
    color: var(--border-dark-color);
    font-weight: bold;
    text-align: center;
    line-height: 1.375;
}
.order-counter__amount:focus {
    outline: 2px solid var(--block-border-color);
}
.order-counter__control {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    font-size: 1.6875rem;
    background-color: var(--bar-bg-color);
    color: var(--bar-text-color);
    font-weight: bold;
    cursor: pointer;
}
.order-counter__control:first-child {
    margin-right: .5rem;
}
.order-counter__control:last-child {
    margin-left: .5rem;
}

.info-tb {
    color: #999999;
    font-size: .75rem;
}
.info-tb__cell {
    font-weight: normal;
    white-space: nowrap;
}
.info-tb__cell:first-child {
    width: 10%;
    padding-right: 0.5rem;
}
.info-tb__title {
    font-size: 1rem;
    font-weight: bold;
    color: var(--border-dark-color);
    white-space: normal;
}

.control-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
}
.control-list__item {
    width: 100%;
    padding: 0 1rem;
    margin-top: 1rem;
}

.labeled-control {
    position: relative;
}
.confirmation-code .labeled-control {
    margin-bottom: 1rem;
}
.confirmation-code .form-btn {
    max-width: 20rem;
    white-space: nowrap;
    margin: 0 auto;
}
.labeled-control__name {
    display: block;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--border-dark-color);
    font-weight: bold;
}
.labeled-control__text-field {
    font-size: 1rem;
    font-weight: bold;
    height: 2.4375rem;
    border: 1px solid var(--block-border-color);
    padding: .5rem 1rem;
    width: 100%;
}
.labeled-control__text-field:placeholder-shown {
    font-size: .87rem;
    font-style: italic;
    color: #999999;
    font-weight: normal;
}
.confirmation-code__controls .labeled-control__text-field {
    width: 7.25rem;
    margin-right: 1rem;
    font-size: 1rem;
    color: #999999;
}
.confirmation-code__controls .labeled-control__text-field:placeholder-shown {
    text-align: center;
}
.back-to-top-container {
    position: fixed;
    right: .4375rem;
    left: .4375rem;
    bottom: 5.7rem;
    max-width: 1024px;
    margin: 0 auto;
}
.back-to-top {
    font-size: 1rem;
    font-weight: 600;
    line-height: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0.7rem 1rem;
    border-radius: 0.2rem;
    color: var(--bar-text-color);
    background-color: var(--bar-bg-color);
    text-align: center;
    vertical-align: middle;
    user-select: none;
    border: 1px solid #f9f9f9;
    transition: opacity .15s ease-in-out;
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 0;
}
.message--error {
    padding: 1rem;
    border: 1px solid #f5c2c7;
    color: #842029;
    background-color: #f8d7da;
    margin-top: 1rem;
}
.success-icon {
    font-weight: bold;
    color: var(--primary-ctrl-bg-color);
}
.labeled-control__text-field + .success-icon {
    display: none;
}
.labeled-control__text-field:valid + .success-icon {
    display: block;
    position: absolute;
    right: 0.8rem;
    bottom: 0;
}
.section--confirmed-product-list .success-icon {
    margin-right: .2rem;
}
.check {
    display: block;
    position: relative;
    width: 2rem;
    height: 2rem;
}
.check-md {
    width: 3rem;
    height: 3rem;
}
.check--round:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 3px 6px #00000029;
}
.check--dark-blue:after, .check--light-green:after {
    content: "";
    position: absolute;
    width: 2.34rem;
    height: 1.68rem;
    background: url("../img/dark-blue-check.svg") no-repeat left transparent;
    background-size: contain;
    top: 0;
    right: 0;
    left: .66rem;
    bottom: 0;
    margin: auto;
}
.check--light-green:after {
    background-image: url("../img/light-green-check.svg");
}
.section--verification .check, .section--email-confirmed .check {
    float: left;
    margin: .6rem 1.6rem 0 .6rem;
}

.total-sum {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .9rem 0 .7rem;
    margin-top: .8rem;
    font-size: 1.125rem;
    color: var(--main-text-color);
    font-weight: bold;
    border-top: 2px dotted var(--block-border-color);
    border-bottom: 2px dotted var(--block-border-color);
}
.footnote {
    display: flex;
    align-items: center;
    font-size: .875rem;
    color: var(--main-text-color);
    margin-top: .7rem;
}
.footnote .lekkerland-logo {
    margin-left: 0.5rem;
}
.confirm {
    display: flex;
    align-items: center;
    font-size: .75rem;
    margin-top: 1.2rem;
}
.introduction {
    font-size: 1.25rem;
    font-weight: bold;
    padding-bottom: 1rem;
}
.introduction--bordered {
    border-bottom: 2px dotted var(--block-border-color);
}
.introduction__note {
    color: var(--bar-bg-color);
    margin-top: 1rem;
}
.introduction__desc {
    color: var(--main-text-color);
    margin-top: 1.2rem;
    text-align: center;
    padding: 0 1rem;
}
.confirmation-code {
    padding: 0 1rem;
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--main-text-color);
}
.confirmation-code__explanation {
    text-align: center;
}
.confirmation-code__controls {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.inner_container {
    background-color: #fdfcfc;
    color: #000;
    border-radius: 0;
    border: 1px solid #d9dfe0;
    box-sizing: border-box;
    margin:auto;
    margin-top: 10px;
    padding:20px;

}
.rp_step {
    padding:5px;
    background-color: #d9dfe0;
    cursor:pointer;
}
a.rp_button {
    display:inline-block;
    padding: 13px 20px;
    margin: 0px 0px 0px 50px;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    background-color: #2a70e8;
    border-radius: 6px;
    border: 1px solid #2a70e8;
}
a.rp_button:hover {
    text-decoration: none;
    color: #2a70e8;
    transition: all 0.1s ease-out 0s;
    background-color: #fff;
}
.selectBlock {
    margin: 10px auto;
    width:80%;
    display:none !important;
}
.selectBlock.shown {
    display:block !important;
}
.sectionText {
    margin:10px;
}
table.cartTable {
    border-spacing: 0px;
    width:100%;
    border: 1px solid black;
}
table.cartTable > thead > tr > td {
    background-color:#0D61A5;
    color:white;
    padding:5px;
    word-wrap: break-word;
}
table.cartTable tr:nth-child(odd) {
    background:#FFF;
}
table.cartTable tr:nth-child(even) {
    background: #E0E0E0;
}
table.cartTable > tbody td:nth-child(1) {
    width:10%;
    text-align:center;
}
table.cartTable > tbody td:nth-child(2) {
    width:20%;
}
table.cartTable > tbody td:nth-child(3) {
    width:30%;
}
table.cartTable > tbody td:nth-child(3) {
    width:40%;
}
.content_text {
    margin-top: 20px;
    margin-bottom: 20px;
}
.buttonbox {
    width: calc(100%  /3);
    padding:5px;
    display:inline-block;
    box-sizing: border-box;
}
a.rp_button_hard {
    box-sizing: border-box;
    display:inline-block;
    font-size: 14px;
    padding:10px;
    color: #fff;
    font-weight: 600;
    background-color: #2a70e8;
    border-radius: 6px;
    border: 1px solid #2a70e8;
    height:55px;
    line-height:17px;
    overflow:hidden;
    width:100%;
}
a.rp_button_hard:hover {
    text-decoration: none;
    color: #2a70e8;
    transition: all 0.1s ease-out 0s;
    background-color: #fff;
}
#modalWrap {
    font-size:18px;
    z-index:1200;
    width: 620px;
    background-color: #FFFFFF;
    text-align: left;
    position: absolute;
    top: calc(50vh - (/* height */450px / 2));
    left: calc(50vw - (/* width */600px / 2));
    overflow-y:auto;
}
.modalLeft {
    display:inline-block;
    width: 294px;
    box-sizing:border-box;
    padding:5px;
    vertical-align:top;
}
.modalRight {
    display:inline-block;
    width: 307px;
    box-sizing:border-box;
    padding:5px;
    vertical-align:top;
}
.modalTwoThirds {
    display:inline-block;
    width: 395px;
    box-sizing:border-box;
    padding:5px;
    vertical-align:top;
}
.modalOneThird {
    display:inline-block;
    width: 197px;
    box-sizing:border-box;
    padding:5px;
    vertical-align:top;
}
.modalCenter {
    min-height:60px;
}
#modalClose {
    position:absolute;
    right:0px;
    top:0px;
}
#modalCover {
    display: none;
    z-index: 1000;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,.5);
}
#modalCover.shown {
    display: block;
}
.modalHead{
    padding:17px 19px 15px 24px;
}
.modalFoot {
    padding:20px;
}
.headtext {
    font-weight: bold;
    text-align: center;
    font-size: 20px;
}
.btn-close {
    line-height: 32px;
    box-sizing: border-box;
    cursor: pointer;
    user-select: none;
    background-color: white;
    font-size: 28px;
    font-weight:bold;
    color: #44638a;
    width: 32px;
    height: 32px;
    display: inline-block;
    text-align:center;
    outline:none;
}
.top_nav {
    display:inline-block;
}
.top_nav:hover {
    background-color:#A5A5A5;
}
.top_navlink {
    color:white;
    font-size:14px;
    font-weight:bold;
    padding:0px 20px;
    line-height: 42px;
}
.top_navlink:hover {
    text-decoration:none;
    color:white;
}
.top_navlink a:hover {
    text-decoration:none;
    color:white;
}
.shop_link {
    float:right;
    display:inline-block;
    border-radius: 6px;
    background-color: white;
    margin: 5px;
    font-size: 14px;
    font-weight: bold;
    padding: 4px 12px 4px 12px;
    border:1px solid white;
}
.shop_link a {
    color: #0056b3;
}
.shop_link a:hover {
    text-decoration:none;
}
.login_link {
    float:right;
    display:inline-block;
    border-radius: 6px;
    background-color: #90b325;
    margin: 5px;
    font-size: 14px;
    font-weight: bold;
    padding: 4px;
    border:1px solid #90b325;
}
.login_link a{
    color:white;
}
.login_link a:hover {
    text-decoration:none;
}
.login_link:hover {
    background-color:#A5A5A5;
    border:1px solid #A5A5A5;
}
.rp_bigtext {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-top:10px;
}
.rp_intro {
    text-align: center;
    font-size: 18px;
    margin-top:10px;
}
.cb {
    clear:both;
}
.text_top {
    text-align:center;
}
.center_buttons {
    text-align:center; width:100%;
}
.center_button {
    display:inline-block;
}
.center_button a {
    color: black;
    font-weight:bold;
    border:2px solid black;
    padding: 8px 42px;
    display:block;
    margin:5px;
    background-color:white;
}
.center_button a:hover {
    text-decoration:none;
    color: white;
    border:2px solid white;
    background-color:#A5A5A5;
}
.center_line_button {
    display:inline-block;
}
.center_line_button a {
    color: black;
    font-weight:bold;
    border:2px solid black;
    padding: 0px 15px;
    display:block;
    margin:5px;
    background-color:white;
}
.center_line_button a:hover {
    text-decoration:none;
    color: white;
    border:2px solid white;
    background-color:#A5A5A5;
}
.alert {
    margin-top: 15px;
    margin-bottom: 15px;
    position: relative;
    border-radius: 0;
    padding: 10px 45px 10px 55px;
    border: 1px solid #E40613;
    display:none;
}
.alert.shown {
    display:block;
}
.alert-block {
    padding-top: 14px;
    padding-bottom: 14px;
    background-color: #FFD1BD;
    color: #EC6F2E;
    border: 1px solid #EC6F2E;
}
.alert-error {
    background-color: #f2dede;
    border: 1px solid #E40613;
}
.alert-danger, .alert-error {
    color: #b94a48;
    background-color: #f2dede;
    border: 1px solid #E40613;
}
.alert-error:before {
    font-family: FontAwesome;
    content: "\f00d";
    top: 0;
    color: #f2dede;
    background: #E40613;
    font-size: 25px;
}
.alert-block:before, .alert-error:before, .alert-success:before {
    width: 50px;
    position: absolute;
    height: 100%;
    line-height: 45px;
    left: 0;
    text-align: center;
}
.alert ul {
    list-style-type: none;
}
.vspace10 {
    height:10px;
}
.vspace20 {
    height:20px;
}
.hspace20 {
    width:20px;
    display:inline-block;
}
.collapsible {
    background-color:inherit;
    color: black;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;


}
.collapsible::before {
    display:inline-block;
    min-width:18px;
    content: url("../img/schwarz_plus.jpg");
    line-height: 1em;
    margin-right: 1em;
    vertical-align: -25%;
}
.collapsible.active::before {
    display:inline-block;
    min-width:18px;
    content: url("../img/blau_minus.jpg");
}
.collapsible:focus {
    outline:none;
}
.collapsible_content {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    border-bottom:2px solid #0e61a5;
}
.title_img {
    vertical-align:top;
    zoom: 0.25;
    -moz-transform: scale(0.25);
}
.title_img_r {
    margin:10px;
}
.pagecontent{
    margin-top:27px;
    margin: 27px auto 0 auto;
    width:80%;
    min-height:700px;
}
.footer-1 {
    box-sizing: border-box;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    background-color: #0D61A5;
    display: flex;
}
.footer-1>div img {
    max-height: 65px;
}
.footer-1>div span {
    grid-area: label;
    font-weight: 300;
    font-size: 14px;
    text-align: right;
    color:white;
}
@media (min-width: 640px) {
    .main-header {
        justify-content: space-between;
    }
    .main-header .lekkerland-logo {
        margin-left: 0;
    }
    .top-bar {
        padding: .7rem 1.7rem .55rem;
        align-items: center;
    }
    .top-bar__title-date {
        flex-direction: column;
    }
    .top-bar__title {
        font-size: 1.25rem;
    }
    .top-bar__date {
        font-size: .75rem;
        margin-left: 0;
    }
    .main-content__body {
        padding: .6875rem;
    }
    .section--order-list .section__title {
        text-align: left;
    }
    .section__body--spaced {
        padding: 0.5rem 1.2rem 1.5rem;
     }
    .section--verification .section__body--spaced, .section--email-confirmed .section__body--spaced {
        padding-top: 1.6rem;
        padding-bottom: 1.6rem;
    }
    .check-md--md {
        width: 5rem;
        height: 5rem;
    }
    .section--verification .check, .section--email-confirmed .check {
        float: left;
        margin-left: .6rem;
        margin-right: 1.875rem;
    }
    .introduction__desc {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .confirmation-code {
        padding: 0 2rem;
    }
    .product {
        flex-direction: row;
        justify-content: space-between;
    }
    .order-form__controls {
        flex-direction: row;
        justify-content: space-between;
    }
    .control-list__item {
        width: 50%;
    }
    .form-btn {
        align-items: center;
        flex-grow: 0;
    }
    .back-to-top-container {
        left: .6875rem;
        right: .6875rem;
    }
}
@media (min-width: 780px) {
    .title_img {
        zoom: 0.4;
        -moz-transform: scale(0.4);
    }
    .title_img_r {
        margin:20px;
    }
    .shop_link {
        font-size:18px;
    }
    .top_navlink {
        font-size:18px;
    }
    .login_link {
        font-size:18px;
    }
}
@media (max-width: 1023px) {
    .footer-1>div span {
        font-size: 10px;
        text-align: center;
        margin-top: 10px;
    }

}
.ic_logo_footer {
    display:block;
}
@media (max-width:1110px) {
    .ic_logo_footer {
        display:none!important;
    }
}
.col-footer {
    flex: 0 0 17%;
    max-width: 17%;
    position: relative;
    padding-right: 15px;
    padding-left: 15px;
    width: fit-content;
    margin:15px;
    display:grid;
    grid:"label image"/auto auto;
    justify-items:center;
    align-items:center;
    grid-gap:10px;
    text-align:center;
    float: left;
}
.footer-2 {
    background: #F4F2F3;
    box-sizing: border-box;
    font-size: 12px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding: 40px 0;
    display: block;

}
@media (min-width: 1024px) {
    .introduction__desc {
        text-align: left;
        margin-left: 6rem;
    }
    .check-lg--lg {
        width: 5rem;
        height: 5rem;
    }
    .check--dark-blue:after, .check--light-green:after {
        width: 3.9rem;
        height: 2.8rem;
        left: 1.1rem;
    }
    .section--confirmed-product-list .product-list__item {
        padding-bottom: 0;
    }
    .confirmation-code {
        padding: 0 1rem 0 7.475rem;
    }
    .confirmation-code__controls {
        flex-direction: row;
        justify-content: center;
    }
    .confirmation-code .labeled-control {
        margin-bottom: 0;
    }
    .confirmation-code .form-btn {
        margin: 0;
    }
    .confirmation-code__explanation {
        text-align: left;
    }
    .footer-2 {
        padding-left: 30px;
    }
    .product {
        padding-right: 7rem;
    }
    .back-to-top-container {
        bottom: 1.625rem;
    }
    .back-to-top {
        right: 1.125rem;
    }
}
.form-minimal {
    width:auto;
}
.labelwidth > label {
    font-weight:bold;
}
.info_img {
    margin-top:30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width:25%;
}
.info_box {
    height:100%;
    border:1px solid #d9dfe0;
    margin:15px;
}
.info_box_text {
    margin-left:30px;
    margin-right: 30px;
    text-align:center;
}
.footer-headline {
    font-size:22px;
    font-weight:400;
    margin-bottom:10px;
}
.footer-headline-2 {
    font-size:22px;
    font-weight:300;
    margin-bottom:10px;
}
.footer-text-1 {
    font-size:11px;
    font-weight:300;
    margin-bottom:10px;
}
@media (min-width: 1200px) {

    .footer-headline {
        font-size:25px;
        font-weight:400;
        margin-bottom:10px;
    }

    .footer-headline-2 {
        font-size:25px;
        font-weight:300;
        margin-bottom:10px;
    }

    .footer-text-1 {
        font-size:12.6px;
        font-weight:300;
        margin-bottom:10px;
    }

}
.footer-2-wrap {
    margin-left:15px;margin-right:15px;
}
.img1 {
    max-width: 96px;
}
@media (min-width: 1200px) {
    .img1 {
        max-width: 105px;
    }
}
.footer-links > a {
    color:#000;
    line-height: 170%;
    font-weight:300;
}
.footer_links > a:hover {
    color:#a5afaf;
    text-decoration:none;
}
.hidden-desktop, .visible-phone, .visible-tablet {
    display: none!important;
}
@media (max-width: 1023px) {
    .hidden-desktop {
        display: inherit !important;
    }
    .visible-desktop {
        display: none !important ;
    }
    .visible-tablet {
        display: inherit !important;
    }
    .hidden-tablet {
        display: none !important;
    }
    .hidden-phone {
        display: none !important;
    }

    .visible-phone {
        display: inherit !important;
    }
}
.footer_payment {
    margin: 0 auto;
    width: 80%;
    margin-bottom: 20px;
}
.footer_payment .payment_head {
    color: #000;
    text-transform: uppercase;
    font-size: 17px;
    line-height: 165%;
}
.textcenter {
    text-align: center;
}
.row-fluid {
    width: 100%;
}
@media (max-width: 1023px) and (min-width: 768px) {
    .row-fluid {
        width: 100%;
    }
    row-fluid:after, .row-fluid:before, .row:after, .row:before {
        display: table;
        line-height: 0;
        content: "";
    }
}
.footer_payment .pay_img {
    margin: 5px;
    padding: 5px;
    background: #DFDFDF;
}
.col-xs-4 {
    width: 33.33%;
    float: left;
}
@media (max-width: 1023px) {
    .footer_mobile_info_header1 {
        padding:5px;
        color:#000000;
        text-align:center;
        margin:5px;
        font-size:14px;
    }

    .footer_mobile_info_header1 a {
            color:#000000;
            font-weight: 300;
    }

    .footer_mobile_infos_header {

        padding:5px 5px 5px 10px;
        background-color: #839BB0;
        color:white;
        margin:5px;
        font-size:18px;
        cursor: pointer;
    }

    #footer_mobile_switch_infos, #footer_mobile_switch_more {

        display: inline;
        float: right;
        cursor: pointer;
        background-color: #5D6A7B;
    }

    #footer_mobile_switch_infos:after, #footer_mobile_switch_more:after {
        font-weight: 300;
        content: "▼";
    }

    #footer_mobile_infos, #footer_mobile_more {

        display:none;
        padding-left: 20px;

    }
}
.footer_mobile_switch_more, .footer_mobile_switch_infos {
    cursor:pointer;
}
.show {
    display: block !important;
}
.footer_mobile_dhl {
    text-align: center;
    margin-top: 25px;
}
.footer-4 {
    padding: 10px 15px;
    box-sizing: border-box;
    text-align: center;
    font-size: 13px;
    font-weight: 300;
}
.f3 a {
    color: #000;
    line-height: 170%;
    font-weight: 300;
}
.f3 a:hover {
    color: #a5afaf;
    text-decoration: none;
}
.footer-3 {
    background-color:#f4f2f3;padding-top:20px;
    padding-bottom: 30px;
}
.center_button button {
    color: black;
    font-weight: bold;
    border: 2px solid black;
    padding: 8px 42px;
    display: block;
    margin: 5px;
    background-color: white;
}
.center_button button:hover {
    text-decoration: none;
    color: white;
    border: 2px solid white;
    background-color: #A5A5A5;
}

#searchResults {
    position:absolute;
}
#searchResultsProduct {
    position:absolute;
}
#productSelectByEan {
    display:none;
}
#productSelectByEan.shown {
    display:block;
}
#productSelectByName {
    display:none;
}
#productSelectByName.shown {
    display:block;
}
#productEan {
    display:none;
}
#productEan.shown {
    display:block;
}
#productSearch {
    display:none;
}
#productSearch.shown {
    display:block;
}
#searchResults {
    display:none;
}
#searchResults.shown {
    display:block;
}
#searchResultsProduct {
    display:none;
}
#searchResultsProduct.shown {
    display:block;
}
.searchFound {
    width: 100%;
    border: 1px solid #ced4da;
    border-radius: 5px;
    background-color: white;
    padding: 10px;
    cursor: pointer;
}
.error_row {
    background-color:#f2dede;
}
.productList {
    width:100%;
}
#extDatePlaceFormButton {
    display:none;
}
#extDatePlaceFormButton.shown {
    display:block;
}
#extLoginForm {
    display:none;
}
#extLoginForm.shown {
    display:block;
}
.mt10 {
    margin-top:10px;
}
.mt5 {
    margin-top:5px;
}
.headRow{
    font-weight:bold;
}
.wd100 {
    width:100%;
}

