:root {
    --primary-color: #419639;
    --secondary-color: #fff;
    --warning-color: #FFA741;
    --danger-color: #F61212;
    --black: #242424;
    --gray: #E4E4E4;
    --dark-gray: #A0A0A0;
    --medium-gray: #F2F2F2;
    --light-gray: #FBFBFB;
    --lighter-green: #9EC99A;
    --light-green: #78BA63;
    --vibrant-green: #5ECA3B;
    --medium-green: #419639;
    --dark-green: #14560E;
    --white: #FFFFFF;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}


body {
    overflow-x: hidden;
    font-family: 'DM Sans', sans-serif;
    padding-bottom: 0 !important; /* Supercheckout module add padding to bottom of body*/
}

body.page-category {
    #wrapper {
        padding-top: 6px !important;
    }
}

body.page-index {
    #wrapper {
        padding-top: 0 !important;
    }

    #carousel {
        margin-top: 66px !important;

        @media (max-width: 991px) {
            margin-top: 215px !important;
        }
    }

    #header {
        &.show-header {
            box-shadow: -2px 12px 10px -10px rgba(66, 68, 90, 1);
        }


        .header-top {
            position: absolute;
            margin: 1.25rem auto 0 auto;
            left: 0;
            right: 0;
            padding: 0 !important;

            &.on-scroll {
                width: 100%;
                background-color: var(--white);
                margin-top: 0;
                padding-top: 1.25rem !important;
                box-shadow: -2px 12px 10px -10px rgba(66, 68, 90, 1);
            }
        }
    }
}

#rev_slider_1_1_forcefullwidth {
    margin-top: 60px !important;

    @media (max-width: 991px) {
        margin-top: 110px !important;
    }

    .gyges {
        &.tp-bullets:before {
            background: transparent !important;
            border: 1px solid var(--primary-color);
            border-radius: 25px !important;
            padding: 10px 20px !important;
            margin-left: -20px !important;
        }

        .tp-bullet {
            background: transparent !important;
            border: 1px solid var(--primary-color) !important;

            &:hover,
            &.selected {
                background: var(--primary-color) !important;
            }
        }
    }


}

body.page-registration,
body.page-authentication {
    .page-header h1 {
        text-align: center;
    }
}

body.page-order-detail {
    #content {
        font-size: 1rem;

        p {
            color: var(--black);
        }
    }
}

body.page-order-detail,
body.page-history {
    table.table {
        border: none;

        th,
        td {
            border: none;
            background: var(--white);
            color: var(--black);
        }

        tbody {
            tr {
                border-top: 1px solid var(--gray);

                th {
                    color: var(--primary-color);
                }

                td {
                    color: var(--black);

                    a {
                        color: var(--black);
                    }
                }
            }

            .view-order-details-link {
                color: var(--primary-color);
            }
        }
    }
}

body.page-order {
    table {
        td {
            padding: 0;
        }
    }

    .fas.fa-trash {
        color: var(--danger-color);
    }

    .input-box,
    .checkbox {
        input {
            accent-color: var(--primary-color);
        }
    }
}

#content {
    padding: 0 !important;
}

body.page-product {
    .breadcrumb {
        li:last-child {
            display: none;
        }

        li:nth-last-child(2) {
            &::after {
                display: none;
            }
        }
    }
}

/*body.page-new-products,*/
/*body.page-stores,*/
/*body.page-cms,*/
/*body.page-pagenotfound,*/
/*body.page-search,*/
/*body.page-contact,*/
body:not(.page-index),
body.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: auto;
    overflow-x: hidden;

    main {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        margin-top: 210px;

        @media (max-width: 991px) {
            margin-top: 180px;
        }

        @media (max-width: 768px) {
            margin-top: 160px;
        }

        @media (max-width: 568px) {
            margin-top: 140px;
        }

        #wrapper {
            flex-grow: 1;
        }
    }
}

body.page-category {
    main {
        margin-top: 280px;

        @media (max-width: 991px) {
            margin-top: 250px;
        }

        @media (max-width: 768px) {
            margin-top: 210px;
        }

        @media (max-width: 568px) {
            margin-top: 156px;
        }
    }
}

body.page-cms {
    #main .page-content {
        margin-bottom: 0;
    }
}

#header {
    position: fixed;
    width: 100%;
    z-index: 999;
    background-color: var(--white);

    @media (max-width: 991px) {
        overflow-y: auto;
        overflow-x: hidden;
    }
}

.page-header {
    h1 {
        font-weight: 700;
        font-size: 1.5rem;
    }
}

.page-registration #content,
.page-authentication #content {
    max-width: 786px;
}

.login-tooltip {
    border-radius: 4px;
    background-color: var(--primary-color);
    padding: 4px 8px;
    margin-top: 0.5rem;
    z-index: 1000;
    position: absolute;
    opacity: 1;
    width: max-content;


    p {
        color: var(--white);
        font-size: 0.8rem;
        margin: 0;
    }
}

.partners-wrapper {
    padding-bottom: 1.5rem;
}

/* PAGE ABOUT COMPANY*/
.about-container {
    display: flex;
    gap: 3rem;
    margin: 2rem 0;

    * {
        color: var(--black);
    }

    & > div {
        flex-basis: 50%;

        &.center {
            display: flex;
            justify-content: center;
            align-items: center;
        }
    }

    img {
        width: 100%;
        height: auto;
    }
}

section.page-content.page-cms {
    margin-bottom: 0 !important;

    & + .page-footer {
        display: none;
    }
}

.articles-title {
    margin-bottom: 2rem;
}

.about-links {
    background-color: var(--light-gray);
    margin-left: calc(50% - 50vw);
    width: 100vw;
    padding: 3rem 0;

    .articles-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 1rem;
        list-style: none !important;

        .article {
            border-bottom: 1px solid var(--gray);
            padding: 0.5rem;

            img {
                margin-right: 1rem;
            }
        }
    }
}

/* DOOFINDER */
.dfd-root {
    &.dfd-fullscreen.dfd-animate .dfd-layer {
        opacity: 1 !important;

        .dfd-card-title {
            font-weight: 700;
            text-align: center;
        }

        .dfd-card-pricing {
            color: var(--primary-color);
            margin: 0 auto;

            .dfd-card-price--sale {
                color: var(--danger-color);
            }
        }
    }
}

/* DOWNLOAD PAGE */
.download-h3-title {
    margin-top: 3rem;
    margin-bottom: 2rem;

}

.download-link {
    display: block;
    border-bottom: 1px solid var(--gray);
    padding: 0.5rem;

    img {
        margin-right: 0.5rem;
    }
}

/* BUTTON */
.btn-green {
    background-color: var(--primary-color);
    color: var(--white) !important;
    border-radius: 4px;
    padding: 0.5rem 2rem;
    text-transform: none;
    font-size: 0.8rem;
    cursor: pointer;
    border: none;

    &:hover {
        background-color: var(--primary-color);
    }
}

.block-category {
    margin-bottom: 4rem;
    font-family: 'DM Sans', sans-serif;
    padding: 0;
    min-height: unset;
}

/* NAVBAR */
nav.navbar {
    margin-bottom: 0;
    padding: 0 1rem;

    &:has( > .collapse.in) {
        min-height: 100dvh;
    }

    & .navbar-collapse.collapse {
        @media (min-width: 769px) and (max-width: 991px) {
            display: none !important;

            &.in {
                display: block !important;
            }
        }
    }

    .mobile-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        /*min-height: 100dvh;*/

        .dropdown-item {
            white-space: normal;
            word-break: break-word;
        }

        /* MOBILE ACCORDION */

        .block-contact {
            ul.link-wrapper {
                margin-bottom: 0;

                .custom-page-link,
                a.cms-page-link {
                    display: block;
                    font-size: 1rem;
                    margin-bottom: 0.5rem;
                    padding: 0.25rem;
                    border-radius: 4px;

                    &:focus,
                    &:hover {
                        color: var(--primary-color) !important;
                        text-decoration: none;
                    }

                    &:focus {
                        outline: 1px solid var(--black);
                    }
                }
            }
        }

        .accordion-mobile-menu-wrapper {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            padding-left: 1rem;

            &[data-depth="0"] {
                padding-bottom: 10rem;
            }

            &[data-depth="1"],
            &[data-depth="2"] {
                padding-top: 0.5rem;
                padding-bottom: 0.5rem;
            }

            /*&[data-depth="1"] {*/
            /*    padding-bottom: 6rem;*/
            /*}*/

            li {
                a {
                    padding: 0.25rem;
                    border-radius: 4px;

                    &:focus,
                    &:hover {
                        color: var(--primary-color) !important;
                        text-decoration: none;
                    }

                    &:focus {
                        outline: 1px solid var(--black);
                    }
                }

                button {
                    margin-right: 0.5rem;
                    background: var(--white);
                    border-radius: 4px;
                    border: 1px solid var(--primary-color);

                    &:focus {
                        outline: 1px solid var(--black);
                    }

                    &:after {
                        content: url("../icons/arrow-up.svg");
                        width: 10px;
                        height: 10px;
                        vertical-align: sub;

                    }

                    &.collapsed {
                        &:after {
                            content: url("../icons/arrow.svg");
                        }
                    }
                }
            }
        }
    }

    .nav-buttons {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        margin-bottom: 0.25rem;

        .navbar-toggler-text {
            color: var(--black);
            font-size: 0.875rem;
        }

        .navbar-toggler {
            border: none;
            color: var(--primary-color);
            background-image: url("../icons/menu.jpg");
            background-size: contain;
            cursor: pointer;
        }
    }

    .navbar-collapse {
        margin: 1rem 0;
        max-height: calc(100vh - 80px);
        padding-right: 0;
        padding-left: 0;
        /*overflow-y: auto;*/
    }
}

.block-categories {
    .collapse-icons {
        .material-icons {
            &:hover {
                color: var(--primary-color) !important;
            }
        }
    }
}

.scroll-box-arrows {
    .material-icons {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 30px;
        border-radius: 100%;
        border: 1px solid var(--primary-color);
        bottom: 70px;
        margin: 0 0.5rem;

        @media (max-width: 768px) {
            bottom: 45px;
        }
    }
}

/* PAGINATION */

.blog-paggination {
    .links {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;

        b,
        a {
            color: var(--dark-gray);
            font-size: 1rem;
            padding: 0.5rem 0.35rem;
            letter-spacing: unset;
            border: none;
            line-height: unset;
            width: unset;

            &.first,
            &.last,
            &.previous,
            &.next,
            &:hover {
                color: var(--primary-color);
            }
        }

        b {
            background: none;
            color: var(--primary-color);
            border: 1px solid var(--primary-color);
            border-radius: 4px;
        }
    }
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 5rem;

    .pagination_summary {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        color: var(--black);

        span {
            font-weight: 700;
        }
    }

    .page-list {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        padding: 0;

        li {
            i {
                color: var(--primary-color);
            }

            a {
                display: block;
                color: var(--dark-gray);
                font-size: 1rem;
                padding: 0.5rem 0.35rem;
                letter-spacing: unset;

                &:hover {
                    color: var(--primary-color);
                }
            }

            &.current {
                a {
                    color: var(--primary-color);
                    font-size: 1rem;
                    border: 1px solid var(--primary-color);
                    border-radius: 4px;
                }
            }
        }
    }
}

/* SEARCH-FILTERS */
#search_filters {
    border: 1px solid var(--gray);
    border-radius: 4px;
    background-color: var(--light-gray);
    padding: 0.875rem;

    .filters-button-wrapper {
        display: flex;
        justify-content: space-between;
    }

    .search-filter-wrapper {
        margin-top: 0.5rem;

        .facet {
            /*max-width: 220px;*/
            background: var(--white);
            border: 1px solid var(--gray);
            border-radius: 4px;
            padding: 0.25rem 0.5rem;
            cursor: pointer;

            .title {
                font-size: 0.8rem;
                margin-bottom: 0;

            }

            .facet-title {
                width: 100%;
                font-size: 0.8rem;
                font-weight: 400;
                margin-bottom: 0;
            }

            .facet-label {
                .custom-checkbox {
                    top: -1px;
                }

                .custom-radio {
                    top: 0;
                    margin-right: 0.5rem;
                }

                a {
                    overflow: unset;
                    white-space: normal;

                    &:hover {
                        color: var(--primary-color);
                    }
                }
            }

            ul {
                margin-top: 0.5rem;
                border-top: 1px solid var(--gray);
                padding-top: 0.5rem;
                margin-bottom: 0;
            }

            .collapse {
                display: none;

                &.in {
                    display: block;
                }
            }
        }

        .ui-corner-all {
            margin-bottom: 0.75rem;

            .ui-slider-handle,
            .ui-widget-header {
                background: var(--primary-color);
            }

            .ui-slider-handle {
                border: 1px solid var(--primary-color);
            }
        }
    }

    .facet-dropdown.open,
    .facet-dropdown {
        padding: 0;
        border: none;
        box-shadow: none;

        .select-title {
            background-color: var(--white);
            border: none;
            padding: 3px 0;

            span {
                color: var(--black);
                font-size: 0.8rem;
            }
        }

        .dropdown-menu {
            margin-left: -0.5rem;
            padding-top: 0.5rem;

            .select-list {
                padding: 0.25rem 0.5rem;
                font-size: 0.8rem;
            }
        }
    }
}

