/** Shopify CDN: Minification failed

Line 285:0 Unexpected "}"

**/
/*************
---- Global --
*************/

:root {
    --brand-navy: #1e2233;
    --brand-taupe: #D6DBE2;
    --grey-900: #001731;
    --grey-700: #3E454D;
    --grey-500: #777B7F;
    --grey-400: #C6CACF;
    --grey-300: #D6DBE2;
    --grey-200: #E5E5E5;
    --grey-100: #F6F6F6;
    --success: #459481;
}

* {
    box-sizing: border-box;
}

/* Scroll Bars across site */
*::-webkit-scrollbar {
    background: var(--grey-100);
    /*height: 4px;*/
    height: 10px;
    width: 20px;
}

*::-webkit-scrollbar-thumb {
    background-color: var(--grey-400);
}

html {
    font-size: 16px;
}

body {
    font-family: 'Jost', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--grey-700);
    background-color: #EFECEA;
}

body.noScroll {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
optgroup,
select,
textarea {
    font: inherit;
    color: inherit;
    background-color: transparent;
    display: block;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: left;
    border: none;
}

input,
select,
textarea {
    border: 1px solid lightgray;
    padding: 10px;
}

select {
    padding: 8px 34px 8px 10px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
}

textarea {
    resize: none;
}

img,
picture,
video {
    display: block;
    height: auto;
    width: 100%;
}

dialog {
    padding: 0;
    max-width: none;
    max-height: none;
    border: none;
    width: 100dvw;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.3);
    display: none;
    position: fixed;
    top: 0;
    left: 0;
}

dialog[open] {
    display: flex;
}

@media (min-width: 801px) {
    .mobileOnly {
        display: none !important;
    }
}


@media (max-width: 800px) {
    .desktopOnly {
        display: none !important;
    }
}

/*************
---- Button --
**************/

.button {
    background-color: var(--brand-navy);
    color: white;
    border-radius: 100px;
    text-align: center;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.2px;
    font-weight: 500;
    padding: 9px 32px;
    max-width: fit-content;
    width: 100%;
    appearance: none;
    cursor: pointer;
    display: block;
    position: relative;
    transition: ease 300ms;
}

.button.outline {
    border: 1px solid var(--grey-400);
    background-color: #fff;
    color: var(--grey-900);
}

.button.medium {
    padding: 13px 32px;
}

.button:hover {
    background-color: var(--grey-700) !important;
    color: #fff !important;
}

.button.disabled {
    background-color: var(--grey-200);
    color: var(--grey-400);
    pointer-events: none;
}

.button.leftArrow {
    padding-left: 64px;
}

.button.rightArrow {
    padding-right: 64px;
}

.button.leftArrow::before,
.button.rightArrow::after {
    content: "";
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    display: block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.button.leftArrow::before {
    left: 64px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5Z' stroke='white' stroke-miterlimit='10'/%3E%3Cpath d='M9.52344 12.6484L6.875 10L9.52344 7.35156' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.875 10H13.125' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.button.outline.leftArrow::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5Z' stroke='%23232323' stroke-miterlimit='10'/%3E%3Cpath d='M9.52344 12.6484L6.875 10L9.52344 7.35156' stroke='%23232323' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.875 10H13.125' stroke='%23232323' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.button.outline.leftArrow:hover::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5Z' stroke='white' stroke-miterlimit='10'/%3E%3Cpath d='M9.52344 12.6484L6.875 10L9.52344 7.35156' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.875 10H13.125' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.button.disabled.leftArrow::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5Z' stroke='%23A4A8AF' stroke-miterlimit='10'/%3E%3Cpath d='M9.52344 12.6484L6.875 10L9.52344 7.35156' stroke='%23A4A8AF' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.875 10H13.125' stroke='%23A4A8AF' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.button.rightArrow::after {
    right: 64px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5Z' stroke='white' stroke-miterlimit='10'/%3E%3Cpath d='M10.4766 12.6484L13.125 10L10.4766 7.35156' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.875 10H13.125' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.button.outline.rightArrow::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5Z' stroke='%23232323' stroke-miterlimit='10'/%3E%3Cpath d='M10.4766 12.6484L13.125 10L10.4766 7.35156' stroke='%23232323' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.875 10H13.125' stroke='%23232323' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.button.outline.rightArrow:hover::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5Z' stroke='white' stroke-miterlimit='10'/%3E%3Cpath d='M10.4766 12.6484L13.125 10L10.4766 7.35156' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.875 10H13.125' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.button.disabled.rightArrow::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5Z' stroke='%23A4A8AF' stroke-miterlimit='10'/%3E%3Cpath d='M10.4766 12.6484L13.125 10L10.4766 7.35156' stroke='%23A4A8AF' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.875 10H13.125' stroke='%23A4A8AF' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.button.center {
    margin: 0 auto;
}

.button.loading {
    position: relative !important;
    pointer-events: none !important;
    color: transparent !important;
}

.button.loading::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 4px solid transparent;
    border-top-color: #fff;
    border-radius: 50%;
    animation: loading 1s ease infinite;
}

@keyframes loading {
    from {
        transform: rotate(0turn);
    }

    to {
        transform: rotate(1turn);
    }
}

/**************
---- Swiper --
*************/

.swiper-button-prev,
.swiper-button-next {
    --swiper-navigation-color: var(--grey-900);
}

}

/**********
---- RTE --
 **********/

.rte h1,
.rte h2,
.rte h3,
.rte h4,
.rte h5,
.rte h6,
.rte p {
    font-size: revert;
    margin: revert;
}


/****************
---- Pagination --
 ****************/

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 0 0;
}

