:root {
    --input: #E8E8E8;
    --loyalty: #f7b500;
    --check-icon: url(/dist/images/check.svg);
    --discount: #C80000;
    --basket-input: 75px;
    --basket-image: 80px;
    --basket-remove: 20px;
    --transition-2: .2s;
    --transition-3: .3s;
    --transition-4: .4s;
    --transition-5: .5s;
    --transition-6: .6s;
    --transition-7: .7s;
    --basket-width: 400px;
    --grey-font-color: #646464;
    --tier-blue: #1B365C;
    --tier-grey: #464545;
    --tier-black: #141414;
    --magenta-color: #FCA3DE;
    --sidebar-top: defaultValue;
    --sidebar-top-sm: 42px;
    --sidebar-top-lg: calc(42px + 35px);
}

body {
    background-color: #ffffff !important;
    text-transform: uppercase;
}
body * {
    text-transform: uppercase;
}

body input[type="email"],
body input[type="password"],
body input[type="text"].password-input {
    text-transform: none;
}
button {
    background: none;
    border:none;
    outline: none;
    box-shadow: none;
}
body:has(.menu-open-overlay.active) {
    overflow: hidden;
}

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 8px;
}

::-webkit-scrollbar-thumb {
    background: #8F8F8F;
    border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
    background: #666666;
}

.radius-bottom-0 {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.simple-btn-link {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    color: var(--font-color);
}

.marquee{
    overflow: hidden;
    width: 100%;
}

.marquee__track{
    display: flex;
    width: max-content;
    will-change: transform;
    animation-name: marquee;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: var(--marquee-duration, 12s);
    margin: 0;
    gap: 5px;
    list-style: none;
}

.marquee__item{
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    color: #ffffff;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
}
.marquee__item::before{
    content: "•";
    flex: 0 0 auto;
    line-height: 1.2;
    padding-right: 5px;
}

.bg-magenta,
.page.bg-magenta .card {
    background: var(--magenta-color);
}
@keyframes marquee{
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce){
    .marquee__track{ animation: none; }
}


#header-navbar {
    z-index: 939;
    background-color: var(--color);
    padding: 0;
    height: 35px;
}

#header-navbar .navbar-brand .logo-img {
    width: 180px;
    height: 60px;
    object-fit: contain;
}

#header-navbar .nav-link {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: var(--header-font-color);
}

#header-navbar .profile-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.btn:focus,
.btn:active {
    outline: none;
    box-shadow: none;
}
.account_menu .dropdown-menu {
    border-radius: 0;
    background-color: var(--header-color);
    padding: 10px;
    border: 1px solid var(--color);
}
.account_menu .user-name,
.account_menu .dropdown-item {
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 16px;
    letter-spacing: normal;
    color: var(--header-font-color);
    padding-inline: 0;
}
.account_menu .user-name {
    display: inline-block;
    text-align: center;
    width: max-content;
}
.account_menu .dropdown-item {
    display: flex;
    align-items: center;
    padding-block: 0.35rem;
}

.account_menu .dropdown-item.logout-item {
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 16px;
    letter-spacing: normal;
    text-align: center;
    color: #FFFFFF;
    height: 36px;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.5rem;
}

.account_menu .dropdown-item:hover,
.account_menu .dropdown-item:focus {
    background: none;
}

.account_menu .oval {
    display: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    /*display: flex;*/
    justify-content: center;
    align-items: center;
    margin-right: 0.75rem;
    background-color: #f3f3f3;
}

.account_menu .account-icon {
    width: 17px;
    height: 17px;
    object-fit: contain;
}

.main_categories_nav {
    /*max-width: calc(100% - 100px);*/
    display: flex;
    /*flex-wrap: nowrap;*/
    /*overflow-x: auto;*/
}
.main_categories_nav .nav-item:first-child .nav-link {
    padding-left: 0 !important;
}
.lang_header_dropdown .dropdown-menu {
    min-width: 40px;
    border: none;
    padding-block: 0;
    margin-block: 0;
    border-radius: 0;
}
.lang_header_dropdown .dropdown-menu .dropdown-item {
    justify-content: center;
    padding-block: 0.45rem;
    border-top: 1px solid var(--color);
    border-left: 1px solid var(--color);
    border-right: 1px solid var(--color);
}
.lang_header_dropdown .dropdown-menu .dropdown-item:last-child {
    border-bottom: 1px solid var(--color);
}
.lang_header_dropdown .dropdown-menu .dropdown-item:hover,
.lang_header_dropdown .dropdown-menu .dropdown-item:focus,
.lang_header_dropdown .dropdown-menu .dropdown-item:active {
    background: var(--color);
    color: #ffffff !important;
}
/*#wrapper main::before{*/
/*    content: '';*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    background-color: rgba(0, 0, 0, 0);*/
/*    opacity: 0;*/
/*    transition: opacity 250ms ease, background-color 250ms ease;*/
/*    z-index: 2;*/
/*    pointer-events: none;*/
/*}*/
#sticky-navbar:has(#categories-dropdown.opened) ~ #wrapper .menu-open-overlay,
#sticky-navbar:has(.search-group.active) ~ #wrapper .menu-open-overlay {
    display: block;
    z-index: 500;
}
#header-navbar .nav-link.lang_header_toggle,
#header-navbar .nav-link.lang_header_toggle:focus,
#header-navbar .nav-link.lang_header_toggle:active {
    height: 40px;
    border-radius: 4px;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.21);
    background-color: #ffffff;
    padding: 0.25rem 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: var(--header-font-color);
}

#header-navbar .pages_header_dropdown .dropdown-menu .dropdown-item,
#header-navbar .lang_header_dropdown .dropdown-menu .dropdown-item {
    font-size: 15px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: var(--header-font-color);
}
#header-navbar .pages_header_dropdown .dropdown-menu .dropdown-item {
    text-align: right;
}
#header-navbar .lang_header_dropdown .dropdown-menu .dropdown-item {
    padding: 3px 8px;
}
#header-navbar .pages_header_dropdown .dropdown-menu .dropdown-item:hover {
    color: #FFFFFF;
}
#header-navbar .lang_header_dropdown .dropdown-menu {
    border: none;
    border-radius: 4px;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.21);
    background-color: #ffffff;
    width: 90px;
    min-width: 90px;
}
#header-navbar .pages_header_dropdown .dropdown-menu {
    border: none;
    border-radius: 4px;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.21);
    background-color: #ffffff;
    left: unset;
    right: 7px;
}

#header-navbar .lang_header_dropdown .dropdown-menu .dropdown-item:focus,
#header-navbar .lang_header_dropdown .dropdown-menu .dropdown-item:hover {
    background: none;
}

#header-navbar .lang_header_toggle.dropdown-toggle::after {
    display: none;
}
#header-navbar .lang_header_toggle .caretOval {
    background-color: var(--color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    margin-left: 0.5rem;
}

#header-navbar .lang_header_toggle .fa.fa-caret-down {
    color: #ffffff;
    font-size: 12px;
}


#header-navbar .dropdown-divider {
    border-color: #acacac;
}
#sticky-navbar.sticky-top {
    z-index: 938;
    transition:all var(--transition-5);
    background-color: #ffffff;
}
#sticky-navbar .nav-bg {
    width: 100%;
    height: 28px;
    background: #ffffff;
    position: absolute;
    top: 0;
    z-index: -1;
    transition:all var(--transition-3);
}
#sticky-navbar .navbar-brand {
    display: flex;
    justify-content: center;
    align-items: center;
}
#sticky-navbar .header-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
#sticky-navbar .middle-navbar {
    background-color: #ffffff;
    border-radius: 0;
    /*box-shadow: 0 13px 25px 0 rgba(0, 0, 0, 0.21);*/
    /*padding-block: 0.25rem;*/
    transition:all var(--transition-5);
    position: relative;
}
.lang_header_toggle.dropdown-toggle::after {
    content: '';
    width: 10px;
    height: 10px;
    background-image: url(/dist/images/arrow-down.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    display: inline-flex;
    align-items: center;
    /*top:0;*/
    /*bottom: 0;*/
    /*margin: auto;*/
    /*right: 0;*/
}
#sticky-navbar .categories-dropdown {
    width: calc(100% - 20px);
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    left: 0;
    right: 0;
    top: 100%;
    margin-inline: auto;
    background-color: #FFFFFF;
    position: absolute;
    /*border-radius: 0 0 8px 8px;*/
    /*box-shadow: 0 16px 17px 0 rgba(0, 0, 0, 0.18);*/
    padding: 0.5rem 1rem 1rem;
    display: none;
    -webkit-overflow-scrolling: touch;
}
#sticky-navbar .categories-dropdown .main_cat_dropdown_section .card-img {
    border-radius: 0;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}