a.search-link {
    margin-top: 0 !important;
    font-size: 0.8rem !important;
}

span.ps-shown-by-js {
    border-radius: 4px;

    i {
        color: var(--primary-color);
    }
}

.search-filter-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.5rem;

    @media (max-width: 768px) {
        &.collapse {
            display: none !important;

            &.in {
                display: flex !important;
            }
        }
    }

    &.collapse {
        display: flex;
    }


    & > section {
        width: calc(20% - 0.5rem);

        @media (max-width: 768px) {
            width: 100%;
        }
    }

    label {
        display: flex;
        text-align: left;

        .custom-radio,
        .custom-checkbox {
            flex-shrink: 0;
        }
    }


    .navbar-icons-wrapper {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-grow: 1;

        .navbar-toggler {
            display: flex;
            padding: 0;

            i {
                cursor: pointer;
            }
        }
    }
}

.search_filters_title {
    font-size: 0.8rem;
    line-height: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0;
}


/* ORDER-CONFIRMATION */
#content-hook_order_confirmation {
    .order-confirmation-text-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        margin: 3rem 0;

        .card-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color) !important;
            text-transform: none !important;
        }

        p {
            font-size: 1rem;
            color: var(--black);

            .span-email {
                font-weight: 700;
                color: var(--primary-color);
            }
        }

        a {
            font-size: 0.8rem;
            color: var(--primary-color);
            text-decoration: underline;
        }
    }
}

.order-confirmation-table {
    .color-primary {
        color: var(--primary-color) !important;
        font-weight: 700 !important;
    }

    .product-name {
        font-weight: 700;
        color: var(--black);
    }
}

.order-and-payment-confirm {
    display: flex;
    gap: 1rem;

    li {
        flex-basis: 50%;
        border: 1px solid var(--gray);
        flex-grow: 1;
        padding: 0.75rem 2rem;
        border-radius: 4px;
        font-weight: 700;
    }
}

#order-details {
    float: none !important;
    margin-left: auto !important;
    padding-left: 0.5rem !important;
}

#order-products {
    tfoot,
    tbody {
        tr {
            td:last-child {
                color: var(--primary-color);
                font-weight: 700;
            }
        }
    }
}

.order-summary-table {
    width: 50% !important;
    margin-left: auto !important;
}

.single-payment-line {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.orders.hidden-md-up {
    .order {
        margin: 1.5rem 0;

        span {
            display: block;
            margin-top: 0.5rem;
        }

        .date,
        .total {
            font-weight: 700;
            color: var(--black);
            font-size: 1.125rem;
        }

        .status {
            margin-top: 0;

            .label {
                margin-top: 0;
                font-size: 0.8rem;
                font-weight: 700;
                color: var(--white);
                padding: 0.25rem 0.5rem;
                text-align: center;
                border-radius: 4px;
            }
        }
    }
}

.total-products {
    padding: 0 !important;

    p {
        font-weight: 700;
        margin-bottom: 0;
    }

}

.form-control-select {
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary-color);
    border-radius: 4px;

    .select-title {
        border-radius: 4px;
        padding: 0.5rem 1rem;
        background-color: var(--white);
        border: none;

        span {
            color: var(--black);
            font-size: 0.8rem;
            font-weight: 700;
        }
    }
}

/*.js-input-column:has( .radio-inline) {*/
/*    position: absolute;*/
/*    left: 240px;*/

/*    @media (max-width: 991px) {*/
/*        left: 40px;*/
/*    }*/
/*}*/

.order-message-form {
    .form-control-select {
        padding: 0;
        border: 1px solid var(--primary-color);
        border-radius: 4px;
        background-color: var(--white);

        option {
            color: var(--black);
            font-size: 0.8rem;
            font-weight: 700;
        }
    }

    textarea {
        background-color: var(--white);
        border-radius: 4px;
        border: 1px solid var(--primary-color);
    }

    .form-control-submit {
        background-color: var(--primary-color);
        border-radius: 4px;
        padding: 0.5rem 2rem;
        text-transform: none;

        &:active:focus {
            background-color: var(--primary-color);
        }
    }
}

.dropdown-menu {
    background-color: var(--white) !important;
    border: 1px solid var(--gray) !important;
    box-shadow: none !important;

    .select-list {
        background-color: var(--white);

        &:hover {
            color: var(--primary-color);
            background-color: var(--white);
        }
    }
}

.wishlist-products-container {
    #content {
        box-shadow: none;

        .wishlist-products-list {
            padding: 0 !important;
            margin: 0 !important;
            gap: 0.5rem;

            @media (max-width: 768px) {
                gap: 1rem;
            }

            .wishlist-products-item {
                padding-bottom: 0.625rem;
                border-radius: 4px;
                border: 1px solid var(--white);
                margin: 0;

                &:hover {
                    img {
                        transform: none !important;
                    }
                }

                .wishlist-product-link {
                    @media (max-width: 768px) {
                        align-items: center;
                        flex-direction: column;
                        gap: 0.5rem;
                    }

                    .wishlist-product-image {
                        @media (max-width: 768px) {
                            width: 100%;
                            height: 100%;
                            margin-right: 0;
                            min-height: 100px;
                            position: relative;

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

                .wishlist-button-add {
                    border-color: var(--primary-color) !important;
                    position: absolute !important;

                    i {
                        color: var(--primary-color);
                        background-color: var(--white);
                    }
                }

                &:hover {
                    border: 1px solid var(--gray);

                    .wishlist-product-title {
                        text-decoration: underline;
                    }

                    img {
                        transform: translate(-50%, -50%);
                    }
                }

                .wishlist-product-unavailable {
                    opacity: 1;
                }

                .wishlist-product-availability {
                    color: var(--primary-color);
                    bottom: 0;

                    @media (max-width: 768px) {
                        display: flex !important;
                    }

                    &.wishlist-product-availability-responsive {
                        display: none !important;
                    }

                    &.wishlist-product-unavailable {
                        color: var(--danger-color);
                    }

                    &.wishlist-last-remaining-items {
                        color: var(--warning-color);
                    }

                    i {
                        display: none;
                    }
                }

                .wishlist-product-right {
                    .wishlist-product-title {
                        text-align: center;
                        font-size: 1rem;
                        font-weight: 700;
                        line-height: normal;
                        color: var(--black);
                        min-height: 63px;
                        margin-top: 0.315rem;
                    }

                    .wishlist-product-price {
                        color: var(--primary-color);
                        text-align: center;
                        font-size: 18px;
                        font-weight: 700;
                    }
                }

                .wishlist-product-combinations {
                    display: none;
                }

                .wishlist-product-addtocart {
                    display: flex;
                    height: 44px;
                    padding: 12px 0;
                    justify-content: center;
                    align-items: center;
                    gap: 17px;
                    flex-shrink: 0;
                    align-self: stretch;
                    margin: 0 0.625rem;
                    width: calc(100% - 1.25rem);
                }
            }
        }
    }
}

.wishlist-container-header {
    a {
        color: var(--primary-color) !important;
        font-size: 0.8rem;

        &:hover {
            color: var(--primary-color) !important;
            opacity: 1 !important;
        }

        i {
            color: var(--primary-color) !important;
        }
    }
}

/* AUTOCOMPLETE */
.ui-autocomplete {
    max-height: 400px;
    overflow-y: auto;

    .ui-menu-item {
        padding: 0.5rem;
        font-size: 0.8rem;
        color: var(--black);
        /*border-bottom: 1px solid var(--gray);*/
        background-color: var(--white);
        cursor: pointer;

        .ui-corner-all {
            display: flex;
            justify-content: flex-start;
            gap: 0.5rem;
            align-items: center;

            .search_left {
                margin-right: 0.5rem;

                img {
                    max-height: 50px;
                    max-width: 50px;
                }
            }
        }

        .ui-state-focus {
            background: var(--primary-color) !important;
            color: var(--white);
            border: none;
            box-shadow: none;

        }

        &:hover {
            color: var(--primary-color);
            background-color: var(--white);
        }
    }

}


#js-active-search-filters {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    background-color: var(--white);
    padding-left: 0;

    &:has(.filter-block) {
        border-bottom: 1px solid var(--dark-gray);
    }

    .search-filters-container {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 1rem;

        .js-search-filters-clear-all {
            background-color: transparent;
            border: none;
            color: var(--primary-color);
            margin: 0;
            font-size: 0.8rem;
            line-height: 1.5rem;
            padding: 0;
            text-decoration: underline;
        }
    }

    .active-filter-title {
        font-size: 0.8rem;
        line-height: 1.5rem;
        font-weight: 700;
        color: var(--black);
        margin-bottom: 0;
    }

    .filter-block {
        border: 1px solid var(--primary-color);
        border-radius: 4px;
        font-weight: 700;

        .material-icons {
            color: var(--primary-color);
            font-weight: 700;
        }
    }
}

#js-product-list-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    .sort-by-row {
        justify-content: flex-end;
    }

    .select-title {
        border-radius: 4px;
        padding: 4px 10px;
        background-color: var(--white);
        border: 1px solid var(--gray);

        span {
            color: var(--black);
            font-size: 0.8rem;
            font-weight: 700;
        }

        .material-icons {
            color: var(--dark-gray);
            font-weight: 700;
        }
    }

    .products-sort-order {
        width: 14rem;
        margin-left: 0.5rem;
        margin-right: 0.5rem;

        .select-title {
            width: 217px;
            display: flex;
            justify-content: space-between;
            align-items: center;

            .sort-button-wrapper {
                display: flex;
                justify-content: center;
                align-items: flex-start;
                flex-direction: column;
            }

            .sort-label {
                font-size: 10px;
                color: var(--black);
                font-weight: 400;
                line-height: 1.1;
            }

            .sort-select {
                font-size: 0.875rem;
            }
        }
    }

    .dropdown-menu {
        background-color: var(--white);
        border: 1px solid var(--dark-gray);
        border-radius: 4px;
        width: 217px;
        z-index: 800;

        .select-list {
            background-color: var(--white);
            padding: 0.25rem 0.75rem;
            font-size: 0.875rem;


            &:hover {
                color: var(--primary-color);
                background-color: var(--white);
            }
        }
    }
}

.form-group {
    .input-group.focus {
        outline: none;
    }

    .form-control:focus {
        outline: 2px solid var(--primary-color) !important;
        border: 1px solid var(--primary-color) !important;
    }
}

.reset-password-page {
    .form-control-label {
        text-align: left;
        font-size: 1rem;
        font-weight: 400;

        span {
            font-size: 0.8rem;
            color: var(--dark-gray);
        }
    }

    .form-control {
        background: var(--white);
        border-radius: 4px;
    }
}

.page-addresses {

    .address-form {
        display: flex;
        gap: 1rem;

        @media (max-width: 768px) {
            flex-direction: column;
        }


        .address {
            margin-bottom: 0;

            .address-body {
                display: flex;
                flex-direction: column;
                gap: 0.5rem;
                align-items: center;
                justify-content: center;
                flex-grow: 1;
                box-sizing: border-box;
                border: 1px solid var(--gray);
                border-radius: 4px;
                max-height: 270px;
            }

            .address-footer {
                border: none;
            }
        }

        .add-new-address-wrapper {
            aspect-ratio: 1;
            display: flex;
            max-height: 270px;

            .account-add-address {
                display: flex;
                flex-grow: 1;
                align-items: center;
                justify-content: center;
                background-color: var(--primary-color);
                border-radius: 4px;
                padding: 1.5rem;
                text-transform: none;
                font-size: 1rem;
                cursor: pointer;
                border: none;
                color: var(--white);
            }
        }
    }
}

