body {
    font-family: "Cabin", sans-serif!important;
}

body.no-scroll {
    overflow: hidden;
}

/* delivery offer + slider  */

.deliveryWrapper {
    width: 100%;
    background-color: #183052;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
}

#deliverySlider {
    width: 100%;
}

.deliveryWrapper .splide__slide  {
    display: flex;
    color: #fff;
    align-items: center;
    justify-content: center;
}

.deliveryWrapper .splide__slide a {
    display: flex;
    color: #fff;
    align-items: center;
    justify-content: center;
}

/* end of delivery offer + slider  */


/* top header  */

.headerTop {
    padding: 12px 25px;
    border-bottom: 1px solid #e4e6e7;
}

.headerTopRow {
    display: flex;
    justify-content: space-between;
}

.logo-wrapper-top-header {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-wrapper-top-header img {
    width: 200px;
    height: auto;
    max-width: 100%;
}

.nav-item-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.nav-item-inner {
    margin: 20px;
    cursor: pointer;
}

.nav-item-inner a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.nav-item-inner i {
    font-size: 28px;
    color: black;
    text-decoration: none;
}


/* search bar  */

.searchBarWrapperHeader {
    width: 42vw;
    position: relative;
}

.searchBarWrapperHeader form {
    width: 100%;
    position: relative;
    background-color: rgb(243, 243, 243);
    border-radius: 6px;
    display: flex;
}

.searchBarWrapperHeader form  i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    z-index: 2;
}

.searchBarWrapperHeaderInner {
    position: relative;
    width: 100%;
}

.searchBarWrapperHeaderInner label {
    position: absolute;
    top: 50%;
    left: 42px;
    transform: translateY(-50%);
    display: flex;
    height: 100%;
    pointer-events: none;
    align-items: center;
    justify-content: start;
    gap: 4px;
}

.searchBarWrapperHeaderInner input {
    cursor: pointer;
    height: 40px;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    box-shadow: none;
    appearance: none;
    border: 2px solid black;
    padding: 0px 8px 0px 40px;
    border-radius: 8px;
    background-color: rgb(243, 243, 243);
}

/* end of search bar  */

/* end of top header  */

@media (max-width: 1200px) {
    .headerTop {
        display: none;
    }
    .headerBottom {
        display: none;
    }
}


/* bottom header  */

.headerBottom {
    background-color: #fff;
}