#sticky-navbar .search_cart_section {
   position: relative;
}
#sticky-navbar .search_cart_section .nav-item {
    z-index: 1;
}
#sticky-navbar .search_cart_section .nav-item:last-child .nav-link:not(.dropdown-item) {
    padding-right: 0;
}
#sticky-navbar .search_cart_section .lang_header_toggle.dropdown-toggle {
    min-width: 40px;
    text-align: right;
}
#sticky-navbar .search_cart_section .bg-item {
    content: '';
    position: absolute;
    width: calc(100% - 30px);
    height: calc(100% + 16px);
    background-color: rgba(0, 0, 0, 0.2);
    right: -10px;
    border-radius: 0 8px 8px 0;
}

#sticky-navbar #search_results {
    width: 100%;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    left: 0;
    right: 0;
    top: 100%;
    background-color: #FFFFFF;
    border-radius: 0;
    transition:all var(--transition-3);
    padding-top: 1rem;
    display: none;
    -webkit-overflow-scrolling: touch;
}

#sticky-navbar #search_results.show {
    display: block;
}

#sticky-navbar .logo-img {
    width: 150px;
    height: auto;
    object-position: center;
}
#home-navbar .logo-img {
    width: 300px;
    height: auto;
    object-position: center;
}
#sticky-navbar .categories-dropdown .mega_menu_body {
    max-height: calc(100vh - 170px);
    overflow-y: auto;
}

#sticky-navbar .categories-dropdown .card-img-overlay,
#categories_sidebar .main_category_section .card-img-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}


#sticky-navbar .categories-dropdown .main_category,
#categories_sidebar .main_category_section .main_category {
    font-size: 32px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 32px;
    letter-spacing: normal;
    color: #ffffff;
    margin-bottom: 0;
    text-align: left;
}

#sticky-navbar .categories-dropdown .view_main_category,
#categories_sidebar .main_category_section .view_main_category {
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #ffffff;
    margin-top: 0.5rem;
}

#sticky-navbar .categories-dropdown .subcat_title,
#sticky-navbar .categories-dropdown .subcat_title a,
#categories_sidebar .subcat_title,
#categories_sidebar .subcat_title a {
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 16px;
    letter-spacing: normal;
    color: var(--color);
}

#sticky-navbar .categories-dropdown .subcat_col {
    flex: 0 0 25%;
    max-width: 25%;
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
    /*margin-bottom: 3rem;*/
}
/*#sticky-navbar .categories-dropdown .category_link,*/
#sticky-navbar .categories-dropdown .subcat_col .nav-link,
#categories_sidebar .subcat_col .nav-link {
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 16px;
    letter-spacing: normal;
    color: var(--color);
    padding: 0;
}

#categories_sidebar .subcat_col .nav-link {
    line-height: normal;
}

#sticky-navbar .categories-dropdown .subcat_col .view_sub_category,
#categories_sidebar .subcat_col .view_sub_category {
    font-size: 12px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: normal;
    color: var(--color);
}

#sticky-navbar .search-group {
    width: calc(100% - 20px);
    left: 0;
    right: 0;
    top: 100%;
    margin-inline: auto;
    background-color: #FFFFFF;
    position: absolute;
    padding: 0.5rem 1rem 1rem;
    opacity: 0;
    z-index: -1;
    -webkit-overflow-scrolling: touch;
    transition: opacity 250ms ease;
    pointer-events: none;

    /*transition: all var(--transition-5);*/
}

#sticky-navbar .search_dropdown {
    /*position: absolute;*/
    /*width: 200px;*/
    /*top: 0;*/
    /*bottom: 0;*/
    /*margin: auto;*/
    /*left: 0;*/
    opacity: 0;
    z-index: -1;
    /*transition: all var(--transition-5);*/
    display: flex;
    align-items: center;
}

#sticky-navbar .search-group.active {
    opacity: 1;
    z-index: 0;
    pointer-events: all;
    /*width: auto;*/
}

#sticky-navbar .close_search {
    position: absolute;
    right: 10px;
    z-index: -2;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    cursor: pointer;
    /*transition: all var(--transition-2);*/
}
#sticky-navbar .close_search .close-modal {
    width: 15px;
}
#sticky-navbar .close_search .close-modal path {
    stroke-width: 1px;
}
#sticky-navbar .search-group.active .search_dropdown {
    opacity: 1;
    z-index: 1;
    /*width: auto;*/
    /*right: 1096px;*/
}

#sticky-navbar .search-toggle {
    width: 100%;
    height: 36px;
    border-radius: 0;
    background-color: #ffffff;
    border: 1px solid var(--color);
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 16px;
    letter-spacing: normal;
    color: var(--color);
    align-items: center;
    padding-left: 10px;
    padding-right: 25px;
    display: flex;
}

#sticky-navbar .search-toggle span {
    display: -webkit-box;
    overflow : hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-transform: uppercase;
}

#sticky-navbar .search-toggle .arrow-down {
    width: 10px;
    height: 10px;
    object-fit: contain;
    position: absolute;
    top:0;
    bottom: 0;
    margin: auto;
    right: 10px;
}

#sticky-navbar .search_dropdown .dropdown-menu {
    border: 1px solid var(--color);
    border-radius: 0;
    /*box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.21);*/
    background-color: #ffffff;
    width: 100%;
    padding-top: 2px;
    padding-bottom: 2px;
    margin-top: 0;
    border-top-color: transparent;
}

#sticky-navbar .search_dropdown .dropdown-menu .dropdown-item {
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 16px;
    letter-spacing: normal;
    color: var(--color);
    padding-left: 10px;
    padding-right: 10px;
    white-space: normal;
}

#sticky-navbar .search_dropdown .dropdown-menu .dropdown-item:focus,
#sticky-navbar .search_dropdown .dropdown-menu .dropdown-item:hover {
    color: #ffffff;
}

#sticky-navbar .middle-navbar.progress-bar-striped.progress-bar-animated > * {
    opacity: 0;
}

#sticky-navbar .search-toggle .arrow-down path {
    fill: var(--color) !important;
}

#sticky-navbar #searchNav {
    height: 36px;
    margin: auto;
    width: 100%;
    opacity: 0;
    border: none;
    /*transition: all var(--transition-5);*/
    z-index: -1;
    border-radius: 0;
    background-color: #E8E8E8;
    /*padding-right: 36px;*/
    /*padding-left: 220px;*/
}

#sticky-navbar .search-group.active .close_search {
    z-index: 1;
}

#sticky-navbar .search-group.active #searchNav {
    opacity: 1;
    z-index: 0;
}

#sticky-navbar .opacity {
    background-color: rgba(0, 0, 0, 0.2);
}

#sticky-navbar .nav-link {
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 16px;
    letter-spacing: normal;
    color: var(--color);
    white-space: nowrap;
    padding-inline: 0.5rem;
}

#sticky-navbar .search_cart_section .nav-link {
    padding-inline: 0.35rem;
}

#sticky-navbar .search-icon {
    width: 27px;
    height: 27px;
    object-fit: contain;
}

#sticky-navbar .cart-icon {
    width: 24px;
    height: 26px;
    object-fit: contain;
}

#sticky-navbar .cart-total {
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #ffffff;
}

#sticky-navbar.onTop,
#sticky-navbar.onTop .nav-bg {
    background-color: var(--color);
}

#sticky-navbar.onTop {
    box-shadow: 0 13px 25px 0 rgba(0, 0, 0, 0.21);
}

#sticky-navbar.onTop .middle-navbar {
    box-shadow: none;
}

