/* Utilities */
.flex { display: -webkit-box; display: -ms-flexbox; display: flex; }
.wrap { -ms-flex-wrap: wrap; flex-wrap: wrap; }
.column { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; }
.center { -webkit-box-align: center; -ms-flex-align: center; align-items: center; }
.j-end { -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; }
.end { -webkit-box-align: end; -ms-flex-align: end; align-items: flex-end; }
.baseline { -webkit-box-align: baseline; -ms-flex-align: baseline; align-items: baseline; }
.j-center { -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }
.between { -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; }

/* Container */
.container,
.container.with-xlarge {
    width: 100%;
    max-width: 1200px;
}

/* Top bar */
.topUsps {
    background: #2f5356;
    padding: 12px 0;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 101;
}
.topUsps .flex.center {
    display: flex;
    align-items: center;
}
#usps-slider {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
}
#usps-slider > .usp-item {
    display: none;
}
#usps-slider .owl-wrapper-outer {
    width: 100%;
}
.usp-item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    flex-direction: column;
    gap: 5px;
}
.usp-item__icon {
    margin: 0 10px 0 0;
}
.usp-item span {
    font-weight: 700;
}
.topCorporate {
    flex: 0 0 auto;
    min-width: 165px;
    border-left: 2px solid #fff;
    padding-left: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Language & currency */
.w-language .list-inline {
    margin: 0;
    padding: 0;
}
.w-language-dropdown > button.button {
    display: flex;
    align-items: center;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}
.w-language-flag {
    border-radius: 50%;
    width: 18px;
    height: 18px;
    object-fit: cover;
}
.w-currency-dropdown > button.button {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}
.w-currency-dropdown > button.button::before {
    content: "Valuta";
    font-weight: 700;
    margin-right: 3px;
}
.w-currency-dropdown > button.button::after {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
    transform: rotate(45deg);
    margin-left: 2px;
    margin-top: -5px;
}
.w-language-dropdown .dropdown-menu,
.w-currency-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    z-index: 100;
    min-width: 140px;
}
.w-language-dropdown.is-open .dropdown-menu,
.w-currency-dropdown.is-open .dropdown-menu {
    display: block;
}
.dropdown-container ul {
    list-style: none;
    margin: 0;
    padding: 4px 0;
}
.dropdown-container ul li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 13px;
    color: #000;
    text-decoration: none;
}
.dropdown-container ul li a:hover {
    background: #f5f5f5;
}

/* Header */
.site-header {
    position: sticky;
    top: 51px;
    z-index: 100;
    background: #fff;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
.header-right .nav.list-inline {
    display: none;
}
.header-right .nav.list-inline > li {
    position: static;
    display: inline-block;
    padding: 0;
}
.header-right .b-productcategory-anchor {
    display: block;
    padding: 10px 13px;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
}
.header-right .b-productcategory-anchor::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #000;
    transition: width 0.3s ease;
}
.header-right .b-productcategory-anchor:hover::after {
    width: 100%;
}
.header-right .b-productcategory-anchor .fa-caret-down {
    color: #c0392b;
    margin-left: 4px;
    font-size: 12px;
}
.header-right .b-productcategories-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 20px 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    list-style: none;
    margin: 0;
    z-index: 999;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    opacity: 0;
    visibility: hidden;
    transition: all .2s ease-in;
}
.header-right .b-productcategory:hover > .b-productcategories-list {
    opacity: 1;
    visibility: visible;
}
.header-right .b-productcategories-list li a {
    display: block;
    padding: 8px 18px;
    font-size: 13px;
    color: #000;
    text-decoration: none;
}
.header-right .b-productcategories-list li a:hover {
    text-decoration: underline;
}

