@font-face {
    font-family: "Axiforma";
    src: url("../font/axiforma-book.woff2") format("woff2"),
    url("../font/axiforma-book.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Axiforma";
    src: url("../font/axiforma-medium.woff2") format("woff2"),
    url("../font/axiforma-medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Axiforma";
    src: url("../font/axiforma-medium-italic.woff2") format("woff2"),
    url("../font/axiforma-medium-italic.woff") format("woff");
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Axiforma';
    src: url("../font/axiforma-heavy.woff2") format("woff2"),
    url("../font/axiforma-heavy.woff") format("woff");
    font-weight: 900;
    font-style: normal;
}

#vanillatoasts-container {
    z-index: 3;
    font-family: inherit;
}

.vanillatoasts-toast {
    background: #fff;
}

.vanillatoasts-success {
    border: 2px solid #0390f9;
}

.vanillatoasts-error {
    border: 2px solid #db2b1d;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

.screenreader-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    color: #504e4e;
    font-family: Axiforma, sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
}

h1,
h2 {
    margin-top: 0;
    color: #0390f9;
    text-transform: uppercase;
    font-weight: 900;
}

h1 {
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 37px;
}

h2 {
    font-size: 27px;
    line-height: 31px;
}

p {
    margin-top: 0;
    margin-bottom: 18px;
}

ul {
    margin: 0 0 18px;
    padding: 0 0 0 36px;
}

a {
    text-decoration: none;
    color: #0390f9;
}

fieldset {
    border: 0;
    padding: 0;
    margin: 0;
    min-width: 0;
}

@media screen and (max-width: 413px) {
    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }
}

.highlighted {
    font-weight: 900;
}

.button-large {
    display: inline-block;
    cursor: pointer;
    border: 0 none;
    border-radius: 35px;
    padding: 25px 70px;
    background: linear-gradient(to bottom, #09b1f0, #0978f5);
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    line-height: 20px;
    font-weight: 900;
}

.button-large:hover {
    filter: brightness(1.3333);
    color: #000;
}

#container {
    margin-right: auto;
    margin-left: auto;
    max-width: 1920px;
}

#header {
    position: relative;
    margin-bottom: 97px;
    background-image: url("../img/header-background-small.png") ;
    background-position: top center;
    background-repeat: no-repeat;

}

.index #header {
    background-image: url("../img/header-background.jpg") ;
    background-position: center;
    background-size: cover;
    padding-bottom: 67.65625%;
}

.header-stuck #header-top {
    background-image: url("../img/header-background-small.png") ;
    background-position: top center;
    background-repeat: no-repeat;
}

#header::after {
    display: block;
    clear: both;
    content: "";
}

#header-top::after {
    display: block;
    clear: left;
    content: "";
}

#mobile-menu {
    position: relative;
    background: #fff;
    padding: 30px 40px;
}

.header-stuck #mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
}

#mobile-menu-toggle {
    position: absolute;
    top: 6px;
    right: 24px;
    width: 48px;
    height: 48px;
    border: 0 none;
    border-radius: 8px;
    background: #0390f9;
    padding: 9px;
}

.menu-icon-bar {
    display: block;
    width: 30px;
    height: 6px;
    border-radius: 3px;
    background: #fff;
}

.menu-icon-bar + .menu-icon-bar {
    margin-top: 6px;
}

#header-brand {
    float: left;
}

#header-brand a {
    display: block;
}

#header-brand-text {
    color: #29292a;
    text-transform: uppercase;
    font-weight: 900;
}

#header-brand-logo img {
    display: block;
}

#header-menu {
    float: right;
}

#header-menu ul,
#mobile-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

#mobile-menu ul {
    height: 0;
    overflow-y: hidden;
    transition: height 0.5s ease-in-out;
}

#mobile-menu.open ul {
    height: 280px;
}

#header-menu ul::after {
    display: block;
    clear: left;
    content: "";
}

#header-menu li {
    float: left;
}

#mobile-menu li + li {
    margin-top: 20px;
}

#mobile-menu a,
#header-menu a {
    position: relative;
    border-radius: 16px;
    padding: 8px 20px 2px;
    color: #2b2b2d;
    text-transform: uppercase;
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
}