input[type="radio"]:checked + span {
    background-color: var(--primary-color) !important;
    border-radius: 50% !important;
}

.create-account-footer-wrapper {
    .form-control-label {
        text-align: left;
        font-size: 1rem;
        font-weight: 400;

        span {
            font-size: 0.8rem;
            color: var(--dark-gray);
        }
    }

    .form-control {
        background: var(--white);
        border-radius: 4px;
    }
}


.create-account-footer-wrapper,
.js-address-form,
.js-customer-form,
.register-form,
.login-form {
    .form-group.row {
        display: flex;
        flex-direction: column;
        align-items: center;

        &:has(.custom-checkbox) {
            margin-bottom: -0.5rem;
        }

        .form-control-label {
            text-align: left;
            font-size: 1rem;
            font-weight: 400;

            span {
                font-size: 0.8rem;
                color: var(--dark-gray);
            }
        }

        .form-control {
            background: var(--white);
            border-radius: 4px;
        }

        .password-toggle {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            z-index: 10;

            button {
                background: none;
                border: none;
                padding: 1rem;
                cursor: pointer;
                color: var(--dark-gray);
            }
        }

        .custom-checkbox {
            label {
                font-size: 0.8rem;
                display: grid;
                grid-template-columns: 30px 1fr;
                cursor: pointer;

                span {
                    border-radius: 4px;
                }
            }
        }

        .radio-inline {
            cursor: pointer;

            .custom-radio {
                border-radius: 4px;

                input[type="radio"]:checked + span {
                    background-color: var(--primary-color) !important;
                    border-radius: 50% !important;
                }
            }
        }
    }

    .password-requirements-score,
    .password-requirements-length {
        text-align: left;
    }

    .register-button-wrapper {
        width: 50%;
        margin: 2rem auto 0 auto;

        @media (min-width: 769px) and (max-width: 991px) {
            margin: 2rem 0 0 0;
        }

        button {
            background-color: var(--primary-color);
            border-radius: 4px;
            padding: 0.5rem 2rem;
            text-transform: none;
        }
    }

    .form-footer {
        margin-top: 2rem;
        /*padding: 0 8px;*/

        button {
            background-color: var(--primary-color);
            border-radius: 4px;
            padding: 0.5rem 2rem;
            text-transform: none;
        }

        .form-footer-buttons {
            @media (min-width: 992px) {
                margin-left: 180px;
            }

            @media (min-width: 1201px) {
                margin-left: 215px;
            }
        }
    }

    .login-form-row {
        display: flex;
        justify-content: center;

        .login-form-buttons {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;

            a {
                font-size: 13px;
                color: var(--black);
                text-decoration: underline;
            }

            .login-button {
                background-color: var(--primary-color);
                color: var(--light-gray);
                border-radius: 4px;
                padding: 0.75rem 3.25rem;
                text-transform: none;
                font-size: 0.875rem;
                cursor: pointer;
                border: none;
                font-weight: 700;
            }
        }
    }
}

.customBtndisplayCustomerLoginFormAfter,
.fbldisplayCustomerLoginFormAfter {
    display: flex;
    justify-content: center;

    .social-login {
        position: relative;
        border-radius: 4px;
        border: none;
        display: flex;
        justify-content: center;
        padding: 0.75rem 2rem;
        width: calc(50% - 12px);
        margin: 0 auto;
        cursor: pointer;
        font-weight: 700;
        font-size: 0.875rem;

        &:before {
            content: url("../icons/facebook-icon.svg");
            left: 1.75rem;
            position: absolute;
            top: 50%;
            transform: translateY(-40%);
            background: none !important;
        }

        &.customGPlusSignIn {
            padding: 0.75rem 2rem;
            margin-bottom: 1rem;
            background: #E10303 !important;
            height: unset !important;
            text-shadow: none !important;

            &:before {
                content: url("../icons/google_logo.png");
                transform: translateY(-45%);
            }

            .buttonText {
                padding: 0;
                top: unset;
                font-weight: 700;
                font-size: 0.875rem;
            }

            &:after {
                content: none;
            }
        }

        &.fblogin {
            background-color: #3b5998;
            color: var(--light-gray);

            &.padding {
                padding: 1rem 2rem;
            }
        }

    }
}

.no-account {
    margin-bottom: 7rem;

    span {
        font-size: 0.8rem;
        color: var(--black);
    }

    a {
        font-size: 0.8rem;
        color: var(--primary-color);
        text-decoration: underline;
    }
}

.login-hr {
    width: calc(50% - 16px);
    margin: 1.5rem auto;
}

#wrapper {
    background: var(--white) !important;
}

body:not(.page-index) {
    #header {
        .header-top {
            background-color: var(--dark-green);
        }
    }
}

#footer {
    background-color: var(--black);
    padding: 2.5rem 0;

    .container li a,
    .dropdown {
        color: var(--light-gray);
        font-size: 0.75rem;
        line-height: 2rem;
    }

    .footer-col {
        margin-bottom: 0.8rem;
    }

    .block-contact {
        color: var(--light-gray);

        .shop-info {
            & * {
                color: var(--light-gray);
                font-size: 1rem;
                line-height: 1.6rem;
            }

            & a {
                text-decoration: underline;
            }
        }

        ul {
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
            margin: 0;
            padding: 0;
            list-style: none;

            a {
                color: var(--light-gray);
                font-size: 0.75rem;
                line-height: 1.1rem;
                text-decoration: none;
            }
        }
    }

    .block-social {
        @media (min-width: 992px) {
            margin-top: -2rem;
        }

        ul {
            display: flex;
            gap: 0.75rem;

            li {
                background-color: unset;
                margin: 0;
                width: 35px;
                height: 35px;
                font-family: "FontAwesome", serif;

                &:before {
                    content: none;
                }

                a {
                    color: var(--light-gray);
                    font-size: 1rem;
                    width: 35px;
                    height: 35px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    border-radius: 50%;
                    text-indent: 0;
                    font-family: "FontAwesome", serif;
                    line-height: 1;

                    &:hover {
                        text-decoration: none;
                    }
                }

                &.facebook {
                    background: #3765a3;

                    a:before {
                        content: url("../icons/logo_fb.svg");
                        width: 10px;
                        height: 18px;
                    }
                }

                &.twitter {
                    background: #11c1ff;

                    a:before {
                        content: "\f099";
                    }
                }

                &.rss {
                    background: #f4b83f;

                    a:before {
                        content: "\f09e";
                    }
                }

                &.youtube {
                    background: #e42526;

                    a:before {
                        content: "\f167";
                    }

                }

                &.googleplus {
                    background: #dc4a38;

                    a:before {
                        content: "\f0d5";
                    }
                }

                &.pinterest {
                    background: #d73532;

                    a:before {
                        content: "\f0d2";
                    }
                }

                &.vimeo {
                    background: #1ab7ea;

                    a:before {
                        content: "\f194";
                    }
                }

                &.instagram {
                    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 100%);

                    a:before {
                        content: url("../icons/logo_instagram.svg");
                        width: 18px;
                        height: 18px;
                    }
                }

                &.tiktok {
                    background: black;

                    a:before {
                        content: url("../icons/tiktok.svg");
                        width: 18px;
                        height: 18px;
                    }
                }

                &.linkedin {
                    background: #1187C9;

                    a:before {
                        content: url("../icons/logo_linked.svg");
                        width: 18px;
                        height: 16px;
                    }
                }
            }
        }
    }
}

.footer-info-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5rem;
    background-color: var(--primary-color);
    padding: 1rem 0;

    .footer-info-item {
        display: flex;
        gap: 0.8rem;
        align-items: center;

        p {
            color: var(--light-gray);
            margin-bottom: 0;
            font-weight: 700;
        }
    }
}

.black_info_wrapper {
    position: relative;
    margin-left: calc(50% - 50vw);
    width: 100vw;
    margin-bottom: 1.5rem;

    .footer-info-wrapper {
        background-color: var(--black);

        img {
            filter: brightness(0) saturate(100%) invert(53%) sepia(23%) saturate(1309%) hue-rotate(67deg) brightness(88%) contrast(84%);
        }
    }
}

.awards-wrapper {
    padding: 6rem 0 20rem 0;
    background-color: #E7E5E2;
    background-image: url("../images/okucia_background.png");
    background-position: left bottom;
    background-repeat: no-repeat;

    h3 {
        text-align: center;
        margin-bottom: 2rem;
        font-size: 2rem;
        font-weight: 400;
    }

    p {
        display: block;
        margin: 0 auto 3rem;
        width: 55%;
        text-align: center;
        color: var(--black);
        font-size: 18px;
        line-height: 1.5;
    }

    .awards-img-wrapper {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 2rem;
    }
}

.testimonials-wrapper {
    padding: 4rem 0;
    background-color: var(--primary-color);
    color: var(--light-gray);

    .testimonials-header {
        position: relative;
        text-align: center;
        margin-bottom: 4rem;

        h3 {
            font-size: 2rem;
            margin-bottom: 0;
            font-weight: 400;
        }

        img {
            width: 100px;
            position: absolute;
            top: 0;
            right: 0;
        }
    }

    .testimonials-container {
        display: flex;
        justify-content: space-between;
        gap: 1rem;

        .testimonial-card {
            display: flex;
            flex-direction: column;
            flex-basis: 30%;
            background-color: var(--light-gray);
            padding: 1.5rem;
            border-radius: 10px;

            p {
                color: var(--black);
                font-size: 1.2rem;
                line-height: 1.5;
                margin-bottom: 0.5rem;
                flex-grow: 1;
            }

            span {
                font-size: 0.7rem;
                color: var(--medium-gray);
            }
        }
    }
}

#carousel {
    margin-left: calc(50% - 50vw);
    width: 100vw;
    aspect-ratio: 1440 / 550;

    .carousel-inner {
        height: 100%;
        margin-bottom: 0;

        .carousel-item {
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;

            h1 {
                font-size: 3rem;
            }

            figure {
                position: relative;
                height: 100%;
                width: 100%;

                figcaption {
                    display: block;
                    position: relative;
                    left: 16px;
                    bottom: 45%;
                    transform: translateY(-50%);
                    margin: 0 auto;
                }

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

                .slider-button {
                    background-color: var(--primary-color);
                    padding: 1rem 2rem;
                    text-transform: none;
                }
            }
        }
    }

    .carousel-control {
        i {
            color: var(--primary-color);
            border: 1px solid var(--primary-color);
            border-radius: 50%;
        }
    }

    .carousel-indicators {
        display: flex;
        position: relative;
        gap: 0.6rem;
        width: max-content;
        margin: -64px auto 30px;
        padding: 10px 16px;
        border: 1px solid var(--primary-color);
        border-radius: 100px;
        z-index: 10;
        left: 0;
        bottom: 0;

        li {
            border-color: var(--primary-color);
            width: 12px;
            height: 12px;
            margin: 0;

            &.active {
                background-color: var(--primary-color);
            }
        }
    }
}

.partners-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 5rem 0;
    background-color: var(--medium-gray);
    max-height: unset;
    margin-left: calc(50% - 50vw);
    width: 100vw;

    .partners-title {
        font-size: 2rem;
        font-weight: 400;
        margin-bottom: 3rem;
    }

    .col-12 {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        flex-wrap: wrap;

        img {
            width: 100px;
            height: 100%;
        }
    }
}

.contact-map {
    h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    p {
        color: var(--black);
    }
}

.contact-page-data {
    h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    * {
        color: var(--black);
    }

    .font-bold {
        font-weight: 700;
        font-size: 0.9rem;
    }

    span {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }

    .agas-static-data {
        p {
            color: black;
            margin-bottom: 0;
            font-size: 0.875rem;
        }

        .data-krs {
            margin-top: 1rem;
        }
    }

    .contact-phone {
        &.focus,
        &.active {
            color: var(--primary-color);
        }
    }

    .contact-mail {
        a {
            text-decoration: underline;
        }
    }
}

a:focus {
    color: var(--primary-color);
}