/* Search */
.top-search-form {
    display: none;
    position: absolute;
    left: 10px;
    right: 10px;
    top: calc(100% + 1px);
    z-index: 999;
    padding: 12px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.site-header.is-search-open .top-search-form {
    display: block;
}
.top-search-form .input-group {
    position: relative;
    display: block;
    width: 100%;
}
.top-search-form .input-group-main,
.top-search-form .form-input {
    display: block;
    width: 100%;
    height: 46px !important;
    padding: 0 12px 0 44px;
    border: 1px solid #d8d8d8 !important;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    outline: none;
    color: #000;
    font-size: 13px;
    line-height: 46px;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}
.top-search-form .input-group-main::placeholder,
.top-search-form .form-input::placeholder {
    color: #8a8a8a;
    opacity: 1;
}
.top-search-form .input-group-main:focus,
.top-search-form .form-input:focus {
    border-color: #c8c8c8;
    box-shadow: none;
    outline: none;
}
.top-search-form .input-group-button {
    position: absolute;
    left: 0;
    top: 0;
    width: 44px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.top-search-form .input-group-button .button {
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    background-color: transparent;
    height: 100%;
}
.top-search-form .input-group-button svg {
    width: 24px;
}

.logo-anchor img {
    width: 100%;
    max-height: 93px;
}

/* Header icons */
.headerIcons {
    align-items: center;
}
.headerIcons-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 18px;
}
.headerIcons-item svg {
    width: 24px;
}
.headerIcons-item.headerIcons-item--menu svg {
    width: 30px;
}
.m-quick-cart.w-cart.headerIcons-item svg {
    width: 28px;
}
.headerIcons-item img,
.headerIcons-item .icon {
    display: block;
    margin-bottom: 4px;
}
.headerIcons-item i {
    display: block;
    margin-bottom: 4px;
    font-size: 22px;
    line-height: 22px;
    color: #7b7b7b;
}
.headerIcons-item > span {
    display: none;
}
.headerIcons-item--search {
    cursor: pointer;
}
.quick-cart-link {
    position: relative;
}
.headerIcons .m-quick-cart__count {
    display: flex !important;
    position: absolute;
    left: 50%;
    top: -12px;
    width: 20px;
    height: 20px;
    background-color: #000;
    border-radius: 50%;
    font-family: Arial;
    line-height: 1;
    font-size: 11px;
    font-weight: 700;
    justify-content: center;
    align-items: center;
    transform: translate(5%, -40%);
    color: #fff;
    z-index: 10;
}

/* Mobile menu */
.mm-navbar__title {
    color: #000 !important;
    font-weight: 700 !important;
}
.mm-slideout {
    z-index: 0;
}
.mm-menu_offcanvas {
    z-index: 9;
}

/* Slider */
.site-slider .hero-slider-theme {
    margin: 0;
    line-height: 0;
}
.site-slider .hero-slider-theme img {
    width: 100% !important;
    min-height: 300px;
    object-fit: cover;
}
.site-slider .hero-slider-theme .placeholder-wrapper {
    max-width: 100% !important;
    min-height: 300px;
}
.w-slider-caption.item-caption {
    background: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    bottom: auto;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    padding: 0 10px;
}
.w-slider-caption-wrapper {
    max-width: 320px;
}
.w-slider-caption.item-caption .h2 {
    font-size: 19px;
    line-height: 19px;
    font-weight: 700;
    margin-bottom: 10px;
}
.w-slider-caption.item-caption .h4 {
    font-size: 13px;
    line-height: 16px;
    font-weight: 300;
}
.w-slider-caption.item-caption .item-link {
    display: inline-block;
    line-height: 1;
    background: #cd171f;
    border-radius: 5px;
    font-size: 12px;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
    padding: 10px 25px;
    margin-top: 10px;
}
.hero-slider-theme .owl-controls .owl-buttons .owl-prev:before,
.hero-slider-theme .owl-controls .owl-buttons .owl-next:before {
    color: #fff;
}

/* Category grid */
.category-description {
    margin-bottom: 50px;
}
.catGrid {
    padding: 60px 0;
}
.catGrid__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px 24px;
}
.catGrid__item {
    margin-bottom: 0;
}
.catGrid__link {
    display: block;
    text-decoration: none;
    color: #000;
}
.catGrid__link .placeholder-wrapper {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}
.catGrid__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s linear !important;
}
.catGrid__img:hover {
    transform: scale(1.1);
}
.catGrid__title {
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0;
    color: #000;
}
.catGrid__text {
    font-size: 14px;
    color: #000;
    margin: 0;
}

/* Frontpage */

.m-productlist-list,
.frontpage-content {
    background: #eff1e2;
    border-radius: 10px;
    padding: 50px 25px 0;
    margin-bottom: 50px;
}
.frontpage-content .page-title-frontpage {
    border: none;
    padding: 0;
    margin: 0 0 30px;
}
.frontpage-content .page-title-frontpage .h1 {
    font-size: 22px;
    font-weight: 300;
}
.frontpage-content .page-title-frontpage .h1 span {
    font-weight: 700;
}