.paginationContent {
    max-width: fit-content;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.paginationContent .prev,
.paginationContent .next {
    display: none;
}

.paginationContentNav {
    padding: 0 20px;
}

.paginationContentNav svg {
    translate: 0 18%;
}

.paginationContent .page {
    color: var(--grey-900);
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.2px;
    margin: 0 7px;
}

.paginationContent .page.current {
    background-color: var(--brand-navy);
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: grid;
    place-content: center;
}

@media (max-width: 800px) {

    .pagination {
        padding: 32px 0 0;
    }

}

/****************
---- Container --
 ****************/

.container {
    max-width: 1200px;
    margin: auto;
}

/********************
---- Default Page  --
 ********************/

#page,
.shopify-policy__container {
    max-width: 800px !important;
    margin: auto;
    padding: 20px 20px 80px;
}

#pageTitle,
.shopify-policy__title h1 {
    font-size: 32px;
    text-align: center;
}

#pageContent,
.shopify-policy__body {
    line-height: 1.5;
}

/*******************
---- Product Card --
********************/

.productCard {
    max-width: 309px;
    width: 100%;
    height: 100%;
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.productCardImageContainer {
    position: relative;
    margin-bottom: 16px;
}

.productCardImage,
.productCardImageVariantsItem,
.productCardImageHover {
    object-fit: cover;
    aspect-ratio: 1;
}

.productCardImageVariantsItem {
    display: none;
}

.productCardImageVariantsItem.active {
    display: block;
}

.productCardImageHover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 30;
    opacity: 0;
    transition: opacity ease 500ms;
}

.productCardImageContainer:hover
.productCardImageHover {
    opacity: 1;
}

.productCardBadge {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 40;
    padding: 6px 16px;
    background-color: var(--brand-navy);
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: 0.2px;
}

.productCardTop {
    margin-bottom: 6px;
    display: grid;
    grid-template-columns: 1fr 22px;
    gap: 12px;
}

.productCardTitle {
    color: var(--grey-900);
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.4px;
    /* shorten titles */
    white-space: nowrap;
    max-width: 26ch;
    text-overflow: ellipsis;
    overflow: hidden;
}

.productCardWish {
    width: 22px;
    height: 22px;
    cursor: pointer;
}

.productCardPrice {
    color: var(--grey-700);
    line-height: 24px;
    letter-spacing: 0.4px;
    margin-bottom: 16px;
}

.productCardBlock {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: auto 0 16px;
}

.productCardBlock .swiper {
    width: 85%;
    margin: 0;
}

.productCardBlock .swiper-slide {
    width: fit-content !important;
}

.productCardBlockNav {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.productCardBlockNav .swiper-button-prev,
.productCardBlockNav .swiper-button-next {
    --swiper-navigation-size: 16px !important;
    position: static !important;
    translate: 0 20%;
}

.productCardVariant {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
}

.productCardVariant.active {
    border: 1px solid var(--brand-navy);
    padding: 2px;
    background-color: #fff;
}

.productCardButton {
}

.productCardButton.noVariant {
    margin-top: auto;
}

@media (max-width: 800px) {

    .productCard {
        max-width: 600px;
    }

    .productCardImageContainer {
        margin-bottom: 12px;
    }

    .productCardImageContainer:hover
    .productCardImageHover {
        opacity: 0;
    }

    .productCardTop {
        margin-bottom: 8px;
        grid-template-columns: 1fr 16px;
    }

    .productCardTitle {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 0.2px;
    }

    .productCardWish {
        width: 16px;
        height: 16px;
    }

    .productCardPrice {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 0.2px;
    }

    .productCardBlock {
        max-width: 173px;
        margin-bottom: 12px;
    }

    .productCardBlockNav .swiper-button-prev,
    .productCardBlockNav .swiper-button-next {
        --swiper-navigation-size: 12px;
    }

    .productCardVariant {
        width: 20px;
        height: 20px;
    }

    .productCardVariant.active {
        padding: 2px;
    }

}

/*****************
---- Quick View --
******************/

.quickView {
    place-content: center;
}

.quickView[open] {
    display: grid;
}

.quickViewInner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background-color: #fff;
    position: relative;
    max-width: 884px;
    padding: 40px;
}

.quickViewATCButtonMobile {
    display: none;
}

.quickViewExit {
    cursor: pointer;
}

.quickViewExit svg {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
}

.quickViewSuccessful {
    position: absolute;
    top: 100%;
    left: 50%;
    translate: -50% 77px;
    gap: 8px;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: #F2FDF8;
    color: var(--success);
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0.2px;
    display: none;
}

.quickViewSuccessful.active {
    display: flex;
}

.quickViewSuccessful > * {
    max-width: fit-content;
}

.quickViewSuccessful > svg {
    width: 16px;
    height: 16px;
}

.quickViewSuccessful > a {
    text-decoration: underline;
}

.quickViewLeft {
    max-width: 420px;
}

.quickViewImages {
}

.quickViewImagesItem {
    display: none;
    object-fit: cover;
    max-width: 420px;
}

.quickViewImagesItem.active {
    display: block;
}

.quickViewLeftContent {
    display: none;
}

.quickViewRight {
    width: 100%;
    max-width: 344px;
    margin: auto;
}

.quickViewRightContent {
    border-bottom: 1px solid var(--grey-300);
}

.quickViewRightContentTop {
    display: grid;
    gap: 20px;
    margin-bottom: 8px;
    grid-template-columns: 1fr 20px
}

.quickViewTitle {
    max-width: fit-content;
    color: var(--grey-900);
    line-height: 24px;
    letter-spacing: 0.4px;
}

.quickViewSave {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.quickViewReview {
    margin-bottom: 8px;
}

.quickViewLabel {
    color: var(--brand-navy);
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0.2px;
    margin-bottom: 20px;
}

.quickViewCurrentVariant {
    color: var(--grey-900);
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0.2px;
    margin-bottom: 16px;
    padding-top: 16px;
}

.quickViewCurrentVariant span {
    font-weight: 400;
}

.quickViewVariants {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 8px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--grey-300);
}

.quickViewVariant {
    max-width: 48px;
    cursor: pointer;
}

.quickViewVariant.double {
    display: none;
}

.quickViewVariant.active {
    padding: 4px;
    border: solid 1px var(--brand-navy);
}

.quickViewVariant.soldOut {
    opacity: .2;
}

.quickViewVariantInput {
    display: none;
}

.quickViewVariantImage {
    max-width: 48px;
}

.quickViewSpec {
    padding: 16px 0;
    border-bottom: 1px solid var(--grey-300);
    display: flex;
    align-items: center;
    gap: 52px;
}

.quickViewSpecTitle {
    max-width: fit-content;
    color: var(--grey-900);
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0.2px;
}

.quickViewSpecSelect {
    display: flex;
    gap: 12px;
    align-items: center;
}

.quickViewSpecSelectItem {
    border-radius: 100px;
    background: var(--grey-100);
    padding: 6px 24px 8px;
    text-align: center;
    cursor: pointer;
    /*font-family: Giphurs;*/
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.2px;
}

.quickViewSpecSelectItem.active {
    background-color: var(--brand-navy);
    color: #fff;
}

.quickViewATC {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 20px 0 16px;
}

.quickViewAmount {
    border-radius: 100px;
    border: 1px solid var(--grey-300);
    background: #FFF;
    display: grid;
    grid-template-columns: 32px 26px 32px;
    gap: 21px;
    padding: 16px;
    align-items: center;
}

.quickViewAmountDisplay {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.2px;
    width: 100%;
    text-align: center;
    cursor: pointer;
}

.quickViewAmountLess,
.quickViewAmountMore {
    position: relative;
    cursor: pointer;
    height: 100%;
}

.quickViewAmountLess::before,
.quickViewAmountMore::before {
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
}

.quickViewAmountLess::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M2.5 8H13.5' stroke='%233E454D' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.quickViewAmountMore::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M2.5 8H13.5' stroke='%233E454D' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8 2.5V13.5' stroke='%233E454D' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.quickViewATCButton {
    max-width: unset;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.quickViewATCButtonText,
.quickViewATCButtonPrice {
}

.quickViewATCButtonTextMobile {
    display: none;
}

.quickViewRightBottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.quickViewRightBottom > * {
    max-width: fit-content;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0.2px;
    text-decoration-line: underline;
}

.quickViewInfo {
}

@media (max-width: 800px) {

    .quickView {
        place-content: end;
    }

    .quickView::-webkit-scrollbar,
    .quickViewInner::-webkit-scrollbar {
        display: none;
    }

    .quickViewInner {
        position: fixed;
        bottom: -100%;
        left: 0;
        flex-direction: column;
        gap: 0;
        align-items: unset;
        width: 100vw;
        max-height: 90vh;
        padding: 24px 16px;
        animation: 400ms ease forwards quickViewUp;
        overflow-y: auto;
    }


    @keyframes quickViewUp {
        from {
            bottom: -100%;
        }
        to {
            bottom: 0;
        }
    }

    .quickViewATCButtonMobile {
        display: block;
        color: var(--grey-900);
        font-size: 18px;
        font-weight: 500;
        line-height: 28px;
        letter-spacing: 0.2px;
        margin-bottom: 20px;
    }

    .quickViewATCButtonMobile.disabled {
        pointer-events: none;
    }

    .quickViewExit svg {
        top: 24px;
        width: 20px;
        height: 20px;
    }

    .quickViewSuccessful {
        position: relative;
        left: -16px;
        top: -24px;
        translate: 0 0;
        width: calc(100% + 32px);
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.10);
    }

    .quickViewSuccessful.active ~ .quickViewExit svg {
        top: 70px;
    }

    .quickViewLeft {
        max-width: unset;
        display: flex;
        gap: 16px;
        align-items: center;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--grey-300);
    }

    .quickViewImagesItem {
        max-width: 100px;
    }

    .quickViewLeftContent {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .quickViewRight {
        max-width: unset;
    }

    .quickViewRightContent {
        display: none;
    }

    .quickViewLeftContentTop {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 32px;
    }

    .quickViewTitle {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 0.2px;
    }

    .quickViewReview {
        margin-bottom: 0;
    }

    .quickViewLabel {
        color: var(--brand-navy);
        margin-bottom: 0;
        font-size: 12px;
        line-height: 16px;
    }

    .quickViewATC {
        flex-direction: column;
        justify-content: center;
        gap: 16px;
    }

    .quickViewAmount {
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
    }

    .quickViewAmountDisplay {
        justify-self: center;
    }

    .quickViewAmountLess,
    .quickViewAmountMore {
        width: 100%;
    }

    .quickViewAmountLess::before,
    .quickViewAmountMore::before {
        width: 100%;
        background-repeat: no-repeat;
        background-position: center;
    }

    .quickViewATCButtonText {
        display: none;
    }

    .quickViewATCButtonTextMobile {
        display: block;
    }
}

