html {
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

p,
div,
span,
section,
article,
em,
li {
    color: #525252;
}

strong,
h1,
h2,
h3,
h4,
h5,
h6,
b,
div.bold,
.nav-item div,
span.bold,
div.medium,
span.medium,
h1 *,
h2 *,
h3 *,
h4 * {
    color: black;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

.allergies p {
    color: black;
}

.section-text {
    text-align: center;
    margin: 50px auto;
    max-width: 750px;
}

.section-text h2 {
    font-size: 36px;
    font-weight: 600;
}

.section-text p {
    font-size: 20px;
}

/* General stuff */
.btn {
    background-color: #b41414;
    color: white;
    text-transform: uppercase;
    border: 0;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    padding: 10px 15px;
    border-radius: 7px;
    cursor: pointer;
}

.variant-stock {
    font-size: 12px;
    padding: 2px 4px;
    color: white;
    border-radius: 3px;
    display: inline-block;
}

.variant-option.not-in-stock {
    opacity: .5;
    cursor: not-allowed;
}

.variant-option.in-stock {
    cursor: pointer;
}

.variant-stock.in-stock {
    background-color: #2ED373;
}

.variant-stock.not-in-stock {
    background-color: #EA5B5B
}

.rotate180 {
    transform: rotate(180deg);
    transition: all .2s ease-in-out;
}

.pointer {
    cursor: pointer;
}

.overflow-hidden {
    overflow: hidden;
}

.form-field {
    position: relative;
}

.form-field button {
    position: absolute;
    right: 10px;
    padding: 9px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
}

.form-field input {
    border-radius: 7px;
    padding: 10px;
}

.btn:disabled,
.btn[disabled] {
    opacity: .5;
}

.checkbox-container {
    display: block;
    position: relative;
    cursor: pointer;
    width: 20px;
    height: 20px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    display: none;
}

.checkbox-container .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border-radius: 3px;
    background-color: rgb(201, 201, 201);
}

.checkbox-container:hover input~.checkmark {
    background-color: #ccc;
}

.checkbox-container input:checked~.checkmark {
    background-color: #6d89dc;
}

.checkbox-container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked~.checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 8px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.h-100 {
    height: 100%;
}

.w-100 {
    width: 100%;
}

.flex-col {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.gap-5 {
    gap: 5px;
}

.gap-10 {
    gap: 10px;
}


.mw-100 {
    max-width: 100%;
}

.feedback-checkmark::before {
    content: "\2713";
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 50%;
    background-color: #34ab67;
    font-size: 15px;
    display: inline-flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
}

.product-img-wrapper {
    position: relative;
    padding-bottom: 100%;
    height: 0;
    border-radius: 7px;
    overflow: hidden;
}

img {
    max-width: 100%
}

.product-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.top-left {
    position: absolute;
    top: 10px;
    left: 10px;
}

.bottom-right {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.bottom-gradient {
    padding: 10px 20px;
    position: absolute;
    bottom: 0;
    background: linear-gradient(180deg, rgb(0 0 0 / 0%) 0%, rgb(0 0 0) 100%);
    width: 100%;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bottom-horizontal {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 0;
}

.no-link {
    text-decoration: none;
}

.no-border {
    border: 0;
}

.rounded {
    border-radius: 30px;
}

.rounded-small {
    border-radius: 7px;
}

.border-0 {
    border: 0;
}

.border {
    border: 1px solid rgb(243, 243, 243);
}

.border-medium {
    border: 2px solid rgb(243, 243, 243);
}

.border-bottom {
    border-bottom: 2px solid rgb(243, 243, 243);
}

.border-top-dashed {
    border-top: 2px dashed #bebebe;
    position: relative;
}

.border-top-dashed::after {
    content: "";
    width: 40px;
    height: 40px;
    top: -20px;
    position: absolute;
    right: -20px;
    background-color: white;
    border-radius: 50%;
}

.border-top-dashed::before {
    content: "";
    width: 40px;
    height: 40px;
    top: -20px;
    position: absolute;
    left: -20px;
    background-color: white;
    border-radius: 50%;
}


.label-border {
    border: 2px solid transparent;
    cursor: pointer;
}

.selected-option {
    background-color: #ecf2ff !important;
    border: 2px solid #89a6ff;
}

.pl-10 {
    padding-left: 10px;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.gap-20 {
    gap: 20px;
}

.sticky-basket-numbers {
    display: grid;
    grid-template-columns: 2fr 2fr;
}

.sticky-basket-numbers div:last-child {
    text-align: right;
}

.remove-product-sticky-basket,
.remove-product-in-basket {
    background-color: #F6F6F5;
    height: 35px;
    width: 35px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    cursor: pointer;
    user-select: none;
}

.object-fill {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.object-contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.youtube-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.youtube-video iframe,
.youtube-video img {
    position: absolute;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.youtube-video .play-button {
    width: 68px;
    height: 48px;
    background-color: #f00;
    border-radius: 12px;
}

.youtube-video .play-button .play {
    border-style: solid;
    box-sizing: border-box;
    width: 16px;
    height: 16px;
    border-width: 8px 0px 8px 16px;
    border-color: transparent transparent transparent white;
}

.animated-atb-image {
    height: 60px;
    background-color: white;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: all .5s;
}

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
}

.header-basket {
    cursor: pointer;
}

.header-basket-amount {
    line-height: 22px;
    width: 22px;
    height: 22px;
    left: -22px;
    top: -18px;
    font-size: 12px;
    font-weight: 600;
    background-color: #b41414;
    border-radius: 50%;
    text-align: center;
    color: white;
    position: absolute;
}

.footer-icons img {
    max-width: 50px;
    border-radius: 6px;
    margin-right: 10px;
}

.shadow {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.ml-auto {
    margin-left: auto;
}

.float-right {
    float: right;
}

/* Backgrounds */
.bg-white {
    background-color: white;
}

.bg-offwhite {
    background-color: #F9F7F6;
}

.bg-sand {
    background-color: #F6F0E9;
}

.bg-black {
    background-color: black;
}

.bg-highlight {
    background-color: #b41414
}

.bg-primary {
    background-color: #f3fbfb
}

.bg-secondary {
    background-color: #bae8e8
}

.bg-dark {
    background-color: #383433;
}

.bg-gray {
    background-color: #F6F6F5;
}

.bg-responsive {
    border: 1px solid rgb(229, 229, 229);
}

.bg-blue {
    background-color: #eaefff;
}

/* Text */
.text-white {
    color: white !important;
}

.text-light {
    color: #b4b4b4;
}

.text-black {
    color: black;
}

.text-primary {
    color: #8ac0c5
}

.text-secondary {
    color: #272343
}

.text-dark {
    color: #272343
}

.text-highlight {
    color: #8ac0c5
}

.text-lightgray {
    color: rgb(186, 186, 186);
}

.text-link {
    color: #707073;
}

.semi-big {
    font-size: 18px;
}


.xl-big {
    font-size: 27px;
}

.super-big {
    font-size: 60px;
}

.bold {
    font-weight: bold
}

.medium {
    font-weight: 600;
}

.small {
    font-size: 12px;
}

.semi-small {
    font-size: 14px;
}

h1.small {
    font-size: 25px;
}

h2.small {
    font-size: 19px;
}

.product-parent-wrapper {
    transition: all .5s;
    box-shadow: rgba(100, 100, 111, 0.0) 0px 7px 29px 0px;
    padding-bottom: 30px;
}

.product-page-info h2,
.product-page-info h2 span {
    font-size: 19px !important
}

.product-page-info h3,
.product-page-info h3 span {
    font-size: 17px !important
}

.tahoma {
    font-family: Tahoma, sans-serif;
}

.basket-icon-grid {
    display: grid;
    grid-template-columns: 1fr 4fr;
    grid-gap: 3px;
    align-items: center;
}

/* Navigation */

.navigation {
    background-color: #f5f5f5;
}

nav>.nav-item {
    font-weight: 600;
    color: black;
    font-size: 16px;
}

.nav-item {
    display: inline-block;
    padding: 15px 8px;
    color: #272343;
    vertical-align: middle;
}

.nav-item.discount a {
    position: relative;
    display: flex;
    gap: 5px;
    align-items: center;
    padding-right: 28px;
}

.nav-item.discount a::after,
.nav-item.discount a::before {
    background-color: #b41414;
    width: 18px;
    height: 18px;
    line-height: 18px;
    border-radius: 3px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    position: absolute;
    right: 0px;
    content: "%";
}

.nav-item.discount a::before {
    display: inline-block;
    transform: rotate(45deg);
}


.nav-item span {
    margin-left: 5px;
}

.nav-item>a {
    color: black;
}

.nav-item a {
    text-decoration: none;
    cursor: pointer;
}

.mega-menu {
    display: flex;
    padding: 20px;
    z-index: 10;
    width: 100%;
    left: 0;
    top: 40px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(0px);
    transition: all .3s ease-out;
}

.dropdown-menu {
    z-index: 10;
    padding: 20px;
    background-color: white;
    visibility: hidden;
    opacity: 0;
    transform: translateY(0px);
    transition: all .3s ease-out;
}

.mega-menu-title {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 10px;
    color: black;
}

/* Mobile navigation */

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

    .desktop-header {
        border-bottom: 1px solid rgb(229, 229, 229);
    }

    .navigation {
        width: 300px;
        max-width: 90%;
        height: 100vh;
        position: fixed;
        top: 0;
        left: -300px;
        z-index: 5;
        transition: all .3s;
        overflow: auto;
        background-color: white;
    }

    .navigation .navigation-overlay {
        width: 100vw;
        height: 100vh;
        position: fixed;
        left: -100vw;
        transition: all .3s;
    }

    .navigation.visible .navigation-overlay {
        left: 300px;
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
    }

    .navigation.visible {
        left: 0;
    }

    .navigation .nav-item {
        border-bottom: 2px solid rgb(238, 238, 238);
    }

    .navigation .nav-item,
    .navigation .nav-item a {
        display: block;
        font-size: 22px;
        font-weight: 500;
    }

    .navigation .nav-item.discount {
        float: none;
    }

    .nav-item.dropdown-menu {
        display: none;
    }

    .navigation .mega-menu,
    .navigation .dropdown-menu {
        padding: 0;
        width: auto;
        left: auto;
        top: auto;
        visibility: visible;
        opacity: 1;
        box-shadow: none;
        position: static;
        display: none;
        overflow: hidden;
    }

    .navigation .nav-item .mega-menu div .mega-menu-title {
        font-weight: 500 !important;
        margin-bottom: 0;
        padding-left: 10px;
    }

    .navigation .nav-item .mega-menu div,
    .navigation .nav-item .mega-menu a,
    .navigation .nav-item.dropdown-menu,
    .dropdown-menu div a {
        font-size: 14px !important;
        font-weight: normal !important;
    }

    .navigation .dropdown-menu.visible,
    .navigation .mega-menu.visible {
        display: block;
    }

    .navigation .dropdown-menu.visible .sub-menu-item,
    .navigation .mega-menu.visible .sub-menu-item {
        padding-left: 20px;
        padding-top: 10px;
    }

    .mobile-search.visible {
        display: block !important;
        order: 10;
        margin-top: 10px;
    }

    .search-input+.search-results-container {
        border-radius: 0 0 10px 10px;
        position: fixed;
        left: 0;
        visibility: visible;
        opacity: 1;
        transform: translateY(10px);
        transition: all .3s ease-out;
    }

    .search-results-container {
        width: 100vw;
        max-width: 100vw;
        margin-top: 0;
    }

    .mobile-slide-only {
        overflow: auto;
        overflow-y: visible;
        flex-wrap: nowrap;
        padding: 7px;
    }
}


.mobile-menu-visible {
    overflow: auto;
}

.mobile-navigation-links {
    overflow-x: hidden;
    overflow-y: auto;
}

.mobile-menu-item,
.mobile-menu-item a {
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-weight: 500;
    font-size: 18px;
    color: black;
    text-decoration: none;
    padding: 10px 0px;
}

.mobile-submenu a {
    color: black;
    text-decoration: none;
}

.mobile-submenu {
    position: absolute;
    top: 0;
    right: -150vw;
    background-color: white;
    width: 100vw;
    overflow: auto;
    z-index: 100000;
    transition: .3s;
    padding: 0px .75rem;
    height: 100%;
}

.trigger-mobile-menu::after {
    content: "\f054";
    font-family: FontAwesome;
    font-size: 12px;
    margin-top: 5px;
    float: right;
}

.mobile-submenu .mobile-menu-item,
.mobile-submenu .mobile-menu-item a {
    padding: 0;
}

/* Quantity selector */

.quantity-selector {
    border-radius: 7px;
    width: 100%;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 2fr 1fr;
    border: 1px solid rgb(229, 229, 229);
    padding: 2px 3px;
    font-size: 14px;
    position: relative;
}

.quantity-selector input {
    border: 0;
    width: 100%;
    outline: none;
    text-align: center;
}

.quantity-selector .increase,
.quantity-selector .decrease {
    width: 44.5px;
    text-align: center;
    border-radius: 7px;
    cursor: pointer;
    height: 44.5px;
    font-weight: 600;
    display: grid;
    place-content: center;
    user-select: none;
    color: black;
    font-size: 17px;
}

.quantity-selector .increase {
    margin-left: auto;
}

.quantity-selector .decrease:hover {
    background-color: lightgray;
}

.quantity-selector .increase:hover {
    background-color: lightgray;
}


.footer-title {
    font-size: 22px;
    font-weight: 500;
}

.instagram-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 7px;
}

.instagram-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Live search */

.search-results-container {
    position: absolute;
    background-color: white;
    z-index: 2;
    padding: 20px 0;
    width: 500px;
    border-radius: 10px;
    overflow: auto;
    max-height: 500px;
    margin-top: 5px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    visibility: hidden;
    opacity: 0;
    transform: translateY(0px);
    transition: all .3s ease-out;
    box-shadow: rgba(149, 157, 165, 0.4) 0px 8px 24px;
}

.search-input:focus+.search-results-container {
    visibility: visible;
    opacity: 1;
    transform: translateY(10px);
    transition: all .3s ease-out;
}

.search-results-container::-webkit-scrollbar {
    display: none;
}

.search-results-navigation {
    border-bottom: 2px solid rgb(236, 236, 236);
    padding: 0 20px;
}

.search-results-navigation div {
    margin-bottom: -2px;
    font-size: 14px;
    cursor: pointer;
    position: relative;
}

.search-results-navigation div span {
    background-color: rgb(233, 233, 233);
    color: gray;
    font-size: 10px;
    border-radius: 3px;
    padding: 1px 3px;
    margin-left: 5px;
}

.search-menu-active {
    font-weight: 500;
    color: black;
    border-bottom: 2px solid black;
}

.search-results {
    margin: 20px;
}

.search-results .search-result {
    border-bottom: 1px solid rgb(236, 236, 236);
    padding: 10px 0px;
}

.search-result a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.search-results .search-result img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-right: 10px;
}

.loader {
    width: 20px;
    height: 20px;
    border: 2px dotted #FFF;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotation 2s linear infinite;
}


/* From include_products */

.product-has-variants {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: all .15s;
    width: 0;
    height: 0;
}

.product-has-variants.visible {
    visibility: visible;
    z-index: 4;
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.product-has-variants .variant {
    background-color: white;
    padding: 0 10px;
    width: 80%;
    margin: 0px auto;
    margin-bottom: 10px;
    overflow: hidden;
}

.product-has-variants .variant img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.badges {
    position: absolute;
    top: 10px;
    left: 10px;
}

.badge {
    padding: 5px 10px;
    margin-bottom: 5px;
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 6px;
    width: fit-content;
}

.product-title {
    color: #4e4e4e;
    margin: 5px 0px;
}

.product-price {
    font-size: 18px;
    font-family: Tahoma, sans-serif;
}

.product-price.small {
    font-size: 14px;
}

.include-product.js-atb {
    border: 0;
    width: 45px;
    height: 45px;
    text-align: center;
    background-color: #b41414;
    border-radius: 6px;
}

.product-images-hover {
    display: none;
}

@media only screen and (min-width: 1200px) {
    .product-images-hover {
        display: block;
        position: absolute;
        top: 10px;
        right: -100px;
        transition: all .3s;
        visibility: hidden;
    }

    .product:hover .product-images-hover {
        right: 10px;
        visibility: visible;
    }

    .product-images-hover img {
        width: 60px;
        height: 60px;
        margin-bottom: 5px;
        object-fit: cover;
        display: block;
        border-radius: 6px;
    }

    .product-img-wrapper img.secondary-product-image {
        opacity: 0 !important;
        transition: all .3s;
    }

    .product-img-wrapper .secondary-product-image.cross-fade {
        opacity: 1 !important;
    }

    .product-img-wrapper img.fade-out {
        opacity: 0;
        transition: all .3s;
    }

    .product-img-wrapper img {
        opacity: 1;
        transition: all .3s;
    }
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

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


@media only screen and (min-width: 767px) {
    .trigger-mega-menu:hover>.mega-menu {
        visibility: visible;
        opacity: 1;
        transform: translateY(10px);
        transition: all .3s ease-out;
    }

    .trigger-dropdown-menu:hover>.dropdown-menu {
        visibility: visible;
        opacity: 1;
        transform: translateY(10px);
        transition: all .3s ease-out;
    }
}


@media (min-width: 1200px) {
    .offset-xl-1 {
        margin-left: 8.33333333%;
    }
}