/* Product list */
.productItem {
    margin-bottom: 20px;
}
.productItem .type-col {
    border: none;
    text-align: center;
    background: #fff;
    padding: 10px;
    border-radius: 16px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}
.productItem .productContent .image a {
    margin-bottom: 0;
}
.m-productlist-image {
    border-radius: 10px;
}
.productItem .type-col .product-transaction {
    border: none;
    background: none;
}
.content.product-transaction.m-productlist-transactions {
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.productItem .title .h5 {
    font-size: 14px;
    line-height: 20px;
    font-weight: 300;
}
.m-productlist-discount {
    margin: 0;
}
.m-price-label,
.m-productlist-price-before-discount {
    font-size: 12px;
    font-weight: 300;
    color: #9a9a9a;
}
.selected-priceLine .price,
.productItem .m-productlist-price {
    font-size: 22px;
    font-weight: 600;
    color: #aab84e;
}
.m-productlist-tractions-button .form-group {
    display: flex;
    justify-content: center;
    gap: 8px;
}
@media (max-width: 767px) {
    .m-productlist-tractions-button .form-group {
        flex-direction: column;
    }
}
.btnBuy,
.btnInfo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: 3px;
    transition: opacity 0.2s ease;
    min-width: 70px;
}
.btnBuy {
    background: #aab84e;
    color: #000;
}
.btnInfo {
    background: #2f5356;
    color: #fff !important;
}
.btnBuy:hover,
.btnInfo:hover {
    opacity: 0.85;
    color: #fff;
}
.m-productlist-price-prefix {
    font-size: 0.75rem;
    font-weight: normal;
    color: inherit;
    margin-bottom: 2px;
}
.m-productlist-sale,
.m-product-splash-sale {
    background: #aab84e !important;
    color: #fff !important;
    font-size: 10px;
    font-weight: 300;
}
.m-productlist-sale span,
.m-product-splash-sale span {
    display: block;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0;
}
.m-productlist-new,
.m-product-splash-new {
    background: #2f5356 !important;
    color: #fff !important;
}

.badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.2;
    text-align: center;
    padding: 0;
    border: none;
}
.badge.badge-danger {
    color: #000;
    background: #eee;
}
/* Product entity */
.m-product-price {
    font-weight: 700;
    color: #aab84e;
}
.h1.products-related-headline,
.m-product-title.product-title {
    font-size: 22px;
    font-weight: 700;
}
.m-product-stock {
    background: transparent;
    border: none!important;
    box-shadow: none;
    padding: 0;
}
.m-product-stock .panel-body {
    padding: 0;

}
.m-product-additional-info .m-product-additional-info-tabs li a,
.m-product-additional-info.description {
    background: none;
}
.variantInfoPanel .panel,
.m-product-dropdown-variantInfoPanel .panel {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}
.variantInfoPanel .panel-body,
.m-product-dropdown-variantInfoPanel .panel-body {
    padding: 0;
}

/* Delivery countdown */
.delivery-countdown {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #2b2b2b;
    border-radius: 14px;
    text-align: center;
}
.pageTypeproduct .delivery-countdown {
    margin-bottom: 20px;
}
.delivery-countdown__img {
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-top: 20px;
}
.delivery-countdown__img img {
    display: block;
    height: 120px;
    width: auto;
    margin-bottom: 0;
}
.delivery-countdown__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 20px 10px;
}
.delivery-countdown__title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}
.delivery-countdown__timer {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #aab84e;
    border-radius: 10px;
    width: 56px;
    height: 56px;
    gap: 2px;
}
.countdown-value {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.countdown-label {
    font-size: 8px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
}

/* FAQ */
.faq-section {
    margin: 60px 0;
}
.faq-section__title {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}
.faq-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}
.faq-item {
    border-radius: 10px;
    overflow: hidden;
    background: #2a5f5a;
    transition: border-radius 0.3s ease;
}
.faq-item.is-open {
    border-radius: 20px;
}
.faq-item__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 19px 40px 19px 16px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 16px;
}
.faq-item__question {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.4;
}
.faq-item__question,
.faq-item__answer,
.faq-item__answer a {
    color: #fff;
}
.faq-item__answer a {
    text-decoration: underline;
}
.faq-item__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 300;
    color: #fff;
    line-height: 1;
    transition: transform 0.3s ease;
}
.faq-item.is-open .faq-item__icon {
    transform: rotate(45deg);
}
.faq-item__body {
    overflow: hidden;
}
.faq-item__body[hidden] {
    display: none;
}
.faq-item__answer {
    padding: 0 24px 20px;
    font-size: 14px;
    line-height: 1.7;
}
.faq-item__answer p {
    margin: 0;
}