#mobile-menu a {
    display: inline-block;
}

#header-menu a {
    display: block;
}

#header-menu a:hover,
#mobile-menu a:hover {
    background: linear-gradient(to bottom, #02b5f6, #038ef9);
    color: #f9fbfd;
}

.menu-icon {
    position: relative;
    top: -3px;
    display: inline-block;
    height: 30px;
    vertical-align: middle;
}

.menu-icon-home {
    width: 32px;
    background: url("../img/menu-icon-home.png");
}

a:hover .menu-icon-home {
    background: url("../img/menu-icon-home-hover.png");
}

.menu-icon-delivery {
    width: 40px;;
    background: url("../img/menu-icon-delivery.png");
}

a:hover .menu-icon-delivery {
    background: url("../img/menu-icon-delivery-hover.png");
}

.menu-icon-shopping-cart {
    width: 28px;
    background: url("../img/menu-icon-shopping-cart.png");
}

a:hover .menu-icon-shopping-cart {
    background: url("../img/menu-icon-shopping-cart-hover.png");
}

.menu-icon-blog {
    width: 26px;
    background: url("../img/menu-icon-blog.png");
}

a:hover .menu-icon-blog {
    background: url("../img/menu-icon-blog-hover.png");
}

.menu-icon-contact {
    width: 30px;
    background: url("../img/menu-icon-contact.png");
}

a:hover .menu-icon-contact {
    background: url("../img/menu-icon-contact-hover.png");
}

#header-shopping-cart-item-count {
    position: absolute;
    top: 0;
    right: 0;
    height: 20px;
    border-radius: 10px;
    background: #0390f9;
    padding: 0 8px;
    color: #fff;
    line-height: 20px;
    font-size: 14px;
}

#header-shopping-cart-item-count.hidden {
    display: none;
}

#mobile-brand-logo img {
    display: block;
}

#mobile-brand-text {
    color: #29292a;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 37px;
    line-height: 37px;
}

#header-brand-text {
    float: left;
}

@media screen and (max-width: 479px) {
    #mobile-brand-logo {
        margin-right: auto;
        margin-left: auto;
        width: 105px;
    }

    #mobile-brand-text {
        margin-top: 9px;
        text-align: center;
    }
}

@media screen and (min-width: 480px) {
    #mobile-brand::after {
        display: block;
        clear: left;
        content: "";
    }

    #mobile-brand {
        margin-left: 19px;
        transform: translateY(6px);
        z-index: 1;
    }

    #mobile-brand-logo {
        float: left;
    }

    #mobile-brand-text {
        float: left;
        margin-top: 19px;
        margin-left: 9px;
    }
}

@media screen and (max-width: 799px) {
    #header-brand {
        display: none;
    }
}

@media screen and (min-width: 800px) {
    #mobile-brand {
        display: none;
    }
}

@media screen and (max-width: 1259px) {
    #header-brand::after {
        display: block;
        clear: left;
        content: "";
    }

    #header-brand-logo {
        float: left;
    }

    #header-menu {
        display: none;
    }
}

@media screen and (min-width: 1260px) {
    #mobile-menu {
        display: none;
    }

    .header-stuck #header-top {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        margin-right: auto;
        margin-left: auto;
        z-index: 2;
        max-width: 1920px;
        width: 100%;
    }
    #header-brand::after {
         display: block;
         clear: left;
         content: "";
     }

    #header-brand-logo {
        float: left;
    }
}

@media screen and (min-width: 1260px) and (max-width: 1419px) {
    #header-menu {
        margin-top: 19px;
        margin-right: 19px;
    }
}

@media screen and (min-width: 1260px) and (max-width: 1599px) {
    #header-menu li + li {
        margin-left: 10px;
    }
}

@media screen and (max-width: 1419px) {
    #header-brand {
        margin-top: 9px;
        margin-left: 19px;
    }

    .header-stuck #header-brand {
        margin-top: 6px;
    }
}

@media screen and (min-width: 1420px) {
    #header-brand {
        margin-top: 40px;
        margin-left: 108px;
    }

    .header-stuck #header-brand {
        margin-top: 5px;
    }

    .index.header-stuck #header-brand {
        margin-top: 5px;
    }

    #header-menu {
        margin-top: 25px;
        margin-right: 108px;
    }

    .header-stuck #header-menu {
        margin-top: 15px;
    }

    .index.header-stuck #header-menu {
        margin-top: 15px;
    }
}