.headerBottomCol {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.headerBottomLogo {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.headerBottomNavItems {
    display: flex;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.bottom-nav-item-inner {
    cursor: pointer;
}

.bottom-nav-item-inner i {
    font-size: 20px;
}

.headerBottomLogo a {
    display: flex;
}

.headerBottomLogo a img {
    width: 64px;
    height: auto;
    max-width: 100%;
}

.menu-items-bottom-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.menu-items-bottom-list li {
    padding: 23px 15px;
}

@media (max-width: 1400px) {
    .menu-items-bottom-list li {
        padding: 23px 8px;
    }
}

.menu-items-bottom-list li svg {
    max-width: 100%;
    width: 10px;
    height: auto;
}

.menu-item-bottom-link {
    display: flex;
    align-items: center;
    color: black;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    font-size: 12px;
    transition: color 0.2s;
}

.menu-item-bottom-link.active {
    color: red;
}

.header-nav-content-wrapper {
    /* display: none; */
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background-color: #fff;
    padding: 24px 36px 48px;
    align-items: center;
    transition: opacity 0.2s ease-in-out;
}

.header-nav-content-wrapper.show {
    /* display: flex; */
    pointer-events: all;
    visibility: visible;
    opacity: 1;
  }

.nav-categories {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.nav-category-article {
    display: flex;
    width: 50%;
}

.nav-category-link {
    display: flex;
    align-items: center;
    justify-content: start;
}

.nav-category-link figure {
    position: relative;
    min-width: 150px;
    margin-right: 32px;
    margin-bottom: 8px;
}

.nav-category-link figure::before {
    float: left;
    content: "";
    padding-bottom: 60%;
    margin-bottom: 0;
}

.nav-category-link figure::after {
    content: ".";
    display: block;
    height: 0;
    overflow: hidden;
    clear: both;
    visibility: hidden;
}

.nav-category-link figure img {
    width: 100%;
    height: 100%;
    position: absolute;
}

.featured-products-list-wrapper {
    width: 100%;
    display: flex;
}

.featured-products-list {
    padding: 0;
    margin: 0;
    list-style-type: none;
    width: 50%;
}

.featured-products-list li {
    padding: 0;
    margin: 12px 0;
}

.featured-products-list li a {
    font-size: 14px;
}

.menu-item-bottom-link svg {
    margin-left: 5px;
    margin-bottom: 2px;
    transition: transform 0.2s, fill 0.2s;
}

.menu-item-bottom-link svg.rotated {
    transform: rotate(180deg);    
    fill: red;
  }

/* end of bottom header  */


/* test section */

.test-section {
    background-color: black;
    height: 100dvh;
}

/* end of test section  */


/* start of search modal  */

#searchModal {
    display: none;
}

#searchModal.show {
    display: block;
}

.searchBackdrop {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background-color: rgb(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    inset: 0;
    position: fixed;
    z-index: 9999;

}

.searchWrapper {
   padding-top: 16px;
   flex-direction: column;
   display: flex;
   align-items: flex-start;
   position: relative;
   height: 100%;
}

@media (min-width: 1024px) {
    .searchWrapper {
        padding-top: 56px;
        padding: 56px 16px 16px 16px;
        row-gap: 24px;
        gap: 24px;
        grid-template-rows: 56px auto;
        grid-template-columns: repeat(8, 1fr);
        display: grid;
        align-items: flex-start;
        position: relative;
     }
}

.searchBarWrapper {
    position: relative;
    flex-direction: column;
    display: flex;
    width: 100%;
    padding: 0 16px;
    margin-bottom: 24px;
}

@media (min-width: 1024px) {
    .searchBarWrapper {
        padding: 0;
        height: 100%;
        width: 100%;
        margin: 0;
        grid-column-end: 8;
        grid-column-start: 2;
        

    }
}

.formSearchBar {
    gap: 8px;
    display: flex;
    justify-content: end;
    align-items: center;
    height: 56px;
}

.formSearchInner {
    display: inline-flex;
    padding-left: 16px;
    padding-bottom: 8px;
    padding-top: 8px;
    border-radius: 8px;
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #fff;
    padding-right: 64px;
    align-items: center;
}


@media (min-width: 1024px) {
    .formSearchInner {
        padding-right: 208px;

    }
}

@media (max-width: 576px) {
    .formSearchInner {
        padding-right: 16px;
    }
}

.closeButtonMobile {
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    /* background-color: hsla(0, 0%, 100%, 0.2); */
    background: linear-gradient(90deg, #3a2a20 0%, #56382d 100%);
    border-radius: 8px;
    box-shadow: 0 32px 40px 0 rgba(0, 0, 0, .24), inset 0 1px 1px 0 hsla(0, 0%, 100%, .25), inset 0 -1px 1px 0 hsla(0, 0%, 100%, .1);
    color: white;
    text-transform: uppercase;
    font-size: 8px;
    overflow: hidden;
    text-align: center;
    width: 56px;
    height: 100%;
    transition: background 0.2s ease-in-out, filter 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.closeButtonMobile:hover {
    background: linear-gradient(135deg, #B79A80, #56382D);
    filter: brightness(1.2);
}

@media (min-width: 1024px) {
    .closeButtonMobile {
        display: none;
    }
}

.closeButtonDesktop {
    display: none;
    position: relative;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    /* background-color: hsla(0, 0%, 100%, 0.2); */
    background: linear-gradient(90deg, #3a2a20 0%, #56382d 100%);
    border-radius: 8px;
    box-shadow: 0 32px 40px 0 rgba(0, 0, 0, .24), inset 0 1px 1px 0 hsla(0, 0%, 100%, .25), inset 0 -1px 1px 0 hsla(0, 0%, 100%, .1);
    color: white;
    transition: background 0.2s ease-in-out, filter 0.2s ease-in-out, box-shadow 0.2s ease-in-out;

}

.closeButtonDesktop:hover {
    background: linear-gradient(135deg, #B79A80, #56382D);
    filter: brightness(1.2);
   
}

@media (min-width: 1024px) {
    .closeButtonDesktop {
        text-transform: uppercase;
        font-size: 8px;
        overflow: hidden;
        text-align: center;
        width: 56px;
        height: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }
}




.searchMagGlassIcon {
    height: 44px;
    max-width: 40px;
    margin-right: 16px;
    display: flex;
    align-items: center;
}

.searchMagGlassIcon button {
    background: none!important;
    border: none!important;
}

.searchMagGlassIcon img {
    width: 24px;
    height: 24px;
}

.searchInputWrapper {
    width: 100%;
}

#searchInput {
    width: 100%;
    border: none;
    height: 44px;
    outline: none!important;
}


.popularSearchesOuterWrapper {
    overflow: visible;
    width: 100%;
    height: 100%;
    grid-column-start: 1;
    grid-column-end: 13;
}

@media (min-width: 1023px) {
    .popularSearchesOuterWrapper {
        display: flex;
        height: 100vh;
        grid-row-start: 2;
        grid-column-end: 8;
        grid-column-start: 2;
    }
}


.popularSearchesInnerWrapper {
    width: 100%;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    /* background-color: hsla(0, 0%, 100%, 0.2); */
    background: linear-gradient(135deg, #B79A80, #56382D);
    border-radius: 8px;
    box-shadow: 0 32px 40px 0 rgba(0, 0, 0, .24), inset 0 1px 1px 0 hsla(0, 0%, 100%, .25), inset 0 -1px 1px 0 hsla(0, 0%, 100%, .1);
    color: white;
    height: 100%;
    max-height: 500px;
    overflow-y: auto;
    padding: 0 24px;
    overflow-y: auto;
}

.mostRecentSearchesWrapper {
    padding-top: 24px;
}

.popSearchWrapper {
    padding-top: 24px;
    padding-bottom: 24px;
}

.popularSearchList, .mostRecentSearchList {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 8px;
}

.popularSearchListItem, .mostRecentSearchList li {
    background-color: hsla(0, 0%, 100%, .1);
    border-radius: 8px;
    overflow: hidden;
    display: inline-flex;
}

.popularSearchListItem:hover, .mostRecentSearchList li:hover {
	background-color: hsla(0, 0%, 100%, .3);
}

.popularSearchListItemLink, .recentItem {
    display: flex;
    font-size: 14px;
    width: 100%;
    height: 100%;
    padding: 8px 16px;
    color: white!important;
    text-decoration: none!important;
}

/* end of search modal  */


/* mobile header  */

@media (min-width: 1201px) {
    #mobileHeader {
        display: none;
    }
}

#mobileHeader {
    background-color: #fff;
    padding-top: 8px;
    padding-bottom: 8px;
}

.mobile-logo-wrapper a img {
    max-width: 200px;
    width: 100%;
    height: auto;
}

.mobile-button-items-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-button-items-wrapper i {
    font-size: 20px;
}

#mobile-hamburger-button img {
    width: 40px;
    height: auto;
}

.header-background {
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 9999;
    transition:
    opacity 0.3s ease,
    visibility 0s linear 0.3s;

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, .75);
    height: 100dvh;
    height: 100%;
}

.header-background.open {
    visibility: visible;
    pointer-events: all;
    opacity: 1;
    /* no delay on visibility when opening */
    transition:
    opacity 0.3s ease,
    visibility 0s linear 0s;
}

#mobile-menu-nav {
    top: 0;
    position: fixed;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: calc(100% - 40px);
    background: #fff;
    -webkit-transform: translateX(100%);  
    transform: translateX(100%); 

    transition:
    transform 0.3s ease 0s,
    visibility 0s linear 0.3s;

    pointer-events: none;
    visibility: hidden;
    z-index: 10000;
}

#mobile-menu-nav.open {
    transform: translateX(0);
    transition:
    visibility 0s linear 0s,
    transform 0.3s ease 0.3s;
    pointer-events: all;
    visibility: visible;

  }

.mobile-menu-items-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 2000px;
    overflow-y: auto;
    background-color: #fff;
}

.mobile-items-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background-color: #f1f0ec;
}

