/* box sizing */
html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

/* webfonts */
@font-face {
    font-family: 'favorit';
    src: url("../webfonts/favorit/favorit-light.woff2") format("woff2"),
        url("../webfonts/favorit/favorit-light.woff") format("woff");
    font-weight: 300;
}
@font-face {
    font-family: 'favorit';
    src: url("../webfonts/favorit/favorit-regular.woff2") format("woff2"),
        url("../webfonts/favorit/favorit-regular.woff") format("woff");
    font-weight: 400;
}
@font-face {
    font-family: 'favorit';
    src: url("../webfonts/favorit/favorit-bold.woff2") format("woff2"),
        url("../webfonts/favorit/favorit-bold.woff") format("woff");
    font-weight: 700;
}

/* html */
html {
    height: 100%;
    margin: 0;
    -ms-scroll-chaining: touch;
    overscroll-behavior: touch;
    overflow-y: scroll;
}

/* body */
body {
    position: relative;
    height: 100%;
    margin: 0;
    font-family: 'favorit';
    font-size: 12px;
    font-weight: 400;
    color: #000000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -ms-scroll-chaining: touch;
    overscroll-behavior: touch;
    overflow-y: scroll;
}
body.show_cart,
body.show_aside,
body.show_terms {
    overflow: hidden;
}

input, textarea, select, button, submit {
    font-family: 'favorit';
}

/* font sizes */
.text_size_h1 {
    font-size: 44px;
    line-height: 44px;
}

.text_size_h2 {
    font-size: 30px;
    line-height: 32px;
    letter-spacing: -0.5px;
}

.text_size_h3 {
    font-size: 16px;
    line-height: 18px;
}

.text_size_h4 {
    font-size: 16px;
    line-height: 24px;
}

.text_size_h5 {
    font-size: 14px;
    line-height: 20px;
}

.text_size_p {
    font-size: 12px;
    line-height: 16px;
}

.text_size_small {
    font-size: 10px;
    line-height: 14px;
}

.text_transform_uppercase {
    text-transform: uppercase;
}

/* font weights */
.text_light {
    font-weight: 300;
}

.text_regular {
    font-weight: 400;
}

.text_bold {
    font-weight: 700;
}
h4 {
    font-weight: 700;
    margin: 20px 0;
}

/* text colors */
.text_color_black {
    color: #000000;
}

.text_color_grey {
    color: #828282;
}
.text_color_lightgrey {
    color: #b9b9b9;
}

.text_color_white {
    color: #ffffff;
}

.text_color_blue {
    color: #69a3fb;
}

/* background colors */
.background_color {
    transition: background-color 250ms ease;
}

.background_color_yellow {
    background-color: #ffda31;
}

.background_color_white {
    background-color: #ffffff;
}

.background_color_darkgrey {
    background-color: #363636;
}
.background_color_lightgrey {
    background-color: #F3F3F3;
}
.background_color_black {
    background-color: #000000;
}

/* anchor tags */
a {
    color: #000000;
    outline: none;
    -webkit-tap-highlight-color: transparent; /* removes the highlight */
}


/* loader */
.loader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(243, 243, 243, 1);
    z-index: 9999;
    display: -webkit-flex;
    display: flex;
    -webkit-align-content: center;
    align-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    justify-items: center;
    opacity: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}
body.js.loader {
    opacity: 1;
    transition: opacity 1000ms ease;
}
body.window_load .loader {
    pointer-events: none;
    opacity: 0;
}
body.window_load.show_loading .loader {
    pointer-events: auto;
    opacity: 1;
}

/* header */
header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 6;
}

header .elements {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
}

header .homebutton a {
    padding: 20px;
    text-decoration: none;
    color: #000000;
    display: block;
}

header .homebutton a .logo {
    border-radius: 4px;
    padding: 7px;
}
header .homebutton a .logo img {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    max-width: 106px;
}

header .burger a {
    padding: 20px;
    text-decoration: none;
    color: #000000;
    display: block;
}

header .burger a .lines {
    position: relative;
    width: 20px;
    height: 14px;
    overflow: hidden;
}

header .burger a .lines .line {
    position: absolute;
    top: calc(50% - 1px);
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
    transition: background-color 250ms ease, opacity 250ms ease, width 250ms ease 250ms, -webkit-transform 250ms ease;
    transition: transform 250ms ease, background-color 250ms ease, opacity 250ms ease, width 250ms ease 250ms;
    transition: transform 250ms ease, background-color 250ms ease, opacity 250ms ease, width 250ms ease 250ms, -webkit-transform 250ms ease;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}