/* Welcome section */
.welcome-section {
    margin: 60px 0;
}
.welcome-section__bg {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    padding: 44px;
    min-height: 300px;
    display: flex;
    align-items: center;
}
.welcome-section__bg .m-text-article {
    max-width: 480px;
    width: 100%;
}
.welcome-section__bg .m-text-header {
    margin: 0 0 20px;
    padding: 0;
    border: none;
    background: none;
    text-align: left;
}
.welcome-section__bg .m-text-headline {
    font-size: 17px;
    font-weight: 700;
    color: #101010;
    margin: 0;
    line-height: 1.2;
}
.welcome-section__bg .m-text-headline span {
    display: block;
    font-size: 15px;
    font-weight: 500;
    font-style: italic;
    color: #fff;
    margin-top: 6px;
    line-height: 1.4;
}
.welcome-section__bg .m-text-content p {
    font-size: 13px;
    line-height: 20px;
    color: #000;
    margin: 16px 0 0;
}
.welcome-section__bg .m-text-content a {
    display: inline-flex;
    align-items: center;
    padding: 7px 24px;
    background: #2a5f5a;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.2s ease;
}
.welcome-section__bg .m-text-content a:hover {
    background: #1e4844;
    color: #fff;
}
.welcome-section__man {
    display: none;
}

/* Finder section */
.finder-section {
    margin: 48px 0;
}
.finder-section__inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.finder-section__img {
    flex: 1;
    line-height: 0;
}
.finder-section__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    margin-bottom: 0;
}
.finder-section__content {
    flex: 1;
    background: #2f5356;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.finder-section__content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 24px;
}
.finder-section__content p {
    font-size: 13px;
    line-height: 19px;
    color: #fff;
    margin: 0 0 20px;
}
.finder-section__content p:last-child {
    margin-bottom: 0;
}
.finder-section__content p strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

/* USPs bar */
.usps-bar {
    margin: 40px 0;
}
.usps-bar__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 16px;
}
.usps-bar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 0 calc(50% - 8px);
}
.usps-bar__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    height: 30px;
}
.usps-bar__icon img {
    width: auto;
    display: block;
    margin: 0;
}
.usps-bar__title {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
}
.usps-bar__text {
    display: block;
    font-size: 13px;
    font-weight: 300;
    color: #2e6967;
}
.site-footer {
    background: #2f5356;
    color: #fff;
    padding: 48px 0;
    border: none;
}

/* FOOTER */
.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 0;
}

.footer-col {
    flex: 0 0 100%;
}

.footer-col__title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 25px;
}

.footer-contact-list,
.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.site-footer p,
.site-footer span,
.site-footer li,
.site-footer a {
    font-size: 13px;
    line-height: 23px;
    color: #ffffff;
}

.footer-contact-list li strong {
    color: #fff;
    font-weight: 700;
}

.footer-nav-list > li::before {
    content: '\2022\00a0';
    color: #fff;
}

.footer-contact-list a,
.footer-nav-list a {
    color: #fff;
    text-decoration: none;
}

.footer-contact-list a:hover,
.footer-nav-list a:hover {
    text-decoration: underline;
}