@media screen and (max-width: 1599px) {
    #header-brand-text {
        margin-top: 40px;
        margin-left: 9px;
        font-size: 24px;
        line-height: 24px;
    }
}

@media screen and (min-width: 1600px) {
    #header-brand-text {
        margin-top: 19px;
        margin-left: 9px;
        font-size: 37px;
        line-height: 37px;
    }

    #header-menu li + li {
        margin-left: 20px;
    }
}

@media screen and (min-width: 1920px) {
    #header-brand {
        margin-left: 216px;
    }

    .index #header-brand {
        margin-top: 38px;
    }

    #header-menu {
        margin-right: 216px;
    }

    .index #header-menu {
        margin-top: 50px;
    }
}

#header-tagline {
    position: absolute;
    top: 25%;
    left: 33.3333%;
    width: 33.33333%;
    color: #fdfdfd;
    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
}

#header-scroll-to-products {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
    line-height: 0;
}

@media screen and (max-width: 767px) {
    #header-scroll-to-products {
        top: 100%;
    }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
    #header-scroll-to-products {
        top: 33.3333%;
    }
}

@media screen and (max-width: 1199px) {
    #header-tagline {
        display: none;
    }
}

@media screen and (min-width: 1200px) {
    #header-scroll-to-products {
        top: 50%;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1339px) {
    #header-tagline {
        font-size: 20px;
        line-height: 24px;
    }
}

@media screen and (min-width: 1340px) and (max-width: 1419px) {
    #header-tagline {
        font-size: 24px;
        line-height: 29px;
    }
}

@media screen and (min-width: 1420px) and (max-width: 1579px) {
    #header-tagline {
        font-size: 25px;
        line-height: 30px;
    }
}

@media screen and (min-width: 1580px) and (max-width: 1779px) {
    #header-tagline {
        font-size: 28px;
        line-height: 34px;
    }
}

@media screen and (min-width: 1780px) and (max-width: 1899px) {
    #header-tagline {
        font-size: 32px;
        line-height: 39px;
    }
}

@media screen and (min-width: 1900px) {
    #header-tagline {
        font-size: 34px;
        line-height: 41px;
    }
}

#footer {
    background: #01487c;
    padding-top: 25px;
    padding-bottom: 25px;
    color: #fff;
}

#footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

#footer li + li {
    margin-top: 15px;
}

#footer a {
    color: inherit;
}

@media screen and (min-width: 568px) and (max-width: 1023px) {
    #footer {
        text-align: center;
    }
}

@media screen and (max-width: 1023px) {
    .footer-block + .footer-block {
        margin-top: 30px;
    }
}

@media screen and (min-width: 1024px) {
    #footer-container {
        display: flex;
        justify-content: space-between;
    }
}

@media screen and (max-width: 1419px) {
    #footer-container {
        padding-right: 19px;
        padding-left: 19px;
    }
}

@media screen and (min-width: 1420px) {
    #footer-container {
        padding-right: 100px;
        padding-left: 100px;
    }
}

main::after {
    display: block;
    margin-top: 118px;
    background: url("../img/footer-background.jpg") center / cover no-repeat;
    padding-bottom: 64.1667%;
    content: "";
}

.faq {
    margin: 0;
    padding: 0;
}

.faq-item dt {
    position: relative;
    margin: 0;
    cursor: pointer;
    padding-top: 9px;
    padding-right: 18px;
    padding-bottom: 9px;
    color: #0390f9;
    line-height: 27px;
    font-size: 20px;
    font-weight: 400;
}

.faq-item dt::after {
    position: absolute;
    top: 18px;
    right: 0;
    width: 9px;
    height: 9px;
    border-top: 3px solid;
    border-left: 3px solid;
    content: "";
    transform: rotate(-45deg);
    transition: transform 0.5s;
}

.faq-item.open dt::after {
    transform: rotate(-135deg);
}

.faq-item dd {
    margin: 0;
    height: 0;
    overflow-y: hidden;
    transition: height 0.5s ease-in-out;
}