/**************************
---- Simple Product Card --
***************************/

.simpleProductCard {
    max-width: 309px;
    width: 100%;
    height: 100%;
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.simpleProductCardImageContainer {
    position: relative;
    margin-bottom: 16px;
}

.simpleProductCardImage,
.simpleProductCardImageVariantsItem,
.simpleProductCardImageHover {
    object-fit: cover;
    aspect-ratio: 1;
}

.simpleProductCardImageVariantsItem {
    display: none;
}

.simpleProductCardImageVariantsItem.active {
    display: block;
}

.simpleProductCardImageHover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 30;
    opacity: 0;
    transition: opacity ease 500ms;
}

.simpleProductCardImageContainer:hover
.simpleProductCardImageHover {
    opacity: 1;
}

.simpleProductCardTitle {
    color: var(--grey-900);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .4px;
    margin: 10px 0 auto;
    /* shorten titles */
    white-space: nowrap;
    max-width: 26ch;
    text-overflow: ellipsis;
    overflow: hidden;
}

.simpleProductCardBlock {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    gap: 12px;
    margin: 16px 0 0;
}

.simpleProductCardBlock.active {
    margin: 16px 0 12px;
}

.simpleProductCardVariant {
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    overflow: hidden;
}

.simpleProductCardVariant img {
    border-radius: 50%;
}