#cartus-breadcrumb {
    transition:all var(--transition-3);
    background-color: #F2F2F2;
}

#cartus-breadcrumb .breadcrumb-container {
    /*border-radius: 0 0 8px 8px;*/
    /*box-shadow: 0 13px 25px 0 rgba(0, 0, 0, 0.21);*/
    /*background-color: #F2F2F2;*/
    transition:all var(--transition-3);

}

#cartus-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: "•";
    font-size: 20px;
    font-weight: 100;
    color: #C8C8C8 !important;
}

#cartus-breadcrumb .breadcrumb {
    height: auto;
    padding: .5rem 0;
    background: transparent;
    margin-bottom: 0;
}


#cartus-breadcrumb .breadcrumb .breadcrumb-item,
#cartus-breadcrumb .breadcrumb .breadcrumb-item a {
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 16px;
    letter-spacing: normal;
    color: #C8C8C8 !important;
}

#cartus-breadcrumb .breadcrumb .breadcrumb-item.active {
    color: var(--color) !important;
}
#cartus-breadcrumb.onTop {
    background-color: #ffffff;
    box-shadow: 0 13px 25px 0 rgba(0, 0, 0, 0.21);
}

#cartus-breadcrumb.onTop .breadcrumb-container {
    box-shadow: none;
}
#cartus-breadcrumb.onTop .breadcrumb {
    padding: .25rem 1rem;
}

.sidebar {
    display: none;
}

#search_results .results_product_img {
    width: 100px;
    height: auto;
    /*object-fit: cover;*/
}

#search_results .results_category {
    font-size: 11px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    color: #696969;
    margin-bottom: 0.5rem;
}

#search_results .results_title,
#search_results .beforeOfferPrice,
#search_results .afterOfferPrice,
#search_results .viewItemBtn {
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 16px;
    letter-spacing: normal;
    color: var(--color);
    margin-bottom: 0;
}

#search_results .beforeOfferPrice {
    text-decoration: line-through;
}

#search_results .viewItemBtn {
   margin-top: 1rem;
    display: block;
}
#search_results .results_data_col {
    flex-basis: calc(100% - 120px);
    max-width: calc(100% - 120px);
}

/*#search_results .item {*/
/*    border-bottom: solid 1px #acacac;*/
/*}*/

#search_results .item {
    /*padding-top: 1rem;*/
    padding-bottom: 1rem;
}
#search_results .item:first-child {
    /*padding-top: 0;*/
}

#search_results .item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

#search_results .results_price .tag-icon {
    width: 19px;
    height: 19px;
    object-fit: contain;
}

#search_results .no_results,
#search_results .see_all_results{
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 16px;
    letter-spacing: normal;
    color: var(--color);
}

#search_results .all_results_section {
    background-color: #E8E8E8;
    margin-top: 1rem;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*#basket.basket-panel.cartus-basket {*/
/*    border-radius: 0;*/
/*    background: none;*/
/*}*/

#basket.cartus-basket {
    width: var(--basket-width);
    right: calc(var(--basket-width) * -1);
    height: 100dvh;
    position: fixed;
    top: 0;
    transition: all .3s;
    -webkit-transition: all var(--transition-3);
    -moz-transition: all var(--transition-3);
    -o-transition: all var(--transition-3);
    overflow-y: scroll;
    z-index: 1051;
    padding-bottom: 2rem;
    -webkit-overflow-scrolling: touch;
    display: -webkit-box;
    background-color: #ffffff;
}

#basket.cartus-basket .cart_wrapper {
    width: 100%;
    height: 100%;
    border-radius: 0;
    padding: 10px;
}

#basket.cartus-basket.cart_expanded {
    right: 0;
}

#basket.cartus-basket .close_cart {
    border: none;
    outline: none;
    padding: 0;
}

#basket.cartus-basket .close_cart .close-modal {
    width: 21px;
    height: 21px;
    object-fit: contain;
}

#basket.cartus-basket .cart_wrapper .basket-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 16px;
    letter-spacing: normal;
    color: var(--color);
    padding: 0;
    border: none;
}

#basket.cartus-basket .cart_wrapper .cart-icon {
    width: 24px;
    height: 26px;
    object-fit: contain;
    margin-top: -1px;
}
.cartus-basket .product_input_col {
    flex-basis: var(--basket-input);
    max-width: var(--basket-input);
    padding-right: 0;
}

.cartus-basket .product_image_col {
    flex-basis: var(--basket-image);
    max-width: var(--basket-image);
    padding-left: 0;
}
.cartus-basket .product_remove_col {
    flex-basis: var(--basket-remove);
    max-width: var(--basket-remove);
    padding: 0;
}

.cartus-basket .product_price_col {
    flex-basis: 25%;
    max-width: 25%;
    padding-right: 0;
}

.cartus-basket .product_data_col {
    flex-basis: calc(75% - var(--basket-image) - var(--basket-remove) - 10px);
    max-width: calc(75% - var(--basket-image) - var(--basket-remove) - 10px);
    padding-left: 0;
}

.cartus-basket .basket_product_image {
    max-width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: contain;
    object-position: top;
}

.basket-panel.cartus-basket .basket-price {
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 16px;
    letter-spacing: normal;
    text-align: right;
    color: var(--color);
}

.basket-panel.cartus-basket .beforeOffer-price {
    font-size: 12px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: 16px;
    text-align: right;
    color: var(--color);
    text-decoration: line-through;
    margin-bottom: 2px;
}
.basket-panel.cartus-basket .basketproduct-title {
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 16px;
    letter-spacing: normal;
    color: var(--color);
}

.basket-panel.cartus-basket .basketProductSpecs {
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 16px;
    letter-spacing: normal;
    color: var(--color);
    margin-bottom: 0;
}

.basket-panel.cartus-basket .product-offers {
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 16px;
    letter-spacing: normal;
    color: var(--discount);
    width: fit-content;
}

.basket-panel .basket-product .divider {
    padding-block: 0.5rem;
}

.basket-panel .sum-heading,
.basket-panel .sum-num {
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 16px;
    letter-spacing: normal;
    color: var(--color);
    padding-top: 0;
    padding-bottom: 0.5rem;
}

.basket-panel .sum-heading {
    text-align: left;
}

.basket-panel .sum-num {
    text-align: right;
}

.basket-panel .discount .sum-heading,
.basket-panel .discount .sum-num {
    color: var(--discount);
}


.basket-panel .table-borderless td.sum-heading {
    width: 60%;
    padding-left: 0;
}

.basket-panel .table-borderless td.sum-num {
    padding-right: 0;
}

#basket.basket-panel .basket-body {
    padding-top: 1rem;
}

#basket.basket-panel .basket-footer {
    position: relative;
    right: 0;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.basket-panel .checkoutBtn {
    width: 100%;
    height: 36px;
    font-size: 12px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: 16px;
    letter-spacing: normal;
    text-align: center;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.basket-panel .cancel-order {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: normal;
    text-align: center;
    line-height: 16px;
    color: var(--color);
}

#basket .basket-scroll-y {
    height: calc(100dvh - 130px);
}

#basket.basket-panel .offer-box .offer-img {
    max-width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: contain;
    object-position: top;
}

#basket.basket-panel .offer-box .col-teaser {
    flex: 0 0 calc(100% - var(--basket-image));
    max-width: calc(100% - var(--basket-image));
}


.basket-panel .offer-box .addOfferToBasket {
    height: 36px;
    border-radius: 0;
    border: none;
    width: fit-content;
    font-size: 12px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: 16px;
    letter-spacing: normal;
    text-align: center;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-inline: 1rem;
}

.bordered-td {
    border: 1px solid var(--color) !important;
    padding-top: 0.35rem !important;
    padding-bottom: 0.5rem !important;
}

.basket-panel.cartus-basket .table-borderless td.divider {
    width: 100%;
    padding-top: 5px;
    border-bottom: 1px solid #acacac;
}

#basket.cartus-basket .empty-basket {
    height: 100%;
}

.menu-open-overlay.cart_expanded {
    z-index: 1050;
    display: block;
}

.product-item .show_details_btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: none;
}

