.social-share-popup {
    margin: 17px;
    margin-bottom: 0;
    min-width: 126px;
}

.social-share-popup .heading {
    margin-bottom: 17px;
    color: #585B58;
    font-family: var(--sf-font-sohne);
    font-size: 18px;
    letter-spacing: 0;
    line-height: 28px;
}

.social-share-popup ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.social-share-popup ul li {
    padding-bottom: 17px;
    white-space: nowrap;
    display: flex;
    grid-gap: 10px;
    gap: 10px;
}

.social-share-popup ul li a {
    color: #58595B;
    font-family: var(--sf-font-sohne);
    font-size: 14px;
}

.social-share-popup ul li a:hover {
    text-decoration: underline;
}

.social-mobile-popup {
    background: #fff;
    position: fixed;
    width: calc(100% - 24px);
    margin-left: 12px;
    z-index: 100;
    padding: 10px 0;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.25);
    border: 1px solid #DCDEE1;
    border-radius: 4px;
    left: 0;
    bottom: 60px;
}

.social-mobile-popup .close {
    left: auto;
    right: 0;
}

.icon-wrapper {
    min-height: 36px;
    min-width: 36px;
}
.MMBModal * {
    font-weight: unset;
}

.MMBModalWrapper {
    width: 380px;
}

.MMBModal {
    display: flex;
    width: 100%;
    margin: 0 auto;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    font-family: var(--sf-font-sohne);
    padding: 32px 24px 0;
}

.MMBModal header {
    font-size: var(--font-size-subtitle);
    font-family: var(--sf-font-sohne-b);
    text-align: center;
    margin-bottom: 24px;
    text-transform: capitalize;
}

.MMBModal ul {
    margin: 23px 0 0;
    padding: 0;
    list-style: none;
}

.MMBModal li {
    margin-bottom: 19px;
}

.MMBModal li>span {
    font-family: var(--sf-font-sohne-b);
    display: block;
}

.MMBModal li strong {
    font-family: var(--sf-font-sohne-sb);
}

.MMBModal ul a {
    font-size: var(--font-size-tiny);
    text-decoration: underline;
}

.MMBModal ul a:hover {
    text-decoration: none;
}

.MMBModal sup {
    color: var(--color-blue);
    position: relative;
    top: 5px;
}

.MMBModal .button {
    margin: 15px auto 35px;
}

@media (max-width: 768px) {
    .MMBModalWrapper {
        height: 100vh;
        width: 100vw;
    }

    .MMBModalWrapper.sf-modal .close-button {
        top: 15px;
        margin-top: 50px;
    }

    .MMBModalWrapper.sf-modal .close-button:before,
    .MMBModalWrapper.sf-modal .close-button:after {
        background-color: var(--gray-medium)
    }

    .MMBModal {
        margin-top: 50px;
        margin-bottom: auto;
    }
}
.CollapsibleContent {
    display: flex;
    flex-flow: column nowrap;
    margin: 16px 0px;
}

.CollapsibleContent>.content {
    margin: 0;
    padding: 5px 0px;
    display: flex;
    flex-direction: column;
}

.CollapsibleContent:hover,
.CollapsibleContent:not(.disableFoldable):hover {
    cursor: pointer;
}

.CollapsibleContent header {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    border-bottom: solid 1px #dcdee1;
    height: 36px;
    margin: 2px;
    border: 0;

}

.CollapsibleContent:not(.disableFoldable) header:hover {
    border-color: var(--gray-medium);
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.2);
}

.CollapsibleContent:not(.disableFoldable) header:hover h4 {
    text-decoration: underline;
}

.CollapsibleContent header:focus {
    outline: solid 1px var(--deep-carrot);
}

.CollapsibleContent:not(.disableFoldable) header:focus {
    outline: solid 1px var(--deep-carrot);
    outline-offset: 1px;
}

.CollapsibleContent:not(.disableFoldable) header:active {
    background: rgba(0, 0, 0, 0.1);
    box-shadow: none;
    outline: none;
    border-bottom: solid 1px #dcdee1;
}