#map {
    padding-bottom: 4rem;

    svg {
        path {
            cursor: pointer;

            &[data-region="1"] {
                fill: var(--lighter-green);
            }

            &[data-region="2"] {
                fill: var(--dark-green);
            }

            &[data-region="3"] {
                fill: var(--light-green);
            }

            &[data-region="4"] {
                fill: var(--medium-green);
            }

            &:hover {
                filter: opacity(0.8);
            }
        }
    }
}

.product-miniature {
    .thumbnail-container {
        border: 1px solid var(--white);
        margin-bottom: 1rem;

        .product-description {
            display: flex;
            flex-direction: column;
            min-height: 225px;
            padding-bottom: 0.625rem;
        }

        &:hover {
            border: 1px solid var(--gray);
            border-radius: 8px;

            .product-title {
                text-decoration: underline;
            }

            .product-description::after {
                content: none;
            }
        }
    }
}

div#_desktop_search_widget {
    padding: 0;
    margin: 0 !important;

    #search_widget {
        overflow: hidden;
        width: 100%;
        margin-bottom: 0;

        .search-widget-wrapper {
            display: flex;
            justify-content: center;

            input[type="text"] {
                min-width: 205px;
                font-size: 0.875rem;
                border-radius: 4px;
                height: 32px;
                flex-grow: 1;
                padding-right: 3rem;
                padding-left: 1rem;
                background: white;
                border: 1px solid var(--gray);

                &:focus + button[type="submit"] i {
                    color: var(--light-gray) !important;
                }
            }

            button[type="submit"] {
                position: absolute;
                right: 0;
                top: 0;
                display: flex;
                justify-content: center;
                align-items: center;
                background-color: var(--primary-color);
                width: 40px;
                height: 32px;
                border-radius: 4px;
                color: var(--light-gray);
                cursor: pointer;

                i {
                    position: static;
                    padding: 0;
                    line-height: 1;

                }

                &:hover i {
                    color: var(--light-gray) !important;
                }
            }
        }
    }
}

a.dropdown-item,
a.custom-page-link,
a.cms-page-link {
    &:hover {
        color: var(--primary-color) !important;
    }
}

a {
    color: var(--black);
    text-decoration: none;

    &:hover {
        color: var(--primary-color);
    }
}

#header {
    color: var(--black);
    box-shadow: none;

    .logo {
        max-height: 63px;
        max-width: 200px;
        object-fit: contain;

        @media (max-width: 768px) {
            max-height: 50px;
        }
    }

    .login-cart-wrapper {
        display: flex;
        flex-direction: row;
        gap: 1.2rem;
        align-items: center;
        justify-content: flex-end;

        #_desktop_user_info {
            .user-info {
                margin: 0;

                a {
                    font-size: 0.875rem;
                    margin-right: 12px !important;
                    text-decoration: none;

                    &:hover {
                        text-decoration: none;
                        color: var(--primary-color);
                    }
                }
            }
        }
    }

    nav.header-nav {
        border-bottom: none !important;
        max-height: unset !important;
        padding: 0;

        &.hide-nav {
            display: none;
        }

        & > .container {
            @media (max-width: 991px) {
                width: calc(100% - 30px);
            }

            @media (max-width: 768px) {
                padding-left: 0;
                padding-right: 0;
            }
        }

        .block-contact .link-wrapper {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin: 0;

            li a {
                font-size: 0.875rem;
                display: block;
                width: max-content;
            }
        }

        .header-nav-container {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            align-items: center;
            padding: 0.8rem 0;

            .center-container {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 1rem;
            }

            .header-logo {
                width: 200px;
            }

            #contact-link {
                margin-top: 0 !important;
                display: flex;
                flex-wrap: wrap;

                @media (max-width: 1199px) {
                    max-width: 190px;
                }

                span {
                    font-size: 0.875rem;

                    &.shop-phone {
                        margin-right: 1rem;
                        display: flex;
                        flex-wrap: wrap;
                        gap: 0.2rem;

                        a {
                            &:hover {
                                color: var(--primary-color);
                            }
                        }
                    }
                }
            }
        }
    }

    .header-top {
        box-shadow: none;
        background-color: transparent;
        /* change parent color on hover a child element */

        .container .row {
            border-radius: 8px;
            pointer-events: none;

            &:hover {
                background-color: var(--light-gray);
            }

            .dropdown-item {
                pointer-events: auto;
            }

            ul {
                pointer-events: auto;
            }
        }

        .nav-top-wrapper {
            position: relative;
            background-color: var(--white);
            border-radius: 8px;
            justify-content: space-between;

            #_desktop_logo {
                max-height: 63px;
            }

            > .js-top-menu {
                > ul {
                    width: max-content;
                    padding: 1.25rem 0.5rem 1.25rem 0;

                    .category {
                        &:last-child {

                            & > .popover {
                                .top-menu {
                                    max-height: 50vh;
                                    gap: 0.4rem;
                                }
                            }
                        }
                    }
                }
            }

            a {
                text-transform: none;
                color: var(--black);
                font-weight: 400;
                pointer-events: auto;
            }

            &:after {
                content: none;
            }

            .dropdown-item:has(+.popover):after {
                content: url("../icons/arrow.svg");
                vertical-align: sub;
            }

            .popover {
                width: 100%;
                margin-left: 0;
                padding: 12px 0 0 0;
                background: transparent;
                border-radius: 0 0 8px 8px;
                margin-top: 60px;
                transition: opacity .2s ease, visibility 0.1s;
                box-shadow: -2px 12px 10px -10px rgba(66, 68, 90, 1);

                .top-menu {
                    background-color: var(--light-gray);
                    border-radius: 0 0 8px 8px;
                    margin: 0;

                    .category {
                        margin: 0 0.5rem;
                    }

                    .dropdown-item {
                        padding: 0;
                        white-space: normal;
                        word-break: break-word;

                        &[data-depth="2"]:has(+ .collapse) {
                            font-weight: 700;
                        }
                    }

                    &[data-depth="1"] {
                        display: flex;
                        flex-direction: column;
                        flex-wrap: wrap;
                        gap: 0.5rem;
                        max-height: 50vh;
                        overflow-y: auto;
                        padding: 2rem 1rem;

                        > .category {
                            > .dropdown-item {
                                font-weight: 700;
                            }
                        }
                    }

                    &[data-depth="2"] {
                        display: flex;
                        flex-direction: column;
                        gap: 0.25rem;
                    }
                }
            }
        }
    }
}

#_desktop_cart {
    padding: 0 !important;

    .blockcart {
        padding: 0 !important;
        margin-left: 0 !important;
        background: none !important;
        color: var(--light-gray) !important;
        height: unset !important;

        .header {
            border-radius: 4px !important;
            min-height: unset !important;
            height: 32px !important;
            display: flex !important;
            gap: 0.5rem !important;
            justify-content: space-between !important;
            align-items: center !important;
            padding: 8px 16px !important;
            background-color: var(--primary-color) !important;

            i {
                position: static !important;
                color: var(--light-gray) !important;
            }

            .cart-products-count {
                color: var(--white);
            }
        }
    }
}

.breadcrumb {
    background-color: var(--dark-green);
    padding: 0 1rem 1rem 1rem;
    margin-bottom: 0;

    &.hide-breadcrumb {
        display: none;
    }

    @media (max-width: 991px) {
        padding: 1rem;
    }

    h1 {
        color: var(--white);
        font-size: 2rem;
        line-height: normal;

        @media (max-width: 768px) {
            font-size: 1.375rem;
        }

        @media (max-width: 586px) {
            display: none;
        }
    }

    ul {
        display: flex;
        margin-bottom: 0;

        li {
            span {
                color: var(--vibrant-green);
                font-size: 11px;
            }

            &:after {
                margin: .3125rem;
                color: var(--white);
                content: "\2022";
            }

            &:last-child {
                span {
                    color: var(--white);
                }

                &:after {
                    content: none;
                }
            }
        }
    }
}

.ps-alert-success {
    .item {
        background-color: var(--primary-color);
        border-color: var(--primary-color);

        i {
            border-color: var(--primary-color);

            svg {
                background-color: var(--primary-color);
            }
        }
    }
}

.products-section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: none !important;
    margin: 2.5rem 0;

    span {
        padding: 0 1rem;
        width: max-content;
        font-weight: 500;
        font-size: 2rem;
        /*flex-grow: 1;*/

        @media (max-width: 586px) {
            font-size: 1.5rem;
            font-weight: 400;
        }

        a:hover,
        a:focus {
            color: var(--primary-color);
            text-decoration: none;
        }

        &:hover a:focus,
        &:hover a:focus-visible,
        &:hover a {
            color: var(--primary-color);
            text-decoration: none;


        }
    }

    &:after,
    &:before {
        content: "";
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 30%;
        /*width: 100%;*/
        height: 2px;
        background-color: var(--gray);
    }
}

.product-flags {
    li.product-flag {
        font-size: 0.75rem;
        border-radius: 4px;
        font-weight: 700;
        background-color: var(--primary-color);
        margin-left: 0.625rem;
        min-height: unset;
        min-width: unset;

        &.discount {
            background-color: var(--danger-color);
        }

        &.out_of_stock {
            display: none;
        }
    }
}

#order-items {
    .confirmation-order-line {
        display: flex;
        flex-direction: row;
        align-items: center;

        @media (max-width: 768px) {
            flex-direction: column;
            align-items: flex-start;
        }
    }

    table tr.total-value {
        background-color: var(--white);
        border-top: 1px solid var(--gray);
    }
}

.product-add-qty-wrapper {
    @media (max-width: 586px) {
        display: flex;
        width: 100%;
        flex-wrap: wrap;

        .add {
            flex-grow: 1;
        }
    }
}

.modal-content {
    background: var(--white) !important;

    .qty {
        position: relative;
        display: flex;
        align-items: center;

        label {
            font-size: 0.8rem;
            margin-right: 1rem;
            margin-bottom: 0;
            position: absolute;
            left: 0.5rem;
            z-index: 11;
        }

        #quantity_wanted {
            position: relative;
            border-radius: 4px 0 0 4px;
            padding-left: 2.5rem;
            padding-right: 0;
            width: 5rem;
            font-weight: 700;
            font-size: 0.875rem;
        }
    }
}

.brands-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;

    .brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        border: 1px solid var(--gray);
        border-radius: 4px;
        padding: 1rem;

        .brand-img {
            width: 100%;
            height: 100%;
            margin-bottom: 1rem;

            img {
                object-fit: contain;
            }
        }

        .brand-infos {
            margin: 1rem 0 0.5rem 0;

            a {
                font-weight: 700;
            }
        }

        .divider {
            width: 100%;
            border-top: 1px solid var(--gray);
        }

        .brand-number {
            font-size: 0.75rem;
            color: var(--black);
            margin-bottom: -0.5rem;
        }

        .brand-link {
            display: block;
            text-align: center;
            margin-top: 0.5rem;
            font-size: .875rem;
            background-color: var(--primary-color);
            color: var(--light-gray);
            padding: 0.5rem 1rem;
            width: 100%;

            &:hover {
                background-color: var(--dark-green);
            }
        }

        p {
            margin-bottom: 0;
        }
    }
}