.simpleProductCardVariant.active {
    border: 1px solid var(--brand-navy);
    padding: 4px;
    background-color: #fff;
}

.simpleProductCardVariant.overflow {
    position: relative;
}

.simpleProductCardVariant.overflow::after {
    position: absolute;
    content: attr(data-count);
    left: 50%;
    top: 50%;
    translate: -50% -50%;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.simpleProductCardBlockDrop {
    display: grid;
    grid-template-rows: 0fr;
    transition: ease .3s;
}

.simpleProductCardBlock.active
+ .simpleProductCardBlockDrop {
    grid-template-rows: 1fr;
}

.simpleProductCardBlockDrop > div {
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    gap: 12px;
}

.simpleProductCardPrice {
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: .4px;
    margin-top: 20px;
}

@media (max-width: 800px) {

    .simpleProductCard {
        max-width: 600px;
    }

    .simpleProductCardImageContainer {
        margin-bottom: 12px;
    }

    .simpleProductCardImageContainer:hover
    .simpleProductCardImageHover {
        opacity: 0;
    }

    .simpleProductCardTitle {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 0.2px;
    }

    .simpleProductCardBlock {
        max-width: 173px;
        margin-bottom: 12px;
    }

    .simpleProductCardVariant {
        width: 20px;
        height: 20px;
    }

    .simpleProductCardVariant.active {
        padding: 2px;
    }

    .simpleProductCardPrice {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 0.2px;
    }
}

/*****************
---- Side Menu --
******************/

#sideMenu {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--grey-300);
    width: 230px;
    color: var(--grey-900);
    flex-shrink: 0;
}