.faq-collapse {
    padding-top: 9px;
    padding-bottom: 27px;
}

.faq-collapse p,
.faq-collapse ul {
    margin: 0;
}

.faq-collapse p:not(:first-child),
.faq-collapse ul:not(:first-child) {
    margin-top: 9px;
}

#index-lead-image1 img {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
}

#index-lead-image2 img {
    display: block;
}

#scroll-to-products {
    margin-top: 54px;
    text-align: center;
}

#index-lead-text-image {
    max-width: 100%;
    width: 402px;
    margin-right: auto;
    margin-left: auto;
}

#index-lead-text-image img {
    display: block;
    width: 100%;
    height: auto;
}

@media screen and (max-width: 479px) {
    #index-lead-image1 {
        padding-right: 18px;
    }

    #index-lead-text {
        padding-right: 18px;
        padding-left: 18px;
    }
}

@media screen and (min-width: 480px) and (max-width: 959px) {
    #index-lead-image1 {
        padding-right: 36px;
    }

    #index-lead-text {
        padding-right: 36px;
        padding-left: 36px;
    }
}

@media screen and (max-width: 959px) {
    #index-lead-text {
        margin-top: 35px;
    }

    #index-lead-image2 {
        display: none;
    }
}

@media screen and (min-width: 960px) {
    #index-lead::after {
        display: block;
        clear: left;
        content: "";
    }

    #index-lead-images {
        float: left;
        width: 50%;
    }

    #index-lead-text {
        float: left;
        padding-right: 69px;
        padding-left: 69px;
    }

    #index-lead-image2 {
        margin-left: 33.3333%;
    }
}

@media screen and (min-width: 960px) {
    #index-lead-text {
        width: 50%;
    }
}

#index-products {
    margin-top: 60px;
    margin-right: auto;
    margin-left: auto;
}

#index-products .product {
    border-radius: 26px;
    border: 2px solid #0390f9;
    padding-top: 34px;
    padding-bottom: 51px;
}

#index-products .product-top {
    position: relative;
}

#index-products .product-info {
    position: absolute;
    bottom: 0;
    z-index: 1;
}

#index-products .product-info-popup-toggle {
    display: block;
    margin: 0;
    border: 0 none;
    padding: 0;
    background: transparent;
    cursor: pointer;
    color: #0390f9;
    font-size: 16px;
    line-height: 16px;
}

#index-products .product-info-popup-toggle span {
    vertical-align: middle;
}

#index-products .product-info-popup {
    display: none;
    position: absolute;
    border: 1px solid #0390f9;
    border-radius: 9px;
    background: #fff;
    white-space: nowrap;
    line-height: 27px;
}

#index-products .product-info-popup.open {
    display: block;
}

.info-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url("../img/info-icon.png");
}

#index-products .product-animated-image-button {
    position: absolute;
    top: -14px;
    left: 16px;
    width: 81px;
    height: 80px;
    border: 0 none;
    background: url("../img/360-icon.png");
    padding: 0;
    cursor: pointer;
}

#index-faq {
    margin-top: 110px;
    margin-right: auto;
    margin-left: auto;
}

@media screen and (max-width: 479px) {
    #index-products .product-info-popup {
        bottom: 60px;
        left: 0;
        padding: 18px;
    }
}

@media screen and (min-width: 480px) {
    #index-products .product-info-popup {
        bottom: 48px;
        left: 0;
        padding: 18px 36px;
    }
}

#index-products .product-image {
    display: block;
    width: 100%;
}

#index-products .product-text {
    margin-top: 35px;
}

#index-products h2 {
    margin-bottom: 0;
}

.product-stock-message {
    margin-top: 35px;
    color: #0390f9;
}

#index-products .product-stock-message {
    margin-top: 21px;
    height: 54px;
}

.add-item-form {
    margin-top: 35px;
}

#index-products .add-item-form {
    margin-top: 21px;
}

.add-item-form-quantity::after {
    display: block;
    clear: left;
    content: "";
}

.add-item-form input[type="text"] {
    float: left;
    width: 70px;
    height: 35px;
    border: 2px solid #0390f9;
    border-radius: 17px;
    padding-right: 15px;
    padding-left: 15px;
    color: #0390f9;
    font-size: 15px;
    line-height: 15px;
}