.products {
    .available-message {
        font-size: 0.75rem;
        margin-bottom: 0;
        text-align: center;
        font-weight: 700;
        min-height: 1.5rem;

        &[data-message="Dostępny"] {
            color: var(--primary-color);
        }

        &[data-message="Ostatnie sztuki"] {
            color: var(--warning-color);
        }

        &[data-message="Na zamówienie"] {
            color: var(--danger-color);
        }
    }

    .product-miniature {
        .highlighted-informations {
            padding: 1rem;
            height: 100%;
        }

        .thumbnail-container:hover .highlighted-informations.no-variants {
            top: calc(100% - 3rem);
        }
    }

    .quick-view {
        padding: 0.5rem 1rem;
        border: 1px solid var(--primary-color);
        border-radius: 4px;

        &:hover {
            color: var(--primary-color) !important;
        }
    }

    .product-title {
        margin-top: 0;
        flex-grow: 1;
        margin-bottom: 0;

        a {
	    text-transform: none;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 0.5rem;
            font-size: 1rem;
            overflow: hidden;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 3;

            @media (max-width: 586px) {
                font-size: 0.875rem;
                line-height: 1.3;
            }
        }
    }

    .index-number {
        font-size: 0.75rem;
        color: var(--black);
    }

    .product-price-and-shipping {
        display: flex;
        position: relative;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        margin-top: 0.375rem;
        margin-bottom: 1rem;

        .regular-price {
            font-size: 0.875rem;
            color: var(--dark-gray);
            position: absolute;
            bottom: 18px;

            & ~ .price {
                font-size: 1.125rem;
                color: var(--danger-color);

                @media (max-width: 586px) {
                    font-size: 1rem;
                }
            }
        }

        .price {
            font-weight: 700;
            font-size: 1.125rem;
            color: var(--primary-color);

            @media (max-width: 586px) {
                font-size: 1rem;
            }
        }
    }

    .thumbnail-container {
        width: 100%;
        display: flex;
        flex-direction: column;

        .thumbnail-top {
            flex-grow: 1;
            margin-top: 45px;
        }
    }

    .add-to-cart-button {
        button {
            /*width: 100% !important;*/
            background-color: var(--primary-color) !important;
            color: var(--light-gray);
            border-radius: 25px;
            margin: 0 0.25rem !important;
            text-transform: none;
            padding: 0.625rem;
            font-size: 0.8rem;
            cursor: pointer;
            border: none !important;
            transition: background-color 0.3s;

            span {
                img {
                    vertical-align: bottom;
                    margin-right: 0.7rem;
                }
            }

            &:hover {
                background-color: var(--dark-green) !important;

                span {
                    img {
                        filter: brightness(0) saturate(100%) invert(53%) sepia(23%) saturate(1309%) hue-rotate(67deg) brightness(88%) contrast(84%);
                    }
                }
            }

            &:disabled {
                background-color: var(--gray) !important;

                span {
                    img {
                        filter: none;
                    }
                }
            }
        }
    }
}

.product-miniature {
    height: 550px;

    @media (max-width: 586px) {
        height: 490px;
    }
}

.wishlist-product-bottom,
.wishlist-product-link,
.product-miniature {
    .wishlist-button-add {
        top: 0.625rem;
        right: 0.625rem;
        min-width: unset;
        width: 2rem;
        height: 2rem;
        padding: 0.5rem;
        box-shadow: none !important;
        border: 1px solid var(--gray) !important;

        &.favorite {
            border-color: var(--primary-color) !important;
        }

        i {
            width: 20px;
            height: 20px;
            font-size: 20px;
            line-height: 22px;
            color: var(--gray);

            &.favorite {
                color: var(--primary-color) !important;
            }
        }
    }
}

.all-product-link {
    display: flex;
    margin: 1.5rem auto !important;
    border: 1px solid var(--primary-color) !important;
    padding: 1rem 1.25rem !important;
    width: max-content;
    color: var(--black) !important;
    font-weight: 700 !important;
    font-size: 1rem;
    justify-content: center;
    align-items: center;

    &:after {
        content: url("../icons/all-product-arrow.svg");
        width: 26px;
        height: 26px;
        display: inline-block;
        vertical-align: text-bottom;
    }
}

.add-to-cart-icon {
    vertical-align: text-top;
}

.current-price-value {
    color: var(--primary-color);
}

.send_AAP_form_content_button .btn,
.btn.btn-primary.add-to-cart {
    display: flex;
    justify-content: center;
    background-color: var(--primary-color) !important;
    border-radius: 4px;
    text-transform: none;
    font-size: 0.875rem;
    width: 246px;

    @media (max-width: 586px) {
        width: 100%;
    }

    &:focus:active {
        background-color: var(--primary-color) !important;
        color: var(--white);
        border: 1px solid var(--primary-color);
    }

    span {
        margin-right: 1rem;
    }
}

img.thumb {
    border: 1px solid var(--gray) !important;
    box-sizing: border-box;

    &.selected {
        border: 2px solid var(--primary-color) !important;
    }

    &:hover {
        border: 2px solid var(--primary-color) !important;
    }
}

.product-images {
    margin-bottom: 0;
}

.product-container {
    margin-bottom: 3rem;

    .h1 {
        text-transform: none;
        font-size: 2rem;
        line-height: normal;
        letter-spacing: -0.64px;

        @media (max-width: 586px) {
            font-size: 1.5rem;
        }
    }

    .product-additional-info {
        @media (max-width: 586px) {
            width: 100%;
        }

        a {
            color: var(--black);
            border: 1px solid var(--primary-color);
            text-transform: none;
            font-size: 0.875rem;
            font-weight: 700;
            padding: 12px 18px;
            background: var(--white);
            margin-bottom: 0.5rem;
            border-radius: 4px;

            &:focus:active {
                background-color: var(--white);
                color: var(--black);
                border: 1px solid var(--primary-color);
            }

            i {
                display: none;
            }

            @media (max-width: 586px) {
                width: 100%;
            }
        }
    }

    .product-cover {
        .js-qv-product-cover {
            border: 1px solid var(--gray);
            box-sizing: border-box;
        }

        .layer {
            &:hover {
                opacity: 0;
            }
        }
    }

    .accordion-wrapper {
        border-top: 1px solid var(--primary-color);

        .accordion-button {
            position: relative;
            background-color: var(--white);
            width: 100%;
            display: flex;
            color: var(--black);
            padding: 1rem;
            text-align: left;
            text-transform: none;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            border: none;

            &:after {
                content: url("../icons/arrow-up.svg");
                position: absolute;
                right: 1rem;
                top: 50%;
                transform: translateY(-50%);
                width: 20px;
                height: 20px;
            }

            &.collapsed {
                &:after {
                    content: url("../icons/arrow.svg");
                }
            }

            &:focus,
            &:focus-visible {
                outline: none;
            }

        }

        & > div {
            padding: 1rem;
        }

        .product-attachments {
            padding: 1rem 0;

            a {
                color: var(--primary-color);
                text-decoration: underline;
            }
        }

        .product-features {
            margin: 0;
        }

        .product-features {
            border-bottom: 1px solid var(--gray);

            &:last-child {
                border-bottom: none;
            }
        }

        .product-condition,
        .data-sheet,
        .product-availability-date,
        .product-quantities,
        .product-reference,
        .product-manufacturer {
            display: grid;
            grid-template-columns: 1fr 1fr;
            border-bottom: 1px solid var(--gray);
            padding: 0.5rem 0;

            label {
                text-align: left;
                margin: 0;
            }

            &:last-child {
                border-bottom: none;
            }
        }

        .product-description,
        .product-manufacturer {
            white-space: pre-line;

            a {
                color: var(--primary-color);
                font-weight: 700;
                text-decoration: underline;

                &:hover {
                    text-decoration: underline;
                }
            }
        }
    }

    .product-index-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        gap: 0.5rem;

        .product-index,
        .product-producer {
            margin: 0.5rem 0;
            flex-basis: 50%;
            font-size: 0.8rem;
            padding-bottom: 0.7rem;
            color: var(--black);
            border-bottom: 1px solid var(--gray);

            span {
                font-weight: 700;
                color: var(--black);
            }
        }
    }

    .current-price {
        display: flex;
        align-items: center;

        &:has(:not(.h5)) {
            margin-bottom: 0;
        }

        .current-price-value {
            font-size: 2rem;

            @media (max-width: 586px) {
                font-size: 1.5rem;
            }
        }
    }

    .js-product-availability {
        @media (max-width: 586px) {
            font-size: 0.75rem;
        }

        &[data-message="Dostępny"] {
            color: var(--primary-color);
        }

        &[data-message="Ostatnie sztuki"] {
            color: var(--warning-color);
        }

        &[data-message="Na zamówienie"],
        &[data-message="Nie ma wystarczającej ilości produktów w magazynie"] {
            color: var(--danger-color);
        }
    }

    .qty {
        position: relative;
        display: flex;
        align-items: center;

        label {
            font-size: 0.8rem;
            margin-right: 1rem;
            margin-bottom: 0;
            position: absolute;
            left: 0.5rem;
            z-index: 11;
        }

        #quantity_wanted {
            position: relative;
            border-radius: 4px 0 0 4px;
            padding-left: 2.5rem;
            padding-right: 0;
            width: 5rem;
            font-weight: 700;
            font-size: 0.875rem;
        }
    }

    span.discount {
        border-radius: 10px;
        background-color: var(--danger-color);
    }
}

.product-customization {
    .card {
        padding: 0;

        button.btn {
            background-color: var(--primary-color);
            color: var(--light-gray);
            border-radius: 4px;
            text-transform: none;
            font-size: .8rem;

            &:hover {
                background-color: var(--dark-green);
            }
        }
    }
}

.forgotten-password {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem 0;

    .center-email-fields {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;

        label {
            place-self: flex-start;
            padding: 0;
            text-align: left;
        }

        .reset-password-button {
            background-color: var(--primary-color);
            color: var(--light-gray);
            border-radius: 4px;
            padding: 0.5rem 2rem;
            text-transform: none;
            font-size: 0.8rem;
            cursor: pointer;
            border: none;
            margin-top: 1rem;
        }
    }
}

.account-link {
    color: var(--primary-color);
    text-decoration: underline;

    &:hover {
        color: var(--dark-green);
        text-decoration: underline;
    }
}

.psgdprinfo17 {
    background-color: var(--white);
    margin-top: 0;
    color: var(--black);

    p {
        color: var(--black);
    }

    a {
        color: var(--primary-color);
        text-decoration: underline;

        &.btn {
            color: var(--white);
            text-decoration: none;
            background-color: var(--primary-color);
            border-radius: 4px;
            padding: 0.5rem 2rem;
            margin-bottom: 1rem;
        }
    }
}

.modal-content {
    .product-index {
        @media (max-width: 768px) {
            display: flex;
        }
    }
}

.product-index {
    margin-bottom: 0.5rem;

    &.homepage {
        font-size: 0.75rem;
        color: var(--black);
        text-align: center;
    }

    .label,
    .value {
        font-weight: 400 !important;
        font-size: 0.75rem !important;
        color: var(--black) !important;
    }
}

.register-form {
    p {
        font-size: 0.875rem;
        text-align: center;
        color: var(--black);

        a {
            color: var(--primary-color);
            text-decoration: underline;
        }
    }
}

.address-footer {
    .edit-address {
        color: var(--primary-color) !important;

        &:hover {
            text-decoration: underline;
        }
    }

    .delete-address {
        color: var(--danger-color) !important;

        &:hover {
            text-decoration: underline;
        }
    }
}

.addresses-footer {
    a {
        display: block;
        padding: 0.5rem 1rem;
        border-radius: 4px;
        background-color: var(--primary-color);
        width: max-content;

        i,
        span {
            color: var(--light-gray);
        }
    }
}

/* BLOG */

.ets-blog-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: space-between;


    li {
        flex-basis: 32% !important;
        margin-bottom: 0;
        height: 100%;
        flex-grow: 1;
        max-width: 32%;
        color: var(--black);

        @media (min-width: 992px) {
            padding: 0;
        }

        .post-wrapper {
            height: 100%;

            .ets_item_img {
                width: 100%;
                aspect-ratio: 16/9;

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

            .ets-blog-wrapper-content {
                height: 100%;

                .ets-blog-wrapper-content-main {
                    width: 100%;
                    height: 100%;
                    display: flex;
                    flex-direction: column;

                    .ets_title_block {
                        min-height: 120px;
                        text-transform: none;
                        font-size: 1.5rem;
                        line-height: 1.3;
                        color: var(--black);
                        letter-spacing: -0.48px;

                        &:hover {
                            color: var(--primary-color);
                        }
                    }

                    .blog_description {
                        min-height: 320px;

                        p {
                            font-size: 0.875rem;
                            color: var(--black);
                            letter-spacing: -0.28px;
                            line-height: 1.5;
                        }
                    }

                    .read_more {
                        font-size: 0.875rem;
                        /*min-height: 44px;*/
                        border: 1px solid var(--primary-color);
                        border-radius: 4px;
                        padding: 0.75rem 1rem;
                        text-align: center;
                        background-color: var(--white);
                        color: var(--black);
                        width: max-content;
                        font-weight: bold;
                        margin-bottom: 2rem;

                        &:hover {
                            background-color: var(--primary-color);
                            color: var(--light-gray);
                        }
                    }
                }
            }
        }
    }
}

/* SINGLE POST */