.CollapsibleContent header .store-h4 {
    display: flex;
    text-transform: uppercase;
    flex-flow: row;
    justify-content: flex-start;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    margin: 0px 0px;
    padding: 0px;
    line-height: 21px;
    font-weight: unset;
    font-family: var(--sf-font-sohne-b);
    color: var(--gray-medium);
}

.CollapsibleContent header a {
    --height: 2px;
    --width: 16px;
    display: flex;
    position: relative;
    width: 22px;
    height: 22px;
    color: transparent;
    flex: 0 0 auto;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    overflow: hidden;
    margin-right: 8px;
}

.CollapsibleContent header:hover a,
.CollapsibleContent header:active a {
    color: transparent;
    background: var(--gray-medium);
    border-radius: 4px;
}

.CollapsibleContent.open header:hover a {
    background-color: var(--gray-medium);
}

.CollapsibleContent.open header:hover a::after {
    background-color: #fff;
}

.CollapsibleContent.open header a::after,
.CollapsibleContent.open header a::before {
    background-color: var(--gray-medium);
}

.CollapsibleContent header a::after,
.CollapsibleContent header a::before {
    background-color: var(--gray-medium);
}

.CollapsibleContent:not(.open) header a::before,
.CollapsibleContent:not(.open) header a::after {
    background-color: var(--gray-medium);
}

.CollapsibleContent:not(.open) header:hover a::before,
.CollapsibleContent:not(.open) header:hover a::after {
    background-color: #fff;
}

.CollapsibleContent header a::after {
    content: '';
    position: absolute;
    width: var(--width);
    height: var(--height);
    top: calc(50% - (var(--height) * 0.5));
    right: calc(50% - (var(--width) * 0.5));
}

.CollapsibleContent:not(.open) header a::before {
    content: '';
    position: absolute;
    width: var(--height);
    height: var(--width);
    right: 1px;
    top: calc(50% - var(--width) * 0.5);
    right: calc(50% - var(--height) * 0.5);
}
@media screen and (max-width: 480px){
    .CollapsibleContent header .filterLabelAb{
        text-transform: capitalize;
    }
}
.PagePrice {
    display: flex;
    flex-flow: row wrap;
    flex: 1 1 100%;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: var(--font-size-small);
    line-height: 15px;
    font-style: normal;
    font-family: var(--sf-font-sohne);
    height: auto;
    padding: 8px 0 0 0;
    margin: 8px 0;
}

.PagePrice span {
    margin: 0;
    padding: 0;
    display: block;
}

.PagePrice em {
    font-style: normal;
    margin: 0 5px 0 0;
}

.PagePrice em:first-child {
    text-decoration: line-through;
}

.PagePrice em:last-child {
    text-decoration: none;
}

.PagePrice em:nth-child(2) {
    color: #CC0000;
}

.PagePrice>span+span {
    margin-left: 5px;
}

.PagePrice .break {
    flex-basis: 100%;
    margin: 0;
    width: 0;
}

.PagePrice .designer {
    text-transform: uppercase;
    font-size: 9px;
    line-height: 12px;
    font-family: var(--sf-font-sohne-sb);
    letter-spacing: 1px;
    margin: 4px 0 0 0;
}

@media screen and (max-width: 767px) {
    .PagePrice {
        display: inline-grid;
        flex: none;
        font-size: var(--font-size-tiny);
        line-height: 15px;
        border-top: none;
        margin: 0;
        padding: 0;
    }

    .PagePrice>span+span {
        margin-left: 0;
    }


    .PagePrice .designer {
        font-size: 8px;
        line-height: 12px;
        margin: 4px 0 0 0;
    }
}
.AfterPay {
    display: flex;
    min-width: 195px;
}

.AfterPay afterpay-placement {
    font-family: Sans-Serif;
    -webkit-margin-before: 0px;
            margin-block-start: 0px;
    -webkit-margin-after: 0px;
            margin-block-end: 0px;
}

@media screen and (max-width: 767px) {
    .AfterPay {
        flex: auto;
    }
}

.social-share-icons {
    display: flex;
    white-space: nowrap;
    text-decoration: none;
    grid-gap: 10px;
    gap: 10px;
    justify-content: center;
    align-items: center;
}



/*# sourceMappingURL=storefe_3.15ca37758ccf9c.css.map*/