.footer-col--social {
    display: flex;
    align-items: flex-start;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff!important;
    color: #2f5251!important;
    font-size: 19px !important;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-social__link:hover {
    opacity: 0.85;
    color: #2f5251!important;
}

.footer-payment {
    background: #132e30;
    padding: 40px 0;
    text-align: center;
}

.footer-payment .payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-payment .payments-icon img {
    display: block;
    width: auto;
}
.m-breadcrumb,
.m-print {
    margin: 1.5em auto;
}

/* cart page */
/* Cart buttons &mdash; base */
.modules form .button-primary,
.modules form .button,
.w-cart-goto-cart .button-primary,
.stepHeaderLogin .button-default,
.checkoutFrame .button-primary,
.checkoutFrame .buttonContainer .button,
.checkoutFrame .buttonContainer a.button,
.m-checkout-customer-type .button-group label,
.m-cart .button-primary,
.m-cart-coupon-row .button-primary,
.m-cart .cart-utility-actions .button,
.m-cart-coupon-row a.button,
.m-cart-coupon-row .input-group-button .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 5px;
    border: 2px solid transparent;
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.orderSummary .orderLine,
.m-cart-row:not(:last-child){
    border-bottom: 1px solid #000;
}

.m-cart-row .button{
    border-radius: 2px!important;
}

.orderSummary .orderLine,
.stepColumn .panel-border{
    background: none!important;
}
.section-title,
.m-cart-headline,
.m-checkout-approved-headline,
.m-checkout-declined-headline,
.m-repay-headline,
.m-contact-headline,
.m-wishlist-headline,
.m-search-headline,
.m-blog-headline,
.m-calendar-headline,
.m-gallery-headline,
.m-userlogin-headline,
.m-useremailupdate-headline,
.m-usercreate-headline,
.m-useredit-headline,
.m-products-category-headline,
.m-notfound-headline,
.m-text-headline,
.m-news-headline,
.m-newsletter-headline,
.m-poll-headline,
.m-form-headline,
.m-sendtoafriend-headline,
.m-sitemap-headline,
.m-sitemap-prod-headline,
.m-sitemap-cat-headline,
.m-sitemap-page-headline,
.category-headline,
.product-title,
.products-related-headline {
    font-size: 28px;
    font-weight: 700;
    color: #101010;
    margin: 0;
}
.modules form .panel-footer,
.modules form .panel-border{
    background: none;
}

.panel-success,
.panel-warning {
    background: none;
    border-radius: 5px;
}

.panel-success {
    border: 1px solid #aab84e;
}
.panel-success a,
.panel-success .panel-body {
    color: #000;
}

.panel-warning {
    border: 1px solid #2f5356;
}

.panel-warning .panel-body {
    color: #000;
}

/* ==============================================
   Media queries
   ============================================== */

#usps-slider img {
    display: none;
}
#usps-slider {
    min-height: 28px;
}
@media (min-width: 480px) {
    /* Top bar */
    #usps-slider img {
        display: block;
    }
    .usp-item {
        flex-direction: row;
        min-height: 27px;
        gap: 2px;
    }
}