.main-text {
    font-size: 12px;
    font-weight: 500;
    font-style: normal;
    line-height: 16px;
    letter-spacing: 0;
    text-align: left;
    color: var(--color);
}

.loyalty-banners-wrapper .col-5 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}

.loyalty-banners-wrapper .col-11 {
    flex: 0 0 66.66666%;
    max-width: 66.66666%;
}
.loyalty-banners-wrapper .col-5 .source-wrapper {
    aspect-ratio: 1 / 1;
    width: 100%;
    overflow: hidden;
    height: 100%;

}
.loyalty-banners-wrapper .col-11 .source-wrapper {
    aspect-ratio: 2 / 1;
    width: 100%;
    overflow: hidden;
}
.loyalty-banners-wrapper video,
.loyalty-banners-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.tiers-wrapper .card-header {
    aspect-ratio: 1 / 1;
    position: relative;
    border-radius: 0;
    border: 0;
    margin-bottom: 1rem;
}
.tiers-wrapper .card-header.tier-1 {
    background: var(--tier-blue);
}
.tiers-wrapper .card-header.tier-2 {
    background: var(--tier-grey);
}
.tiers-wrapper .card-header.tier-3 {
    background: var(--tier-black);
}
.tiers-wrapper .card-header .card-header-icon {
    width: 55px;
    height: auto;
    position: absolute;
    top: 1rem;
    right: 1rem;
}
.privileges-table-wrapper,
.points-table-wrapper {
    overflow-x: visible;
}

.loyalty-points-wrapper {
    background: var(--tier-blue);
    padding: 1.5rem;
    color: #ffffff;
}
.loyalty-points-wrapper * {
    color: #ffffff;
}
.loyalty-points-wrapper .dirty-laundry-icon {
    width: auto;
    height: 40px;
    object-fit: contain;
}
.loyalty-points-table,
.user-loyalty-table {
    width: 100%;
    table-layout: fixed;
}
.user-loyalty-table .td-wrapper {
    min-height: calc(40px - 1.5rem);
    display: flex;
    align-items: center;
}
.loyalty-points-table td {
    width: 33.33333%;
}
.loyalty-points-table tbody td,
.user-loyalty-table tbody td {
    vertical-align: middle;
}
.user-loyalty-table .td-heading {
    padding-left: 0;
}
.loyalty-points-table tfoot td {
    padding-top: 1.75rem;
    padding-bottom: 0;
    vertical-align: bottom;
    font-size: 12px;
    font-weight: 500;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 0;
}

.loyalty-points-table .progress {
    border-radius: 0;
    height: 24px;
    background-color: #ffffff;
}
.loyalty-points-table .progress-bar {
    --p: 0;
    width: calc(var(--p) * 1%);
}
.loyalty-points-table .progress-bar.tier-1 {
    background-color: var(--tier-blue);
}
.loyalty-points-table .progress-bar.tier-2 {
    background-color: var(--tier-grey);
}
.loyalty-points-table .progress-bar.tier-3 {
    background-color: var(--tier-black);
}
.loyalty-points-table .border-x-blue {
    border-left: 2px solid var(--tier-blue);
    border-right: 2px solid var(--tier-blue);
}
.loyalty-points-table .border-x-white {
    border-left: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
}
.loyalty-points-table tbody td {
    padding: 0.5rem;
}
.table-striped.privileges-table {
    width: 100%;
    table-layout: fixed;
    margin-top: 1rem;
}

.privileges-table tr th,
.privileges-table tr td,
.user-loyalty-table tr td {
    width: 25%;
    font-size: 12px;
    font-weight: 500;
    font-style: normal;
    line-height: 16px;
    letter-spacing: 0;
    vertical-align: middle;
}
.table-striped tbody tr:nth-of-type(odd) {
    background-color: #ffffff;
}
.table-striped tbody tr.tr-details:nth-of-type(odd) {
    background-color: #F2F2F2;
}
.table-striped thead tr,
.table-striped tbody tr:nth-of-type(even) {
    background-color: #E0E0E0;
}
.table-striped.user-loyalty-table tbody tr:nth-of-type(even) {
    background-color: #C8C8C8;
}
.table-striped.privileges-table thead .tier-1,
.table-striped.privileges-table tbody tr:nth-of-type(even) .tier-1 {
    background-color: var(--tier-blue);
    color: #ffffff;
}
.table-striped.privileges-table thead tr th.tier-2,
.table-striped.privileges-table tbody tr:nth-of-type(even) .tier-2 {
    background-color: var(--tier-grey);
    color: #ffffff;
}
.table-striped.privileges-table thead tr th.tier-3,
.table-striped.privileges-table tbody tr:nth-of-type(even) .tier-3 {
    background-color: var(--tier-black);
    color: #ffffff;
}
.table-striped.privileges-table .tier-1,
.table-striped.privileges-table .tier-2,
.table-striped.privileges-table .tier-3 {
    border-left: 1px solid #ffffff;
}

.carousel-indicators {
    left: auto;
    margin-inline: 1rem;
}

.carousel-indicators li.active {
    width: 50px;
    height: 6px;
    border-radius: 0;
    background-color: #ffffff;
    opacity: 1;
}
.carousel-indicators li {
    width: 6px;
    height: 6px;
    opacity: 0.5;
    border-radius: 0;
    background-color: #ffffff;
}
@media (min-width: 750px) {
    .container {
        max-width: 950px;
    }
}

@media screen
and (min-width: 750px)
and (max-width: 1199px){
    .tiers-wrapper .col-md-5 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    #sticky-navbar .categories-dropdown .main_category {
        font-size: 26px;
        line-height: 28px;
    }
}

@media (min-width: 970px) {
    .container {
        max-width: 1100px;
    }
}

@media (min-width: 1120px) {
    .container {
        max-width: 1180px;
    }
}

@media (min-width: 1440px) {
    .container {
        max-width: 1440px;
    }
}




@media (max-width: 1439px) {

}