.sideMenuItem {
    display: flex;
    width: 100%;
    padding: 18px 24px;
    font-size: 16px;
    transition: .6s;
}

.sideMenuItem:hover {
    background-color: var(--grey-200);
    transition: .4s;
}

.sideMenuItem.active {
    background-color: var(--grey-100);
    border-left: 6px solid var(--grey-300);
    font-weight: 500;
}

#sideMenuMobile {
    display: none;
}

@media (max-width: 800px) {

    #sideMenu {
        display: none;
    }

    #sideMenuMobile {
        display: flex;
        width: 100%;
        margin: 24px 0 16px;
        color: var(--grey-900);
    }

    .sideMenuMobile {
        padding: 18px 24px;
        width: 100%;
        cursor: pointer;
        background-color: var(--grey-100);
    }

    .sideMenuMobileTop {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 500;
        text-align: left;
        font-size: 14px;
    }

    .sideMenuMobileTopWrap {
        padding: 6px;
        width: 32px;
        height: 32px;
        border-radius: 16px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .sideMenuMobileTopWrap svg {
        width: 20px;
        transition: transform ease 300ms;
    }

    .sideMenuMobileTopWrap.active svg {
        transform: rotate(135deg);
    }

    .sideMenuMobileBottom {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows ease 300ms;
        text-align: left;
    }

    .sideMenuMobileBottom.active {
        grid-template-rows: 1fr;
    }

    .sideMenuMobileBottomWrap {
        overflow: hidden;
    }

    .sideMenuMobileBottomWrapContent {
        display: flex;
        flex-direction: column;
    }

    .sideMenuMobileBottomWrapContentLink {
        padding: 10px 0;
        font-size: 14px;
        font-weight: 500;
    }

}

/*******************
---- Notification --
********************/

#notification {
    place-content: center;
    width: 100vw;
    height: 100vh;
}

#notification[open] {
    display: grid;
}

#notificationInner {
    padding: 60px;
    position: relative;
    max-width: 600px;
    width: 100%;
    background-color: #fff;
}

#notificationContent {
}

#notificationInner.success
#notificationContent {
    display: none;
}

#notificationExit {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    cursor: pointer;
}

#notificationTitle,
#notificationTitleConfirmed {
    color: var(--grey-900);
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 20px;
}

#notificationForm {
    margin-bottom: 20px;
}

.notificationInput {
    border-radius: 100px;
    border: 1px solid var(--grey-200);
    padding: 13px 24px;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.2px;
    margin-bottom: 20px;
}

.notificationInput::placeholder {
    color: var(--grey-500);
}

#notificationLabel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.2px;
    padding-left: 5px;
}

#notificationLabel * {
    width: fit-content;
}

#notificationLabelCheck {
    max-width: fit-content;
    accent-color: var(--brand-navy);
    transform: scale(1.5);
}

#notificationInfo {
    color: var(--grey-900);
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0.2px;
    margin-bottom: 20px;
}

#notificationInfo span {
    color: var(--grey-700);
    font-weight: 400;
    margin-bottom: 20px;
}

#notificationBtn,
#notificationBtnConfirmed {
    max-width: unset;
}

#notificationContentConfirmed {
    display: none;
}

#notificationInner.success
#notificationContentConfirmed {
    display: block;
}

@media (max-width: 800px) {

    #notificationInner {
        padding: 24px 16px;
        position: fixed;
        bottom: -100%;
        animation: 400ms ease forwards notificationUp;
        max-width: 100vw;
    }

    @keyframes notificationUp {
        from {
            bottom: -100%;
        }
        to {
            bottom: 0;
        }
    }

    #notificationExit {
        top: 24px;
        width: 20px;
    }

    #notificationTitle,
    #notificationTitleConfirmed {
        text-align: start;
        font-size: 18px;
        line-height: 28px;
        letter-spacing: 0.2px;
        margin-bottom: 16px;
    }

    #notificationForm,
    .notificationInput,
    #notificationLabel,
    #notificationInfo {
        margin-bottom: 16px;
    }

}