.ets-blog-wrapper-detail {
    margin-top: -43px;
    padding-top: 0;

    @media (max-width: 991px) {
        margin-top: -24px;
    }

    .ets_image-single {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        aspect-ratio: 144/43;

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

    .post-date {
        width: 100%;
        margin: 2rem 0 0 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 0.8rem;
        color: var(--dark-gray);

    }

    .page-heading {
        font-size: 3rem;

        span {
            color: var(--primary-color);
            text-transform: none;
            text-align: center;
            font-weight: 700;
        }
    }

    a {
        color: var(--primary-color);

        span {
            color: var(--primary-color);
        }

        &:hover,
        &:hover span {
            color: var(--primary-color);
            text-decoration: underline;
        }

    }

    .ets-blog-related-posts {
        border: none;

        .ets_item_img {
            width: 100%;
            aspect-ratio: 16/9;

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

        .ets-blog-related-posts-list-li {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;

            .ets_title_block {
                min-height: 110px;
                text-transform: none;
                color: var(--black);
                font-size: 1.5rem;
                line-height: 1.3;
                letter-spacing: -0.48px;

                &:hover {
                    color: var(--primary-color);
                }
            }

            .blog_description {
                min-height: 100px;

                p {
                    font-size: 0.875rem;
                    color: var(--black);
                    line-height: 1.5;
                }
            }

            .read_more {
                border: 1px solid var(--primary-color);
                border-radius: 4px;
                padding: 0.75rem 1rem;
                text-align: center;
                background-color: var(--white);
                color: var(--black);
                width: max-content;
                font-weight: bold;
                margin-bottom: 2rem;
                font-size: 0.875rem;
                font-style: normal;

                &:hover {
                    background-color: var(--primary-color);
                    color: var(--light-gray);
                }
            }
        }
    }
}

/* CHECKOUT*/

.continue_shopping {
    background-color: var(--white);
    color: var(--black);
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    padding: 1rem 2rem;
    text-transform: none;
    font-size: 0.8rem;
    cursor: pointer;

    &:focus,
    &:hover {
        background-color: var(--primary-color);
        color: var(--white) !important;
    }

    i {
        vertical-align: top;
    }
}

.modal-content {
    .proceed_to_checkout,
    .continue_shopping {
        padding: 0.5rem 1rem !important;
    }
}

.proceed_to_checkout {
    background-color: var(--primary-color);
    color: var(--light-gray);
    border-radius: 4px;
    text-transform: none;
    padding: 1rem 2rem !important;

    img {
        margin-right: 0.5rem;
    }

    &:active,
    &:focus,
    &:active:focus {
        background-color: var(--dark-green);
    }

    &:hover {
        background-color: var(--dark-green);
    }
}

.product-add-to-cart {
    .product-quantity {
        display: flex;
        justify-content: flex-start;
        align-items: center;

        .product-additional-info {
            margin-left: auto;
        }
    }
}

.product-prices {
    .product-price {
        margin-bottom: 0;
    }
}

#quantity_wanted {
    border-radius: 4px 0 0 4px !important;
}

.bootstrap-touchspin-up {
    border-radius: 0 4px 0 0 !important;
}

.bootstrap-touchspin-down {
    border-radius: 0 0 4px 0 !important;
}

.qty.cart-quantity {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 0;

    /*.js-cart-line-product-quantity::-webkit-outer-spin-button,*/
    /*.js-cart-line-product-quantity::-webkit-inner-spin-button {*/
    /*    -webkit-appearance: button;*/
    /*    margin: 0;*/
    /*}*/

    label {
        font-size: 0.8rem;
        margin-right: 1rem;
        margin-bottom: -2px;
        position: absolute;
        left: 0.5rem;
        z-index: 11;
    }

    .js-cart-line-product-quantity,
    #quantity_wanted {
        position: relative !important;
        border-radius: 4px 0 0 4px !important;
        padding-left: 2.5rem !important;
        width: 5rem !important;
        font-weight: 700 !important;

        .bootstrap-touchspin-up {
            border-radius: 0 4px 0 0 !important;
        }

        .bootstrap-touchspin-down {
            border-radius: 0 0 4px 0 !important;
        }
    }
}

.product-line-info {
    .product-discount {
        display: none;
    }
}

.cart-grid {
    .cart-container {
        margin-bottom: 2rem;
    }

    .cart-overview {
        .product-line-grid {
            display: flex;
            align-items: center;
        }

        .product-line-info {
            a {
                color: var(--black);
                font-weight: 700;

                &:hover {
                    color: var(--primary-color);
                    text-decoration: underline;
                }
            }
        }

        .product-price {
            color: var(--primary-color);
        }

        .current-price {
            span {
                color: var(--primary-color);
            }
        }


        .remove-from-cart {
            color: var(--danger-color) !important;
        }

        .cart-item {
            border-bottom: 1px solid var(--gray);
            padding: 1rem 0;
        }
    }

    .card.cart-summary {
        border: 1px solid var(--gray);
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;

        .collapse-button,
        .value {
            color: var(--primary-color);
        }

        button {
            background-color: var(--primary-color);
            color: var(--light-gray);
            border-radius: 0 4px 4px 0;
            border: 1px solid var(--primary-color);
            padding: 0 2rem;
            text-transform: none;
            margin-top: -2px;
            height: 40px;
        }

        .checkout.cart-detailed-actions {
            padding-bottom: 1rem;

            .proceed_to_checkout {
                background-color: var(--primary-color);
                color: var(--light-gray);
                border-radius: 4px;

                &:hover {
                    background-color: var(--dark-green);
                }
            }
        }
    }
}

/* ADD-TO-CART-MODAL*/

#blockcart-modal {
    .product-name {
        font-weight: 700;
        color: var(--black);
    }

    .cart-products-count {
        color: var(--black) !important;
    }

    .value,
    .product-price {
        color: var(--primary-color);
    }
}

/* SUPER CHECKOUT */
.opc-container {
    [type="radio"]:checked + label,
    [type="radio"]:not(:checked) + label {
        &::after,
        &::before {
            top: 50%;
            transform: translateY(-50%);
        }
    }

    .opc_shoppingcart.custom-panel input#quantity {
        padding: .5rem 2px .5rem 2.3rem !important;
        text-align: left;
        font-weight: 700;
    }

    #supercheckout-fieldset {
        .bootstrap-touchspin {
            max-width: 105px;
        }
    }

    a {
        color: var(--primary-color) !important;
        font-weight: 700;
        z-index: 200 !important;

        &:hover,
        &:focus {
            color: var(--dark-green);
            text-decoration: underline;
        }
    }
}

.product-line-grid {
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;

    .image-title-wrapper {
        display: grid;
        grid-template-columns: 130px 1fr;
        grid-gap: 0.5rem;
        flex-basis: 60%;
        flex-grow: 1;
    }

    .qty-total-delete-wrapper {
        display: grid;
        grid-template-columns: 130px 1fr auto;
        align-items: center;
        gap: 0.5rem;
        min-width: 250px;
    }

    a {
        color: var(--black) !important;
        font-weight: 700;
        font-size: 1rem;
        transition: unset;

        &:hover {
            color: var(--primary-color) !important;
            text-decoration: underline;
        }
    }

    .product-line-info {
        margin: 0;
    }

    .product-index {
        margin-top: 0.2rem;
        margin-bottom: 0.5rem;

        .label {
            padding-left: 0;
        }
    }

    .bootstrap-touchspin {
        position: relative;

        .quantity-label {
            font-size: 0.8rem;
            position: absolute;
            left: 0.25rem;
            z-index: 11;
            top: 0.625rem;
            font-weight: 400;
            width: min-content;
        }

        .quantitybox {
            position: relative !important;
            border-radius: 4px 0 0 4px !important;
            padding: 0.5rem 1rem 0.5rem 2.5rem !important;
            height: unset !important;
            /*font-weight: 700 !important;*/

            .quantity-buttons {
                .qty-btn {
                    background: var(--white) !important;
                    z-index: 12;
                }
            }
        }

        button.cart_quantity_down.qty-btn.decrease_button.quantity-right-plus.btn.btn-primary.btn-number {
            background: var(--white) !important;
            border-radius: 0 4px 0 0 !important;
            margin-bottom: -1px !important;
            margin-top: 1px !important;

            &:hover {
                background: var(--light-gray) !important;
            }
        }

        button.cart_quantity_down.qty-btn.increase_button.quantity-left-minus.btn.btn-primary.btn-number {
            background: var(--white) !important;
            border-radius: 0 0 4px 0 !important;
            margin-left: -1px !important;

            &:hover {
                background: var(--light-gray) !important;
            }
        }
    }

}

.bootstrap-touchspin {
    flex-shrink: 0;
}

.input-different-shipping {
    display: flex;
    align-items: flex-start;
}