@media (max-width: 1199px) {
    #sticky-navbar,
    #sticky-navbar .nav-bg {
        background-color: var(--color);
    }

    /*#sticky-navbar {*/
    /*    box-shadow: 0 13px 25px 0 rgba(0, 0, 0, 0.21);*/
    /*}*/

    #sticky-navbar .middle-navbar {
        box-shadow: none;
    }

    /*#sticky-navbar .logo-img {*/
    /*    width: 180px;*/
    /*    height: 44px;*/
    /*    object-fit: contain;*/
    /*    object-position: left;*/
    /*}*/



    #sticky-navbar .menu-toggle,
    #sticky-navbar .menu-close {
        width: 31px;
        height: 22px;
        object-fit: contain;
    }

    .sidebar,
    .sidebar-overlay {
        position: fixed;
        top: var(--sidebar-top);
        height: calc(100dvh - var(--sidebar-top));
        transition: all .3s;
        -webkit-transition: all var(--transition-3);
        -moz-transition: all var(--transition-3);
        -o-transition: all var(--transition-3);
        overflow-y: scroll;
        z-index: 1040;
        padding-bottom: 2rem;
        -webkit-overflow-scrolling: touch;
        display: -webkit-box;
    }

    #main_sidebar {
        width: 400px;
        left: -400px;
        background: #ffffff;
        color: var(--color);
    }

    #main_sidebar * {
        color: var(--color);
    }

    #main_sidebar .dropdown-item:hover,
    #main_sidebar .dropdown-item:focus,
    #main_sidebar .dropdown-item:active {
        background: none;
    }
    #sidebarAccount .dropdown-item {
        font-size: 14px;
        font-weight: 500;
        padding-left: 2rem;
    }
    #sidebarAccount .logout-item {
        width: calc(100% - 3rem);
        height: 36px;
        margin-inline: auto;
        margin-block: 0.5rem;
        color: #ffffff;
    }
    #main_sidebar .subnav {
        list-style: none;
        padding-left: 1rem;
    }
    #main_sidebar .subnav[data-depth="2"] {
        padding-left: 1.75rem;
        padding-block: 0.25rem;
    }
    #main_sidebar .subnav .nav-link {
        font-size: 14px;
        font-weight: 500;
        padding-block: 0.25rem;
    }
    #main_sidebar .subnav[data-depth="2"] .nav-item {
        padding-block: 0;
    }
    #main_sidebar .subnav[data-depth="2"] .nav-link {
        padding-block: 0.15rem;
    }
    #main_sidebar .sidebar-overlay {
        width: 400px;
        left:-400px;
        background-color: rgba(0, 0, 0, 0.2);
        z-index: -1;
    }
    #account_sidebar {
        width: 346px;
        box-shadow: 0 15px 24px 0 rgba(0, 0, 0, 0.5);
        background-color: #ffffff;
        left:-346px;
        z-index: 1039;
    }

    #categories_sidebar {
        width: 478px;
        box-shadow: 0 15px 24px 0 rgba(0, 0, 0, 0.5);
        background-color: #ffffff;
        left: -478px;
        z-index: 1039;
    }

    #main_sidebar.active .sidebar-overlay.active,
    #main_sidebar.active {
        left: 0;
    }

    #account_sidebar.active,
    #categories_sidebar.active {
        left: 321px;
    }


    .menu-open-overlay.expanded {
        top: var(--sidebar-top);
        background-color: rgba(0,0,0,.75);
    }

    .toggle-wrap {
        padding: 10px;
        position: relative;
        cursor: pointer;
        float: left;

        /*disable selection*/
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    .toggle-bar,
    .toggle-bar::before,
    .toggle-bar::after,
    .toggle-wrap.active .toggle-bar,
    .toggle-wrap.active .toggle-bar::before,
    .toggle-wrap.active .toggle-bar::after {
        -webkit-transition: all var(--transition-2) ease-in-out;
        -moz-transition: all var(--transition-2) ease-in-out;
        -o-transition: all var(--transition-2) ease-in-out;
        transition: all var(--transition-2) ease-in-out;
    }
    .toggle-bar {
        width: 18px;
        margin: 10px 0;
        position: relative;
        border-top: 2px solid var(--color);
        display: block;
    }
    .toggle-bar::before,
    .toggle-bar::after {
        content: "";
        display: block;
        background: var(--color);
        height: 2px;
        width: 18px;
        position: absolute;
        top: -8px;
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -ms-transform-origin: 10%;
        -webkit-transform-origin: 10%;
        transform-origin: 10%;
    }
    .toggle-bar::after {
        top: 4px;
    }
    .toggle-wrap.active .toggle-bar {
        border-top: 2px solid transparent;
    }
    .toggle-wrap.active .toggle-bar::before {
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        top: -7px;
    }
    .toggle-wrap.active .toggle-bar::after {
        -ms-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 3px;
    }

    .sidebar .nav-item {
        position: relative;
        padding-top: 0.2rem;
        padding-bottom: 0.2rem;
    }

    #main_sidebar .nav-link {
        font-size: 16px;
        font-weight: 500;
        font-stretch: normal;
        font-style: normal;
        line-height: 16px;
        letter-spacing: 0;
        position: relative;
        width: 100%;
    }
    #main_sidebar .nav-link[data-toggle="collapse"]:after {
        content: '';
        position: absolute;
        top:0;
        bottom: 0;
        right: 1rem;
        margin: auto;
        width: 15px;
        height: 15px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }
    #main_sidebar .nav-link[data-toggle="collapse"][aria-expanded="true"]:after {
        background-image: url(/dist/images/minus.svg);
    }
    #main_sidebar .nav-link[data-toggle="collapse"][aria-expanded="false"]:after {
        background-image: url(/dist/images/plus.svg);
        filter: brightness(0) saturate(100%);
    }
    /*#main_sidebar .nav-link.link-secondary {*/
    /*    font-size: 14px;*/
    /*    font-weight: normal;*/
    /*}*/

    #main_sidebar .profile-icon {
        width: 35px;
        height: 35px;
        object-fit: contain;
    }

    #main_sidebar .dropdown-divider {
        opacity: 0.2;
        border: solid 1px #ffffff;
    }


    .sidebar .arrow-right {
        width: 11px;
        height: 11px;
        object-fit: contain;
        position: absolute;
        top:0;
        bottom: 0;
        margin: auto;
        right: 1rem;
        pointer-events: none;
    }

    .sidebar .lang_side_toggle {
        display: flex;
        align-items: center;
    }

    /*.sidebar .lang_side_toggle::after {*/
    /*    margin-left: auto;*/
    /*}*/

    .sidebar .flag-icon {
        width: 30px;
        height: 27px;
    }

    .lang_side_dropdown .dropdown-menu {
        width: calc(100% - 2rem);
        background-color: var(--color);
        border:none;
        border-radius: 4.8px;
    }

    .lang_side_dropdown .dropdown-menu .dropdown-item {
        padding-top: 3px;
        padding-bottom: 3px;
    }

    .account_wrapper {
        width: 100%;
        padding: 1.25rem 2rem;
    }

    .categories_wrapper {
        width: 100%;
        padding: 2rem;
    }

    .account_wrapper .dropdown-divider {
        border-color: #acacac;
        margin-bottom: 1.25rem;
    }

    .account_wrapper .dropdown-item {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .back_to_menu {
        display: none;
    }

    .sidebar .card-columns {
        column-count: 2;
    }

    #categories_sidebar .categories_wrapper .subcat_col {
        padding: 10px;
        margin-bottom: 3rem;
    }

    #categories_sidebar .categories_wrapper .main_category_section {
        position: absolute;
        width: calc(100% - 4rem);
        bottom: 20px;
    }

    #categories_sidebar .categories_wrapper .main_category_section .card-img {
        height: 200px;
        object-fit: cover;
    }

    #categories_sidebar .categories_wrapper .card_columns_wrapper {
        height: calc(100vh - 340px);
        overflow: auto;
    }

}

@media (max-width: 969px) {

    #categories_sidebar {
        width: calc(100% - 321px);
        left: calc(-100% - 321px);
    }

    .main_categories_nav {
        display: none !important;
    }

    #sticky-navbar .search-group {
        width: 100%;
    }
}

@media (max-width: 749px) {
    .container {
        max-width: initial;
    }

    #account_sidebar{
        width: calc(100% - 321px);
        left: calc(-100% - 321px);
    }

    #categories_sidebar {
        width: 100%;
        left: -100%;
        z-index: 1041;
    }
    #categories_sidebar.active {
        left: 0;
    }

    .account_wrapper .back_to_menu {
        display: none;
    }


    .back_to_menu {
        background: none;
        border: none;
        align-items: center;
        font-size: 16px;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        color: var(--color);
        position: relative;
        margin-bottom: 1rem;
    }

    .arrowOval {
        width: 36px;
        height: 36px;
        background-color: var(--color);
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
    }

    .arrow-left {
        width: 12px;
        height: 12px;
        object-fit: contain;
    }

    #categories_sidebar .categories_wrapper {
        padding: 1.25rem 3.5rem;
        overflow-x: hidden;
    }

    #categories_sidebar .back_to_menu {
        display: flex;
        width: 140%;
        left: -3rem;
    }

    #categories_sidebar .categories_wrapper .main_category_section {
        width: calc(100% - 6rem);
    }

    #categories_sidebar .categories_wrapper .main_category_section .card-img {
        height: 142px;
    }

    #categories_sidebar .categories_wrapper .card_columns_wrapper {
        height: calc(100vh - 320px);
    }

    #search_results .results_product_img {
        width: 99px;
        /*height: 67px;*/
    }


    #basket.basket-panel.cartus-basket .basket-body {
        width: 100%;
    }

    #basket.basket-panel.cartus-basket,
    #basket.basket-panel.cartus-basket .cart_wrapper {
        width: 100%;
    }

    #basket.cartus-basket {
        right: -100%;
    }

    #basket.basket-panel.cartus-basket .checkoutBtn {
        width: 100%;
    }

    p.main-text {
        margin-bottom: 0.5rem;
    }

    .tiers-wrapper .card.w-100 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .tiers-wrapper .card.w-100 .card-header {
        grid-column: 1;
    }

    .tiers-wrapper .card.w-100 .card-body {
        grid-column: 2 / 4;
        align-self: center;
    }

}