.add-item-form label {
    float: left;
    margin-top: 12px;
    margin-left: 12px;
    color: #0390f9;
    font-size: 15px;
    line-height: 15px;
}

.product-price {
    margin-top: 25px;
    color: #0390f9;
    font-size: 45px;
    line-height: 45px;
    font-weight: 900;
}

.product-price-converted {
    font-size: 21px;
    font-weight: 400;
}

.add-item-form-actions {
    margin-top: 25px;
}

@media screen and (max-width: 479px) {
    #index-products,
    #index-faq {
        width: 294px;
    }

    #index-products .product-top {
        padding-right: 15px;
        padding-left: 15px;
    }

    #index-products .product-info {
        left: 20px;
    }

    #index-products .product-text {
        padding-right: 20px;
        padding-left: 20px;
    }

    #index-products .product-stock-message {
        padding-left: 20px;
        padding-right: 20px;
    }

    .add-item-form {
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media screen and (min-width: 480px) and (max-width: 959px) {
    #index-products,
    #index-faq {
        width: 392px;
    }

    #index-products .product-top {
        padding-right: 20px;
        padding-left: 20px;
    }

    #index-products .product-info {
        left: 35px;
    }

    #index-products .product-text {
        padding-left: 35px;
    }

    #index-products .product-price {
        padding-left: 20px;
    }

    #index-products .product-stock-message {
        padding-left: 55px;
    }

    .add-item-form {
        padding-left: 55px;
    }
}

@media screen and (max-width: 959px) {
    #index-products .product:not(:first-child) {
        margin-top: 35px;
    }

    .add-item-form-actions {
        text-align: center;
    }
}

@media screen and (min-width: 960px) {
    #index-products {
        display: flex;
        flex-wrap: wrap;
        justify-content: left;
        align-items: stretch;
    }

    #index-products .break {
        flex: 100%;
        height: 0;
    }
}

@media screen and (min-width: 960px) and (max-width: 1023px) {
    #index-products {
        width: 849px;
        margin-bottom: -22px;
    }

    #index-faq {
        width: 827px;
    }

    #index-products .product {
        width: 261px;
        margin-right: 11px;
        margin-bottom: 22px;
        margin-left: 11px;
    }

    #index-products .product-top {
        padding-right: 10px;
        padding-left: 10px;
    }

    #index-products .product-info {
        left: 15px;
    }

    #index-products .product-text {
        padding-right: 15px;
        padding-left: 15px;
    }

    #index-products .product h2 {
        height: 93px;
    }

    #index-products .product-stock-message {
        padding-left: 15px;
        padding-right: 15px;
    }

    .add-item-form {
        padding-right: 15px;
        padding-left: 15px;
    }

    .add-item-form .button-large {
        padding-right: 0;
        padding-left: 0;
        width: 100%;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1339px) {
    #index-products {
        width: 958px;
    }

    #index-faq {
        width: 932px;
    }

    #index-products .product {
        margin-right: 13px;
        margin-bottom: 26px;
        margin-left: 13px;
        width: 293px;
    }

    #index-products .product-top {
        padding-right: 15px;
        padding-left: 15px;
    }

    #index-products .product-info {
        left: 20px;
    }

    #index-products .product-text {
        padding-right: 20px;
        padding-left: 20px;
    }

    #index-products .product-stock-message {
        padding-left: 20px;
        padding-right: 20px;
    }

    .add-item-form {
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media screen and (min-width: 1340px) {
    #index-products {
        margin-bottom: -32px;
        width: 1275px;
    }

    #index-faq {
        width: 1242px;
    }

    #index-products .product {
        margin-right: 16px;
        margin-bottom: 32px;
        margin-left: 16px;
        width: 393px;
    }

    #index-products .product-top {
        padding-right: 20px;
        padding-left: 20px;
    }

    #index-products .product-info {
        left: 35px;
    }

    #index-products .product-text {
        padding-left: 35px;
    }

    #index-products .product h2 {
        height: 62px;
    }

    #index-products .product-price {
        padding-left: 20px;
    }

    #index-products .product-stock-message {
        padding-left: 55px;
    }

    .add-item-form {
        padding-left: 55px;
    }
}