.mobile-items-top-bar img {
    max-width: 150px;
    width: 100%;
    height: auto;
}

.close-mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 30px;
    width: 30px;
    height: 30px;
    padding: 0!important;
    right: calc(100% + 5px);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border: none!important;
    background-color: transparent!important;

}

.close-mobile-menu-btn img {
    width: 30px;
    height: 30px;
    max-width: 100%;
}

.mobile-items-set-delivery {
    margin: 20px 15px 10px;
}

.mobile-items-list-wrapper ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.mobile-items-list-wrapper ul li {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.mobile-main-list li a {
    width: 100%;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-main-list li button {
    width: 100%;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none!important;
    background-color: transparent!important;
}

.mobile-main-list li button svg {
    width: 12px;
    height: 12px;
    transform: rotate(-90deg);
}

.mobile-secondary-list {
    padding: 0;
    margin: 0;
    margin-bottom: 32px!important;
    list-style: none;
}

.mobile-secondary-list li a {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 8px 20px;
    font-size: 14px;
    color: red;
}

.mobile-menu-ctas-wrapper {
    display: flex;
    width: 100%;
    border-top: 1px solid black;
}

.mobile-cta-wrapper {
    width: 50%;
}

.mobile-cta-wrapper:first-of-type {
    border-right: 1px solid black;
}

.mobile-cta-wrapper a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 12px;
}


.mobile-menu-child-categories-wrapper {
    margin-bottom: 32px;
}

.mobile-menu-child-categories {
    display: flex;
    flex-wrap: wrap;
}

.mobile-menu-child-categories article {
    width: 100%;
}

.mobile-menu-child-categories article a {
    display: flex;
    align-items: center;
    padding: 0;
    justify-content: start;
}

.mobile-menu-child-categories article a figure {
    position: relative;
    width: 100px;
    height: 60px;
    margin-right: 20px;
}

.mobile-menu-child-categories article a figure::before {
    float: left;
    content: "";
    padding-bottom: 60%;
    margin-bottom: 0;
}

.mobile-menu-child-categories article a figure::after {
    content: ".";
    display: block;
    height: 0;
    overflow: hidden;
    clear: both;
    visibility: hidden;
}

.mobile-menu-child-categories article a figure img {
    position: absolute;
    width: 100%;
    height: 100%;
}

.mobile-menu-child-featured-products-wrapper ul li {
    margin-bottom: 12px;
}

.mobile-menu-child-featured-products-wrapper ul li a {
    padding: 0;
    font-size: 14px;
}


/* test  */

/* hide all sub‑menus by default */
.mobile-menu-children-wrapper {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    padding: 0;
  }
/* hide header back‑btn until in a submenu */
.mobile-menu-header {
    display: none;
    align-items: center;
    padding: 16px 20px;
    background: #fff;
    border-bottom: 1px solid #ddd;
    justify-content: space-between;
}
.mobile-menu-header .back-btn {
    margin-right: 1rem;
    background: none;
    border: none;
    font-size: 1rem;
}
  
  /* once we have a submenu open… */
  .mobile-items-list-wrapper.submenu-open .mobile-menu-header {
    display: flex;
  }
 /* still hide your secondary and your CTAs */
.mobile-items-list-wrapper.submenu-open .mobile-secondary-list,
.mobile-items-list-wrapper.submenu-open .mobile-menu-ctas-wrapper {
  display: none;
}

/* keep the main list container showing */
.mobile-items-list-wrapper.submenu-open .mobile-main-list {
  display: block;
}

/* but hide every menu item that isn’t expanded */
.mobile-items-list-wrapper.submenu-open .mobile-main-list > li:not(.expanded) {
  display: none;
}

/* and make sure your expanded one’s submenu is visible */
.mobile-items-list-wrapper.submenu-open
  .mobile-main-list > li.expanded > .mobile-menu-children-wrapper {
  max-height: 1000px;    /* big enough to hold your content */
  opacity: 1;
  padding: 24px 24px 48px 24px;;
}

  
  /* show only the open li’s submenu */
  .mobile-items-list-wrapper.submenu-open li.expanded > .mobile-menu-children-wrapper {
    display: block;
  }
  

  /* when we're in submenu-open, and the li is expanded, hide its button */
.mobile-items-list-wrapper.submenu-open
.mobile-main-list > li.expanded > button {
display: none;
}



/* mini cart sidebar  */

#miniCartSidebar {
    display: block;
    top: 0;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10000;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition:
      transform 0.3s ease 0s,
      visibility 0s linear 0.3s;
    
}