@media (max-width: 600px){

    #account_sidebar {
        width: 400px;
        left: -400px;
        z-index: 1041;
    }

    #account_sidebar.active {
        left: 0;
    }

    .account_wrapper {
        padding-left: 3.5rem;
        padding-right: 3.5rem;
    }

    .account_wrapper .back_to_menu {
        width: 150%;
        left: -3rem;
        display: flex;
    }

}

@media (max-width: 575px){
    #sticky-navbar #searchNav {
        padding-left: 10px;
    }

    .basket-panel.cartus-basket .table-borderless td.sum-heading {
        padding-left: 0;
    }

    .basket-panel.cartus-basket .table-borderless td.sum-num {
        padding-right: 0;
    }

    .product-item .show_details_btn {
        display: block;
    }

    #cartus-breadcrumb {
        display: none;
    }

    .privileges-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .table-striped.privileges-table {
        width: calc(100% * 4 / 3);
        min-width: calc(100% * 4 / 3);
    }
    .privileges-table tr th,
    .privileges-table tr td {
        width: calc(100% / 4);
    }

}

@media (max-width: 480px) {
    /*#sticky-navbar .logo-img {*/
    /*    width: 170px;*/
    /*    object-position: center;*/
    /*}*/

    #sticky-navbar .menu-toggle {
        width: 25px;
        height: 18px;
    }

    #main_sidebar,
    #main_sidebar .sidebar-overlay,
    #account_sidebar {
        width: 100%;
        left: -100%;
    }

    .sidebar .lang_side_toggle,
    .lang_side_dropdown .dropdown-menu {
        width: 260px;
    }

    .sidebar .card-columns {
        column-count: 1;
    }

    #categories_sidebar .categories_wrapper {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    #categories_sidebar .categories_wrapper .main_category_section {
        width: calc(100% - 1rem);
    }

    #categories_sidebar .categories_wrapper .subcat_col {
        margin-bottom: 1rem;
    }
    #categories_sidebar .back_to_menu {
        width: 100%;
        left: 0;
        text-align: left;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .arrowOval {
        width: 28px;
        height: 28px;
    }
    #search_results .results_img_col,
    #search_results .results_button_col,
    #search_results .results_data_col {
        flex-basis: 100%;
        max-width: 100%;
    }

    #search_results .results_data_col {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    #search_results .results_product_img {
        width: 100%;
    }

    #search_results .addToCartBtn {
        width: 100%;
        height: 40px;
    }

    #search_results .no_results {
        font-size: 12px;
    }


    .points-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .table-striped.privileges-table {
        width: calc(100% * 5.5 / 3);
        min-width: calc(100% * 5.5 / 3);
    }

    .privileges-table tr th,
    .privileges-table tr td {
        width: calc(100% / 5.5);
    }

    .table-striped.user-loyalty-table {
        width: calc(100% * 3 / 2);
        min-width: calc(100% * 3 / 2);
    }

    .user-loyalty-table tr td {
        width: calc(100% / 3);
    }

}


/*CATEGORY CSS*/


#category .section-head {
    font-size: 32px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    color: var(--font-color);
}

.search_input {
    border:none;
    border-radius: 0;
    height: 50px;
    outline: none;
    box-shadow: none;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.06;
    letter-spacing: normal;
    color: var(--color);
    padding-left: 45px;
}

.search_input::placeholder {
    color: var(--color);
}

.label-absolute {
    position: absolute;
    top: 13px;
    left: 13px;
}

.search-icon {
    width: 16.5px;
    height: 18px;
    object-fit: contain;
}

.no_results {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.no_results .search-icon {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.filter-options {
    margin-top: 1rem;
}
.filter-header-row {
    margin-inline: -5px;
}
.filter-head,
.close_filters_btn {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px;
    color: var(--color);
    margin-bottom: 0;
}
.close_filters_btn {
    padding: 0;
    display: flex;
    margin-left: auto;
}
#category label[for="all_products"]:before {
    width: 27px;
    height: 27px;
}

#category .irs-min,
#category .irs-max,
#category .irs-to,
#category .irs-from,
#category .irs-single {
    display: none;
}

#category .irs--round .irs-handle {
    border: 1px solid var(--color);
    background-color: var(--color);
    width: 16px;
    height: 16px;
    top: 11px;
    border-radius: 0;
}

#category .irs--round .irs-bar,
#category .irs--round .irs-line {
    height: 1px;
    top: 18px;
}

#category .irs--round .irs-bar {
    background-color: var(--color);
}
#category .irs--round .irs-line {
    background-color: var(--input);
}

#category .extra-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
#category .extra-controls .position-relative {
    width: 50%;
}
#category .price-range-btn {
    width: 105px;
    height: 50px;
    border: solid 1px var(--color);
    background-color: #ffffff;
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 0.94;
    letter-spacing: normal;
    text-align: center;
    color: var(--color);
    display: block;
    margin: 0.5rem 0;
}

#category .price-range-btn.selected {
    background-color: var(--color);
    color: #FFFFFF;
}

#category .js-input-from,
#category .js-input-to {
    width: 100%;
    height: 36px;
    border-radius: 0;
    background-color: var(--input);
    border: none;
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    line-height: 36px;
    color: var(--color);
    padding-inline: 18px;

}

#category .irs-label {
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 16px;
    letter-spacing: normal;
    color: var(--color);
}
.customiser_section .custom-control-label:hover,
#category .custom-control-label:hover,
#category .range-slider:hover,
#category .irs-handle:hover {
    cursor: pointer;
}


/*#category #select_colors .custom-control-input:checked~.custom-control-label::after {*/
/*    background-image: var(--check-icon);*/
/*    background-size: 50% 50%;*/
/*    background-position: center;*/
/*    background-repeat: no-repeat;*/
/*}*/
/*#category #select_colors .custom-control-input:checked~.custom-control-label::before {*/
/*    background-color: transparent;*/
/*    width: 0;*/
/*    height: 0;*/
/*}*/

.custom-control-label::before {
    width: 20px;
    height: 20px;
    top: 0;
    bottom: 0;
    margin-block: auto;
    background: #ffffff;
    border: 1px solid var(--color);
    border-radius: 0 !important;
    outline: none;
    box-shadow: none;
}



#category .sort_select {
    background: none;
    height: auto;
    border: none;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    color: var(--color);
    padding-inline: 0.35rem;
    margin-right: 0.5rem;
}

.select_group {
    position: relative;
}
#filtersBtn {
    display: flex;
    align-items: center;
}
#filtersBtn:after {
    content: "•";
    font-size: 10px;
    font-weight: 100;
    color: var(--color);
    padding-left: 5px;
}
.select_group .arrow-down {
    width: 10px;
    height: 10px;
    object-fit: contain;
    position: absolute;
    top:0;
    bottom: 0;
    margin: auto;
    right: 0;
    left: auto;
    pointer-events: none;
}

.select_group .arrow-down path {
    fill: var(--font-color) !important;
}
.grid_btn {
    padding-inline: 4px;
    opacity: 0.3;
}
.grid_btn.selected {
    opacity: 1;
}
.grid_btn .grid-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}
#category .custom-control-label.edge-browser {
    width: 27px;
    height: 27px;
    position: absolute;
    left:0;
    top: -4px;
    text-indent: 25px;
    white-space: nowrap;
    background-image: var(--check-icon);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80%;
}
.custom-radio .custom-control-label::before,
.custom-radio .custom-control-label::before {
    border-radius: 0;
    border: 1px solid var(--color);
    top:0;
    bottom: 0;
    margin: auto;
}


.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background: #ffffff;
}
.custom-radio .custom-control-label::after,
.custom-radio .custom-control-label::after {
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    border-radius: 0;
    border: 1px solid var(--color);
}


.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
    width: 10px;
    height: 10px;
    background: var(--color);
    left: -19px;
}
.custom-radio .custom-control-input:checked~.custom-control-label::before,
.custom-radio .custom-control-input:checked~.custom-control-label::before {
    background-color: var(--color);
    top: 0;
    bottom: 0;
    margin-block: auto;
    width: 10px;
    height: 10px;
    z-index: 1;
    right: auto;
    left: -19px;
    /*right: -90px;*/
    /*margin-left: 5px;*/
}
.custom-control-input:focus~.custom-control-label::before {
    box-shadow: none;
    outline: none;
}
.custom-control-label::after {
    top: 0;
    bottom: 0;
    margin-block: auto;
    width: 20px;
    height: 20px;
}