@media screen and (max-width: 479px) {
    .subpage {
        padding-right: 9px;
        padding-left: 9px;
    }
}

@media screen and (min-width: 480px) and (max-width: 799px) {
    .subpage {
        padding-right: 36px;
        padding-left: 36px;
    }
}

@media screen and (min-width: 800px) and (max-width: 1259px) {
    .subpage {
        padding-right: 72px;
        padding-left: 72px;
    }
}

@media screen and (min-width: 1260px) {
    .subpage {
        margin-right: auto;
        margin-left: auto;
        width: 1024px;
    }
}

#shopping-cart-table {
    width: 100%;
    border-collapse: collapse;
}

#shopping-cart-table th,
#shopping-cart-table td {
    border: 0 none;
    padding: 9px 18px;
}

#shopping-cart-table th {
    text-align: left;
}

#shopping-cart-table .price {
    text-align: right;
}

#shopping-cart-table tbody tr:hover {
    background: #eee;
}

.update-item-quantity-form input[type="number"] {
    width: 72px;
}

#shopping-cart-actions {
    margin-top: 36px;
}

@media screen and (max-width: 639px){
    #shopping-cart-actions a:last-child {
        display: table; /* sortörés kikényszerítése */
        margin-top: 36px;
    }
}

@media screen and (min-width: 640px) {
    #shopping-cart-actions::after {
        display: block;
        clear: both;
        content: "";
    }

    #shopping-cart-actions a:first-child {
        float: left;
    }

    #shopping-cart-actions a:last-child {
        float: right;
        margin-top: 26px;
    }
}

.validation-error,
.form-control-help {
    margin-top: 6px;
    padding-left: 17px;
    font-size: 13px;
}

.validation-error {
    color: red;
}

#order-form {
    margin-right: auto;
    margin-left: auto;
    max-width: 512px;
    color: #0390f9;
}

#order-form h2 {
    margin-top: 48px;
    margin-bottom: 6px;
    line-height: inherit;
    font-size: inherit;
}

#order-form fieldset {
    margin-top: 48px;
    margin-bottom: 48px;
}

#order-form legend {
    margin-bottom: 6px;
    text-transform: uppercase;
    font-weight: 900;
}

#order-form .form-control {
    margin-bottom: 12px;
}

#order-form label {
    display: inline-block;
    font-weight: 500;
}

#order-form label[for] {
    margin-left: 17px;
}

#order-form input[type="text"],
#order-form input[type="email"],
#order-form input[type="tel"] {
    display: block;
    width: 100%;
    height: 34px;
    border: 2px solid #0390f9;
    border-radius: 17px;
    padding-right: 17px;
    padding-left: 17px;
}

#accept-data-transfer {
    margin-top: 12px;
}

#order-prices {
    margin-top: -24px;
    margin-bottom: 24px;
    line-height: 45px;
}

.order-price + .order-price {
    margin-top: 9px;
}

.order-price-label {
    text-transform: uppercase;
    font-size: 27px;
    font-weight: 400;
}

.order-price-value {
    font-size: 45px;
    font-weight: 900;
}

#order-pickup-point {
    margin-bottom: 48px;
}

#order-pickup-point-selector {
    margin-bottom: 24px;
}

#order-pickup-point-name {
    text-transform: uppercase;
    font-weight: 700;
}

#order-pickup-point-selector iframe {
    width: 100%;
    height: 570px;
    border: 0 none;
}

.shipping-method-description {
    margin-top: 18px;
    margin-bottom: 18px;
}

.shipping-method-description::after {
    display: block;
    clear: right;
    content: "";
}

.shipping-method-description-image {
    float: right;
    margin-left: 18px;
    width: 112px;
    text-align: right;
}

.shipping-method-description-text {
    font-size: 13px;
}

.shipping-method-price:not(:empty) {
    margin-top: 18px;
}

#payment-method-price:not(:empty) {
    margin-top: 18px;
}

#preorder {
    margin-bottom: 36px;
    border: 3px solid #0390f9;
    border-radius: 18px;
    padding: 15px 33px;
    color: #0390f9;
}

#preorder::after {
    display: block;
    clear: left;
    content: "";
}