#miniCartSidebar.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: all;
    transition:
      visibility 0s linear 0s,
      transform 0.3s ease 0.3s;
  }

.miniCartWrapper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    width: 100%;
    max-width: 480px;
    background-color: #fff;
}

#close-mini-cart-button {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 30px;
    width: 30px;
    height: 30px;
    padding: 0 !important;
    right: calc(100% + 5px);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border: none !important;
    background-color: transparent !important;
}

#close-mini-cart-button img {
    width: 30px;
    height: 30px;
    max-width: 100%;
}

.mini-cart-contents {
    /* padding: 20px; */
    height: 100%;
    overflow: auto;
    max-height: 100dvh;
    max-height: 100vh;
}

.mini-cart-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.basket-top {
    padding: 12px 24px;
}

.basket-top h2 {
    text-align: center;
    position: relative;
}

.basket-top h2 span {
    position: relative;
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    padding: 0 20px;
    background: #fff;
}

.basket-top h2::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    height: 1px;
    background: #e4e6e7;
}


.basket-main-products {
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    width: 100%;
    overflow: auto;
    background: rgb(246, 246, 243);
}

.basket-items {
    padding: 12px 20px;
}

.basket-loyalty-inner {
    padding: 12px 20px;
    border: 1px solid black;
    background: #fff;
}