.custom-control-label {
    padding-left: 5px;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    color: var(--color);
}

.filters .results_heading {
    display: none;
}



.filters .sticky-top {
    top: 120px;

    height: 100%;
    overflow-y: auto;
    padding-bottom: 1rem;
    z-index: 100;
}

.filters {
    top:0;
    width: 450px;
    position: fixed;
    left: -450px;
    transition: all var(--transition-3);
    background-color: #ffffff;
    z-index: 9999;
    height: 100dvh;
    padding: 12px 16px;
    overflow-y: auto;
}

.filters .sticky-top {
    height: calc(100vh - 120px);
}

.results {
    transition: all var(--transition-3);
}

.filters.active {
    left: 0;
}

.filter-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.filter-options.first_child {
    margin-top: 13px;
}



.clear_btn {
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 16px;
    letter-spacing: normal;
    color: var(--color);
    padding: 0;
    position: absolute;
    top: 3px;
    right: 0;
}


.custom-control-label[data-color-type] ~  {
    --filter-color: defaultValue;
}
.custom-control-label[data-color-type="color"]::after {
    background-color: var(--filter-color) !important;
    border-color: var(--filter-color) !important;
}
.custom-control-label[data-color-type="color"]::before {
    background: none !important;
    border: 1px solid var(--filter-color) !important;
}
.custom-control-label[data-color-type="color"][data-white="true"]::after {
    border-color: var(--color) !important;
}
.custom-control-label[data-color-type="image"]::after {
    background-image: var(--filter-color);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center
}
.custom-radio .custom-control-input:checked~.custom-control-label[data-color-type="color"]::before {
    background-color: var(--filter-color) !important;
    border: 1px solid var(--filter-color) !important;
}
.custom-radio .custom-control-input:checked~.custom-control-label[data-color-type="color"]::after {
    background: none!important;
}
.custom-radio .custom-control-input:checked~.custom-control-label[data-color-type="color"][data-white="true"]::before {
    border: 1px solid var(--color) !important;
}
.custom-radio .custom-control-input:checked~.custom-control-label[data-color-type="image"]::before {
    background-image: var(--filter-color);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border: none !important;
}
.main_btn {
    width: 100%;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    border: 1px solid var(--color);
}
@media (max-width:1440px) and (min-width:750px) {
    #category .product-categories .col-md-5 {
        flex-basis: 33.33333%;
        max-width: 33.333333%;
    }
}


@media (max-width: 1199px) {


    #category .main_row {
        overflow-x: hidden;
        width: 100%;
        margin: auto;
    }

}

@media (max-width: 969px) {


    #category .slider .slick-prev,
    #category .slider .slick-next {
        top: 290px !important;
        bottom: unset;
    }
}

@media (max-width: 749px) {
    
}

@media only screen and (max-width: 575px) and (min-width: 480px)  {
    .filter-sm-row .col-sm-6 {
        flex-basis: 37.5%;
        max-width:  37.5%;
        order: 0;
    }

    .filter-sm-row .col-sm-10 {
        flex-basis: 62.5%;
        max-width: 62.5%;
        order: 1;
    }
}

/*PRODUCTS*/

.product-item .card {
    border:none;
    border-radius: 0;
    background-color: #ffffff;
}

.product-item .card-img-top {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 0 ;
}
.product-item .card-img-overlay {
    aspect-ratio: 3 / 4;
    height: unset;
}
.product-item .card-body {
    padding: 1rem;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
}

.product-item .card-title {
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 14px;
    letter-spacing: normal;
    color: var(--color);
    margin-bottom: 0.25rem;
    text-align: left;
}
#product.product-item .card-title {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 0.5rem;
}
.product-item .card-subtitle {
    height: 32px;
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 16px;
    letter-spacing: normal;
    color: var(--color);
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 0.35rem;
}
#product.product-item .card-subtitle {
    height: auto;
    display: unset;
    overflow: unset;
    text-overflow: unset;
    margin-block: 1rem;
}
.product-item .card-text {
    height: 42px;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: normal;
    color: #696969;
    display: -webkit-box;
    overflow : hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-item .card-text p {
    margin-bottom: 0;
}

.product-item .beforeOfferPrice,
.product-item .afterOfferPrice,
.product-item .offers_price_section {
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 16px;
    letter-spacing: normal;

}
.product-item .beforeOfferPrice,
.product-item .afterOfferPrice {
    color: var(--color);
}
.product-item .offers_price_section {
    color: var(--grey-font-color)
}
.product-item .card-footer .offers_price_section {
    margin-bottom: 0.5rem;
}
.product-item .price-group {
    display: flex;
    align-items: center;
    gap: 4px;
}
.product-item .beforeOfferPrice {
    text-decoration: line-through;
}
.product-item .beforeOfferPrice:after {
    content: "•";
    font-size: 15px;
    font-weight: 100;
    color: var(--color);
    display: inline-flex;
    align-items: center;
    padding-left: 4px;
}
.product-item .addToCartBtn {
    width: 100%;
    height: 36px;
    background-color: var(--color);
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 16px;
    letter-spacing: normal;
    text-align: center;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-item .price_section {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 16px;
    letter-spacing: normal;
}
.product-item .price_section.red-colored * {
    color: #C80000;
}
.product-item .price_section .offer-now-price {
    display: none;
}
.product-item .price_section.red-colored .offer-now-price {
    display: block;
}
.product-item .price_section .tag-icon {
    width: 19px;
    height: 19px;
    object-fit: contain;
}

.product-item .specs_section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.product-item .specs_section:empty {
    margin-bottom: 0;
}
.product-item .specs_section:empty + .specs_section:not(:empty) {
    margin-bottom: 0;
}
.product-item .specs_section:not(:empty):has(+ .specs_section:empty) {
    margin-bottom: 0;
}
.product-item .specs_section:not(:empty) + .specs_section:not(:empty) {
    margin-bottom: 0;
}
.color-badge {
    --badge-color: defaultValue;
    width: 20px;
    height: 20px;
    padding: 0;
    border-radius: 0;
    margin: 0;
    background: var(--badge-color);
    position: relative;
    cursor: pointer;
}
.color-badge:has( + .text-badge) {
    margin-right: -0.5rem;
}
.color-badge.checked {
    border: 1px solid var(--badge-color);
    background: #ffffff;
}
.color-badge.bordered.checked {
    border-color: var(--color);
}
.color-badge.checked:before {
    content: '';
    width: 14px;
    height: 14px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background: var(--badge-color);
    border: 1px solid var(--badge-color);
}
.color-badge.bordered.checked:before {
    border-color: var(--color);
}
.size-badge {
    color: var(--color);
    min-width: 20px;
    height: 20px;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    padding: 0 5px;
    margin: 0;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.color-badge.checked,
.size-badge.checked {
    border: 1px solid;
    background: none;
}
.color-badge.checked {
    padding: 5px;
    border-color: var(--badge-color);
}
.size-badge.checked {
    border-color: var(--color);
}
.color-badge.bordered.checked {
    border-color: #979797;
}
.color-badge.badge-background.checked:before {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-color: var(--color);
}


.color-badge.bordered.checked:before {
    border: 1px solid #979797;
}

.text-badge {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;
    text-align: center;
    color: var(--color);
}

.badge:empty {
    display: inherit;
}
.color-badge.bordered {
    border: solid 1px #979797;
}
.color-badge.badge-background {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--color);
}

@media (max-width: 575px) {

    .filters {
        width: 100%;
        left: -100%;
    }

    .results.active {
        margin-left: 100%;
    }

    .filters .results_heading {
        display: block;
    }


}

/*PRODUCT PAGE*/

.tag_heading {
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    line-height: 16px;
    letter-spacing: normal;
    color: var(--color);
    margin-right: 0.5rem;
}

.tag_label {
    height: 25px;
    border-radius: 0;
    border: 1px solid var(--color);
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    line-height: 16px;
    letter-spacing: normal;
    color: var(--color);
    padding: 0 0.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product_section {
    /*border-bottom: 1px solid #acacac;*/
    /*padding-bottom: 0.5rem;*/
}

.spec_label {
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 16px;
    letter-spacing: normal;
    color: var(--color);
}

.sizes_container .custom-control-label::before {
    left: 0;
    opacity: 0;
}
.colors_container .custom-control-label {
    height: 36px;
}

.sizes_container .custom-control-label {
    cursor: pointer;
    min-width: 36px;
    height: 36px;
    border-radius: 0;
    border-left: solid 1px var(--color);
    border-top: solid 1px var(--color);
    border-bottom: solid 1px var(--color);
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 16px;
    letter-spacing: normal;
    text-align: center;
    color: var(--color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 3px;
    padding-right: 3px;
}
.sizes_container .custom-control:last-child .custom-control-label {
    border-right: 1px solid var(--color);
}
.sizes_container .custom-control-label::after {
    opacity: 0;
}

.sizes_container.form-inline .custom-control {
    padding-left: 0;
}

.sizes_container.form-inline .custom-radio .custom-control-input:checked~.custom-control-label {
    background-color: var(--color);
    border-color: var(--color);
    color: #ffffff;
}

.sizes_container.form-inline .custom-radio .custom-control-input:checked~.custom-control-label:after {
    content: '';
    position: relative;
    background-image: var(--check-icon);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    left: 5px;
    bottom: 0;
    width: 15px;
    height: 15px;
    font-size: 16px;
    margin: auto 0;
}

/*.colors_container .custom-radio .custom-control-label {*/
/*    margin: 0 1.2rem 2.2rem 0;*/
/*    cursor: pointer;*/
/*    outline: none;*/
/*    box-shadow: none;*/
/*}*/

/*.colors_container .custom-radio .custom-control-label:after {*/
/*    width: 35px;*/
/*    height: 35px;*/
/*}*/
/*.colors_container .custom-radio .custom-control-input:checked~.custom-control-label::before {*/
/*    background: none;*/
/*}*/

/*.colors_container .custom-radio .custom-control-input:checked~.custom-control-label:after {*/
/*    background-image: var(--check-icon);*/
/*    background-size: 50% 50%;*/
/*    background-position: center;*/
/*    background-repeat: no-repeat;*/
/*    background-color: transparent;*/
/*    z-index: 2;*/
/*}*/
.customiser_section .custom-control-input:focus~.custom-control-label::before,
.colors_container .custom-radio .custom-control-input:focus~.custom-control-label::before {
    box-shadow: none;
}

#product .addToFavBtn {
    width: 36px;
    height: 36px;
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 16px;
    letter-spacing: normal;
    color: var(--color);
    border: 1px solid var(--color);
    display: flex;
    justify-content: center;
    align-items: center;
}


#product .addToFavBtn.addedToFavorites .favorites-icon path {
    fill: var(--color);
}

#product .addToFavBtn .favorites-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}
#product .addToFavBtn .favorites-icon path {
    fill-opacity: 1;
}

#product .addToFavBtn .favorites-icon path {
    fill: #ffffff;
    stroke: var(--color);
}
#product .line {
    height: 1px;
    width: 100%;
    background-color: #acacac;
}