#preorder-icon {
    float: left;
    margin-right: 18px;
}

#preorder p:last-child {
    margin-bottom: 0;
}

#cookie-consent-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2147483647;
    background: #000;
    opacity: 0.5;
    transition: opacity 1s;
}

#cookie-consent-modal-overlay.cookie-consent-visible {
    display: block;
}

#cookie-consent-modal {
    display: none;
    position: fixed;
    top: 10vh;
    left: 0;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 2147483647;
    background: rgba(255, 255, 255, 0.95);
    padding: 36px 20px 45px;
    color: #000;
    transform: scaleY(0);
    transition: transform 1s ease-in-out;
    text-align: center;
    font-family: Axiforma, sans-serif;
}

#cookie-consent-modal.cookie-consent-visible {
    display: block;
    transform: scaleY(1);
}

#cookie-consent-modal a {
    color: #0390f9;
    text-decoration: none;
}

#cookie-consent-modal span {
    color: inherit;
}

#cookie-consent-modal-heading,
#cookie-consent-modal-body {
    margin-right: auto;
    margin-left: auto;
    max-width: 1024px;
}

#cookie-consent-modal-heading {
    margin-top: 19px;
    text-transform: uppercase;
}

#cookie-consent-modal-body {
    margin-top: 25px;
}

#cookie-consent-settings {
    display: inline-block;
    margin-top: 22px;
}

.cookie-consent-setting input[type="checkbox"] {
    margin: 0 3px 0 0;
}

#cookie-consent-settings label {
    font-weight: inherit;
    font-size: 18px;
    line-height: 22px;
}

#cookie-consent-accept-all-button {
    display: block;
    margin: 36px auto 18px;
    width: 280px;
    border-radius: 4px;
    border: none;
    background: #0390f9;
    padding-top: 14px;
    padding-bottom: 14px;
    color: #fff;
    text-align: center;
    line-height: 24px;
    font-weight: 400;
}

#cookie-consent-accept-all-button .cookie-consent-button-text-large {
    text-transform: uppercase;
    font-size: 24px;
}

#cookie-consent-accept-all-button .cookie-consent-button-text-small {
    text-transform: none;
    font-size: 16px;
}

#cookie-consent-actions {
    display: flex;
}

#cookie-consent-actions a {
    font-size: 13px;
    line-height: 21px;
}

#cookie-consent-details-collapsible {
    height: 0;
    overflow-y: hidden;
    transition: height 0.5s ease-in-out;
}

#cookie-consent-details {
    margin-right: auto;
    margin-left: auto;
    max-width: 1024px;
    padding-top: 21px;
    padding-bottom: 14px;
    text-align: left;
    font-size: 14px;
    line-height: 21px;
}

#cookie-consent-details dl,
#cookie-consent-details dt,
#cookie-consent-details dd {
    margin: 0;
    padding: 0;
}

#cookie-consent-details dt {
    font-weight: 700;
}

#cookie-consent-details dd + dt {
    margin-top: 7px;
}

@media screen and (max-width: 479px) {
    #cookie-consent-settings {
        text-align: left;
    }

    .cookie-consent-setting + .cookie-consent-setting {
        margin-top: 21px;
    }

    #cookie-consent-actions {
        flex-direction: column;
        justify-content: center;
    }

    #cookie-consent-actions a + a {
        margin-top: 21px;
    }
}

@media screen and (min-width: 480px) {
    #cookie-consent-settings::after {
        display: block;
        clear: left;
        content: "";
    }

    .cookie-consent-setting {
        float: left;
    }

    .cookie-consent-setting + .cookie-consent-setting {
        margin-left: 44px;
    }

    #cookie-consent-actions {
        flex-direction: row;
        justify-content: right;
    }

    #cookie-consent-actions a {
        margin-right: 21px;
    }
}

@media screen and (max-height: 640px){
    #cookie-consent-modal-heading {
        font-size: 25px;
    }

    #cookie-consent-modal-body {
        font-size: 18px;
        line-height: 22px;
    }
}

@media screen and (min-height: 641px){
    #cookie-consent-modal-heading {
        font-size: 35px;
        line-height: 42px;
    }

    #cookie-consent-modal-body {
        font-size: 21px;
        line-height: 26px;
    }
}