header .burger a .lines .line.line_black {
    background-color: #000000;
}

body.show_aside header .burger a .lines .line {
    background-color: #000000;
}

header .burger a .lines .line:nth-child(1) {
    -webkit-transform: translate3d(-50%, -6px, 0);
    transform: translate3d(-50%, -6px, 0);
}

header .burger a .lines .line:nth-child(2) {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
}

header .burger a .lines .line:nth-child(3) {
    -webkit-transform: translate3d(-50%, 6px, 0);
    transform: translate3d(-50%, 6px, 0);
}

body.show_aside header .burger a .lines .line:nth-child(1) {
    -webkit-transform: translate3d(-50%, 0, 0) rotate(45deg);
    transform: translate3d(-50%, 0, 0) rotate(45deg);
    width: 12px;
}

body.show_aside header .burger a .lines .line:nth-child(2) {
    opacity: 0;
    width: 0;
}

body.show_aside header .burger a .lines .line:nth-child(3) {
    -webkit-transform: translate3d(-50%, 0, 0) rotate(-45deg);
    transform: translate3d(-50%, 0, 0) rotate(-45deg);
    width: 12px;
}

/* noscript */
#noscript {
    z-index: 10000;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 20px;
    background-color: #ffda31;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    text-align: center;
}

/* aside */
aside {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
    background-color: white;
    padding: 70px 0 0 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    transition: -webkit-transform 500ms ease;
    transition: transform 500ms ease;
    transition: transform 500ms ease, -webkit-transform 500ms ease;
    overflow: auto;
}

body.show_aside aside {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

aside .menu_primary {
    padding: 10px 20px 20px 20px;
    border-bottom: 1px solid #D3D3D3;
}
aside .menu_primary a {
    text-decoration: none;
    display: inline-block;
    padding: 4px 0;
}
aside .menu_secondary {
    padding: 36px 20px;
    border-bottom: 1px solid #D3D3D3;
}
aside .menu_secondary a {
    text-decoration: none;
    display: inline-block;
    padding: 8px 0;
}
aside .contact {
    position: relative;
    overflow: hidden;
}
aside .contact_image {
    position: absolute;
    top: 20px;
    left: 45%;
    width: 100%;
    z-index: 1;
}
aside .contact_image img {
    position: relative;
    width: 100%;
    height: auto;
    max-width: 250px;
}
aside .contact .contact_text {
    position: relative;
    padding: 40px 20px;
    z-index: 2;
}
aside .contact .contact_text .contact_heading {
    margin-right: 180px;
}
aside .contact .contact_text .contact_copy {
    margin-right: 180px;
    margin-top: 20px;
}
aside .contact .contact_text .contact_copy p + p {
    margin-top: 15px;
}

/* main */
main {
    position: relative;
    z-index: 1;
    background-color: white;
}

/* section: menu */
section.menu {
    position: relative;
}

section.menu .hero {
    position: relative;
}

section.menu .hero .hero_image {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    overflow: hidden;
}
section.menu .hero .hero_image:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000000;
    opacity: 0.4;
}
section.menu .hero .hero_image img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

section.menu .hero .hero_text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px 20px 15px 20px;
}
section.menu .hero .hero_text .hero_text_subheading {
    margin-top: 10px;
}

section.menu .location {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 2;
    border-bottom: 1px solid #D3D3D3;
}
section.menu .location .location_text {
    position: relative;
    padding: 12px 20px 12px 20px;
}
section.menu .location .location_text .location_venue {}
section.menu .location .location_text .location_divider {
    margin: 0 6px;
}
section.menu .location .location_text .location_place {
    position: relative;
}
section.menu .location .location_text .location_place:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #FFDA40;
}

section.menu .categories {
    position: relative;
    z-index: 1;
}
section.menu .categories .category {
    position: relative;
}
section.menu .categories .category .category_header {
    position: relative;
    padding: 25px 20px;
    background-color: #ffffff;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    text-decoration: none;
    transition: background-color 250ms ease;
}
section.menu .categories .category + .category .category_header {
    border-top: 1px solid #D3D3D3;
}
section.menu .categories .category.show_category .category_header {
    position: -webkit-sticky;
    position: sticky;
    top: 36px;
    z-index: 1;
    background-color: #F3F3F3;
    border-bottom: 1px solid #D3D3D3;
}
section.menu .categories .category .category_header .category_header_icon {
    position: relative;
}
section.menu .categories .category .category_header .category_header_icon .category_header_image {
    transition: -webkit-filter 250ms ease;
    transition: filter 250ms ease;
    transition: filter 250ms ease, -webkit-filter 250ms ease;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}