.basket-loyalty-inner p {
    margin-bottom: 0;
    position: relative;
    padding-left: 32px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.basket-loyalty-inner p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    outline: 1px solid rgba(0, 0, 0, .2);
    outline-offset: -1px;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    margin-right: 7px;
    background: linear-gradient(252deg, #fff 0, #cdcdcd 34%, #fff 71%, #cbcacb 100%);
}

.basket-loyalty-inner img {
    width: 24px;
    height: 24px;
    max-width: 100%;
}

.basket-row {
    position: relative;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-flow: column wrap;
    max-width: none;
    margin: 0px;
    padding: 15px 115px 15px 85px;
    border-bottom: 1px solid rgb(228, 230, 231);
    min-height: 96px;
}

.basket-row:last-child {
    border-bottom: none;
}

.basket-row-img {
    position: absolute;
    top: 15px;
    left: 0px;
    width: 66px;
    height: 66px;
    border: none;
    background: rgb(228, 230, 231);
}

.basket-row-img::before {
    float: left;
    content: "";
    padding-bottom: 100%;
    margin-bottom: 0px;
}

.basket-row-img::after {
    content: ".";
    display: block;
    height: 0px;
    overflow: hidden;
    clear: both;
    visibility: hidden;
}

.basket-row-img img {
    width: 100%;
    height: auto;
}

.basket-row-product {
    margin-bottom: 8px;
}

.basket-row-price {
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 400;
    display: flex;
    flex-wrap: wrap;
    width: auto;
    margin: -5px;
}

.basket-row-price-value {
    margin: 5px;
}

.basket-row-price-meta {
    margin: 5px;
}

.basket-row-actions {
    position: absolute;
    top: 15px;
    right: 0px;
    width: 95px;
    margin: 0px;
}

.basket-row-quantity {
    position: relative;
    display: flex;
    -webkit-box-pack: start;
    justify-content: flex-start;
}

.basket-row-remove-item {
    font-size: 0.75rem;
    line-height: 1.66667;
    color: rgb(102, 102, 102);
    transition: color 0.3s;
    text-decoration: underline;
}

.decrease-quantity-button, .increase-quantity-button {
    width: 31px;
    height: 33px;
    border: none;
    position: relative;
    background: 0px 0px;
    border: 1px solid rgb(228, 230, 231);
    cursor: pointer;
    user-select: none;
}

.decrease-quantity-button img, .increase-quantity-button img {
    width: 100%;
    height: auto;
    max-width: 100%;
}

.basket-row-quantity .quantity-input {
    font-size: 0.875rem;
    line-height: 1.42857;
    -webkit-box-flex: 0;
    flex: 0 0 100px;
    min-width: 0px;
    padding: 0px;
    text-align: center;
    color: rgb(51, 51, 51);
    border-top: 1px solid rgb(228, 230, 231);
    border-bottom: 1px solid rgb(228, 230, 231);
    border-image: initial;
    border-right: none;
    border-left: none;
    width: 100%;
    display: inline-block;
    flex-basis: 33px;
    height: 33px;
    border: 1px solid rgb(228, 230, 231);
}


.basket-total {
    width: 100%;
    margin: 0;
    padding: 0;
}

.basket-total-top {
    padding: 12px 20px;
}

.basket-promo-code-wrapper {
    margin-bottom: 16px;
}

#basket-promo-code-form {
    width: 100%;
    display: flex;
    align-items: center;
}

#basket-promo-code-form input {
    display: flex;
    height: 38px;
    flex: 1 1 auto;
    padding: 4px 12px;
}

#promo-code-button {
    height: 38px;
    border: none!important;
    background-color: red;
}

.basket-totals-inner p {
    margin-bottom: 0;
}

.basket-subtotal, .basket-delivery {
    display: flex;
    margin-bottom: 8px;
}


.basket-checkout {
    background: url('/img/paper-background.jpg');
    display: flex;
    align-items: center;
    padding: 16px 24px;
}

.basket-checkout-inner {

}

.basket-checkout-inner img {
    width: 20px;
    height: 20px;
    max-width: 100%;
}

.basket-checkout a {
    background: #278651;
    width: 100%;
    display: flex;
    height: 48px;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 20px;
}

/* end of mini cart sidebar  */