@media (min-width: 768px) {
    /* Category grid */
    .catGrid__list {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Delivery countdown */
    .delivery-countdown {
        flex-direction: row;
        align-items: stretch;
        text-align: left;
    }
    .delivery-countdown__img {
        padding-top: 0;
        align-items: flex-end;
    }
    .delivery-countdown__img img {
        height: 150px;
        position: absolute;
        bottom: -25px;
        left: 50px;
    }
    .delivery-countdown__img + .delivery-countdown__content {
        align-items: flex-end;
        padding: 30px 100px;
    }
    .delivery-countdown__content-wrapper {
        max-width: 600px;
        text-align: center;
    }
    .delivery-countdown__title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .delivery-countdown__timer {
        justify-content: center;
    }
    .countdown-unit {
        width: 72px;
        height: 72px;
    }
    .countdown-value {
        font-size: 24px;
    }
    .countdown-label {
        font-size: 9px;
    }

    /* FAQ */
    .faq-item__answer {
        padding: 0 28px 22px;
    }

    /* Welcome section */
    .welcome-section__bg {
        padding: 45px 65px;
        min-height: 340px;
    }
    .welcome-section__bg .m-text-headline {
        font-size: 22px;
    }
    .welcome-section__bg .m-text-content p {
        font-size: 14px;
    }

    /* Finder section */
    .finder-section__inner {
        flex-direction: row;
        align-items: stretch;
        gap: 0;
    }
    .finder-section__img,
    .finder-section__content {
        flex: 50%;
        width: 50%;
    }
    .finder-section__photo {
        border-radius: 10px 0 0 10px;
    }
    .finder-section__content {
        border-radius: 0 10px 10px 0;
    }

    /* USPs bar */
    .usps-bar__item {
        flex: 1;
    }
    .footer-col {
        flex: 0 0 50%;
        padding-right: 24px;
    }
    .footer-col--social {
        flex: 0 0 50%;
        justify-content: flex-end;
        padding-right: 0;
    }
}

@media (min-width: 960px) {
    /* Delivery countdown */
    .delivery-countdown__img img {
        height: auto;
        bottom: -30px;
        left: 130px;
    }

    /* Welcome section */
    .welcome-section__man {
        display: flex;
        position: absolute;
        bottom: 0;
        right: 5%;
    }
    .welcome-section__man img {
        margin: 0;
    }
    .site-footer {
        background-image: url('/upload_dir/pics/footer_bg.jpg');
        background-size: cover;
        background-position: center right;
        background-repeat: no-repeat;
    }
}

@media (min-width: 1024px) {
    /* Category grid */
    .catGrid__list {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Delivery countdown */
    .delivery-countdown__timer {
        gap: 54px;
    }
    .delivery-countdown__title {
        font-size: 22px;
    }
    .countdown-value {
        font-size: 31px;
    }
    .countdown-label {
        font-size: 10px;
    }
}

@media (min-width: 1140px) {
    /* Header */
    body.pageId1 .site-header {
        position: absolute;
        top: 51px;
        left: 0;
        right: 0;
        background: transparent;
    }
       body.pageId1 .site-header.is-fixed {
        position: fixed;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    .header-right .nav.list-inline {
        display: flex;
        align-items: center;
        list-style: none;
        margin: 0;
        padding: 0;
        flex-wrap: wrap;
        position: relative;
    }

    /* Slider */
    .w-slider-caption-wrapper {
        max-width: 590px;
        margin-left: 5%;
        margin-top: 7%;
    }
    .w-slider-caption.item-caption .h2 {
        font-size: 35px;
        line-height: 35px;
        margin-bottom: 20px;
    }
    .w-slider-caption.item-caption .h4 {
        font-size: 15px;
        line-height: 19px;
        max-width: 460px;
    }

    .w-slider-caption.item-caption .item-link{
        margin-top: 30px;
    }

    /* Welcome section */
    .welcome-section__bg {
        min-height: 360px;
        padding: 65px 95px;
    }
    .welcome-section__man {
        right: 12%;
    }

    /* Finder section */
    .finder-section__content {
        padding: 40px;
    }
        .footer-inner {
        flex-wrap: nowrap;
        align-items: flex-start;
        gap: 0;
    }
    .footer-col {
        flex: 1;
        padding: 0 0 0 32px;
    }
    .footer-col:first-child {
        padding-left: 0;
    }
    .footer-col--social {
        flex: 0 0 auto;
        padding-left: 32px;
        justify-content: flex-start;
    }
}

@media (min-width: 1280px) {
    /* Delivery countdown */
    .delivery-countdown__img .delivery-countdown__content {
        padding: 30px 200px;
    }
}

.variant-button-image {
    display: none;
}

.m-product-buttons-type {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 16px 0;
    input {
        display: none !important;
        &:checked + div {
            outline: 1px solid;
        }
        + div {
            transition: all .2s ease-in;
            border: 1px solid;
            font-weight: normal;
            padding: 10px 20px;
            cursor: pointer;
        }
    }
}

.page-title .category-headline {
    background: #eff1e2;
    border-radius: 10px;
    padding: 25px;
}

/* CART POPUP */
/* mobile cart */
.mobile-cart {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 375px;
    background-color: #FFF;
    z-index: 100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transform: translate(100%, 0);
        -ms-transform: translate(100%, 0);
            transform: translate(100%, 0);
    padding:0 5px;
}
.mobile-cart__header {
    padding: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    border-bottom: 2px solid #ddd;
}

.mobile-cart__headline {
font-size: 16px;
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
}
.mobile-cart__close-btn {
    width: 16px;
    height: 16px;
    position: absolute;
    top: 34px;
    right: 15px;
    
    padding: 0;
    background-color: transparent;
    border: none;
    cursor: pointer;
}
.mobile-cart__icon-wrapper {
    position: relative;
    margin-right: 10px;
    margin-bottom: -5px;
}

.mobile-cart__icon-wrapper .m-quick-cart__count{
    color: #000;
    top: 18px;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
}

.mobile-cart__bag-icon {
    width: 37px;
    height: 45px;
}
.mobile-cart__products-number {
    position: absolute;
    top: 50%;
    left: 50%;
    /* translate: -50% -50%; */
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    font-size: 15px;
    line-height: 15px;
}

.mobile-cart__product-item-number{
    font-style: italic;
}

.mobile-cart__products-list {
    padding: 0 10px;
    margin: 0;
    overflow-y: auto;
    min-height: 175px;
    max-height: 340px;
}
.mobile-cart__product {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: relative;
}
.mobile-cart__product.offer > .mobile-cart__product-content {
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.mobile-cart__product.offer > .mobile-cart__product-content p,
.mobile-cart__product.offer > .mobile-cart__product-content h5 {
    margin: 0;
}

.mobile-cart__product,
.mobile-cart__product-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.mobile-cart__product-image {
    width: 120px;
    height: 120px;
    -o-object-fit: none;
       object-fit: none;
}
.mobile-cart__product-name {
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
}
.mobile-cart__product-content {
    margin-left: 10px;
    max-width: 170px;
}

.cartTotal{
    font-style: 14px;
    font-weight: 700;
}

.mobile-cart__product-remove {
    position: absolute;
    top: 15px;
    right: 5px;
    width: 16px;
    height: 16px;
    padding: 0;
    background-color: transparent;
    border: none;
}
.mobile-cart__trash-icon {
    width: 100%;
    height: 100%;
}
.mobile-cart__buttons {
    padding: 15px 10px;
    border-bottom: 2px solid #ddd;
}
.mobile-cart__total {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}
.mobile-cart__button {
    padding: 10px;
    font-weight: 700;
    color: #fff;
    background-color: #2f5356;
    border: none;
    display: block;
    width: 100%;
    text-align: center;
    border-radius: 5px;
    font-size: 13px;
}
.mobile-cart__button.default {
    background: #aab84e;
    color: #1c1c1c;
}
.mobile-cart__button:not(.default) {
    color: #fff !important;
}


.mobile-cart__button + .mobile-cart__button {
    margin-top: 10px;
}
.mobile-cart__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.5);
    z-index: 101;
    opacity: 0;
    pointer-events: none;
}
.mobile-cart,
.mobile-cart__overlay {
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.mobile-cart__wrapper.mobile-cart--opened .mobile-cart {
    -webkit-transform: translate(0);
        -ms-transform: translate(0);
            transform: translate(0);
	z-index: 9999999999;
}
.mobile-cart__wrapper.mobile-cart--opened .mobile-cart__overlay {
    opacity: 1;
    pointer-events: all;
}

.mobile-cart .quick-cart-link{
    padding: 0;
}

.mobile-cart .products-related{
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 175px;
    padding: 0 10px;
}

.mobile-cart .products-related .page-title{
    text-align: center;
    margin: 10px 0;
    padding:0;
    border: none;
}

.mobile-cart .products-related .products-related-headline{
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
}
.mobile-cart .m-productlist-item .m-productlist-short-description p,
.mobile-cart .m-productlist-item .h5.m-productlist-title{
    font-size: 14px!important;
    font-weight: 700;
    color: #020202!important;
    min-height: unset;
    padding: 0;
}

.mobile-cart .productItem .type-row{
    border: 1px solid #b4b4b4!important;
    border-radius: 5px!important;
}

.mobile-cart .productItem .image{
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none;
}
.mobile-cart .products-related .mobile-cart__product{
    padding: 5px;
}

.mobile-cart .products-related .m-productlist-heading{
    border-bottom: 1px solid #9b9b9a;
    padding: 10px 0;
}

.mobile-cart .products-related .productItem{
    margin-bottom: 20px;
}

.mobile-cart .products-related .productItem:last-child{
    margin-bottom: 0;
}

.mobile-cart .products-related .productItem .product-delivery{
    padding: 10px 0;
    color: #2b7a1d;
    font-size: 14px;
}

.mobile-cart .products-related .productItem .product-delivery p{
    margin-bottom: 0;
}

.mobile-cart .products-related .productItem .type-row .product-transaction{
    background: none;
    padding:0;
}

.mobile-cart .products-related .product-action .flex> .form-group{
    margin:0;
}

.mobile-cart .products-related .m-productlist-transactions-button{
    width: 100%;
    padding-left: 20px;
}

.mobile-cart .products-related .btnBuy{
    max-width: 100%;
    margin-left: 0;
    border-radius: 16px;
}

.mobile-cart .products-related  .m-productlist-price-before-discount{
    font-size: 12px;
}

.mobile-cart .products-related  .m-productlist-discount{
    margin-bottom: 0;
}

.mobile-cart .products-related  .prices{
    padding:10px 0!important;
}

.mobile-cart .badge-image img,
.mobile-cart .badge.badge-image,
.mobile-cart .badge{
    max-width: 45px!important;
    max-height: 45px!important;
    font-size: 9px;
}