.product-page-image img {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
}

.product-page .add-item-form {
    padding-left: 0;
}

@media screen and (max-width: 639px) {
    .product-page-image img {
        margin-right: auto;
        margin-left: auto;
    }

    .product-page-text {
        margin-top: 72px;
    }
}

@media screen and (min-width: 640px) {
    .product-page-body::after {
        display: block;
        clear: left;
        content: "";
    }

    .product-page-image {
        float: left;
    }

    .product-page-text {
        float: left;
    }
}

@media screen and (min-width: 640px) and (max-width: 767px) {
    .product-page-image {
        width: 33.3333%;
    }

    .product-page-text {
        width: 66.6666%;
    }
}

@media screen and (min-width: 640px) and (max-width:1023px) {
    .product-page-text {
        padding-left: 60px;
    }
}

@media screen and (min-width: 768px) {
    .product-page-image {
        width: 50%;
        max-width: 392px;
    }

    .product-page-text {
        width: 50%;
    }
}

@media screen and (min-width: 1024px) {
    .product-page-text {
        padding-left: 120px;
    }
}

.back-to-home-link {
    margin-bottom: 72px;
}

#product-pager {
    margin-top: 72px;
}

#product-pager::after {
    display: block;
    clear: both;
    content: "";
}

#product-pager a {
    display: block;
}

.product-pager-image {
    position: relative;
}

#product-pager a:hover .product-pager-image::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 49px;
    height: 49px;
    content: "";
}

#product-pager-previous a:hover .product-pager-image::before {
    left: 50%;
    border-top: 10px solid rgba(3, 144, 249, 0.5);
    border-left: 10px solid rgba(3, 144, 249, 0.5);
    transform: translateX(-50%) rotate(-45deg);
}

#product-pager-next a:hover .product-pager-image::before {
    right: 50%;
    border-top: 10px solid rgba(3, 144, 249, 0.5);
    border-right: 10px solid rgba(3, 144, 249, 0.5);
    transform: translateX(50%) rotate(45deg);
}

.product-pager-image img {
    display: block;
    width: 100%;
    height: auto;
}

.product-pager-text {
    margin-top: 1em;
    text-align: center;
}

#product-pager-previous {
    float: left;
    width: 196px;
    max-width: 33.3333%;
}

#product-pager-next {
    float: right;
    width: 196px;
    max-width: 33.3333%;
}

@media screen and (min-width: 768px) {
    #product-pager-previous {
        margin-left: 16.6666%;
    }

    #product-pager-next {
        margin-right: 16.6666%;
    }
}

.pager {
    margin-top: 36px;
}

@media screen and (max-width: 413px) {
    .pager-link-wrapper {
        text-align: center;
    }

    .pager-link-wrapper + .pager-link-wrapper {
        margin-top: 18px;
    }
}

@media screen and (min-width: 414px) {
    .pager-links::after {
        display: block;
        clear: both;
        content: "";
    }

    .pager-previous-link-wrapper {
        float: left;
    }

    .pager-next-link-wrapper {
        float: right;
    }
}

.blog-post + .blog-post {
    margin-top: 36px;
}

.blog-post-title {
    margin-bottom: 0;
    text-transform: none;
}

.blog-post-excerpt {
    margin-top: 18px;
}

.blog-post-more {
    margin-top: 18px;
    text-align: right;
}

#animated-product-image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(3, 144, 249, 0.5);
}

#animated-product-image-modal.open {
    display: block;
    z-index: 9999;
}

#animated-product-image-modal-content {
    position: absolute;
    top: 10vh;
    left: 10vw;
    width: 80vw;
    height: 80vh;
    border-radius: 25px;
    border: 2px solid #0390f9;
    background: #fff;
}

#animated-product-image-modal-content iframe {
    position: absolute;
    top: 25px;
    left: 25px;
    width: calc(100% - 50px);
    height: calc(100% - 50px);
}

#animated-product-image-modal-close-button {
    position: absolute;
    top: 11px;
    right: 14px;
    width: 42px;
    height: 42px;
    border: 0 none;
    background: transparent;
    color: #0390f9;
    line-height: 42px;
    font-size: 36px;
    cursor: pointer;
}