/****************
---- Pack Size --
*****************/

#packSize {
    place-content: center;
}

#packSize[open] {
    display: grid;
}

#packSizeInner {
    padding: 60px;
    background-color: #fff;
    position: relative;
    max-width: 700px;
    width: 100%;
}

#packSizeExit {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    cursor: pointer;
}

#packSizeTitle {
    color: var(--grey-900);
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 40px;
}

#packSizeBlock {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

.packSizeItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    flex: 1;
}

.packSizeItemBottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.packSizeItemImage {
    object-fit: cover;
}

.packSizeItemTitle {
    color: var(--grey-900);
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
}

.packSizeItemText {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.2px;
}

#packSizeBtn,
#packSizeQuiz {
    max-width: unset;
}

#packSizeBtn {
    margin-bottom: 16px;
}

#packSizeQuiz span {
    margin-left: 20px;
}

@media (max-width: 800px) {

    #packSizeInner {
        padding: 24px 16px;
        position: fixed;
        bottom: -100%;
        left: 0;
        max-width: 100vw;
        animation: 400ms ease forwards packSizeUp;
    }

    @keyframes packSizeUp {
        from {
            bottom: -100%;
        }
        to {
            bottom: 0;
        }
    }

    #packSizeExit {
        top: 24px;
        width: 20px;
    }

    #packSizeTitle {
        text-align: start;
        font-size: 18px;
        line-height: 28px;
        letter-spacing: 0.2px;
        margin-bottom: 20px;
    }

    #packSizeBlock {
        flex-direction: column;
        align-items: unset;
        justify-content: center;
        gap: 16px;
        margin-bottom: 20px;
    }

    .packSizeItem {
        flex-direction: row;
        gap: 16px;
        padding-top: 16px;
        border-top: solid 1px var(--grey-300);
    }

    .packSizeItemBottom {
        text-align: start;
        gap: 12px;
        align-items: unset;
    }

    .packSizeItemImage {
        max-width: 78px;
    }

    .packSizeItemTitle {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0.4px;
    }

}

/*******************
---- Video Helper --
********************/

.videoHelper {
    position: relative;
    cursor: pointer;
    max-width: fit-content;
    margin: 0 auto;
}

.videoHelperCover {
    position: absolute;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    z-index: 8;
    background-color: rgba(0, 0, 0, 0.3);
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    transition: background-color ease 400ms;
    pointer-events: none;
}

.videoHelper.active .videoHelperCover {
    background-color: transparent;
}

.videoHelperPlay {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    cursor: pointer;
    transition: all ease 400ms;
    pointer-events: none;
    z-index: 10;
}

.videoHelper.active .videoHelperPlay {
    opacity: 0;
    transform: scale(0);
    transform-origin: center;
}

.tolstoy-stories-previous-button, .tolstoy-stories-next-button {
    width: unset !important;
}

/*******************
---- Display Card --
********************/

.displayCardLogo {
    display: flex;
    gap: 12px;
    align-items: center;
    max-width: fit-content;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    padding: 42px 40px;
}

.displayCardLogoImg {
    width: 100%;
    height: 100%;
    max-width: 130px;
    object-fit: contain;
}

.displayCardLogoText {
    font-size: 14px;
    text-transform: uppercase;
    line-height: 20px;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 2px;
    border-radius: 21px;
    border: 1px solid #FFFFFF;
    padding: 4px 8px;
}

.fullOverlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #00000033;
}