.supercheckout-container {
    &.panel-body {
        padding: 0 0 1rem 0;

        @media (min-width: 587px) {
            margin: 0 -30px;
        }
    }

    .section-title {
        background-color: var(--white) !important;
        color: var(--black) !important;
        padding: 1.25rem 0 !important;
        border-radius: 4px !important;
        border: none !important;
        font-size: 1.25rem !important;
        text-transform: none !important;

        @media (max-width: 586px) {
            padding: 0 0 1.25rem 0 !important;
        }

        i {
            display: none;
        }

        &:after {
            content: none !important;
        }
    }

    .supercheckout-name {
        a {
            color: var(--black);
            font-weight: 700;
            transition: unset;

            &:hover {
                color: var(--primary-color);
                text-decoration: underline;
            }
        }
    }

    .supercheckout-qty {
        .input-group {
            .input-group-btn {
                button {
                    border-radius: 4px;
                }
            }

            input {
                height: 18px !important;
                margin: 0 !important;
            }
        }
    }

    .supercheckout_personal_id_gender {
        margin: 0.5rem 0;
    }

    #supercheckout-option {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between;
        gap: 0.2rem !important;
        flex-wrap: wrap !important;

        .radio-inline {
            margin: 0 !important;
            display: flex;

            input {
                border: none !important;
                border-radius: 4px !important;

                &:checked + label {
                    border-color: var(--primary-color) !important;
                }
            }

            label {
                border: 1px solid var(--gray) !important;
                background-color: var(--white) !important;
                border-radius: 4px !important;
                margin-bottom: 0 !important;
                flex-grow: 1;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-direction: column;
                gap: 0;
                color: var(--black) !important;
                /*aspect-ratio: 1/1;*/
            }
        }
    }

    textarea,
    input[type="password"],
    input[type="email"],
    input[type="text"] {
        border-radius: 4px !important;
        background-color: var(--white) !important;
    }

    #forgotpasswordlink {
        a {
            margin: 1rem 0;
            color: var(--black);
            text-decoration: underline;
            font-size: 0.8rem;
            width: 100%;
            text-align: center;
        }
    }

    .loginBtn {
        text-align: end;
        margin-bottom: -0.5rem;
        border-bottom: none;

        #button-login {
            text-transform: none;
            padding: 0.75rem 2rem;
            border: none !important;
            width: 100%;

            &:hover {
                border: none !important;
            }
        }
    }

    .supercheckout-shipping-small-title,
    .supercheckout-total,
    .price {
        color: var(--primary-color) !important;
    }

    #discount_name {
        margin: 0 !important;
        border-radius: 4px 0 0 4px !important;
    }

    #button-coupon {
        border-radius: 0 4px 4px 0;
        text-transform: none;
    }

    .removeProduct {
        i {
            color: var(--danger-color);
            border-color: var(--danger-color);
        }
    }

    #supercheckout_confirm_order.btn {
        background-color: var(--primary-color) !important;
        color: var(--light-gray) !important;
        border-radius: 4px !important;
        padding: 1rem 2rem !important;
        text-transform: none !important;
        font-weight: 700 !important;
        cursor: pointer;
        border: none !important;

        &:hover {
            background-color: var(--dark-green) !important;
            border: none !important;
        }
    }

    .opc_shipping_method {

        .highlight {
            border: 1px solid var(--gray);
            border-radius: 4px;

            &.alert-info {
                background-color: var(--white);
                border: 1px solid var(--primary-color);
            }
        }

        .delivery_option_radio {
            + label {
                display: flex;
                align-items: center;
                padding-left: 3px;

                &::before,
                &::after {
                    display: none;
                }
            }
        }

        .shipping-price-wrapper {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
    }

    .payment-options {
        box-sizing: border-box;
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        position: relative;
        padding-bottom: 3rem;

        > div {
            width: 31%;
            max-width: 200px;
        }

        @media (max-width: 586px) {
            padding-bottom: 4rem;
        }

        .js-additional-information {
            position: absolute;
            width: 100%;
            left: 0;

            p {
                font-size: 0.875rem;
                line-height: 1.2;

                @media (max-width: 586px) {
                    font-size: 0.75rem;
                    line-height: 1;
                }
            }
        }

        .payment-option-item {
            &.alert-info {
                background-color: var(--white);

                .payment-radio-button {
                    background-color: var(--white);
                    border: 1px solid var(--primary-color);
                    /*border-radius: 4px;*/
                }
            }
        }

        .payment-radio-button {
            border-radius: 4px;
            box-sizing: border-box;
            border: 1px solid var(--gray);

            &:has( input[type="radio"]:checked) {
                border: 1px solid var(--primary-color);
            }

            label {
                border-radius: 4px;
                padding: 1rem;
                height: 200px;
                /*aspect-ratio: 1/1;*/
                width: 100%;
                display: flex !important;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 0.5rem;
                font-size: 1rem;
                font-weight: 700;
                text-align: center;

                @media (max-width: 586px) {
                    font-size: 0.75rem;
                }

                &::before,
                &::after {
                    display: none;
                }

                img {
                    margin-right: 0;
                }
            }
        }
    }

    .supercheckout-cart-list-item {
        display: flex !important;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.5rem;

        .image-title-wrapper {
            display: grid;
            grid-template-columns: 130px 1fr;
            grid-gap: 0.5rem;
            flex-basis: 60%;
            flex-grow: 1;

            .product-line-grid-left {
                flex-basis: 30%;

                @media (max-width: 586px) {
                    flex-basis: 50%;
                }
            }
        }

        .qty-total-delete-wrapper {
            display: grid;
            grid-template-columns: 130px 1fr auto;
            align-items: center;
            flex-wrap: nowrap;
            flex-grow: 1;
            gap: 0.5rem;
            min-width: 250px;
        }

        a {
            color: var(--black) !important;
            font-weight: 700;
            font-size: 1rem;
            transition: unset;

            &:hover {
                color: var(--primary-color) !important;
                text-decoration: underline;
            }
        }

        .product-line-info {
            margin: 0;
        }

        .product-index {
            margin-top: 0.2rem;
            margin-bottom: 0.5rem;

            .label {
                padding-left: 0;
            }
        }

        .bootstrap-touchspin {
            position: relative;

            .quantity-label {
                font-size: 0.8rem;
                position: absolute;
                left: 0.25rem;
                z-index: 11;
                top: 0.875rem;
                font-weight: 400;
                width: min-content;
            }

            .quantitybox {
                position: relative !important;
                border-radius: 4px 0 0 4px !important;
                padding: 0.5rem 1rem 0.5rem 2.5rem !important;
                height: unset !important;
                /*font-weight: 700 !important;*/

                .quantity-buttons {
                    .qty-btn {
                        background: var(--white) !important;
                        z-index: 12;
                    }
                }
            }

            button.cart_quantity_down.qty-btn.decrease_button.quantity-right-plus.btn.btn-primary.btn-number {
                background: var(--white) !important;
                border-radius: 0 4px 0 0 !important;
                margin-bottom: -1px !important;
                padding: 6px 8px !important;

                @media (min-width: 480px) {
                    margin-top: 1px !important;
                }

                &:hover {
                    background: var(--light-gray) !important;
                }
            }

            button.cart_quantity_down.qty-btn.increase_button.quantity-left-minus.btn.btn-primary.btn-number {
                background: var(--white) !important;
                border-radius: 0 0 4px 0 !important;
                margin-left: -1px !important;
                padding: 6px 8px !important;

                &:hover {
                    background: var(--light-gray) !important;
                }
            }
        }

    }

    .supercheckout-login {
        margin-top: 0.5rem;
        padding: 1rem 0;

        .supercheckout-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;

            a {
                display: flex;
                position: relative;
                width: 100%;
                justify-content: center;
                padding: 0.75rem 2rem;
                font-weight: 700;

                &:hover {
                    text-decoration: none;
                }

                i {
                    position: absolute;
                    left: 1rem;
                    top: 50%;
                    transform: translateY(-50%);
                }
            }
        }
    }
}

.bank-dialog {
    color: var(--black);

    .modal-header {
        h2 {
            background-color: var(--white);
            padding-left: 0;
            border: none;
            margin-bottom: 0;


            &::after {
                content: none !important;
            }
        }
    }
}

/* CUSTOMER-ACCOUNT */

.box.with-border {
    border-bottom: 1px solid var(--gray);
    margin-bottom: 0;
    padding-top: 2rem;
    padding-bottom: 2rem;
}


.agas-custom-back-button {
    display: inline-block;
    background-color: var(--white);
    color: var(--black);
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    padding: 0.75rem 1.125rem;
    text-transform: none;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 1.5rem;

    &::before {
        content: url("../icons/arrow-left.svg");
        margin-right: 0.5rem;
    }

    &:focus,
    &:hover {
        background-color: var(--primary-color);
        color: var(--light-gray);

        &::before {
            content: url("../icons/arrow-left-white.svg");
            /*margin-right: 0.5rem;*/
        }
    }
}

.cart-rules-table-head {
    background-color: var(--white);

    th {
        color: black;
        font-weight: 700;
        background-color: var(--white) !important;
        border-top: none;
    }
}

.cart-rules-table-row {
    td {
        color: var(--black);
    }
}

.account-links {
    display: flex;
    flex-direction: column;

    a {
        &:focus {
            text-decoration: none !important;
        }
    }

    .link-item {
        display: flex;
        gap: 1rem;
        color: var(--black);
        font-size: 1rem;
        margin-bottom: 1rem;
        border-bottom: 1px solid var(--gray);
        padding: 1rem 0;

        &.active {
            color: var(--primary-color);
            font-weight: 700;

            & i {
                color: var(--primary-color);
            }
        }

        i {
            color: var(--dark-gray);
        }
    }

    .log-out-link {
        color: var(--primary-color);
        font-size: 1rem;
        font-weight: bold;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--gray);

        @media (min-width: 992px) {
            margin-bottom: 10rem;
        }


        &:hover {
            text-decoration: underline;
        }
    }
}

#blockcart-modal {
    .modal-title,
    .product-name {
        font-size: 1rem;
        font-weight: 700;
    }

    .cart-content {
        p {
            span {
                font-size: 0.875rem;
            }
        }

        .cart-content-btn {
            button {
                font-size: 1rem;
            }
        }

        p.product-total {
            background-color: var(--white);
            border-top: 1px solid var(--gray);
        }
    }
}

/* BLOG */

.blog-page-title {
    font-size: 48px;
    margin-bottom: 2rem;

    @media (min-width: 992px) {
        margin-left: -15px;
    }
}

.ets_block_latest {
    padding: 0;
    margin-top: -1rem;

    .ets_title_block {
        color: var(--primary-color);
        text-transform: none;

        &:hover {
            color: var(--primary-color);
            text-decoration: underline !important;
        }
    }

    .latest-articles-wrapper {
        float: none;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        flex-direction: row;
        justify-content: space-between;

        .latest-blog-article {
            margin: 1rem 0;
            padding: 0;
            flex-basis: 30%;
            flex-shrink: 1;

            .ets_title_block {
                font-size: 1.25rem;
                line-height: 1.5;
            }
        }
    }

    .blog_view_all_button {
        .all-product-link {
            background-color: var(--white) !important;
            font-weight: 500 !important;
        }
    }
}

.promo-discounts {
    .code {
        color: var(--primary-color) !important;
    }
}

input.promo-input {
    font-size: 0.875rem;
}

.cart-voucher {
    .cart-summary-line {
        div {
            span {
                color: var(--primary-color) !important;
            }

            i {
                color: var(--danger-color);
            }
        }
    }
}

.table-bordered.totalTable {
    tr {
        td.value {
            width: 80px !important;
        }
    }
}

.wishlist-list-item {
    &:hover {
        p {
            color: var(--primary-color) !important;
        }
    }
}

.wishlist-list-item-link {
    &:hover .wishlist-list-item-title {
        color: var(--primary-color) !important;
    }
}

.wishlist-product-addtocart {
    background-color: var(--primary-color) !important;
    color: var(--light-gray) !important;
    border-radius: 4px !important;
    padding: 0.5rem 1rem !important;
    cursor: pointer;
    border: none !important;

    &:hover {
        background-color: var(--dark-green) !important;
        border: none !important;
    }
}

.modal-footer {
    .btn,
    .btn-primary,
    button {
        background-color: var(--primary-color) !important;
        color: var(--light-gray) !important;
        border-radius: 4px !important;
        padding: 0.5rem 1rem !important;
        cursor: pointer;
        border: none !important;

        &:hover {
            background-color: var(--dark-green) !important;
            border: none !important;
        }

        &.btn-secondary {
            background-color: var(--gray) !important;
            color: var(--black) !important;
        }
    }
}

/* OMNIBUS */
#lowest-price.ext-visibility .price {
    color: var(--dark-gray);
    font-size: 0.75rem;
    font-weight: 400;
}

.ext-visibility {
    span.price.lowest-price,
    .sph-line {
        color: var(--dark-gray);
        font-size: 0.75rem;
        font-weight: 400;

        .sph-short-text {
            font-size: 10px;
            font-weight: 400;
        }
    }
}

.lowest-price-listing {
    position: absolute;
    bottom: -16px;

    span.price.lowest-price,
    span {
        color: var(--dark-gray);
        font-size: 0.75rem;
    }

    .sph-tooltip {
        top: -54px;
        width: 140%;
        transform: translateX(-15%);

        &:before {
            top: 100%;
            rotate: 180deg;
        }
    }

}

/* DEFAULT CATEGORY */
#category-description {
    h1, h2, h3, h4, h5, h6 {
        color: var(--black);
        margin-top: 2.5rem;
        margin-bottom: 1.25rem;
        line-height: normal;
    }

    h1, h2, h3, h4, h5, h6 {
        &:first-child {
            margin-top: 0;
        }
    }

    p {
        font-size: 0.875rem;
        color: var(--black);
        line-height: 1.5;
    }

    ul {
        margin: 1rem 0;
        padding-left: 2rem;
        list-style-type: disc;
    }

    ol {
        margin: 1rem 0;
        padding-left: 2rem;
        list-style-type: decimal;
    }
}

.quickview {
    .product-cover {
        img {
            border-radius: 4px;
        }
    }
}

.swiper {
    .add-to-cart-button {
        button {
            width: calc(100% - 30px) !important;
        }
    }

    .quick-view {
        margin-left: -30px;
    }

    .product-miniature .product-flags li.product-flag {
        min-height: unset;
        min-width: unset;
    }

    .wishlist-button-add {
        padding: 0;
    }

    .product-miniature {
        .thumbnail-container {
            .product-thumbnail {
                img {
                    width: calc(100% - 30px);
                }
            }
        }
    }
}

.modal-body {
    .product-actions {
        .qty {
            label {
                display: flex;
                align-items: center;
                margin-bottom: 0;
                margin-right: 0.5rem;
            }
        }
    }

    .arrows.js-arrows {
        right: 3rem;
        display: flex;

        .arrow-up {
            margin-top: -2rem;
        }
    }

    .discount.discount-percentage {
        background: var(--danger-color);
        border-radius: 4px;
    }
}

.fancybox-wrap {
    .fancybox-skin {
        background-color: var(--white);
    }

    #send_AAP_form {
        input,
        textarea {
            border-radius: 4px;
            background-color: var(--white);
            border: 1px solid var(--gray);

            :focus {
                outline: 2px solid var(--primary-color);
            }
        }

        textarea {
            height: 222px;
        }
    }
}