#product .addToFavBtn.addedToFav {
    background-color: var(--color);
    color: #FFFFFF;
}

#product .addToFavBtn.addedToFav .favorites-icon path {
    fill: #FFFFFF;
}

#product .addToBasket-btn {
    width: 100%;
    height: 36px;
    border-radius: 0;
    background-color: var(--color);
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 16px;
    letter-spacing: normal;
    text-align: center;
    color: #ffffff;
}

.change-quantity {
    width: 36px;
    height: 36px;
    border-radius: 0;
    border: 1px solid var(--color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.qty-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.qty-icon path {
    fill: var(--color);
}

.product-item .form-control.input_quantity,
.cartus-basket .form-control.productQuantity {
    width: 36px;
    height: 36px;
    background: none;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 16px;
    letter-spacing: normal;
    color: var(--color);
    border-top: 1px solid var(--color);
    border-bottom: 1px solid var(--color);
    background: #ffffff;
    border-radius: 0;
}
.dot:after {
    content: "•";
    font-size: 15px;
    font-weight: 100;
    color: var(--color);
    display: inline-flex;
    align-items: center;
    padding-inline: 4px;
}
#product .loyalty-pts {
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 16px;
    letter-spacing: normal;
    color: var(--color);
}
#product .loyalty-pts:after {
    content: "•";
    font-size: 15px;
    font-weight: 100;
    color: var(--color);
    display: inline-flex;
    align-items: center;
    padding-inline: 4px;
}

#product .loyalty-message {
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 16px;
    letter-spacing: normal;
    color: var(--color);
}

#product #productTabs .nav-item {
    width: 50%;
    background-color: var(--input);
}
#product #productTabs .nav-item:first-child,
#product #productTabs .nav-item:first-child .nav-link {
    border-radius: 0;
}
#product #productTabs .nav-item:last-child,
#product #productTabs .nav-item:last-child .nav-link {
    border-radius: 0;
}

#product #productTabs .nav-link {
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 16px;
    letter-spacing: normal;
    color: var(--color);
    height: 36px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

#product #productTabContent {
    border-radius: 0;
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

#product #productTabContent .content {
    padding: 1rem;
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 16px;
    letter-spacing: normal;
    color: var(--color);
}

#product #productTabContent .content p {
    margin-bottom: 0.25rem;
}

#product #accordion .card {
    flex-direction: column;
    box-shadow: none;
    border: 1px solid  #e5e5e5;
}

#product #accordion .card:first-child {
    border-radius: 8px 8px 0 0;
}

#product #accordion .card:last-child {
    border-radius: 0 0 8px 8px;
}

#product #accordion .card-header {
    text-align: center;
    border: none;
    padding: 0;
    background: none;
}

#product #accordion .btn-link {
    width: 100%;
    height: 36px;
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 16px;
    letter-spacing: normal;
    text-align: center;
    color: var(--color);
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0;
    opacity: 1;
}

#product #accordion .btn-link[aria-expanded=false] {
    background-color: var(--input);
}

#product .full-image {
    max-width: 100%;
    object-fit: contain;
    border-radius: 0;
    margin-inline: auto;
    aspect-ratio: 3 / 4;
}

#product .slider-nav .slick-list.draggable {
    width: 85%;
    margin: auto;
}

/*#product .slider-nav .slick-track {*/
/*    margin-left: 0;*/
/*}*/

#product .slider-nav .thumb-image {
    width: 78px;
    /*height: 80px;*/
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 0;
    cursor: pointer;
}
#product .slider-nav .slick-slide {
    margin: 0 10px;
}

.slider .slick-next,
.slider .slick-prev {
    background: none;
}

.slider .slick-next {
    right: 0;
}

.slider .slick-prev {
    left: 0;
    z-index: 1;
}

.slider .slick-arrow {
    /*top: 0;*/
    bottom: 0;
    margin: auto;
}

.slider .slick-arrow:before {
    top: 0;
    bottom:0;
    left:0;
    right: 0;
    margin: auto;
    width: 35px;
    height: 35px;
}

.slider .slick-prev:before {
    background-image: url(/dist/images/prev-arrow.svg);
}

.slider .slick-next:before {
    background-image: url(/dist/images/next-arrow.svg);
}

#related .section-head {
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 16px;
    letter-spacing: normal;
    text-align: left;
    color: var(--font-color);
}
#related .slider .slick-arrow {
    bottom: unset;
    top: -32px;
}
#related .slider .slick-arrow.slick-prev {
    right: 36px;
    left: auto;
}

.form-control.dob-input::placeholder {
    color: var(--color);
}

@media (max-width: 1439px) {
    #product .slider-nav .slick-list.draggable {
        width: 80%;
    }

}

@media (max-width: 1199px) {


}

@media (max-width: 969px) {

}

@media (max-width: 749px) {

}

@media (max-width: 575px) {
}

@media (max-width: 480px) {
    #product .slider-nav .slick-list.draggable {
        width: 250px;
    }
}