.displayCardImage,
.displayCardImageContent {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.colorsDisplayLogoText {
    font-size: 14px;
    text-transform: uppercase;
    line-height: 20px;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 2px;
    border-radius: 21px;
    border: 1px solid #FFFFFF;
    padding: 4px 8px;
}

.displayCardContentWrapper {
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
    position: absolute;
    align-items: end;
    z-index: 2;
    width: 100%;
    max-height: 93%;
    height: 100%;
    padding: 0 40px;
    display: flex;
}

.displayCardContent {
    display: flex;
    flex-direction: column;
    color: #ffffff;
    width: 100%;
    max-width: 640px;
    font-weight: 400;
}

.displayCardContentSubtitle {
    font-size: 14px;
    text-transform: uppercase;
    line-height: 20px;
    margin-bottom: 4px;
}

.displayCardContentTitle {
    font-size: 48px;
    font-weight: 500;
    line-height: 60px;
    margin-bottom: 8px;
}

.displayCardContentDescription {
    font-size: 18px;
    line-height: 28px;
}

.displayCardContentButtons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.displayCardContentButtons a {
    padding: 12px 32px;
    max-width: fit-content;
    background-color: #fff;
    color: #000;
    border-radius: 35px;
}

.displayCardContentButtons a:nth-child(2) {
    background-color: #0000004D;
    border: 1px solid #6B7280;
    color: #FFFFFF;
}

@media (max-width: 800px) {
    .displayCardLogo {
        padding: 42px 20px;
    }

    .displayCardContent {
        max-width: unset;
    }

    .displayCardContentTitle {
        font-size: 36px;
        line-height: 46px;
    }

    .displayCardContentWrapper {
        padding: 0 20px;
    }

    .displayCardContentButtons {
        justify-content: center;
    }

    .displayCardContentButtons a {
        max-width: unset;
    }
}

@media (max-width: 500px) {

    .displayCardContent {
        max-width: unset;
    }

    .displayCardContentTitle {
        font-size: 30px;
        line-height: 38px;
    }

    .displayCardContentDescription {
        font-size: 16px;
        line-height: 24px;
    }

    .displayCardContentButtons {
        flex-direction: column;
        justify-content: center;
    }
}

/**********************
---- Suggestion Item --
***********************/

.sugItem {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: .3s;
}

.sugItem:hover {
    box-shadow: 5px 6px 6px rgba(30, 34, 51, 0.2);
}

.sugItemImageContainer {
    display: block;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    margin-bottom: 12px;
}

.sugItemImageVariant {
    display: none;
}

.sugItemImageVariant.active {
    display: block;
}

.sugItemImageHover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 30;
    opacity: 0;
    transition: opacity ease 500ms;
}

.sugItemImageContainer:hover
.sugItemImageHover {
    opacity: 1;
}

.sugItemImage {
}

.sugItemWish {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 30;
    background-color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: grid;
    place-content: center;
}

.sugItemWish .wishlistUnsaved,
.sugItemWish .wishlistSaved,
.sugItemWish .wishlistUnsaved svg,
.sugItemWish .wishlistSaved svg {
    width: 20px;
    height: 20px;
}

.sugItemWish .wishlistAdd.active .wishlistUnsaved,
.sugItemWish .wishlistSaved {
    display: none;
}

.sugItemWish .wishlistAdd.active .wishlistSaved {
    display: block;
}

.sugItemBlock {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    position: relative;
    margin-bottom: 12px;
    padding-right: 40px;
}

.sugItemVariant {
    cursor: pointer;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid transparent;
    padding: 0;
    display: grid;
    place-content: center;
}

.sugItemVariant.overflow {
    display: none;
}

.sugItemBlock.active
.sugItemVariant.overflow {
    display: block;
}

.sugItemVariant.active {
    border-color: #000;
    padding: 2px;
}

.sugItemVariant img {
    border-radius: 50%;
}

.sugItemVariantToggle {
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    transition: ease .3s;
    position: absolute;
    top: 0;
    right: 20px;
}

.sugItemBlock.active .sugItemVariantToggle {
    transform: rotate(135deg);
}

.sugItemCollection {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 4px;
}

.sugItemCollection:empty {
    display: none;
}

.sugItemTitle {
    font-size: 18px;
    color: #111827;
    margin-bottom: 8px;
}

.sugItemPrice {
    font-size: 20px;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 4px;
}

.sugItemPrice.addToCart {
    margin-bottom: 10px;
}

.sugItemPriceReal {
    font-weight: 700;
}

.sugItemPriceCompare {
    color: #6B7280;
    font-size: 14px;
    text-decoration: line-through;
}

.sugItemATC {
    margin: auto 0 4px;
    max-width: calc(100% - 4px);
    border-radius: 4px;
}


@media (max-width: 800px) {


    .sugItem:hover {
        box-shadow: 0 0 transparent;
    }

    .sugItemImageContainer {
        /*max-width: 220px;*/
    }

    .sugItemImageHover {
        display: none;
    }

    .sugItemWish {
        top: 8px;
        right: 8px;
        width: 32px;
        height: 32px;
    }

    .sugItemWish .wishlistUnsaved,
    .sugItemWish .wishlistSaved,
    .sugItemWish .wishlistUnsaved svg,
    .sugItemWish .wishlistSaved svg {
        width: 16px;
        height: 16px;
    }

    .sugItemVariant.overflow,
    .sugItemBlock.active
    .sugItemVariant.overflow,
    .sugItemBlock.active
    .sugItemVariant.overflowMobile {
        display: block;
    }

    .sugItemVariant.overflow,
    .sugItemVariant.overflowMobile {
        display: none;
    }
}