section.menu .categories .category.show_category .category_header .category_header_icon .category_header_image {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}
section.menu .categories .category.show_category_header_amount .category_header .category_header_icon .category_header_image {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}
section.menu .categories .category .category_header .category_header_icon .category_header_items_total {
    position: absolute;
    top: -8px;
    right: -6px;
    width: 16px;
    height: 16px;
    border-radius: 8px;
    background-color: #FFDA40;
    opacity: 0;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transform: scale(0);
    transform: scale(0);
    transition: opacity 250ms ease, -webkit-transform 250ms ease-in-out;
    transition: transform 250ms ease-in-out, opacity 250ms ease;
    transition: transform 250ms ease-in-out, opacity 250ms ease, -webkit-transform 250ms ease-in-out;
}
section.menu .categories .category.show_category_header_amount .category_header .category_header_icon .category_header_items_total {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
section.menu .categories .category .category_header .category_header_icon .category_header_items_total .amount {
    position: absolute;
    top: calc(50% + 1px);
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}
section.menu .categories .category .category_header .category_header_title {
    -webkit-flex: 1;
    flex: 1;
    padding: 0 20px;
}
section.menu .categories .category .category_header .category_header_arrow img {
    display: block;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    transition: -webkit-transform 250ms ease;
    transition: transform 250ms ease;
    transition: transform 250ms ease, -webkit-transform 250ms ease;
    -webkit-transform-style: preserve-3d; 
}
section.menu .categories .category.show_category .category_header .category_header_arrow img {
    /*transform: rotate3d(1, 0, 0, 180deg);*/
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

section.menu .categories .category .category_items {
    position: relative;
    padding-bottom: 70px;
    display: none;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.07) 0, rgba(0, 0, 0, 0) 60px);
}
section.menu .categories .category.show_category .category_items {
    display: block;
}
section.menu .categories .category .category_items .category_item {
    position: relative;
    padding: 20px 20px 30px 20px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
section.menu .categories .category .category_items .category_item + .category_item {
    border-top: 1px solid #F3F3F3;
}
section.menu .categories .category .category_items .category_item .category_item_product {
    max-width: 220px;
    margin-top: 12px;
}
section.menu .categories .category .category_items .category_item .category_item_product .category_item_product_attributes {
    margin-top: 15px;
}
section.menu .categories .category .category_items .category_item .category_item_product .category_item_product_attributes .variant {
    margin-right: 10px;
}
section.menu .categories .category .category_items .category_item .category_item_product .category_item_product_price {
    margin-top: 15px;
}
section.menu .categories .category .category_items .category_item .category_item_product .category_item_product_price .currency {
    margin-left: 5px;
}
section.menu .categories .category .category_items .category_item .category_item_addtocart {
    margin-left: 10px;
}
section.menu .categories .category .category_items .category_item .category_item_addtocart .quantity {
    width: 52px;
    height: 42px;
    border-radius: 21px;
    background-color: #F6F6F6;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    transition: width 200ms ease, background-color 200ms ease;
}
section.menu .categories .category .category_items .category_item.category_item_added .category_item_addtocart .quantity {
    width: 104px;
    background-color: #FFDA40;
}
section.menu .categories .category .category_items .category_item .category_item_addtocart .quantity .quantity_decrement {
    width: 52px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    text-decoration: none;
    display: none;
}
section.menu .categories .category .category_items .category_item.category_item_added .category_item_addtocart .quantity .quantity_decrement {
    display: block;
}
section.menu .categories .category .category_items .category_item .category_item_addtocart .quantity .quantity_amount {
    position: absolute;
    width: 52px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    text-decoration: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: none;
}
section.menu .categories .category .category_items .category_item.category_item_added .category_item_addtocart .quantity .quantity_amount {
    display: block;
}
section.menu .categories .category .category_items .category_item .category_item_addtocart .quantity .quantity_increment {
    width: 52px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    text-decoration: none;
}
@-webkit-keyframes slideup {
    from { -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); }
    to { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
}
@keyframes slideup {
    from { -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); }
    to { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
}
section.menu .gotocart {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    display: none;
    z-index: 2;
    overflow: hidden;
    -webkit-animation-name: slideup;
    animation-name: slideup;
    -webkit-animation-delay: 0ms;
    animation-delay: 0ms;
    -webkit-animation-direction: normal;
    animation-direction: normal;
    -webkit-animation-duration: 250ms;
    animation-duration: 250ms;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
}
body.show_gotocart section.menu .gotocart {
    display: block;
    -webkit-animation-play-state: running;
    animation-play-state: running;
}
section.menu .gotocart .gotocart_button {
    position: relative;
    padding: 30px 20px;
    background-color: #FFDA40;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    text-decoration: none;
    border-radius: 10px 10px 0 0;
}
section.menu .gotocart .gotocart_button .gotocart_title .title {
    margin-right: 10px;
}

/* overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
    background-color: #000000;
    opacity: 0;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: opacity 500ms ease;
}
body.show_overlay .overlay {
    opacity: 0.25;
    pointer-events: all;
}

/* terms */
.terms {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    transition: -webkit-transform 500ms ease;
    transition: transform 500ms ease;
    transition: transform 500ms ease, -webkit-transform 500ms ease;
}
body.show_terms .terms {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.terms .elements {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.terms .elements .element.terms_header {
    position: relative;
}
.terms .elements .element.terms_header .terms_header_back_button {
    position: relative;
    height: 80px;
    padding: 18px 20px 18px 4px;
    background-color: #FFDA40;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    text-decoration: none;
    border-radius: 10px 10px 0 0;
}
.terms .elements .element.terms_header .terms_header_back_button .terms_header_back {
    padding: 16px;
    margin-right: 10px;
    display: block;
}
.terms .elements .element.terms_header .terms_header_back_button .terms_header_back img {
    display: block;
}
.terms .elements .element.terms_text {
    position: relative;
    background-color: #ffffff;
    padding: 24px 20px;
    overflow: scroll;
    -webkit-flex: 1;
    flex: 1;
}

/* subpage */
.subpage {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    transition: -webkit-transform 500ms ease;
    transition: transform 500ms ease;
    transition: transform 500ms ease, -webkit-transform 500ms ease;
}
.subpage .elements {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.subpage .elements .element.subpage_header {
    position: relative;
}
.subpage .elements .element.subpage_header .subpage_header_back_button {
    position: relative;
    height: 80px;
    padding: 18px 20px 18px 4px;
    background-color: #FFDA40;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    text-decoration: none;
    border-radius: 10px 10px 0 0;
}
.subpage .elements .element.subpage_header .subpage_header_back_button .subpage_header_icon {
    padding: 16px;
    margin-right: 10px;
}
.subpage .elements .element.subpage_header .subpage_header_back_button .subpage_header_icon img {
    display: block;
}
.subpage .elements .element.subpage_text {
    position: relative;
    background-color: #ffffff;
    padding: 24px 20px;
    overflow: scroll;
    -webkit-flex: 1;
    flex: 1;
}
.subpage .elements .element.subpage_text ul {
    list-style: inside;
    margin-left: 20px;
}
.subpage .elements .element.subpage_text img {
    position: relative;
    max-width: 100%;
    height: auto;
}

/* paymentmethods */
body.show_paymentmethods .paymentmethods {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* privacypolicy */
.privacypolicy {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    transition: -webkit-transform 500ms ease;
    transition: transform 500ms ease;
    transition: transform 500ms ease, -webkit-transform 500ms ease;
}
body.show_privacypolicy .privacypolicy {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.privacypolicy .elements {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.privacypolicy .elements .element.privacypolicy_header {
    position: relative;
}
.privacypolicy .elements .element.privacypolicy_header .privacypolicy_header_back_button {
    position: relative;
    height: 80px;
    padding: 18px 20px 18px 4px;
    background-color: #FFDA40;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    text-decoration: none;
    border-radius: 10px 10px 0 0;
}
.privacypolicy .elements .element.privacypolicy_header .privacypolicy_header_back {
    padding: 16px;
    margin-right: 10px;
    display: block;
}
.privacypolicy .elements .element.privacypolicy_header .privacypolicy_header_back img {
    display: block;
}
.privacypolicy .elements .element.privacypolicy_text {
    position: relative;
    background-color: #ffffff;
    padding: 24px 20px;
    overflow: scroll;
    -webkit-flex: 1;
    flex: 1;
}

/* cart */
.cart {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    transition: -webkit-transform 500ms ease;
    transition: transform 500ms ease;
    transition: transform 500ms ease, -webkit-transform 500ms ease;
}
body.show_cart .cart {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.cart .elements {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.cart .cart_header {
    position: relative;
    height: 80px;
    padding: 18px 4px 18px 20px;
    background-color: #FFDA40;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    text-decoration: none;
    border-radius: 10px 10px 0 0;
}
.cart .cart_header .cart_header_close .close_button {
    padding: 16px;
    display: block;
}
.cart .cart_header .cart_header_close .close_button img {
    display: block;
}
.cart .cart_order {
    -webkit-flex: 1;
    flex: 1;
    overflow-y: scroll;
    background-color: #ffffff;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}
.cart .cart_order .cart_order_items {
    padding-bottom: 40px;
    -webkit-flex: 1;
    flex: 1;
}
.cart .cart_order .cart_order_items .cart_order_items_products .cart_order_item {
    padding: 24px 20px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
}

.cart .cart_order .cart_order_items .cart_order_items_products .cart_order_item + .cart_order_item {
    border-top: 1px solid #F3F3F3;
}
.cart .cart_order .cart_order_items .cart_order_items_products .cart_order_item .cart_order_item_amount {
    width: 25px;
}
.cart .cart_order .cart_order_items .cart_order_items_products .cart_order_item .cart_order_item_times {
    text-align: center;
    width: 20px;
    margin-right: 15px;
}
.cart .cart_order .cart_order_items .cart_order_items_products .cart_order_item .cart_order_item_title {
    -webkit-flex: 1;
    flex: 1;
    margin-right: 15px;
}
.cart .cart_order .cart_order_items .cart_order_items_products .cart_order_item .cart_order_item_price .currency {
    margin-left: 5px;
}
.cart .cart_order .cart_order_items .cart_order_items_tips {
    position: relative;
    border-top: 1px solid #F3F3F3;
}
.cart .cart_order .cart_order_items .cart_order_items_tips a {
    position: relative;
    padding: 24px 20px;
    display: -webkit-flex;
    display: flex;
    color: #69a3fb;
    text-decoration: none;
}
.cart .cart_order .cart_order_items .cart_order_items_tips a .icon {
    position: relative;
    width: 45px;
    margin-right: 15px;
}
.cart .cart_order .cart_order_items .cart_order_items_tips a .label {
    position: relative;
    -webkit-flex: 1;
    flex: 1;
}
.cart .cart_order .cart_order_items .cart_order_items_tips a .label .before_tip {
    display: block;
}
.cart .cart_order .cart_order_items .cart_order_items_tips a .label .after_tip {
    display: none;
}
body.tips_added .cart .cart_order .cart_order_items .cart_order_items_tips a .label .before_tip {
    display: none;
}
body.tips_added .cart .cart_order .cart_order_items .cart_order_items_tips a .label .after_tip {
    display: block;
}
.cart .cart_order .cart_order_items .cart_order_items_tips a .tips_amount {
    position: relative;
}
.cart .cart_order .cart_order_items .cart_order_items_tips a .tips_amount .currency {
    margin-left: 5px;
}
.cart .cart_order .cart_order_items .cart_order_items_comment {
    position: relative;
    border-top: 1px solid #F3F3F3;
}
.cart .cart_order .cart_order_items .cart_order_items_comment a {
    position: relative;
    padding: 24px 20px;
    display: -webkit-flex;
    display: flex;
    color: #69a3fb;
    text-decoration: none;
}
.cart .cart_order .cart_order_items .cart_order_items_comment a .icon {
    position: relative;
    width: 45px;
    margin-right: 15px;
}
.cart .cart_order .cart_order_items .cart_order_items_comment a .label {
    position: relative;
    display: -webkit-flex;
    display: flex;
}
.cart .cart_order .cart_order_items .cart_order_items_comment a .label .before_comment {
    display: block;
}
.cart .cart_order .cart_order_items .cart_order_items_comment a .label .after_comment {
    display: none;
}
.cart .cart_order .cart_order_items .cart_order_items_comment a .label .comment {
    display: none;
    margin-left: 20px;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-flex: 1;
    flex: 1;
}
body.comment_added .cart .cart_order .cart_order_items .cart_order_items_comment a .label .before_comment {
    display: none;
}
body.comment_added .cart .cart_order .cart_order_items .cart_order_items_comment a .label .after_comment {
    display: block;
}
body.comment_added .cart .cart_order .cart_order_items .cart_order_items_comment a .label .comment {
    display: block;
}

.cart .cart_order .cart_order_total {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    z-index: 1;
    background-color: #ffffff;
    padding: 40px 20px 20px 20px;
    border-top: 1px solid #F3F3F3;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
}
.cart .cart_order .cart_order_total .cart_order_total_price .currency {
    margin-left: 5px;
}
.cart .cart_order .cart_order_total:before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 60px;
    pointer-events: none;
    background: linear-gradient(0deg, rgba(0,0,0,0.07) 0%, rgba(0,0,0,0) 100%);
}

.cart .cart_footer {
    position: relative;
    background-color: #ffffff;
    border-top: 1px solid #D3D3D3;
}
.cart .cart_footer .cart_footer_terms .notification {
    position: relative;
    background-color: #FFDEE3;
    padding: 10px 100px 10px 20px;
    display: none;
}
body.show_terms_notification .cart .cart_footer .cart_footer_terms .notification {
    display: block;
}
.cart .cart_footer .cart_footer_terms .notification:after {
    content: '';
    position: absolute;
    left: 36px;
    bottom: -4px;
    width: 10px;
    height: 10px;
    background-color: #FFDEE3;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.cart .cart_footer .cart_footer_terms .acceptance {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    padding: 20px;
}
.cart .cart_footer .cart_footer_terms .acceptance .acceptance_input {
    position: relative;
    margin-right: 10px;
}
.cart .cart_footer .cart_footer_terms .acceptance .acceptance_input .terms_checkbox {
    position: relative;
    width: 42px;
    height: 42px;
    background-color: transparent;
    border: 2px solid #000000;
    border-radius: 21px;
    display: block;
    transition: background-color 250ms ease, border 250ms ease;
}
body.enable_gotopayment_button .cart .cart_footer .cart_footer_terms .acceptance .acceptance_input .terms_checkbox {
    background-color: #FFE5E9;
    border: 2px solid transparent;
}
.cart .cart_footer .cart_footer_terms .acceptance .acceptance_input .terms_checkbox img {
    position: absolute;
    top: 50%;
    left: 50%;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    opacity: 0;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    transition: opacity 250ms ease;
}
body.enable_gotopayment_button .cart .cart_footer .cart_footer_terms .acceptance .acceptance_input .terms_checkbox img {
    opacity: 1;
}
.cart .cart_footer .cart_footer_button {
    padding: 0 20px 20px 20px;
}
.cart .cart_footer .cart_footer_button .gotopayment_button {
    display: block;
    text-align: center;
    padding: 25px;
    background-color: #F3F3F3;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 250ms ease;
}
body.enable_gotopayment_button .cart .cart_footer .cart_footer_button .gotopayment_button {
    background-color: #FFDA40;
}
.cart .cart_footer .cart_footer_button .gotopayment_button span {
    opacity: 0.5;
    transition: opacity 250ms ease;
}
body.enable_gotopayment_button .cart .cart_footer .cart_footer_button .gotopayment_button span {
    opacity: 1;
}

.pensopay img {
    width: 100%;
    height: auto;
    display: block;
}

/* tips_overlay */
.tips_overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 500ms ease;
}
body.show_tips_overlay .tips_overlay {
    pointer-events: auto;
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
    opacity: 1;
}
.tips_overlay .elements {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 20px;
    background-color: #fff;
    border-radius: 10px;
    opacity: 0;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    transition: opacity 250ms ease, -webkit-transform 250ms ease;
    transition: opacity 250ms ease, transform 250ms ease;
    transition: opacity 250ms ease, transform 250ms ease, -webkit-transform 250ms ease;
}
body.show_tips_overlay .tips_overlay .elements {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.tips_overlay .elements .tips_header {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.tips_overlay .elements .tips_header .tips_header_title {
    position: relative;
    padding: 25px;
}
.tips_overlay .elements .tips_header .tips_header_close {
    position: relative;
}
.tips_overlay .elements .tips_header .tips_header_close a.close_button {
    position: relative;
    padding: 25px;
    display: block;
    text-decoration: none;
}
.tips_overlay .elements .tips_description {
    position: relative;
    padding: 0 25px;
    color: #828282;
}
.tips_overlay .elements .tips_form {
    position: relative;
    margin: 20px 25px;
}
.tips_overlay .elements .tips_form .fields {
    position: relative;
}
.tips_overlay .elements .tips_form .fields .field {
    position: relative;
}
.tips_overlay .elements .tips_form .fields .field.field_input {}
.tips_overlay .elements .tips_form .fields .field.field_input input {
    width: 100%;
    height: 64px;
    padding: 0 55px 0 20px;
    border-radius: 10px;
    border: 1px solid #D3D3D3;
    background-color: #F6F6F6;
    outline: none;
}
.tips_overlay .elements .tips_form .fields .field.field_input .field_after {
    position: absolute;
    top: 50%;
    right: 0;
    padding: 20px;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.tips_overlay .elements .tips_form .actions {
    position: relative;
}
.tips_overlay .elements .tips_form .actions .addtips {
    position: relative;
}
.tips_overlay .elements .tips_form .actions .addtips a.addtips_button {
    position: relative;
    height: 64px;
    width: 100%;
    margin-top: 10px;
    border-radius: 10px;
    background-color: #FFDA40;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    text-decoration: none;
}
.tips_overlay .elements .tips_form .actions .addtips a.addtips_button .before_tip {
    display: block;
}
.tips_overlay .elements .tips_form .actions .addtips a.addtips_button .after_tip {
    display: none;
}
body.tips_added .tips_overlay .elements .tips_form .actions .addtips a.addtips_button .before_tip {
    display: none;
}
body.tips_added .tips_overlay .elements .tips_form .actions .addtips a.addtips_button .after_tip {
    display: block;
}

/* comment_overlay */
.comment_overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 500ms ease;
}
body.show_comment_overlay .comment_overlay {
    pointer-events: auto;
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
    opacity: 1;
}
.comment_overlay .elements {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 20px;
    background-color: #fff;
    border-radius: 10px;
    opacity: 0;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    transition: opacity 250ms ease, -webkit-transform 250ms ease;
    transition: opacity 250ms ease, transform 250ms ease;
    transition: opacity 250ms ease, transform 250ms ease, -webkit-transform 250ms ease;
}
body.show_comment_overlay .comment_overlay .elements {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.comment_overlay .elements .comment_header {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.comment_overlay .elements .comment_header .comment_header_title {
    position: relative;
    padding: 25px;
}
.comment_overlay .elements .comment_header .comment_header_close {
    position: relative;
}
.comment_overlay .elements .comment_header .comment_header_close a.close_button {
    position: relative;
    padding: 25px;
    display: block;
    text-decoration: none;
}
.comment_overlay .elements .comment_description {
    position: relative;
    padding: 0 25px;
    color: #828282;
}
.comment_overlay .elements .comment_form {
    position: relative;
    margin: 20px 25px;
}
.comment_overlay .elements .comment_form .fields {
    position: relative;
}
.comment_overlay .elements .comment_form .fields .field {
    position: relative;
}
.comment_overlay .elements .comment_form .fields .field.field_textarea {}
.comment_overlay .elements .comment_form .fields .field.field_textarea textarea {
    width: 100%;
    max-width: 100%;
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid #D3D3D3;
    background-color: #F6F6F6;
    outline: none;
    resize: none;
    display: block;
}
.comment_overlay .elements .comment_form .fields .field.field_textarea .count {
    position: absolute;
    bottom: 0;
    right: 0;
    min-width: 50px;
    text-align: center;
    z-index: 1;
    padding: 2px 5px;
    background-color: #fff;
    border: 1px solid #D3D3D3;
    border-radius: 0 0 10px 0;
    line-height: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}
.comment_overlay .elements .comment_form .actions {
    position: relative;
}
.comment_overlay .elements .comment_form .actions .addcomment {
    position: relative;
}
.comment_overlay .elements .comment_form .actions .addcomment a.addcomment_button {
    position: relative;
    height: 64px;
    width: 100%;
    margin-top: 10px;
    border-radius: 10px;
    background-color: #FFDA40;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    text-decoration: none;
}
.comment_overlay .elements .comment_form .actions .addcomment a.addcomment_button .before_comment {
    display: block;
}
.comment_overlay .elements .comment_form .actions .addcomment a.addcomment_button .after_comment {
    display: none;
}
body.comment_added .comment_overlay .elements .comment_form .actions .addcomment a.addcomment_button .before_comment {
    display: none;
}
body.comment_added .comment_overlay .elements .comment_form .actions .addcomment a.addcomment_button .after_comment {
    display: block;
}

/* section: footer */
section.footer {
    position: relative;
    padding: 40px 20px;
}
section.footer .title_text {
    text-align: center;
}

/* section: calltoaction */
section.calltoaction {
    position: relative;
    padding: 40px 20px;
}
section.calltoaction .title_text {
    text-align: center;
}
section.calltoaction .element.button {
    margin-top: 10px;
}
section.calltoaction .neworder_button {
    position: relative;
    padding: 24px 20px;
    background-color: #FFDA40;
    text-decoration: none;
    border-radius: 10px;
    text-align: center;
    display: block;
}
section.calltoaction .element.link .download_button {
    position: relative;
    padding: 24px 20px;
    text-decoration: none;
    text-align: center;
    display: block;
    color: #69A3FB;
}

/* section: page-top */
section.page-top {
    position: relative;
    margin: 140px auto 80px auto;
    padding: 0 20px;
    max-width: 540px;
}
section.page-top .description {
    margin-top: 20px;
}

/* section: confirmation */
section.page-list {
    position: relative;
    margin: 40px auto;
    padding: 0 20px;
    max-width: 540px;
}
section.page-list .heading {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}
section.page-list .heading .icon {
    position: relative;
    width: 60px;
    height: 48px;
    background-image: url(../images/browsers.png);
    background-repeat: no-repeat;
}
section.page-list .heading .icon.chrome {
    background-position: -200px 0;
}
section.page-list .heading .icon.explorer {
    background-position: 0px 0;
}
section.page-list .heading .icon.firefox {
    background-position: -100px 0;
}
section.page-list .heading .icon.opera {
    background-position: -300px 0;
}
section.page-list .heading .icon.safari {
    background-position: -400px 0;
}
section.page-list .list {
    margin-top: 20px;
}
section.page-list ol {
    list-style: decimal;
    padding-left: 30px;
}

/* section: confirmation */
section.confirmation {
    position: relative;
    margin: 0 auto;
    max-width: 540px;
}

section.confirmation .hero {
    position: relative;
    background-color: #ffffff;
    border-bottom: 1px solid #D3D3D3;
    overflow: hidden;
}

section.confirmation .hero .hero_image {
    position: absolute;
    top: 70px;
    left: 45%;
    width: 100%;
    z-index: 1;
}
section.confirmation .hero .hero_image img {
    position: relative;
    width: 100%;
    height: auto;
    max-width: 250px;
}
section.confirmation .hero .hero_text {
    position: relative;
    padding: 90px 20px 15px 20px;
    z-index: 2;
}
section.confirmation .hero .hero_text .hero_text_heading {
    margin-right: 40%;
}
section.confirmation .hero .hero_text .hero_text_subheading {
    margin-right: 40%;
    margin-top: 5px;
}
section.confirmation .hero .hero_text .hero_text_copy {
    margin-top: 100px;
}

/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-ball-fall,
.la-ball-fall > div {
    position: relative;
    box-sizing: border-box;
}
.la-ball-fall {
    display: block;
    font-size: 0;
    color: #FFDA40;
}
.la-ball-fall.la-dark {
    color: #333;
}
.la-ball-fall > div {
    display: inline-block;
    float: none;
    background-color: currentColor;
    border: 0 solid currentColor;
}
.la-ball-fall {
    width: 54px;
    height: 18px;
}
.la-ball-fall > div {
    width: 10px;
    height: 10px;
    margin: 4px;
    border-radius: 100%;
    opacity: 0;
    -webkit-animation: ball-fall 1s ease-in-out infinite;
            animation: ball-fall 1s ease-in-out infinite;
}
.la-ball-fall > div:nth-child(1) {
    -webkit-animation-delay: -200ms;
            animation-delay: -200ms;
}
.la-ball-fall > div:nth-child(2) {
    -webkit-animation-delay: -100ms;
            animation-delay: -100ms;
}
.la-ball-fall > div:nth-child(3) {
    -webkit-animation-delay: 0ms;
            animation-delay: 0ms;
}
.la-ball-fall.la-sm {
    width: 26px;
    height: 8px;
}
.la-ball-fall.la-sm > div {
    width: 4px;
    height: 4px;
    margin: 2px;
}
.la-ball-fall.la-2x {
    width: 108px;
    height: 36px;
}
.la-ball-fall.la-2x > div {
    width: 20px;
    height: 20px;
    margin: 8px;
}
.la-ball-fall.la-3x {
    width: 162px;
    height: 54px;
}
.la-ball-fall.la-3x > div {
    width: 30px;
    height: 30px;
    margin: 12px;
}
/*
 * Animation
 */
@-webkit-keyframes ball-fall {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-145%);
                transform: translateY(-145%);
    }
    10% {
        opacity: .5;
    }
    20% {
        opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
    80% {
        opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
    90% {
        opacity: .5;
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(145%);
                transform: translateY(145%);
    }
}
@keyframes ball-fall {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-145%);
                transform: translateY(-145%);
    }
    10% {
        opacity: .5;
    }
    20% {
        opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
    80% {
        opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
    90% {
        opacity: .5;
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(145%);
                transform: translateY(145%);
    }
}

/* business_closed */
#business_closed {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 4;
    background-color: #fff;
}
#business_closed .background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}
#business_closed .background .image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
#business_closed .background .image:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    opacity: 0.2;
}
#business_closed .background .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
#business_closed .foreground {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}
#business_closed .foreground .image {
    padding: 20px;
    -webkit-align-self: center;
    align-self: center;
    max-width: 300px;
}
#business_closed .foreground .image img {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
}
#business_closed .foreground .text {
    padding: 20px;
}
#business_closed .foreground .text .text_heading {}
#business_closed .foreground .text .text_subheading {
    margin-top: 10px;
}
/*# sourceMappingURL=style-min.css.map */