.accountOptions {
    .myAccountLi {
        a {
            background-color: var(--primary-color) !important;
        }
    }

    .accountLogoutLi {
        a {
            /* create red button with radient to black*/
            background-color: var(--gray) !important;
            color: var(--black) !important;

        }
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .padding-5,
    .label-code {
        padding-right: 5px;
    }

    .padding-25 {
        padding-left: 25px;
    }

    #header {
        & .header-top {
            & .nav-top-wrapper {
                & > .js-top-menu {
                    & > ul {
                         & a[data-depth="0"] {
                            padding: 0.375rem;
                            font-size: 0.875rem;
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 991px) {
    .shop-phone {
        margin-right: 0 !important;
    }

    div#_desktop_search_widget {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
        width: 100%;
    }

    .product-add-to-cart {
        .product-quantity {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;

            .product-additional-info {
                margin-left: 0;
            }
        }
    }

    .product-container {
        .current-price {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.5rem;

            .discount {
                margin-left: 0;
            }
        }
    }

    #header {
        transition: all 0.5s ease;
        /*&.hide-header:not(:has( #navbarSupportedContent.in)) {*/

        &.hide-header {
            transform: translateY(-100%);
        }

        .login-cart-wrapper {
            gap: 0.2rem;
            /*margin-left: auto;*/

            #_desktop_user_info {
                .user-info {
                    a {
                        margin-right: 1rem !important;

                        img {
                            width: 25px;
                            height: 25px;
                        }
                    }
                }
            }
        }
    }

    .row-footer {
        display: flex;
        flex-wrap: wrap;
    }


    .pagination {
        flex-direction: column;

        .pagination_summary {
            position: relative;
            left: unset;
            top: unset;
            transform: unset;
        }
    }

    .product-miniature {
        .thumbnail-container {
            .product-description {
                min-height: 205px;
            }
        }
    }

    .js-address-form,
    .js-customer-form,
    .register-form,
    .login-form {
        .form-group.row {
            align-items: flex-start;
        }
    }

    .js-top-menu {
        background: var(--white);
        padding: 0 1rem;
        width: 100vw;
        margin-left: -1rem;

        .top-menu {
            display: flex;
            flex-direction: column;


            .dropdown-item {
                .navbar-toggler {
                    display: none;
                }
            }
        }

        .js-sub-menu {
            display: flex;
            box-shadow: none;
            margin-left: 0;

            &.popover {
                position: relative;
                visibility: visible;
                opacity: 1;

                .collapse {
                    padding-left: 0.5rem;
                }
            }
        }
    }

    #carousel {
        left: 0;
    }

    .ets-blog-list {
        li {
            flex-basis: 48% !important;
            max-width: 48% !important;
        }
    }

    body.page-index main #wrapper {
        margin-top: 0;
    }

    .block-contact {
        padding-left: 1rem;
    }
}

.featured-products {
    .swiper-max-width {
        .swiper-container {
            .swiper {
                width: 100%;
            }
        }
    }
}

.swiper-max-width {
    max-width: 100vw;
    margin-inline: auto;
    position: relative;

    /*.swiper-shadow {*/
    /*    position: absolute;*/
    /*    width: calc(100% + 30px);*/
    /*    left: -15px;*/
    /*    top: 20px;*/
    /*    bottom: 0;*/
    /*    !*background: rgb(255,255,255);*!*/
    /*    !*background: radial-gradient(circle, rgba(255,255,255,1) 50%, rgba(238,238,238,1) 84%, rgba(255,255,255,0.4990371148459384) 100%);*!*/

    /*}*/

    .swiper-container {
        position: relative;

        .swiper {
            position: static;
            padding-left: 2px;
            padding-right: 15px;
            width: calc(100% + 12px);

            @media (min-width: 992px) {
                width: calc(100% + 17px);
            }

            .swiper-button-prev,
            .swiper-button-next {
                color: var(--primary-color);
                font-weight: 900;
                border-radius: 100%;
                border: 1px solid var(--gray);
                width: 35px;
                height: 35px;
                top: 41%;

                @media (max-width: 586px) {
                    display: none;
                }

                &:after {
                    font-size: 14px;
                    font-weight: 900;
                    -webkit-text-stroke: 3px var(--primary-color);
                }
            }

            .swiper-button-prev {
                left: -60px;
            }

            .swiper-button-next {
                right: -80px;
            }

            .swiper-slide {
                .swiper-content-wrapper {
                    width: 100%;
                    height: 248px;
                    border-radius: 8px;
                    position: relative;
                    box-shadow: 0px 31px 31px 0px rgba(0, 0, 0, 0.09), 0px 8px 17px 0px rgba(0, 0, 0, 0.10);

                    @media (max-width: 586px) {
                        aspect-ratio: 3 / 2;
                    }

                    img {
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        border-radius: 8px;
                    }

                    .text-wrapper {
                        position: absolute;
                        width: calc(100% - 4rem);
                        z-index: 10;
                        background-color: var(--primary-color);
                        left: 0;
                        bottom: 1.5rem;
                        padding-left: 1rem;
                        border-radius: 0 8px 8px 0;
                        min-height: 100px;
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                        align-items: flex-start;


                        p {
                            color: var(--white);
                            font-size: 0.8rem;
                            margin-bottom: 0;


                            &.title {
                                font-size: 1.5rem;
                                text-transform: uppercase;
                                margin-bottom: 0.5rem;
                            }
                        }
                    }
                }
            }

            .swiper-pagination {
                display: flex;
                position: relative;
                gap: 0.6rem;
                width: max-content !important;
                margin: 30px auto 0 auto;
                padding: 10px 16px;
                border: 1px solid var(--primary-color);
                border-radius: 100px;
                background-color: var(--white);

                .swiper-pagination-bullet {
                    border: 1px solid var(--primary-color);
                    width: 12px;
                    height: 12px;
                    margin: 0;
                    background-color: var(--white);
                    opacity: 1 !important;

                    &.swiper-pagination-bullet-active {
                        background-color: var(--primary-color);
                    }
                }
            }
        }
    }
}

@media (max-width: 768px) {
    #carousel {
        aspect-ratio: 16 / 9;

        .carousel-item {
            figure {
                figcaption {
                    left: 2rem;
                }
            }
        }
    }

    .dfd-root {
        &.dfd-fullscreen.dfd-animate .dfd-layer {
            width: calc(100% - 2rem);
            margin: 1rem auto 0 auto;
        }
    }


    .all-product-link {
        width: 100%;
        text-align: center;
        padding: 0.5rem 1.25rem !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .block-social {
        margin-left: 15px;
    }

    #_desktop_logo {
        img {
            margin-left: 0.7rem;
        }
    }

    .swiper {
        .swiper-wrapper {
            .swiper-slide {
                .product-miniature {
                    height: 470px;

                    .thumbnail-container {
                        .product-thumbnail {
                            img {
                                @media (max-width: 586px) {
                                    scale: 0.8;
                                }
                            }
                        }

                        .product-description {
                            min-height: 180px;
                        }
                    }
                }
            }
        }
    }

    .awards-wrapper {
        background-position: 25% bottom;
        padding: 6rem 1rem 10rem 1rem;

        .awards-img-wrapper {
            flex-direction: column;
            align-items: center;
        }

        p {
            width: 100%;
        }
    }

    .cart-grid {
        .cart-container {
            /*margin-bottom: 2rem;*/
        }

        .cart-overview {
            /*.product-line-grid {*/
            /*    flex-direction: column;*/
            /*    gap: 1rem;*/
            /*    align-items: flex-start;*/
            /*}*/

            .product-line-info {
                a {
                    color: var(--black);
                    font-weight: 700;
                    font-size: 1rem !important;

                    &:hover {
                        color: var(--primary-color);
                        text-decoration: underline;
                    }
                }
            }

            .product-price {
                color: var(--primary-color);
            }

            .current-price {
                span {
                    color: var(--primary-color);
                }
            }

            .qty.cart-quantity {
                position: relative;
                display: flex;
                align-items: center;
                padding-left: 0;

                label {
                    font-size: 0.8rem;
                    margin-right: 1rem;
                    margin-bottom: 0;
                    position: absolute;
                    left: 0.5rem;
                    z-index: 11;
                }

                .js-cart-line-product-quantity,
                #quantity_wanted {
                    position: relative !important;
                    border-radius: 4px 0 0 4px !important;
                    padding-left: 2.5rem !important;
                    width: 4.5rem !important;
                    font-weight: 700 !important;

                    .bootstrap-touchspin-up {
                        border-radius: 0 4px 0 0 !important;
                    }

                    .bootstrap-touchspin-down {
                        border-radius: 0 0 4px 0 !important;
                    }
                }
            }

            .remove-from-cart {
                color: var(--danger-color) !important;
            }

            .cart-item {
                border-bottom: 1px solid var(--gray);
                padding: 1rem 0;
            }
        }

        .card.cart-summary {
            border: 1px solid var(--gray);
            padding: 1rem;
            border-radius: 8px;
            margin-top: 3rem;

            .collapse-button,
            .value {
                color: var(--primary-color);
            }

            button {
                background-color: var(--primary-color);
                color: var(--light-gray);
                border-radius: 0 4px 4px 0;
                border: 1px solid var(--primary-color);
                padding: 0 2rem;
                text-transform: none;
                margin-top: -2px;
                height: 40px;
            }

            .checkout.cart-detailed-actions {
                padding-bottom: 1rem;

                .proceed_to_checkout {
                    background-color: var(--primary-color);
                    color: var(--light-gray);
                    border-radius: 4px;

                    &:hover {
                        background-color: var(--dark-green);
                    }
                }
            }
        }
    }

    .latest-blog-article {
        flex-basis: 45% !important;
    }

    .testimonials-wrapper {
        .testimonials-container {
            flex-direction: column;
        }

        .testimonials-header {
            img {
                position: relative;
                margin-bottom: 2rem;
            }
        }
    }

    .footer-info-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        padding-right: 1rem;
        padding-left: 1rem;

        .footer-info-item {
            img {
                width: 25px;
            }

            p {
                font-size: 0.75rem;
            }
        }
    }

    .order-summary-table {
        width: 100% !important;
        margin-left: 0 !important;
    }

    .header-nav-container {
        padding: 0.5rem 16px 0 16px !important;
    }

    .link-item {
        padding: 0.2rem 0 !important;
    }

    .account-links {
        margin-bottom: 3rem;
    }

    .search-filter-wrapper {
        flex-direction: column !important;
        justify-content: flex-start;

        .collapse {
            display: none !important;

            &.in {
                display: block !important;
            }
        }
    }

    .register-button-wrapper {
        width: 100% !important;

        button {
            width: 100% !important;
        }
    }

    .login-hr {
        width: 100%;
    }

    .social-login,
    .login-form-buttons,
    .js-input-column {
        width: 100% !important;
    }

    /*    BLOG */
    .ets-blog-list {
        li {
            flex-basis: 100% !important;
            max-width: 100% !important;
        }
    }


    .about-container {
        flex-direction: column-reverse;

        &:nth-child(2n) {
            flex-direction: column;
        }

        img:not(.alignright) {
            width: 100vw;
            margin-left: calc(50% - 50vw);
        }
    }

    .about-links {
        .articles-list {
            grid-template-columns: 1fr !important;
        }
    }
}

@media (max-width: 586px) {
    #carousel {
        aspect-ratio: 393 / 536;
    }

    .breadcrumb {
        padding: 0.375rem 1rem;

        ul {
            flex-wrap: wrap;
        }
    }

    .latest-blog-article {
        flex-basis: 100% !important;
    }
}

@media (max-width: 376px) {
    .shop-phone_text {
        display: none;
    }
}

@media screen and (max-width: 479px) {
    .slider-text-with-button-group .slider-header,
    .slider-text-with-button-group .slider-text {
        padding: 0 1rem;
    }
}

@media screen and (max-width: 479px) {
    .slider-text-with-button-group .slider-button {
        margin-left: 1rem;
    }
}
@media (min-width: 576px) {
    .modal-dialog {
         max-width: 970px;
    }
}






/*PAYNOW*/
.paynow-payment-option-container {

padding: 0 10px;

}


.paynow-payment-option-pbl {
	margin-bottom: 10px;
    border-radius: 5px;
}

.paynow-payment-option-pbl label { 
	border-radius: 5px;
}

.paynow-payment-option-pbl{
padding-right: 3px;
padding-left: 3px;
}

.opc-container [type="radio"]:checked+label:before, .opc-container [type="radio"]:not(:checked)+label:before {
    left: 10px;
}

.opc-container [type="radio"]:checked+label:after, .opc-container [type="radio"]:not(:checked)+label:after {

    left: 13px;
}

@media(max-width: 400px) {
    .paynow-payment-option-pbl {
        width: 100%;
    }

}