@media (max-width: 400px) {
    .sugItemVariant.overflow,
    .sugItemBlock.active
    .sugItemVariant.overflow,
    .sugItemVariant.overflowMobile,
    .sugItemBlock.active
    .sugItemVariant.overflowMobile,
    .sugItemBlock.active
    .sugItemVariant.overflowSmallMobile {
        display: block;
    }

    .sugItemVariant.overflowSmallMobile {
        display: none;
    }
}

/*-- Suggestion Item Selector --*/

.sugItemSelector {
    display: none;
}

.sugItemSelector[open] {
    display: grid;
    place-items: center;
}

.sugItemSelectorInner {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 100%;
    width: 100%;
    max-width: 430px;
    animation: slide-in ease .4s forwards;
    background-color: #fff;
    color: #111827;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.sugItemSelectorExit {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0;
    cursor: pointer;
    max-width: fit-content;
}

.sugItemSelectorExit svg {
    width: 26px;
    height: 26px;
}

@keyframes slide-in {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.sugItemSelectorTop {
    display: grid;
    align-items: center;
    grid-template-columns: 60px 1fr;
    gap: 12px;
    padding: 24px 20px 16px;
    border-bottom: 1px solid #E3E3E3;
}

.sugItemSelectorImage {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    aspect-ratio: 1;
}

.sugItemSelectorTopInfo {
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: #000;
    font-weight: 600;
}

.sugItemSelectorVariants {
    padding: 16px 12px;
}

.sugItemSelectorVariantsItem {
    border-radius: 4px;
    display: grid;
    align-items: center;
    grid-template-columns: 24px 1fr;
    gap: 12px;
    padding: 12px 8px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.sugItemSelectorVariantsItem input {
    display: none;
}

.sugItemSelectorVariantsItemImage {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background-color: #fff;
    transition: ease .3s;
    border: 0 solid #000;
}

.sugItemSelectorVariantsItem input:checked
~ .sugItemSelectorVariantsItemImage {
    border-width: 1px;
    padding: 1px;
}

~ .sugItemSelectorVariantsItemTitle {
    color: #232323;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}

.sugItemSelectorVariantsItem input:checked
~ .sugItemSelectorVariantsItemTitle::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: #F3F3F3;
}

.sugItemSelectorBottom {
    padding: 20px;
    margin-top: auto;
    display: flex;
    align-items: center;
}

.sugItemSelectorBottomQuantity {
    border-radius: 4px 0 0 4px;
    border: 1px solid #030712;
    background: #FFF;
    display: grid;
    grid-template-columns: 20px 40px 20px;
    gap: 8px;
    padding: 8px 12px;
    align-items: center;
}

.sugItemSelectorBottomQuantityDisplay {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.2px;
    width: 100%;
    text-align: center;
    cursor: pointer;
}

.sugItemSelectorBottomQuantityLess,
.sugItemSelectorBottomQuantityMore {
    position: relative;
    cursor: pointer;
    height: 100%;
}

.sugItemSelectorBottomQuantityLess::before,
.sugItemSelectorBottomQuantityMore::before {
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
}

.sugItemSelectorBottomQuantityLess::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M2.5 8H13.5' stroke='%233E454D' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.sugItemSelectorBottomQuantityMore::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M2.5 8H13.5' stroke='%233E454D' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8 2.5V13.5' stroke='%233E454D' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.sugItemSelectorBottomATC {
    max-width: unset;
    border-radius: 0 4px 4px 0;
    background-color: #000;
}

.sugItemSelectorBottomATC.soldOut {
    background-color: var(--grey-500);
}

@media (max-width: 800px) {

    .sugItemSelectorInner {
        top: 100%;
        left: 0;
        bottom: unset;
        max-width: unset;
        max-height: 100%;
        border-radius: 16px 16px 0 0;
    }

    @keyframes slide-in {
        0% {
            transform: translateY(0);
        }
        100% {
            transform: translateY(-100%);
        }
    }
}

/************
BreadCrumbs
************/

.headerBreadcrumbs {
    display: flex;
    align-items: center;
    padding: 10px 0;
    max-width: 1320px;
    margin: 0 auto;
}

.headerBreadcrumb {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.4px;
    color: #6B7280;
    font-weight: 500;
}

.headerBreadcrumb.first {
    color: #111827;
}

.headerBreadcrumbSplit {
    margin: 0 4px;
    display: grid;
    place-content: center;
}

.headerBreadcrumbSplit svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 749px) {

    .headerBreadcrumb:last-child {
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
   .headerBreadcrumbs {
    padding: 20px 0 10px;
}
}
button.sugItemATC.disabedproductATCTextSoldout {
    opacity: .7;
    pointer-events: none;
    cursor: not-allowed;
      position: unset !important;
}