.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;
    }
}
.checkboxContainer {
    margin: 5px 0 5px 0;
    display: grid;
    grid-template-columns: 30px auto;
}

.checkboxContainer input[type="checkbox"] {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: #fff;
    width: 16px;
    height: 16px;
    border: 1px solid var(--checkbox-color);
    border-radius: 4px;
    transform: translateY(-1px);
    display: grid;
    place-content: center;
    outline: solid 1px transparent;
    outline-offset: 1px;
}

.checkboxContainer input[type="checkbox"]:not(:disabled):hover {
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.20);
}

.checkboxContainer input[type="checkbox"]:not(:disabled):focus {
    outline: solid 1px var(--deep-carrot);
    outline-offset: 1px;
}

.checkboxContainer input[type="checkbox"]:active {
    box-shadow: 0px 0px 250px 0px rgba(0, 0, 0, 0.10) inset;
}

.checkboxContainer input[type="checkbox"]:disabled, .checkboxContainer input[type="checkbox"]:disabled + label {
    opacity: 0.5;
    cursor: default;
}

.checkboxContainer input[type="checkbox"]::before {
    content: "";
    width: 8px;
    height: 8px;
    transform: scale(0);
    background-color: var(--gray-medium);
    -webkit-clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
            clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.checkboxContainer input[type="checkbox"]:checked {
    box-shadow: inset 0 0 0 1px var(--gray-medium);
    border-color: var(--gray-medium);
}

.checkboxContainer input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.inline-loading {
    display: inline-block;
    margin: 0 10px;
}
.Loading {
    display: flex;
    flex-flow: column nowrap;
    flex: none !important;
    justify-content: center;
    align-items: center;
    color: #58595B;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 17px;
    z-index: 0;
}

.Loading .indicator {
    display: flex;
    align-items: center;
    width: 40px;
    height: 40px;
    margin: 0 !important;
    position: relative;
    box-sizing: border-box;
    background: #fff;
    background-clip: padding-box;
    border: solid 5px transparent;
    border-radius: 50%;    
}

.inline-loading.inside-container  {
    display: inline-block;
    margin: 0 -5px 0 5px;
}

.inside-container .Loading {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    height: 22px;
    width: 22px;
}

.inside-container .Loading .indicator {
    box-sizing: border-box;
    height: 19px;
    width: 19px;
    border: 2px solid rgb(112, 31, 25);
    transform: scaleX(-1) scaleY(-1);
    background: none;
}

.inside-container .Loading .indicator:before{
   display:none;
}

.inside-container .Loading .indicator:after{
    content: " ";
    display: block;
    width: 17px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid #fff;
    border-color: #fff transparent transparent transparent;
    animation: rotate 1s linear 0s infinite;
 }

.Loading .indicator:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -3px;
    border-radius: inherit;
    background: linear-gradient(to right, #fff, #f05323);
    animation: rotate 1s linear 0s infinite;
}

@keyframes rotate { 
    100% { 
        transform:rotate(360deg); 
    } 
}
.error-info-component {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

.error-info-component .info-icon {
    margin-right: 5px;
    height: 42px;
}

.error-info-component .error-message {
    color: #585B58;
    font-family: var(--sf-font-sohne-md);
    font-size: var(--font-size-default);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 21px;
    width: 730px;
    height: 42px;
    padding: 30px 0;
}

@media screen and (max-width: 767px) {
    .error-info-component .error-message {
        height: 84px;
        width: 278px;
    }

    .error-info-component .info-icon {
        height: 84px;
    }
}
fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0
}

legend {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: .5rem;
    font-size: 1.5rem;
    line-height: inherit
}

legend.hidden-color-swatch {
    display: none
}

.color-swatches {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 2px 0 2px;
    z-index: 20;
}

.cs-skeleton-loader {
    margin: 16px 4px 2px;
}

@media screen and (max-width: 500px) {
    .color-swatches {
        flex-wrap: wrap;
    }
}

.color-swatches .color-swatch , .color-swatches .color-swatch .react-loading-skeleton {
    position: relative;
    margin: 1px 3px;
    border: 2px solid transparent;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    box-sizing: border-box;
}

.color-swatches .color-swatch.selected {
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-medium);
}

.color-swatches .color-swatch .swatch {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    line-height: 10px;
    border: 1px solid var(--gray-dark);
    box-sizing: border-box;
    box-shadow: 0 0 0 1px #fff;
    text-indent: -9999px;
}

@media (max-width: 991px) {
    .thumbnail.thumb-redesign .color-swatches {
        align-items: center;
    }

    .thumbnail.thumb-redesign .color-swatches .color-swatch {
        width: 22px;
        height: 22px;
        align-content: center;
    }

    .thumbnail.thumb-redesign .color-swatches .color-swatch.selected {
        display: inline-grid
    ;
    }

    .thumbnail.thumb-redesign .color-swatches .color-swatch:not(.dynamiccolor) {
        justify-items: center;
    }

    .thumbnail.thumb-redesign .color-swatches .color-swatch:has(.dynamiccolor) {
        border: none;
    }

    .thumbnail.thumb-redesign .color-swatches .color-swatch .swatch {
        width: 16px;
        height: 16px;
    }

    .thumbnail.thumb-redesign .thumbnail .Icon.dynamiccolor {
        width: 22px;
        height: 22px;
    }
}

@media screen and (min-width: 768px) {
    .color-swatches .color-swatch:hover {
        border-color: #fff;
        box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14), 0 3px 2px 0 rgba(0, 0, 0, 0.3), 0 0 0 1px var(--gray-medium);
    }

    .color-swatches .color-swatch.action-more:hover {
        box-shadow: none;
    }
}

.color-swatches .color-swatch .swatch.rosegoldfoil {
    background: var(--color-brown);
    background: linear-gradient(45deg, var(--color-brown), var(--brown-light));
}

.color-swatches .color-swatch .swatch.goldfoil {
    background: var(--color-golden);
    background: linear-gradient(45deg, var(--color-golden), var(--golden-light));
}

.color-swatches .color-swatch .swatch.silverfoil {
    background: var(--color-grey);
    background: linear-gradient(45deg, var(--gray-deep), var(--gray-light));
}

.color-swatches .color-swatch .swatch.redfoil {
    background: var(--gray-deep);
    background: linear-gradient(45deg, var(--gray-deep), var(--red-deep) 0, var(--gray-red));
}

.color-swatches .color-swatch .swatch.custom-color {
    background: conic-gradient(red, yellow, lime, aqua, blue, magenta, red);
}

.color-swatches .color-swatch .swatch.none:after {
    content: '';
    display: block;
    position: absolute;
    width: 1px;
    height: 22px;
    background: #C6C7C9;
    left: 50%;
    transform: rotate(135deg);
}

.color-swatches .color-swatch .swatch.iridescent {
    background: linear-gradient(48deg,
            #e3c1f4,
            #d9d7ed,
            #dff7f1,
            #acf0ff,
            #e3c1f4,
            #d9d7ed,
            #dff7f1,
            #acf0ff,
            #e3c1f4);
}

.color-swatches .color-swatch .swatch.multi {
    background: linear-gradient(135deg, #a82dd8, #6aa8dd 17%, #70e5b2 33%, #bced42 50%, #ede740 66%, #e88e4a 83%, #e54040);
}

.color-swatches .color-swatch .color-tooltip {
    display: none;
    font-size: 13px;
    border: 1px solid var(--gray-dark);
    margin-left: -14px;
    margin-top: 10px;
    pointer-events: none;
    position: absolute;
    width: 240px;
    background-color: var(--color-white);
    padding: 10px;
    z-index: 300;
    text-align: left;
    border-radius: 5px;
    font-family: var(--sf-font-sohne);
}

.color-swatches .color-swatch.action-more .color-tooltip {
    font-size: 14px;
    width: 133px;
    text-align: center;
}

.color-swatches .color-swatch .color-tooltip strong {
    display: block;
    margin: 8px 0 4px;
}

.color-swatches .color-swatch:hover .color-tooltip {
    display: block;
}

.color-swatches .color-swatch .color-swatch-input {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    height: 0;
    width: 0;
    opacity: 0
}

.color-swatches .color-swatch .color-swatch-input:focus+.swatch {
    outline: 1px dotted var(--color-black);
    outline: 5px auto -webkit-focus-ring-color
}

.color-swatches .color-swatch .arrow.top:before {
    left: 16px;
}

color-swatches .color-swatch.action-more .arrow.top:before {
    left: 20px;
}

@media screen and (max-width: 768px) {
    .color-swatches .color-swatch.action-more .color-tooltip {
        left: -100px;
    }

    .color-swatches .color-swatch.action-more .arrow.top:before {
        left: 117px;
    }
}
.body-wrapper.spf-filters .Sticky.top {
    position: relative !important;
    top: unset !important;
}

.FilterBar {
    display: flex;
    flex-flow: column nowrap;
    flex: 1 1 auto;
    line-height: 21px;
    font-size: var(--font-size-default);
    background-color: #fff;
    min-height: 36px;
}

.FilterBar.filterbar-skeleton {
    min-height: 55px;
}

.FilterBar .TopBar {
    display: flex;
    position: relative;
    flex-flow: row nowrap;
    flex: 1 1 auto;
    align-items: center;
    border-bottom: 1px solid #dcdee1;
    margin: 0 auto;
    max-width: 1600px;
    width: 100%;
    padding-bottom: 3px;
}

.FilterBar.filter-enabled .TopBar {
    display: none;
}

.FilterBar.filter-enabled.flyout .TopBar {
    display: flex;
}

.thumbnail-inner-wrapper:has(.flyout),
.thumbnail-inner-wrapper:has(.as-many-as-filters),
.thumbnail-inner-wrapper:has(.flag-off) {
    display: flex;
    flex-direction: column;
}

.thumbnail-inner-wrapper:has(.flyout) .filter-container {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 100;
}

.thumbnail-inner-wrapper .filter-container .FilterBar.left1 {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 100;
    height: 100vh;
    overflow-y: auto;
    margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
    .FilterBar.filter-enabled {
        padding: 0 25px;
    }

    .FilterBar.filter-enabled .TopBar {
        display: flex;
    }
}

.FilterBar.simple .TopBar {
    border: none;
}

.FilterBar .Filters {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: flex-start;
    padding: 0 8px 0 0;
    flex-flow: row nowrap;
    overflow-x: auto;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    min-height: 55px;
    overflow-y: hidden;
}

.FilterBar.as-many-as-filters .Filters {
    overflow-x: hidden;
    overflow-y: hidden;
    min-height: 45px;
}

.FilterBar.as-many-as-filters .Filters .dropdown-wrapper {
    visibility: hidden;
}

.FilterBar.as-many-as-filters .Filters .dropdown-wrapper.hide-filter {
    display: none;
}

.FilterBar.as-many-as-filters .Filters .dropdown-wrapper.show-filter {
    visibility: visible;
}

.Filters .filterDropDowns .dropdown-wrapper:first-child .DropDown {
    margin-left: 0px;
}

.FilterBar.as-many-as-filters .Filters .DropDown {
    border: 1px solid #dbdde1;
    line-height: 22px;
    padding: 2px 4px;
    margin-left: 16px;
}

.FilterBar.as-many-as-filters .Filters a.DropDown .arrowIcon {
    margin: 8px 6px;
}

.FilterBar .Filters .filterDropDowns {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-flow: row wrap;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    height: 28px;
    grid-row-gap: 35px;
    row-gap: 35px;
}

.FilterBar .SingleMobileFilter {
    padding: 0;
}

.FilterBar .Filters::-webkit-scrollbar {
    display: none;
}

.FilterBar .AllFilters label {
    text-transform: capitalize;
}

.FilterBar .filter-label-skeleton {
    width: 100px;
    height: 20px;
}

.FilterBar .AllFilters .checkBoxList input:checked+label {
    font-family: var(--sf-font-sohne-b);
}

.FilterBar .AllFilters .checkBoxList label {
    text-transform: none;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: var(--sf-font-sohne);
}

@keyframes slidein {
    from {
        left: -375px;
    }

    to {
        left: 0;
    }
}

.FilterBar .AllFilters .AllFilterTopBar {
    display: flex;
    flex-flow: row nowrap;
    margin-bottom: 8px;
    align-items: center;
    flex: 0 0 auto;
    border-bottom: 1px solid #dcdee1;
    box-sizing: border-box;
    background-color: #fff;
    z-index: 99;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    padding: 13px 15px 10px 15px;
}

.FilterBar .AllFilters .AllFilterBar {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    flex: 0 0 auto;
    padding: 0 15px;
}

.FilterBar:not(.filter-enabled) .hideVisibility {
    visibility: hidden;
    transform: translate(-100%);
}

.FilterBar:not(.filter-enabled) .AllFilters {
    overflow-y: auto;
    overflow-x: hidden;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 375px;
    background: white;
    animation: 0.5s ease-out slidein;
    box-sizing: border-box;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1), 0 5px 15px 0 rgba(0, 0, 0, 0.08);
}

.FilterBar:not(.filter-enabled) .AllFiltersBackGround {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 3;
}

DIV.filtern-fav-section {
    top: 0;
    left: 0;
    position: -webkit-sticky;
    position: sticky;
    z-index: 100;
}

section.sticky-enabled {
    box-shadow: 0 6px 3px -3px rgba(0, 0, 0, .3);
}

.FilterBar .AllFilters .AllFiltersHeader {
    z-index: 99;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.FilterBar .AllFilters .AllFilterTopBar.sticky {
    box-shadow: 0 3px 3px 0 rgb(0 0 0 / 20%);
}

@media screen and (max-width: 768px) {
    .FilterBar .hideVisibility {
        visibility: hidden;
        transform: translate(-100%);
    }

    .FilterBar .AllFilters .AllFilterTopBar.sticky {
        box-shadow: 0 3px 3px 0 rgb(0 0 0 / 20%);
        width: calc(100% + 24px);
        margin-left: -12px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .AllFiltersBackGround {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        z-index: 3;
    }

    .FilterBar .AllFilters {
        overflow-y: auto;
        overflow-x: hidden;
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        background: white;
        animation: 0.5s ease-out slidein;
        box-sizing: border-box;
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1),
            0 5px 15px 0 rgba(0, 0, 0, 0.08);
        padding: 0 12px;
    }

    .FilterBar:not(.filter-enabled) .AllFilters {
        width: 100vw;
    }
}

@media screen and (max-width: 480px) {
    .FilterBar .AllFilters .AllFiltersHeader.sticky {
        box-shadow: none;
    }

    .FilterBar .AllFilters .AllFilterTopBar.sticky {
        width: calc(100% + 24px);
        margin-left: -12px;
    }

    .FilterBar .AllFilters .SelectedFiltersTopBar.sticky {
        margin-left: -12px;
        top: 52px;
        position: -webkit-sticky;
        position: sticky;
        z-index: 999;
    }

    .FilterBar .AllFilters .SelectedFiltersTopBar.sticky .SelectedFilters {
        padding: 5px 0px;
        background: #ffffff;
        z-index: 99999999999;
    }

    .FilterBar .AllFilters .SelectedFiltersTopBar {
        box-shadow: 0px 5px 7px 0px rgba(0, 0, 0, 0.10);
        width: calc(100% + 24px);
        margin-left: -12px;
    }

    .SelectedFiltersTopBar .SelectedFilters li {
        margin: 9px 9px !important;
    }

    .SelectedFiltersTopBar .SelectedFilters {
        padding-bottom: 6px;
        background: #ffffff;
    }

    .ThumbnailPage.bttEnabled .FilterBar .AllFilters .AllFilterTopBar {
        width: calc(100% + 24px);
        margin-left: -12px;
        margin-bottom: 0px
    }

    .FilterBar .TopBar .ShowAll {
        margin-bottom: 0px;
        margin-top: 0px;
        border: none;
        padding-left: 0px;
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .FilterBar .TopBar a.ShowAll .label {
        font-size: 16px;
        font-weight: bold;
        color: #241F16;
    }

    .SelectedFiltersTopBar .clearAll {
        display: none;
    }
}

.FilterBar .AllFilters .AllFilterBar .CollapsibleContent {
    border: none;
    margin: 0;
}

.FilterBar .AllFilters .AllFilterBar .CollapsibleContent.open .content {
    padding-bottom: 17px;
}

.FilterBar .AllFilters .AllFilterBar .CollapsibleContent .hideContent {
    transform: translate(-100%);
    position: absolute;
    visibility: hidden;
    left: 0px;
}

.FilterBar .AllFilters .AllFilterBar .CollapsibleContent header:hover {
    box-shadow: none;
}

.FilterBar .AllFilters .AllFilterTopBar .label {
    display: flex;
    text-transform: capitalize;
    font-size: var(--font-size-subtitle);
    font-family: var(--sf-font-sohne-sb);
    color: var(--text-color);
}

.FilterBar .AllFilters .AllFilterTopBar .ClearAllButton {
    margin: 0 15px 0 0;
    border: none;
    border-bottom: 1px solid var(--gray-medium);
    border-radius: 4px;
    background: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    cursor: pointer;
}

.FilterBar .AllFilters .AllFilterTopBar .ClearAllButton .label {
    font-family: var(--sf-font-sohne-b);
    font-size: var(--font-size-default);
}

.FilterBar .AllFilters .AllFilterTopBar .CloseIcon {
    cursor: pointer;
    padding: 5px 10px;
    border: none;
    background: var(--deep-carrot);
    display: none;
    border-radius: 24px;
    color: #fff;
    font-size: 14px;
}

.FilterBar .AllFilters .AllFilterTopBar .CloseIcon-Web {
    display: none;
}

.FilterBar:not(.filter-enabled) .AllFilterTopBar .CloseIcon-Web {
    display: block;
    background: none;
    cursor: pointer;
    padding: 0;
    border: none;
}

.FilterBar .AllFilters .AllFilterTopBar .CloseIcon-Web .Icon {
    display: flex;
    height: 19px;
    width: 19px;
}

@media screen and (max-width: 768px) {
    .FilterBar .AllFilters .AllFilterTopBar .CloseIcon {
        display: flex;
        margin-left: auto;
    }

    .FilterBar .AllFilters .AllFilterTopBar .ClearAllButton {
        margin-left: 15px;
    }

    .FilterBar .AllFilters .AllFilterTopBar .CloseIcon-Web {
        display: none;
    }
}

.FilterBar .AllFilters .AllFilterTopBar .CloseIcon .Icon {
    display: flex;
    flex: 0 0 auto;
    height: 19px;
    width: 19px;
}

.FilterBar .TopBar .ShowAll {
    display: flex;
    flex-flow: row nowrap;
    margin-right: 16px;
    align-items: center;
    flex: 0 0 auto;
    padding: 9px 16px;
    --border-color: #c6c7c9;
    --border-width: 1px;
    --text-color: #58595b;
    color: var(--text-color);
    font-size: var(--text-size);
    text-decoration: none;
    border-radius: 4px;
    border: var(--border-width) solid var(--border-color);
    box-sizing: border-box;
    white-space: nowrap;
}

.FilterBar.as-many-as-filters .TopBar .ShowAll {
    --border-width: none;
}

.FilterBar.as-many-as-filters .Filters {
    padding: 0px;
}

@media screen and (max-width: 814px) {
    .FilterBar .TopBar .ShowAll {
        margin-bottom: 8px;
        margin-top: 8px;
    }
}

@media screen and (min-width: 768px) {
    .FilterBar .TopBar .ShowAll:hover {
        --border-color: #757779;
        --text-color: #58595b;
        box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2);
    }
}

.FilterBar .TopBar a.ShowAll .label {
    display: flex;
    white-space: pre-line;
    text-transform: capitalize;
    font-size: 14px;
    line-height: 16px;
    color: var(--text-color);
}

.FilterBar .TopBar .ShowAll .Icon {
    display: flex;
    flex: 0 0 auto;
    height: 16px;
    width: 16px;
}

.FilterBar .TopBar .ShowAll .Icon.filters {
    padding: 0px;
    padding-right: 7px;
}

@media (min-width: 768px) {
    .FilterBar .TopBar .DropDown:hover {
        text-decoration: underline;
    }

    .FilterBar .TopBar .DropDown:active {
        background-color: var(--gray-dark);
        border-radius: 5px;
    }

    .FilterBar .TopBar .DropDown:focus {
        outline: none !important;
    }

    .FilterBar .TopBar .DropDown:focus-visible {
        border: 1px solid var(--outrageous-orange);
    }
}

@media (min-width: 769px) {
    .FilterBar .AllFilters .AllFilterTopBar .label {
        flex: auto;
    }
}

.FilterBar .TopBar .ShowAll .Icon svg path {
    fill: var(--text-color);
}

.FilterBar .TopBar .DropDown {
    margin-left: 24px;
    border-radius: 5px;
    border: 1px solid transparent;
}

.FilterBar .TopBar .DropDown,
.FilterBar .TopBar .FilterPanel {
    padding: 0 24px 0 0;
}

.FilterBar .TopBar .FilterPanel label {
    text-transform: uppercase;
    margin-right: 8px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.FilterBar .results {
    display: flex;
    justify-self: flex-end;
    flex: 0 0 auto;
    font-size: var(--font-size-small);
    line-height: 15px;
}

.FilterBar .results.favorite {
    padding-right: 24px;
}

.FilterBar .favorite-section {
    display: flex;
    flex: 0 0 auto;
    padding: 8px 24px 8px 8px;
    border-left: 1px solid #dcdee1;
    align-items: center;
    line-height: 15px;
    margin-left: 8px;
}

.FilterBar .favorite-section>a {
    display: flex;
    align-items: center;
}

.FilterBar .favorite-section .favorite-svg {
    width: 30px;
    height: 30px;
    position: relative;
}

.FilterBar .favorite-svg>svg {
    overflow: visible;
}

.FilterBar .favorite-section rect,
.FilterBar .favorite-section circle {
    fill: var(--deep-carrot);
}

.FilterBar .favorite-section text {
    fill: var(--color-white);
    letter-spacing: -2px;
    line-height: 1;
}

.FilterBar .favorite-section .label {
    padding-left: 8px;
}

.FilterBar .filterListItem {
    list-style-type: none;
    color: #6a707c;
    color: var(--neutrals-fog, #6a707c);
    font-family: var(--sf-font-sohne);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
}

.FilterBar .filterListItem.selected {
    font-family: var(--sf-font-sohne-b);
}

@media screen and (max-width: 768px) {
    .FilterBar .TopBar a.ShowAll .label {
        text-transform: uppercase;
        padding: 0;
        border: none;
    }
}

@media (max-width: 480px) {
    .FilterBar.sticky-enabled .TopBar .ShowAll {
        margin-bottom: 0;
        margin-top: 0;
    }

    .ThumbnailPage.bttEnabled .FilterBar .AllFilters .AllFilterTopBar .label {
        font-size: 20px;
        font-family: var(--sf-font-sohne-b);
    }

    .FilterBar .TopBar {
        border: none;
        margin: 0;
    }

    .bttEnabled .FilterBar .TopBar {
        border: none;
        margin: 0 auto;
    }

    .FilterBar .TopBar .DropDown {
        margin-left: 0;
        margin-right: 16px;
        padding-right: 0;
    }

    .FilterBar .favorite-section {
        margin-right: 10px;
    }

    .FilterBar .sortFilterTitle,
    .FilterBar .sortFilterSelectedValue {
        font-size: 12px;
    }

    .filtern-fav-section {
        display: flex;
        align-items: center;
    }

    .filtern-fav-section .FilterBar.sticky-enabled {
        box-shadow: 0px 6px 3px -3px rgb(0 0 0 / 30%);
    }

    .ThumbnailPage.bttEnabled .FilterBar .TopBar .ShowAll {
        border: none;
        padding-left: 0px;
        margin-top: 0px;
        --text-color: var(--text-color-default);
    }

    .ThumbnailPage.bttEnabled .FilterBar .AllFilters .AllFilterTopBar .ClearAllButton {
        margin-left: auto;
    }

    .ThumbnailPage.bttEnabled .FilterBar .AllFilters .AllFilterTopBar .ClearAllButton .label {
        font-size: 14px !important;
    }

    .ThumbnailPage.bttEnabled .FilterBar .AllFilters .AllFilterTopBar .CloseIcon {
        margin-left: unset;
    }

    .ThumbnailPage.bttEnabled .FilterBar .TopBar a.ShowAll .label {
        text-transform: capitalize;
        font-family: var(--sf-font-default);
        font-weight: 600;
        font-size: 16px;
    }
}

.filter_loading {
    display: flex;
    flex: none !important;
    justify-content: center;
    align-items: center;
    color: #58595b;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 17px;
    z-index: 0;
    grid-column-gap: 5px;
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
    margin-left: auto;
}

@media (min-width: 769px) {
    .filter_loading {
        display: none;
    }
}

.filter_loading .indicator {
    display: flex;
    align-items: center;
    width: 22px;
    height: 22px;
    margin: 0 !important;
    position: relative;
    box-sizing: border-box;
    background: #fff;
    background-clip: padding-box;
    border: solid 2px transparent;
    border-radius: 50%;
}

.filter_loading .indicator:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -2px;
    border-radius: inherit;
    background: linear-gradient(to right, #fff, #f05323);
    animation: rotate 1s linear 0s infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}
.FilterPanel {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    flex: 0 1 auto;
    box-sizing: border-box;
    --text-size: 14px;
    --spacer-size: 8px;
}

.AllFilterPanel {
    flex-flow: row wrap;
    padding: 0;
    border-bottom: 1px solid #DBDDE1;
    box-sizing: border-box;
}

.AllFilterPanel .content {
    max-height: 400px;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-color: var(--gray-mid) #ffffff;
}

.AllFilterPanel .content::-webkit-scrollbar {
    display: block;
    width: 10px;
}

.AllFilterPanel .content::-webkit-scrollbar-track {
    background-color: #ffffff;
}

.AllFilterPanel .content::-webkit-scrollbar-thumb {
    background-color: var(--gray-light);
    border-radius: 5px;
}

.AllFilterPanel .content::-webkit-scrollbar-thumb:hover {
    background-color: var(--gray-mid);
}

.AllFilterPanel.FilterPanel {
    width: 100%;
    display: block;
}

.AllFilterPanel.FilterPanel .FilterPanelItem.Buttons {
    margin-left: 0;
    margin-bottom: 0;
}

.AllFilterPanel.FilterPanel .CollapsibleContent header a {
    margin-left: auto;
}

.FilterPanel ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    flex-flow: row nowrap;
}

.FilterPanel ul li {
    display: flex;
}

.FilterPanel ul li:not(.disabled):hover .Icon {
    box-shadow: 0 0 0 2px var(--gray-medium);
}

.FilterPanel ul li:not(.disabled) .selected .Icon {
    box-shadow: 0 0 0 2px var(--gray-medium);
    border-radius: 100%;
}

.FilterPanel ul li:not(.disabled) .selected .SVGIconBox {
    border: 2px solid var(--gray-medium);
    font-family: var(--sf-font-sohne-sb);
}

.FilterPanel ul li:not(.disabled):hover .selected .Icon {
    box-shadow: 0 0 0 2px var(--gray-medium), 0 5px 5px 0 rgba(0, 0, 0, 0.2);
}

.FilterPanel ul.showAll {
    flex-wrap: wrap;
}

.FilterPanel ul.checkBoxList {
    flex-flow: column;
}

.FilterPanel ul.Rating {
    flex-flow: column;
}

.FilterPanel ul.Rating li div.Rating {
    display: flex;
}

.FilterPanel ul.Rating li,
.FilterPanel ul.Rating div.Rating .Icon,
.FilterPanel ul.Rating li:hover .selected .Icon {
    box-shadow: none;
    border: none;
}

.FilterPanel ul.Rating li .checkboxContainer {
    display: grid;
    align-items: center;
}

.FilterPanel ul>li.showAll {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
}

.FilterPanel ul.showAll>li.showAll {
    margin-left: 56px;

}

.FilterPanel ul>li.showAll>a {
    display: flex;
    flex: 1 1 auto;
    padding: var(--spacer-size) calc(var(--spacer-size) * 1.25);
}

.FilterPanel ul>li.showAll>a.showUnderline {
    text-decoration: underline;
    color: var(--text-color);
}

.FilterPanel ul>li>a:hover {
    color: var(--text-color);
    text-decoration: none;
}

.FilterPanel ul li:first-child a {
    margin-left: 0px;
}

.AllFilterBar .mobileSort {
    display: none;
}

@media screen and (max-width: 480px) {
    .hideSortFilter {
        display: none;
    }

    .AllFilterBar .mobileSort {
        display: block;
    }

    .mobileSort .sortFilterPopupMenu {
        display: block;
    }

    .mobileSort .sortFilterWrapper {
        flex-flow: row nowrap;
        justify-content: space-between;
        border-bottom: solid 1px #dcdee1;
        height: 36px;
        margin: 2px;
        border: 0;
    }

    .mobileSort .sortFilterPopupMenu li {
        padding: 5px 0px;
        display: grid;
        grid-template-columns: 30px auto;
    }

    .mobileSort .sortFilterPopupMenu span {
        color: var(--text-color);
    }

    .mobileSort .sortFilterTitle {
        font-size: 14px;
        font-family: var(--sf-font-sohne-b);
        color: var(--gray-medium);
    }
}
.TopBar .FilterPanelItem.chicklet-1:first-of-type {
    width: auto;
    height: auto;
    padding: 8px 10px;
}

.TopBar li:has(a.chicklet-1:first-of-type) {
    margin-bottom: 0;
    width: auto;
}

.TopBar .FilterPanelItem.chicklet-1:first-of-type .chicklet-1-main {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: auto;
    height: auto;
}

.FilterPanel li:has(a.chicklet-1) {
    width: auto
}

.TopBar .FilterPanelItem.chicklet-1:first-of-type .chicklet-1-main .label {
    margin: 0 0 0 8px;
}

.DropDownPanel:has(.FilterPanel.chicklet-1) {
    padding: 8px 8px 0;
}

.DropDownPanel .FilterPanelItem.chicklet-1 {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 8px;
}

.DropDownPanel:has(.FilterPanel.chicklet-1) ul.showAll {
    flex-direction: column;
}

.DropDownPanel:has(.FilterPanel.chicklet-1) ul.showAll li .chicklet-1-main {
    display: flex;
    align-items: center;
    flex-direction: row;
    width: 100%;
}

.DropDownPanel:has(.FilterPanel.chicklet-1) .label {
    margin: 0 0 0 16px;
}

.FilterPanelItem {
    display: flex;
    position: relative;
    text-decoration: none;
}

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

.FilterPanelItem .SVGIconBox {
    display: flex;
    flex-flow: column nowrap;
    color: var(--gray-medium);
    text-decoration: none;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    height: 92px;
    width: 146px;
    border: 1px solid #929497;
    border-radius: 4px;
    margin: 0 16px 16px 0;
}

.FilterPanelItem .SVGIconBox .Icon {
    box-shadow: none !important;
    margin-bottom: 4px;
}

.FilterPanelItem .label {
    color: var(--text-color);
    text-transform: capitalize;
}

.FilterPanelItem .checkboxLabel {
    color: var(--text-color);
    height: auto;
    font-family: var(--sf-font-sohne);
    font-size: 14px;
    letter-spacing: 0;
    line-height: 21px;
}

.FilterPanelItem .checkboxLabel:hover {
    cursor: pointer;
}

.FilterPanelItem.selected .checkboxLabel {
    font-family: var(--sf-font-sohne-b);
}

.FilterPanelItem.Buttons {
    --border-color: #C6C7C9;
    --border-width: 1px;
    --text-color: #58595B;
    padding: var(--spacer-size) calc(var(--spacer-size) * 1.25);
    color: var(--text-color);
    font-size: var(--text-size);
    text-decoration: none;
    border-radius: calc(var(--spacer-size) / 2);
    border: var(--border-width) solid var(--border-color);
    box-sizing: border-box;
    margin: var(--spacer-size);
    white-space: nowrap;
}

@media screen and (min-width: 768px) {
    .FilterPanelItem.Buttons:hover {
        --border-color: #757779;
        --text-color: #58595B;
        box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2);
    }

    .FilterPanelItem .SVGIconBox:hover {
        border: 2px solid var(--gray-medium);
        box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2);
    }
}

.FilterPanelItem.Buttons:active {
    background: rgba(0, 0, 0, 0.1)
}

.FilterPanelItem.Buttons.selected,
.FilterPanelItem.Buttons.selected:hover {
    --border-width: 2px;
    --border-color: var(--gray-medium);
    --text-color: var(--gray-medium);
}

.FilterPanelItem.chicklet-1 {
    --border-color: #C6C7C9;
    --border-width: 1px;
    --text-color: #58595B;
    padding: var(--spacer-size) calc(var(--spacer-size) * 1.25);
    color: var(--text-color);
    font-size: var(--text-size);
    text-decoration: none;
    border-radius: calc(var(--spacer-size) / 2);
    border: var(--border-width) solid var(--border-color);
    box-sizing: border-box;
    margin: 8px 8px 8px 0px;
    white-space: nowrap;
}

.FilterPanelItem.chicklet-1:active {
    background: rgba(0, 0, 0, 0.1)
}

.FilterPanelItem.chicklet-1 .Icon:hover {
    box-shadow: 0 0 0 1px #fff !important;
    outline: none !important;
}

.FilterPanelItem.chicklet-1.selected,
.FilterPanelItem.chicklet-1.selected:hover {
    --border-width: 2px !important;
    --border-color: var(--gray-medium) !important;
    --text-color: var(--gray-medium) !important;
    font-weight: 600 !important;
}

.FilterPanelItem.chicklet-1 {
    box-shadow: none !important;
    outline: none !important;
}

.FilterPanelItem.chicklet-1:hover {
    box-shadow: none !important;
    outline: none !important;
}

li .FilterPanelItem.chicklet-1 {
    flex-direction: column;
    width: 100px;
    height: 100%;
    padding: 8px 10px;
    align-items: center;
    align-self: stretch;
    padding-top: 16px;
}

li:not(.disabled):hover .FilterPanelItem.chicklet-1 .Icon {
    box-shadow: none !important;
    outline: none !important;
}

.FilterPanelItem.chicklet-1:hover .Icon {
    box-shadow: none !important;
    outline: none !important;
}

.FilterPanelItem.chicklet-1.selected .Icon {
    border-radius: 0px !important;
    box-shadow: none !important;
}

.FilterPanelItem.chicklet-1.selected .Icon:hover {
    box-shadow: 0 0 0 1px #fff !important;
    outline: none !important;
}

.FilterPanelItem.chicklet-1.selected .Icon.SelectedTick {
    width: 12px;
    height: 12px;
    position: absolute;
    top: -7px;
    right: -7px;
}

.FilterPanelItem.chicklet-1.selected .Icon.SelectedTick svg {
    width: 100%;
    height: 100%;
    z-index: 3;
}

li:has(a.chicklet-1) {
    margin-bottom: 8px;
}

.FilterPanelItem.chicklet-1 .label {
    white-space: normal;
    display: inline-block;
    margin-top: 8px;
    text-align: center;
    line-height: normal;
}

.FilterPanelItem.chicklet-1 .label:before {
    display: inline-block;
    text-align: center;
    position: relative;
}

.FilterPanelItem.chicklet-1 .label:after {
    display: block;
    margin-top: 5px;
}

.FilterPanel.chicklet-1 .showAll:has(li a.chicklet-2) {
    flex-direction: column !important;
    width: 220px;
}

.FilterPanel.chicklet-1 .showAll:has(li a.chicklet-2) li a {
    width: 220px;
    padding: 14px;
    margin: 0px;
    align-items: flex-start;
    height: 100%;
}

.FilterPanel.chicklet-1 .showAll:has(li a.chicklet-2) li a .chicklet-1-main {
    align-items: center;
    display: flex;
}

.FilterPanel.chicklet-1 .showAll:has(li a.chicklet-2) li {
    position: relative;
}

.FilterPanel.chicklet-1 .showAll:has(li a.chicklet-2) li a .label {
    margin-top: 0px;
}

.FilterPanel.chicklet-1 .showAll:has(li a.chicklet-2) li a .filter-options {
    display: inline-block;
    margin-right: 10px;
}

.FilterPanelItem.chicklet-1 {
    --border-color: #C6C7C9;
    --border-width: 1px;
    --text-color: #58595B;
    padding: var(--spacer-size) calc(var(--spacer-size) * 1.25);
    color: var(--text-color);
    font-size: var(--text-size);
    text-decoration: none;
    border-radius: calc(var(--spacer-size) / 2);
    border: var(--border-width) solid var(--border-color);
    box-sizing: border-box;
    margin: 8px 8px 8px 0px;
    white-space: nowrap;
}

.FilterPanelItem.chicklet-1:active {
    background: rgba(0, 0, 0, 0.1)
}

.FilterPanelItem.chicklet-1 .Icon:hover {
    box-shadow: 0 0 0 1px #fff !important;
    outline: none !important;
}

.FilterPanelItem.chicklet-1.selected,
.FilterPanelItem.chicklet-1.selected:hover {
    --border-width: 2px !important;
    --border-color: var(--gray-medium) !important;
    --text-color: var(--gray-medium) !important;
    font-weight: 600 !important;
}

.FilterPanelItem.chicklet-1 {
    box-shadow: none !important;
    outline: none !important;
}

.FilterPanelItem.chicklet-1:hover {
    box-shadow: none !important;
    outline: none !important;
}

li .FilterPanelItem.chicklet-1 {
    flex-direction: column;
    width: 100px;
    height: 100%;
    padding: 8px 10px;
    align-items: center;
    align-self: stretch;
    padding-top: 16px;
}

li:not(.disabled):hover .FilterPanelItem.chicklet-1 .Icon {
    box-shadow: none !important;
    outline: none !important;
}

.FilterPanelItem.chicklet-1:hover .Icon {
    box-shadow: none !important;
    outline: none !important;
}

.FilterPanelItem.chicklet-1.selected .Icon {
    border-radius: 0px !important;
    box-shadow: none !important;
}

.FilterPanelItem.chicklet-1.selected .Icon:hover {
    box-shadow: 0 0 0 1px #fff !important;
    outline: none !important;
}

.FilterPanelItem.chicklet-1.selected .Icon.SelectedTick {
    width: 12px;
    height: 12px;
    position: absolute;
    top: -7px;
    right: -7px;
}

.FilterPanelItem.chicklet-1.selected .Icon.SelectedTick svg {
    width: 100%;
    height: 100%;
    z-index: 3;
}

li:has(a.chicklet-1) {
    margin-bottom: 8px;
}

.FilterPanelItem.chicklet-1 .label {
    white-space: normal;
    display: inline-block;
    margin-top: 8px;
    text-align: center;
    line-height: normal;
}

.FilterPanelItem.chicklet-1 .label:before {
    display: inline-block;
    text-align: center;
    position: relative;
}

.FilterPanelItem.chicklet-1 .label:after {
    display: block;
    margin-top: 5px;
}

.FilterPanel.chicklet-1 .showAll:has(li a.chicklet-2) {
    flex-direction: column !important;
    width: 220px;
}

.FilterPanel.chicklet-1 .showAll:has(li a.chicklet-2) li a {
    width: 220px;
    padding: 14px;
    margin: 0px;
    align-items: flex-start;
    height: 100%;
}

.FilterPanel.chicklet-1 .showAll:has(li a.chicklet-2) li a .chicklet-1-main {
    align-items: center;
    display: flex;
}

.FilterPanel.chicklet-1 .showAll:has(li a.chicklet-2) li {
    position: relative;
}

.FilterPanel.chicklet-1 .showAll:has(li a.chicklet-2) li a .label {
    margin-top: 0px;
}

.FilterPanel.chicklet-1 .showAll:has(li a.chicklet-2) li a .filter-options {
    display: inline-block;
    margin-right: 10px;
}

.FilterPanelItem.Checkboxes {
    margin-right: 24px;
}

.FilterPanelItem.Checkboxes .label {
    margin: 8px 0 8px 24px;
    padding: 4px 0 4px 8px;
    font-size: var(--font-size-default);
    line-height: 18px;
    color: var(--text-color);
    text-decoration: none;
}

.FilterPanelItem.Checkboxes .label:before {
    content: '';
    z-index: 2;
}

.FilterPanelItem.Checkboxes .label:after {
    content: '';
    position: absolute;
    left: 3px;
    top: 12px;
    width: 16px;
    height: 16px;
    border: 1px solid #ccc;
    background: #fff;
    z-index: 1;
    border-radius: 3px;
}

.FilterPanelItem.Checkboxes.selected .label:before {
    content: '';
    position: absolute;
    height: 16px;
    width: 9px;
    left: 8px;
    transform: rotate(35deg) scale(0.7);
    border: solid #58595B;
    border-width: 0 3px 3px 0;
    box-sizing: border-box;
}

.FilterPanelItem.Icons {
    font-weight: 500;
    padding: var(--spacer-size) calc(var(--spacer-size) * 1.25);
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
}

.FilterPanelItem.Icons .Icon {
    border: 2px solid transparent;
    border-radius: 50%;
}


.FilterPanelItem.Icons.selected .color-swatches {
    border-color: var(--gray-medium);
}

.FilterPanelItem.Icons.selected .Icon {
    border: 2px solid #58595B;

}

.FilterPanelItem.Icons .label {
    margin-left: calc(var(--spacer-size) / 2);
}

.FilterPanelItem.Hexcolor.selected .color-swatches .color-swatch {
    background-color: rgba(0, 0, 0, 0.1);
    border: 2px solid #585B58;
}

.FilterPanelItem.Multicolor.selected .color-swatches .color-swatch {
    background-color: rgba(0, 0, 0, 0.1);
    border: 2px solid #585B58;
}

@media screen and (min-width: 768px) {

    .FilterPanelItem.Hexcolor .color-swatches .color-swatch:hover,
    .FilterPanelItem.Multicolor .color-swatches .color-swatch:hover {
        border: 2px solid #585B58;
    }
}

@media screen and (min-width: 768px) {
    .FilterPanelItem.Hexcolor .color-swatches .color-swatch.unmapped-color:hover {
        border: 1px solid #585B58;
    }
}

.FilterPanelItem.Hexcolor .color-swatches .color-swatch .Icon,
.FilterPanelItem.Hexcolor .color-swatches .color-swatch .Icon:hover {
    box-shadow: 0 0 0 1px #fff;
    border-radius: 50%;
}

.FilterPanelItem.Hexcolor .color-swatches .color-swatch .multi {
    background: linear-gradient(135deg, #a82dd8, #6aa8dd 17%, #70e5b2 33%, #bced42 50%, #ede740 66%, #e88e4a 83%, #e54040);
}

.FilterPanelItem.Hexcolor .color-swatches .color-swatch .dynamiccolor {
    width: 24px;
    height: 24px;
}

.FilterPanelItem .color-swatches {
    z-index: 0;
}

.FilterPanel.Hexcolor ul {
    line-height: 10px;
}

.FilterPanelItem.Rating .checkboxContainer label {
    display: flex;
    color: #6A707C;
    font-weight: 400;
}

.FilterPanelItem.Rating .checkboxContainer .star-rating-component span {
    color: #58595B;
    font-family: var(--sf-font-sohne-sb);
    font-size: 14px;
    font-style: normal;
    line-height: 21px;
}

.Filtercount {
    color: var(--text-color);
    height: auto;
    font-family: var(--sf-font-sohne);
    font-size: 14px;
    letter-spacing: 0;
    line-height: 21px;
    align-content: center;
    margin-left: 5px;
}

.star-rating-component {
    align-items: center;
}
.mobileBreadCrumb {
    font-size: 12px;
    padding: 0 0 8px 0;
}

.ThumbnailPage  > .mobileBreadCrumb a {
    height: 15px;
    text-transform: capitalize;
    font-family: var(--sf-font-sohne-b);
    color: var(--text-color);
    text-decoration: underline;
    padding-left: 4px;
}

@media screen and (max-width: 480px) {
    .mobileBreadCrumb {
        padding: 0px;
    }
}
.mobileBreadCrumb .chevron-right {
    display: none;
}

.Breadcrumb {
    display: flex;
    align-items: center;
    margin: 0 0 1.0714rem;
    padding: 0 0.7143rem;
    list-style: none;
    min-height: 14px;
}

.Breadcrumb .extra-text,
.Breadcrumb li {
    display: inline;
    font-family: var(--sf-font-sohne-b);
    font-size: var(--font-size-tiny);
    line-height: 14px;
}

.Breadcrumb span.extra-text {
    margin-right: 0;
    padding-right: 4px;
}

.Breadcrumb span.extra-text:empty {
    display: none;
}

.Breadcrumb li {
    font-family: var(--sf-font-sohne);
}

.Breadcrumb li+li:before {
    padding: 0 4px 0 6px;
    color: #939497;
    content: '>';
}

.Breadcrumb li a {
    font-family: var(--sf-font-sohne);
    text-decoration: none;
    padding: 5px 10px 5px 0;
    margin: -5px -10px -5px 0;
    white-space: nowrap;
    color: var(--text-color-grey2);
    display: flex;
}

.Breadcrumb li a:hover {
    text-decoration: underline;
    color: var(--text-color-grey2);
}

.Breadcrumb li:last-child a {
    font-family: var(--sf-font-sohne-b);
    color: var(--text-color);
}

.breadcrumb-nonlink {
    display: flex;
}

.breadcrumb-nonlink span {
    font-family: var(--sf-font-sohne-b);
}

@media (max-width: 768px) {
    .Breadcrumb {
        display: none !important;
    }
}
:root {
    --background-img-ingrid: #ECE5D5;
    --title-font-color: var(--text-color);
    --sub-title-font-color: var(--text-color);
    --bg-color-ingrid: #ECE5D5;
    --cta-bg-color-ingrid: #ECE5D5;
    --cta-text-color-ingrid: var(--text-color);
}
.InGridMarketingTileLink {
    text-decoration: none;
    color: var(--text-color);
    font-family: var(--br-cms-font-sohne);
}

.InGridMarketingTileLink, .InGridMarketingTile {
    display: flex;
    grid-gap: 0.571rem;
    gap: 0.571rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.InGridMarketingTileLink.textOnly .InGridMarketingTile,
.thumbnail-grid .InGridMarketingTile.botRenders.textOnly {
    background-color: #ECE5D5;
    background-color: var(--bg-color-ingrid);
    padding: 0 1.143rem;
    box-sizing: border-box;
}

.br-cms-layout .InGridMarketingTileLink {
    width: 26.143rem;
    height: 32.786rem;
}

.InGridMarketingTile { 
    width: 100%;
    height: 100%;
}

.BackgroundContainer {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center; 
}

.InGridMarketingTileLink.roundedCorners .InGridMarketingTile,
.thumbnail-grid .InGridMarketingTile.botRenders.roundedCorners {
    border-radius: 0.571rem;
}

.InGridMarketingTile .TileTitle {
    font-size: 1.429rem;
    line-height: 1.786rem;
    color: var(--text-color);
    color: var(--title-font-color);
    font-weight: var(--brand-fontweight-callout);
}

.InGridMarketingTile  .TileSubTitle {
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--text-color);
    color: var(--sub-title-font-color);
    font-weight: 400;
}

.InGridMarketingTile .ingrid-cta {
    font-size: 1.143rem;
    color: var(--text-color);
    color: var(--cta-text-color-ingrid);
    text-decoration: underline;
    line-height: 1.714rem;
    position: relative;
    z-index: 1;
}

.InGridMarketingTileLink.imgBased .InGridMarketingTile,
.thumbnail-grid .InGridMarketingTile.imgBased.botRenders {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    background-image: #ECE5D5;
    background-image: var(--background-img-ingrid);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


.InGridMarketingTileLink.imgBased  .ingrid-cta,
.thumbnail-grid .InGridMarketingTile.imgBased.botRenders .ingrid-cta {
    margin: 0 0 1.143rem 0;
}

.ingrid-cta.btn {
    text-decoration: none;
    display: inline-flex;
    height: 2.571rem;
    min-width: 5.714rem;
    padding: 0.5rem 1.143rem;
    justify-content: center;
    align-items: center;
    grid-gap: 0.571rem;
    gap: 0.571rem;
    flex-shrink: 0;
    border-radius: 7.143rem;
    background: #ECE5D5;
    background: var(--cta-bg-color-ingrid);
}

.thumbnail-grid .InGridMarketingTileLink.imgBased .InGridMarketingTile,
.thumbnail-grid .InGridMarketingTile.imgBased.botRenders {
    aspect-ratio: 1;
}

.InGridMarketing {
    position: relative;
}

.InGridMarketing > a,
.InGridMarketing > div {
    height: 100%;
    position: relative;
    z-index: 1;
}

.InGridMarketing .InGridMarketingTile.botRenders {
    position: absolute;
    top: 0;
}

a.ingrid-cta:hover {
    color: var(--text-color) !important;
    color: var(--cta-text-color-ingrid) !important;
}
.Carousel {
    display: flex;
    flex-flow: row wrap;
    flex: 0 1 auto;
    align-items: center;
    --viewport-width: 100px;
    position: relative;
}

.topCarouselImg {
    align-items: baseline;
}

.Carousel a.prev,
.Carousel a.next {
    display: flex;
    flex: 0 0 auto;
    width: 24px;
    height: 48px;
    z-index: 1;
    overflow: hidden;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    background: #fff;
    color: transparent;
    border: 1px solid var(--gray-dark);
    border-radius: 4px;
    position: relative;
    box-sizing: border-box;
    transition: opacity 0.35s;
}

.Carousel a.next {
    right: -10px;
}

.Carousel.pip a.pipNext {
    position: absolute;
    bottom: -10px;
    left: 55px;
    transform: rotate(90deg);
}

.Carousel.slide a.prev,
.Carousel.slide a.next {
    opacity: 0;
    position: absolute;
    top: calc(50% - 24px);
}

html:not(.focus-none) .Carousel.slide a.prev:not(.disabled),
html:not(.focus-none) .Carousel.slide a.next:not(.disabled) {
    opacity: 1;
}

html:not(.focus-none) .Carousel.slide a.prev:not(.disabled):focus,
html:not(.focus-none) .Carousel.slide a.next:not(.disabled):focus {
    outline: 1px solid var(--deep-carrot);
    outline-offset: 2px;
}

.Carousel.slide a.prev:not(.disabled),
.Carousel.slide a.next:not(.disabled) {
    opacity: 1;
    transition: opacity 0.35s;
}

.Carousel>a.next:hover.disabled,
.Carousel>a.prev:hover.disabled {
    color: transparent;
}

.Carousel>a.prev:hover:not(.disabled),
.Carousel>a.next:hover:not(.disabled) {
    border: 1px solid #757579;
    color: transparent;
    background-color: rgba(235, 237, 240, 0.9);
}

.Carousel>a.prev:active:not(.disabled),
.Carousel>a.next:active:not(.disabled) {
    border: 1px solid #58595b;
    color: rgba(220, 222, 225, 0.9);
    background-color: rgba(220, 222, 225, 0.9);
}

.Carousel>a:before {
    content: '';
    height: 5px;
    width: 5px;
    border: solid #58595b;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    position: absolute;
}

.Carousel>a.prev:before {
    transform: translate(7px, 17px) rotate(135deg);
}

.Carousel>a.next:before {
    transform: translate(1px, 17px) rotate(-45deg);
}

.Carousel a.disabled {
    opacity: 0.3;
    cursor: default;
}

.Carousel>div {
    display: flex;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: calc(100% - 48px);
    width: 0;
    z-index: 0;
    overflow: hidden;
    mix-blend-mode: multiply;
}

.Carousel.pip>div {
    overflow: visible;
}

.Carousel ul {
    display: flex;
    flex: 0 1 auto;
    flex-flow: row nowrap;
    margin: 0;
    padding: 0;
    align-items: stretch;
    transition: all 0.5s ease-in-out 0s;
}

.Carousel.pip ul {
    flex-flow: column nowrap;
}

.Carousel.pip .CarouselImgWrapper {
    width: 180px;
    max-height: 100%;
    overflow-y: hidden;
    overflow-x: visible;
}

.imageWall>.Carousel.pip>a.pipPrev,
.imageWall>.Carousel.pip>a.pipNext {
    display: none;
}

@media screen and (max-width: 991px) {

    .Carousel.slide ul li,
    .Carousel.slide ul li .altView .altViewImageWrapper img {
        max-height: 371px;
    }

    .Carousel.slide ul li,
    .Carousel.slide ul li .altView.selected .altViewImageWrapper img {
        min-height: 371px;
        object-fit: contain;
    }

    .Carousel.slide ul li .altView .altViewImageWrapper .alt-skeleton {
        min-height: 371px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .Carousel.pip .CarouselImgWrapper {
        height: 423px;
    }
}

.Carousel.pip .CarouselImg {
    margin: 0 0 auto 0;
}

.Carousel ul li {
    display: flex;
    flex-flow: column nowrap;
    flex: 0 1 auto;
    align-items: center;
    max-width: var(--viewport-width);
    overflow: hidden;
}

.Carousel.pip ul li {
    overflow: inherit;
}

.Carousel.slide a.prev {
    left: -10px;
}

.Carousel.pip a.pipPrev {
    position: absolute;
    top: -10px;
    left: 55px;
    transform: rotate(90deg);
}

.Carousel.slide a.next {
    right: -10px;
}

.Carousel.slide ul li {
    flex: 1 1 auto;
    height: 100%;
    width: var(--viewport-width);
    overflow: hidden;
    align-items: stretch;
}

.Carousel .navigation {
    display: flex;
    flex-flow: column nowrap;
    bottom: 0px;
    width: 100%;
    flex: 0 1 auto;
    align-items: center;
    z-index: 1;
    mix-blend-mode: unset;
}

.Carousel .hideNavigation {
    display: none !important;
}

.Carousel .navigation>div {
    display: flex;
    flex-flow: row nowrap;
    grid-gap: 30px;
    grid-gap: 30px;
    gap: 30px;
}

.Carousel.slide>div {
    flex-basis: 100%;
}

.Carousel .navigation span {
    --size: 12px;
    background-color: transparent;
    overflow: hidden;
    border-radius: 50%;
    width: var(--size);
    height: var(--size);
    margin: 0 4px;
    border: 2px solid #ffffff;
    cursor: pointer;
}

.Carousel .navigation span.active {
    background: #ffffff;
}

.Carousel .navigation .store-p {
    margin: 0;
    display: flex;
    flex: 0 1 auto;
    padding: 2px;
    font-size: var(--font-size-tiny);
}

.Carousel.slide .navigation {
    opacity: 0;
    margin-top: 20px;
}

.Carousel.slide .navigation.mobile {
    margin: auto 0 0;
}

.Carousel .navigation.mobile {
    opacity: 1;
    position: absolute;
    bottom: -2px;
}

.Carousel .navigation.mobile .store-p {
    display: none;
}

.Carousel.slide:hover .navigation {
    opacity: 1;
}

@media (max-width: 767px) {
    .Carousel .navigation .store-p {
        font-size: var(--font-size-tiny);
        display: none;
    }

    .Carousel .navigation {
        display: flex;
        flex-flow: column wrap;
    }

    .Carousel.slide a.prev:not(.disabled),
    .Carousel.slide a.next:not(.disabled),
    .Carousel a.prev:not(.disabled),
    .Carousel a.next:not(.disabled) {
        opacity: 1;
    }

    .Carousel.slide a.prev.disabled,
    .Carousel.slide a.next.disabled,
    .Carousel a.prev.disabled,
    .Carousel a.next.disabled {
        opacity: 0.3;
    }

    .Carousel.slide .navigation {
        opacity: 1;
    }

    .Carousel .navigation span {
        --size: 8px;
        width: var(--size);
        height: var(--size);
    }

    .Carousel.pip a.pipPrev {
        bottom: 25px;
        left: 30px;
    }

    .Carousel.pip a.pipNext {
        bottom: 100px;
        left: 30px;
    }
}

@media (max-width: 767px) {
    .Carousel a.prev {
        left: -10px;
    }

    .Carousel>div {
        border-radius: var(--border-radius) var(--border-radius) 0 0;
    }
}
.collections~.apc-global {
    display: none;
}

.collections.similar {
    margin-top: 20px;
}

.collections ul {
    list-style-type: none;
    padding: 10px 0;
}

.collections .Carousel .disabled {
    display: none;
}

.collections .Carousel {
    margin-bottom: 25px;
}

.collections h1.store-h1 {
    font-size: var(--font-size-headline-main);
    font-family: var(--sf-font-sohne-b);
    color: #6A707C;
}

.collections .Carousel ul li {
    --width: 370px;
    --similar-width: 270px;
    --margin: 24px;
    --similar-margin: 40px;
    margin-right: var(--margin);
    padding: 8px 4px;
    box-sizing: border-box;
    width: var(--width);
}

.collections.similar .Carousel ul li {
    width: var(--similar-width);
    margin-right: var(--similar-margin);
}

.collections .suggestion {
    font-family: var(--sf-font-sohne-md);
    box-sizing: border-box;
    text-align: center;
    border: 10px solid #fff;
    width: var(--width);
    height: var(--height);
}

.collections img {
    width: var(--img);
}

.collections.similar img {
    width: var(--img-similar);
}

.collections>header {
    display: flex;
    justify-content: space-between;
    align-content: center;
}

.collections>header a.button {
    text-transform: uppercase;
    color: unset;
}

.collections .store-h3 {
    font-family: var(--sf-font-sohne-b);
    margin: 0;
    font-weight: normal;
    font-weight: initial;
    line-height: 1.5;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.collections .suggestion .store-h3 {
    text-overflow: ellipsis;
    max-width: 70%;
    margin: auto;
    font-family: var(--sf-font-sohne-md);
    font-size: var(--suggestions-hdr);
    font-weight: inherit;
    line-height: 1.2;
    overflow: hidden;
}

.collections.similar .suggestion .store-h3 {
    font-size: var(--h3size);
}

.collections .store-h4 {
    font-size: var(--collections-subhdr);
    margin: 5px 0 0;
}

.collections.similar .suggestion {
    box-sizing: border-box;
    width: var(--similar-width);
    height: var(--similar-height);
}

.collections .suggestion a,
.collections .suggestion a:hover {
    color: unset;
}

.collections .Carousel li:hover {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1), 0 5px 15px 0 rgba(0, 0, 0, 0.08);
}

.collections .Carousel.adaptive :is(a.next, a.prev) {
    left: 0;
    right: 0;
}

.collections .Carousel.adaptive .CarouselImg {
    transform: translateX(-5px);
}

@media (max-width: 479px) {

    .collections .suggestion img,
    .collections.similar .suggestion img {
        max-width: 100%;
        object-fit: contain;
    }

    .collections .suggestion .store-h3,
    .collections .suggestion .store-h4 {
        --suggestions-hdr: 14px;
        font-family: var(--sf-font-sohne);
        font-weight: unset;
    }

    .collections .suggestion .store-h4 {
        font-family: var(--sf-font-sohne-md);
    }

    .collections .Carousel ul li,
    .collections .suggestion,
    .collections.similar .suggestion {
        --margin: 0;
        --similar-margin: 0;
        --width: 137px;
        --similar-width: 137px;
        --height: 191px;
        --similar-height: 191px;
    }
}

@media (max-width: 991px) {
    .collections h1.store-h1 {
        --font-size-headline-main: 18.66px;
    }
}

@media (min-width: 480px) {
    .collections.similar .suggestion {
        --similar-width: 137px;
    }

    .collections.similar img,
    .collections img {
        --img: 154px;
        --img-similar: 154px;
    }

    .collections .Carousel ul li,
    .collections .suggestion,
    .collections.similar .suggestion {
        --width: 172px;
        --similar-width: 172px;
        --height: 226px;
        --similar-height: 226px;
    }
}

@media (min-width: 768px) {
    .collections.similar .suggestion {
        --similar-width: 137px;
    }

    .collections img {
        --img: 154px;
    }

    .collections.similar img {
        --img-similar: 119px;
    }

    .collections .Carousel ul li,
    .collections .suggestion,
    .collections.similar .suggestion {
        --width: 172px;
        --similar-width: 137px;
        --height: 226px;
        --similar-height: 191px;
    }
}

@media (min-width: 992px) {

    .collections .Carousel ul li,
    .collections .suggestion,
    .collections.similar .suggestion {
        --width: 218px;
        --similar-width: 172px;
        --height: 284px;
        --similar-height: 226px;
    }

    .collections img {
        --img: 200px;
    }

    .collections.similar img {
        --img-similar: 154px;
    }

    .collections .suggestion .store-h3 {
        --suggestions-hdr: 18px;
        font-family: var(--sf-font-sohne-md);
    }

    .collections .suggestion .store-h4 {
        --collections-subhdr: 12px;
        font-family: var(--sf-font-sohne);
    }

    .collections.similar .suggestion .store-h3 {
        font-family: var(--sf-font-sohne);
    }

    .collections.similar .suggestion .store-h4 {
        font-family: var(--sf-font-sohne-md);
    }
}

@media (min-width: 1200px) {

    .collections .Carousel ul li,
    .collections .suggestion,
    .collections.similar .suggestion {
        --width: 270px;
        --height: 372px;
        --similar-height: 278px;
        --similar-width: 215px;
    }

    .collections .Carousel ul li {
        --margin: 6px;
        --similar-margin: 8px;
    }

    .collections img {
        --img: 252px;
    }

    .collections.similar img {
        --img-similar: 197px;
    }

    .collections.similar .store-h3 {
        --h3size: 14px;
    }
}

@media (min-width: 1600px) {

    .collections .Carousel ul li,
    .collections .suggestion,
    .collections.similar .suggestion {
        --margin: 12px;
        --similar-margin: 25px;
        --width: 370px;
        --height: 450px;
        --similar-width: 270px;
        --similar-height: 336px;
    }

    .collections img {
        --img: 350px;
    }

    .collections.similar img {
        --img-similar: 252px;
    }

    .collections.similar .store-h3 {
        --h3size: 18px;
    }
}

@media (max-width: 768px) {
    .collections>header {
        align-items: center;
    }

    .collections .store-h1 {
        line-height: 1;
    }

    .collections>header a.button.SFLY,
    .collections>header a.button.SFLY:active,
    .collections>header a.button.SFLY:not(.disabled):active,
    .collections>header a.button.SFLY:not(.disabled):hover {
        font-size: 14px;
        border: none;
        padding: 0;
        text-transform: capitalize;
        color: unset;
        text-decoration: underline;
        height: auto;
        box-shadow: none;
    }
}
.ProductOption {
    --neutrals-ink: #2d3137;
    --neutrals-slate: #dbdde1;
    --neutrals-fog: #6a707c;
    --neutrals-dark: #2f3237;
}

.ProductOption.chicklet-2 ul {
    display: flex;
}

.ProductOption.chicklet-1.full-width.two-column .option-wrapper ul li a.two-column {
    display: grid !important;
    grid-template-columns: 82px 2fr;
    grid-gap: 10px;
    gap: 10px;
    padding: 0px;
    padding: 0 20px 0 0;
}

.ProductOption.chicklet-1.ProductOption.full-width.two-column ul li a.two-column .Icon svg {
    align-self: flex-end;
}

.ProductOption.chicklet-1.full-width.two-column>.mobile-options.show ul li a.two-column {
    display: grid !important;
    grid-template-columns: 98px 2fr;
    grid-gap: 10px;
    gap: 10px;
    padding: 0;
}

.ProductOption.chicklet-1.full-width .option-wrapper ul li a.two-column .column-right,
.ProductOption.chicklet-1.full-width.two-column>.mobile-options.show ul li a.two-column .column-right {
    align-self: center;
    margin-bottom: 5px;
}

.ProductOption.chicklet-1.full-width .option-wrapper ul li a.two-column .column-right span.envelope-type-free-tag,
.ProductOption.chicklet-1.full-width.two-column>.mobile-options.show ul li a.two-column .column-right span.envelope-type-free-tag {
    color: var(--deep-carrot);
    font-family: var(--sf-font-sohne-md);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 18px;
    align-self: center;
}

.ProductOption.chicklet-2 ul li {
    display: inline-flex;
    align-items: flex-start;
}

.ProductOption.chicklet-2 ul li .a {
    display: flex;
    align-items: flex-start;
    border-radius: 4px;
    border: 1px solid var(--neutrals-slate);
    background: #fff;
}

.ProductOption.chicklet-1.no-icon ul {
    display: flex;
}

.ProductOption.chicklet-1 ul li,
.ProductOption.chicklet-2 ul li {
    height: auto !important;
    position: relative;
}

.ProductOption.chicklet-1 ul li {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
}

.ProductOption.chicklet-1.full-width ul li , .ProductOption.chicklet-1.full-width ul li span.react-loading-skeleton {
    width: 464px !important;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.ProductOption.ProductOption.chicklet-1.full-width.two-column .option-wrapper ul li a {
    height: 100% !important;
}

.ProductOption.chicklet-1.full-width .option-wrapper ul li a {
    display: flex !important;
    width: 100% !important;
    align-items: flex-start !important;
    border-radius: 4px !important;
    background: #fff !important;
}

.ProductOption.full-width ul {
    display: grid !important;
    grid-template-columns: 1fr;
}

.ProductOption.full-width ul li {
    min-width: 0;
}

.ProductOption.chicklet-1 .option-wrapper>li:not(.selected) a>div {
    position: absolute;
    top: 10px;
}

.ProductOption.full-width ul li .description {
    text-align: left;
    color: var(--neutrals-fog);
    font-family: var(--sf-font-sohne);
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    font-style: italic;
}

.ProductOption.chicklet-1.full-width ul li .additional-description {
    text-align: left;
    color: #6a707c;
    color: #6a707c;
    color: var(--neutrals-fog, #6a707c);
    font-family: var(--sf-font-sohne-md);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    margin-top: 2px;
}

.ProductOption.chicklet-1.full-width ul li .additional-description span {
    color: #6a707c;
    font-family: var(--sf-font-sohne-sb);
}

.ProductOption.chicklet-1.no-icon.full-width .option-wrapper ul li a .details-container,
.ProductOption.chicklet-1.no-icon.full-width .mobile-options.show ul li a .details-container {
    width: -webkit-fill-available;
    max-width: -moz-available;
    max-width: 100%;
}

.ProductOption.chicklet-1.full-width ul li a .column-left {
    align-self: flex-end;
    width: 100%;
    height: 100%;
}

.ProductOption.chicklet-1.full-width ul li a .column-left .Icon:not(.SelectedTick) {
    padding: 0 !important;
    margin: 0;
    width: 100%;
    height: 100%;
}

.ProductOption.full-width ul li .detail-description {
    overflow: hidden;
    white-space: nowrap;
    max-width: 100%;
    text-overflow: ellipsis;
    display: inline-block;
    font-family: var(--sf-font-sohne);
    text-align: left;
    font-size: var(--font-size);
}

.ProductOption.PAPER_TYPE.full-width ul li .detail-description {
    display: block;
}

.ProductOption.full-width ul li a {
    align-items: flex-start !important;
    flex-direction: column !important;
}

.ProductOption.full-width .extra-price {
    display: none;
}

.ProductOption.chicklet-1 ul li a {
    border: solid 1px #c6c7c9;
    border-radius: 4px;
    box-sizing: content-box;
    height: 100%;
    padding: 10px;
    align-items: center;
    justify-content: flex-start;
    background: #fff;
    position: relative;
    z-index: 3;
}

.ProductOption.chicklet-1.no-icon.chicklet-1.no-icon .option-wrapper ul li a {
    width: auto;
    border-radius: 4px;
    border: 1px solid var(--neutrals-slate);
    background: #fff;
    padding: 7px 16px;
    flex-direction: column;
}

.ProductOption.chicklet-1.no-icon.chicklet-1.no-icon.full-width .option-wrapper ul li a {
    padding: 10px;
}

.ProductOption.chicklet-1.no-icon.chicklet-1.no-icon .option-wrapper ul li.selected a {
    border: 2px solid var(--neutrals-ink) !important;
}

.ProductOption.chicklet-1 ul li a .Icon {
    height: 32px;
    width: 32px;
    margin-bottom: 8px;
}

.ProductOption.chicklet-1 ul li a .Icon svg {
    width: 100%;
    height: 100%;
}

.ProductOption.chicklet-1 ul li a:hover {
    border: 2px solid var(--neutrals-ink) !important;
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2) !important;
}

.ProductOption.chicklet-1 ul li a:active {
    box-shadow: 0 0 250px 0 rgba(0, 0, 0, 0.1) inset !important;
}

.ProductOption.chicklet-1 ul li.selected>a:not(.show-popup) {
    height: 100%;
    padding: 8px 10px;
}

.ProductOption.chicklet-1 ul li.selected a {
    border: 2px solid var(--neutrals-ink) !important;
}

.ProductOption.chicklet-1 ul li a:focus {
    box-shadow: 0 0 0 2px var(--deep-carrot), 0 0 0 1px #fff !important;
}

.ProductOption.chicklet-1 ul li a:focus:after {
    display: none;
}

.ProductOption.chicklet-1 ul li.selected a:focus {
    outline: none !important;
}

.ProductOption.chicklet-1 ul li.selected a:focus:before {
    content: '';
    position: absolute;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border: solid 2px #fff;
    top: -4px;
    left: -4px;
    border-radius: 6px;
}

.ProductOption.chicklet-1 ul li a .Icon.SelectedTick {
    width: 12px;
    height: 12px;
    position: absolute;
    top: -6px;
    right: -6px;
}

.ProductOption.chicklet-1 ul li.selected a:focus+.selected-tick-focus:before {
    position: absolute;
    content: '';
    right: -8px;
    top: -8px;
    width: 16px;
    height: 16px;
    border: solid 1px var(--deep-carrot);
    border-radius: 100%;
    background: #fff;
    z-index: 2;
}

.ProductOption.chicklet-1 ul li.selected a:focus+.selected-tick-focus:after {
    content: '';
    position: absolute;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    background: #fff;
    top: -3px;
    left: -3px;
    border: solid 1px var(--deep-carrot);
    border-radius: 4px;
}

.ProductOption.chicklet-1 ul li.selected>a:not(.show-popup).disabled {
    opacity: 0.4;
}

.ProductOption.chicklet-1 ul li a .Icon.SelectedTick svg {
    width: 100%;
    height: 100%;
    z-index: 3;
}

.ProductOption.chicklet-1 ul li a .best-seller {
    color: #00829b;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
    font-family: var(--sf-font-sohne-md);
}

.ProductOption.chicklet-1 ul li a .price {
    font-family: var(--sf-font-sohne-md);
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
}

.ProductOption.chicklet-1 .mobile-label {
    display: none;
}

.ProductOption.chicklet-2 ul li a {
    border: solid 1px #c6c7c9;
    border-radius: 4px;
    box-sizing: content-box;
    display: flex;
    height: 100% !important;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0 !important;
    background: #fff;
    position: relative;
    z-index: 3;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.ProductOption.chicklet-2 ul li a .Icon {
    height: 100%;
    max-height: 64px;
    max-width: 64px;
    grid-row: 1;
    grid-column: 1;
    align-self: flex-start;
    width: auto;
}

.ProductOption.chicklet-2 ul li a .Icon svg {
    width: 100%;
    height: 100%;
    align-self: flex-start;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.ProductOption.chicklet-2 ul li.selected a .Icon svg,
.ProductOption.chicklet-2 ul li a:hover .Icon svg {
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
}

.ProductOption.chicklet-2 ul li a:hover {
    height: 100% !important;
}

.ProductOption.chicklet-2 ul li.selected a {
    border-width: 2px;
    border-color: var(--gray-medium);
}

.ProductOption.chicklet-2 ul li a:focus {
    outline: solid 1px var(--deep-carrot) !important;
    outline-offset: 2px;
}

.ProductOption.chicklet-2 ul li a:focus:after {
    display: none;
}

.ProductOption.chicklet-2 ul li.selected a:focus {
    outline: none !important;
}

.ProductOption.chicklet-2 ul li.selected a:focus:before {
    content: '';
    position: absolute;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border: solid 2px #fff;
    top: -4px;
    left: -4px;
    border-radius: 6px;
}

.ProductOption.chicklet-2 ul li a .Icon.SelectedTick {
    width: 12px;
    height: 12px;
    position: absolute;
    top: -6px;
    right: -6px;
}

.ProductOption.chicklet-2 ul li.selected a:focus+.selected-tick-focus:before {
    position: absolute;
    content: '';
    right: -8px;
    top: -8px;
    width: 16px;
    height: 16px;
    border: solid 1px var(--deep-carrot);
    border-radius: 100%;
    background: #fff;
    z-index: 2;
}

.ProductOption.chicklet-2 ul li.selected a:focus+.selected-tick-focus:after {
    content: '';
    position: absolute;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    background: #fff;
    top: -3px;
    left: -3px;
    border: solid 1px var(--deep-carrot);
    border-radius: 4px;
}

.ProductOption.chicklet-2 ul li.selected>a:not(.show-popup).disabled {
    opacity: 0.4;
}

.ProductOption.chicklet-2 ul li a .Icon.SelectedTick svg {
    width: 100%;
    height: 100%;
    z-index: 3;
}

.ProductOption.chicklet-2 ul li a .best-seller {
    color: #00829b;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
    font-family: var(--sf-font-sohne-md);
}

.ProductOption.chicklet-2 ul li a .price {
    font-family: var(--sf-font-sohne-md);
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
}

.ProductOption ul li a .label {
    font-family: var(--sf-font-sohne);
    color: var(--neutrals-dark);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    line-height: 21px;
    display: flex;
    grid-column-gap: 10px;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    grid-row: 1;
    grid-column: 2;
    white-space: nowrap;
}

.ProductOption ul li.selected a .label {
    font-family: var(--sf-font-sohne-b);
}


.ProductOption.TRIM ul li a .label {
    justify-content: center;
}

.ProductOption ul li a .label .optionExtraPrice {
    display: none;
}

.ProductOption.full-width ul li a .label .optionExtraPrice {
    display: block;
}

.ProductOption.chicklet-2 ul li.selected a .label {
    font-family: var(--sf-font-sohne);
}

.ProductOption.chicklet-2 ul li a .label {
    color: var(--neutrals-dark);
    font-family: var(--sf-font-sohne);
    align-self: center;
    justify-content: center;
    font-size: 14px;
    margin: 0 8px;
    letter-spacing: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    padding: 5px 0;
    font-style: normal;
    line-height: 21px;
}

.ProductOption.chicklet-2 .mobile-label {
    display: none;
}

.ProductOption.single-option label span {
    font-family: var(--sf-font-sohne);
    margin-left: 5px;
    text-transform: capitalize;
}

@media screen and (max-width: 767px) {

    .ProductOption.chicklet-1 ul,
    .ProductOption.chicklet-2 ul {
        display: grid;
        grid-template-columns: 1fr !important;
        grid-auto-rows: 1fr;
    }

    .ProductOption.chicklet-1 .mobile-label,
    .ProductOption.chicklet-2 .mobile-label {
        display: flex;
        font-weight: normal;
        text-transform: none;
        font-family: var(--sf-font-sohne-b);
    }

    .ProductOption.single-option {
        margin: 15px 0 0 0;
    }

    .ProductOption.chicklet-1:not(.single-option) label,
    .ProductOption.chicklet-2:not(.single-option) label {
        white-space: nowrap;
        font-size: 14px;
        line-height: 21px;
        font-family: var(--sf-font-sohne-b);
        font-weight: 500;
        border: 1px solid #d8d8d8;
        width: 100%;
        border-radius: 8px;
        padding: 10px;
        box-sizing: border-box;
        margin: 0;
    }
    
    .ProductOption.chicklet-1:not(.single-option) .mobile-options-label .labelText,
    .ProductOption.chicklet-2:not(.single-option) .mobile-options-label .labelText{
        border: none;
    }

    .ProductOption.chicklet-1:not(.single-option) label .caret,
    .ProductOption.chicklet-2:not(.single-option) label .caret {
        position: absolute;
        top: 35%;
        right: 12px;
        border-top: 6px dashed #2d3137;
        border-right: 6px solid transparent;
        border-left: 6px solid transparent;
    }

    .ProductOption.chicklet-1>ul>li,
    .ProductOption.chicklet-2>ul>li {
        display: flex !important;
    }

    .ProductOption.chicklet-1>.mobile-options,
    .ProductOption.chicklet-2>.mobile-options {
        display: flex;
        position: fixed;
        bottom: 65px;
        z-index: 2001;
        width: calc(100% - 30px);
        background-color: var(--color-white);
        padding: 20px;
        box-sizing: border-box;
        left: 15px;
        border-radius: 8px;
        padding-top: 42px;
        display: none;
        overflow-y: scroll;
        max-height: calc(100vh - 80px);
    }

    .ProductOption.chicklet-1.full-width.no-icon>.mobile-options {
        padding: 20px 8px;
    }

    .ProductOption>.mobile-options.show .close {
        display: block !important;
    }

    .ProductOption.chicklet-1>.mobile-options.show,
    .ProductOption.chicklet-2>.mobile-options.show {
        display: flex;
        flex-direction: column;
    }

    .ProductOption.chicklet-1>.mobile-options.show .mobile-options-label,
    .ProductOption.chicklet-2>.mobile-options.show .mobile-options-label {
        color: #58595b;
        font-family: var(--sf-font-sohne-b);
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 0;
        line-height: 18px;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

    .ProductOption.chicklet-1>.mobile-options.active,
    .ProductOption.chicklet-2>.mobile-options.active {
        display: flex;
    }

    .ProductOption.chicklet-1 ul li.selected>a,
    .ProductOption.chicklet-2 ul li.selected>a {
        display: flex !important;
    }

    .ProductOption.chicklet-1 .fade-bg,
    .ProductOption.chicklet-2 .fade-bg {
        position: fixed;
        z-index: 2000;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 20px;
        left: 0;
        top: 0;
        display: none;
    }

    .ProductOption.chicklet-1 .fade-bg.show,
    .ProductOption.chicklet-2 .fade-bg.show {
        display: block;
    }

    .ProductOption.chicklet-1>.mobile-options .close,
    .ProductOption.chicklet-2>.mobile-options .close {
        right: 0;
        left: auto;
    }

    .ProductOption.chicklet-1 .mobile-options ul li,
    .ProductOption.chicklet-1 .mobile-options ul li a,
    .ProductOption.chicklet-2 .mobile-options ul li,
    .ProductOption.chicklet-2 .mobile-options ul li a {
        width: 100% !important;
        box-sizing: border-box;
        height: auto !important;
        flex-direction: row;
        grid-column-gap: 12px;
        -webkit-column-gap: 12px;
           -moz-column-gap: 12px;
                column-gap: 12px;
    }

    .ProductOption.chicklet-1 .mobile-options ul li a .Icon,
    .ProductOption.chicklet-2 .mobile-options ul li a .Icon {
        margin-bottom: 0;
    }

    .ProductOption.chicklet-1 .mobile-options ul li a:hover,
    .ProductOption.chicklet-2 .mobile-options ul li a:hover {
        height: auto !important;
    }

    .ProductOption.chicklet-1 ul,
    .ProductOption.chicklet-1.no-icon ul {
        display: grid;
        grid-template-columns: 1fr;
    }

    .ProductOption.chicklet-1 ul li.selected .selected-tick-focus,
    .ProductOption.chicklet-2 ul li.selected .selected-tick-focus {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
    .PBPip .ProductOption>.option-wrapper .close {
        display: none;
    }
}


@media screen and (min-width: 970px) and (max-width: 1199px) {
    .ProductOption.chicklet-2 ul li a .label {
        margin: 0 5px;
    }
}
.MMB-CTA button {
    border: 0;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    margin: 0 0 0 4px;
    padding: 0;
    text-decoration: underline;
    background: none;
}

.MMB-CTA button:hover {
    cursor: pointer;
    text-decoration: none;
}
.Icon {
    display: flex;
    flex: 0 0 auto;
}

.Icon > svg {
    display: flex;
    flex: 1 1 100%;
    pointer-events: none;
}

.storefe-spritesheet {
    background-image: url(https://cld1.staticsfly.com/storefe.7427bbdbcb.png);
    background-repeat: no-repeat;
}

a.buy-now {
    border: 1px solid transparent;
}

a.buy-now.primary {
    order: -1;
    display: inline-flex
}

.store-front .uig-dialog-box-wrapper.buy-now-modal-wrapper, .store-front .uig-dialog-box-container .uig-db-backdrop {
    z-index: 10002;
}

.store-front .uig-dialog-box-container.buy-now-modal-container {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10002;
}
.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;
    }
}
.calendar-dropdown {
    margin: 16px 0;
}

.calendar-dropdown .calendar-dropdown-wrapper .calendar-month {
    width: 130px;
}

.calendar-dropdown .calendar-dropdown-wrapper .calendar-year {
    width: 88px;
}

.calendar-dropdown-wrapper {
    display: flex;
    flex-flow: row nowrap;
    grid-gap: 10px;
    gap: 10px;
    margin-top: 16px;
}

.calendar-dropdown .calendar-dropdown-wrapper .date-dropdown {
    display: flex;
    flex-flow: row nowrap;
    margin: 6px 0 0 0;
    position: relative;
    border-bottom: 0 !important;
}


.calendar-dropdown .calendar-dropdown-wrapper .date-dropdown label {
    display: flex;
    text-transform: uppercase;
    font-family: var(--sf-font-sohne-sb);
    padding: 0px 0 5px 0;
    color: #757779;
    margin: 10px 10px 0 0;
    flex: 0 0 auto;
    white-space: nowrap;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.calendar-dropdown span.dropdown-label {
    display: flex;
    text-transform: uppercase;
    font-family: var(--sf-font-sohne-sb);
    color: #757779;
}

.calendar-dropdown .calendar-dropdown-wrapper .date-dropdown .caret {
    position: absolute;
    top: 43%;
    right: 12px;
    border-top: 4px dashed var(--text-color-grey);
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.calendar-dropdown .calendar-dropdown-wrapper .date-dropdown button:hover {
    box-shadow: 0 0 0 2px var(--gray-medium);
}

.calendar-dropdown .calendar-dropdown-wrapper .date-dropdown button {
    width: 100%;
    padding: 0.5rem 1.8rem 0.5rem 1rem;
    display: inline-block;
    margin-bottom: 0;
    font-size: var(--font-size-default);
    font-weight: normal;
    line-height: 1.42857143;
    text-align: left;
    white-space: nowrap;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    border: 1px solid var(--gray-dark);
    border-radius: 4px;
    color: var(--dark-charcoal);
    background-color: var(--color-white);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    will-change: transform;
}

.calendar-dropdown .calendar-dropdown-wrapper .date-dropdown button span {
    font-family: var(--sf-font-sohne);
    font-size: var(--font-size-default);
    color: var(--text-color);
}

.calendar-dropdown .calendar-dropdown-wrapper .date-dropdown button .caret {
    border-width: 6px;
}

.calendar-dropdown .calendar-dropdown-wrapper .date-dropdown.open button .caret {
    transform: rotate(180deg);
}

.calendar-dropdown .calendar-dropdown-wrapper .date-dropdown.open button {
    border-color: var(--gray-medium);
    border-width: 2px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    padding: 0.438rem 1.738rem 0.438rem 0.938rem;
    box-shadow: none;

}

.calendar-dropdown .calendar-dropdown-wrapper .date-dropdown.open button span {
    font-family: var(--sf-font-sohne-sb);
}

.calendar-dropdown .calendar-dropdown-wrapper .date-dropdown .btn-default:visited {
    color: var(--dark-charcoal);
    background-color: #e6e6e6;
    border-color: #adadad;
}

.calendar-dropdown .calendar-dropdown-wrapper .date-dropdown button .product-quantity {
    text-align: left;
    display: inline-block;
    min-width: 30%;
    float: none;
}

.calendar-dropdown .calendar-dropdown-wrapper .date-dropdown button:active:after {
    display: none;
}

.calendar-dropdown .calendar-dropdown-wrapper .date-dropdown button:active {
    background-color: rgba(0, 0, 0, 0.1);
    border-width: 2px;
    padding: 0.438rem 1.738rem 0.438rem 0.938rem;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}


.calendar-dropdown .calendar-dropdown-wrapper .date-dropdown .dropdown-menu {
    max-height: 300px;
    overflow: auto;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 50;
    float: left;
    padding: 5px 0;
    margin: -2px 0 0;
    font-size: var(--font-size-default);
    text-align: left;
    background-color: var(--color-white);
    background-clip: padding-box;
    border: 2px solid var(--gray-medium);
    border-radius: 4px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.calendar-dropdown .calendar-dropdown-wrapper .date-dropdown .dropdown-item {
    font-size: var(--font-size-default);
    font-weight: 500;
    line-height: 17px;
    padding: 8px 10px 8px 25px;
    cursor: pointer;
    float: left;
    width: calc(100% - 35px);
    position: relative;
}

.calendar-dropdown .calendar-dropdown-wrapper .date-dropdown .dropdown-menu .dropdown-item.selected {
    font-family: var(--sf-font-sohne-sb);
    color: var(--text-color);
}

.calendar-dropdown .calendar-dropdown-wrapper .date-dropdown .dropdown-menu .dropdown-item:hover {
    background-color: var(--gray-solitude);
    text-decoration: underline;
}

.calendar-dropdown .calendar-dropdown-wrapper .date-dropdown .dropdown-menu .dropdown-item:focus {
    background-color: var(--gray-solitude);
    outline: none;
    border-radius: 4px;
}

.calendar-dropdown .calendar-dropdown-wrapper .date-dropdown .dropdown-menu .dropdown-item.focus {
    background-color: var(--gray-solitude);
}

.check {
    display: inline-block;
    transform: rotate(35deg);
    height: 8px;
    width: 4px;
    border-bottom: 2px solid var(--deep-carrot);
    border-right: 2px solid var(--deep-carrot);
    position: absolute;
    left: 10px;
    top: -3px;
    bottom: 0;
    margin: auto;
}

.calendar-dropdown .calendar-dropdown-wrapper .date-dropdown button .calendar-value {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.calendar-dropdown-wrapper>.mobile-options.active {
    display: flex;
}

.calendar-dropdown-wrapper .date-dropdown>ul li.selected>a {
    display: flex !important;
}

.calendar-dropdown .fade-bg {
    position: fixed;
    z-index: 2000;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    left: 0;
    top: 0;
    display: none;
}

.calendar-dropdown .fade-bg.show {
    display: block;
}

.calendar-dropdown .calendar-dropdown-wrapper .date-dropdown>.mobile-options .close {
    right: 0;
    left: auto;
}

.calendar-dropdown .calendar-dropdown-wrapper .date-dropdown .mobile-options.show ul li,
.calendar-dropdown .calendar-dropdown-wrapper .date-dropdown .mobile-options.show>ul li a {
    width: 100%;
    box-sizing: border-box;
    height: auto;
    flex-direction: row;
    grid-column-gap: 12px;
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
}

.calendar-dropdown .calendar-dropdown-wrapper .date-dropdown .mobile-options.show ul li a:hover {
    height: auto !important;
}

.calendar-dropdown .calendar-dropdown-wrapper .date-dropdown>.mobile-options.show {
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 15px;
    z-index: 2005;
    width: calc(100% - 30px);
    background-color: var(--color-white);
    padding: 20px;
    box-sizing: border-box;
    left: 15px;
    border-radius: 8px;
    padding-top: 40px;
    max-height: 550px;
    overflow: auto;
}

.calendar-dropdown .calendar-dropdown-wrapper .date-dropdown>.mobile-options.show .mobile-options-label {
    color: #58595B;
    font-family: var(--sf-font-sohne-md);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 18px;
    margin-bottom: 10px;
}

.calendar-dropdown .calendar-dropdown-wrapper .date-dropdown>.mobile-options.active {
    display: flex;
}

.date-dropdown>.mobile-options.show ul li {
    width: 100%;
    list-style-type: none;
    box-sizing: border-box;
    height: auto;
    flex-direction: row;
    grid-column-gap: 12px;
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
}


.date-dropdown>.mobile-options.show ul li a {
    border-radius: 4px;
    box-sizing: content-box;
    height: 100%;
    padding: 10px;
    align-items: center;
    justify-content: flex-start;
    background: #fff;
    position: relative;
    z-index: 3;
    display: flex;
    flex-flow: column nowrap;
    color: var(--gray-medium);
    border: 1px solid #929497;
    text-decoration: none;
    text-align: center;
    width: 100%;
    flex-direction: row;
}


.date-dropdown .mobile-options ul li a:hover {
    height: 100% !important;
}

.date-dropdown .mobile-options ul li.selected>a:not(.show-popup) {
    padding: 10px;
}

.date-dropdown .mobile-options ul li.selected a {
    padding: 8px 9px 9px 9px;
    border: 2px solid var(--gray-medium);
    font-family: var(--sf-font-sohne-sb);
    font-weight: unset;
}

.date-dropdown>.mobile-options.show li a:focus {
    outline: solid 1px var(--deep-carrot) !important;
    outline-offset: 2px;
}

.date-dropdown .mobile-options.show ul li a:focus:after {
    display: none;
}

.date-dropdown .mobile-options.show ul li.selected a:focus {
    outline: none !important;
}

.date-dropdown .mobile-options.show ul li.selected a:focus:before {
    content: "";
    position: absolute;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border: solid 2px #fff;
    top: -4px;
    left: -4px;
    border-radius: 6px;
}

.calendar-dropdown .calendar-dropdown-wrapper .date-dropdown>.mobile-options.show ul li a .Icon.SelectedTick {
    width: 12px;
    height: 12px;
    position: absolute;
    top: -7px;
    right: -7px;
}

.calendar-dropdown .calendar-dropdown-wrapper .date-dropdown>.mobile-options.show ul li.selected a:focus+.selected-tick-focus:before {
    position: absolute;
    content: "";
    right: -8px;
    top: -8px;
    width: 16px;
    height: 16px;
    border: solid 1px var(--deep-carrot);
    border-radius: 100%;
    background: #fff;
    z-index: 2;
}

.calendar-dropdown .calendar-dropdown-wrapper .date-dropdown>.mobile-options.show ul li.selected a:focus+.selected-tick-focus:after {
    content: "";
    position: absolute;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    background: #fff;
    top: -3px;
    left: -3px;
    border: solid 1px var(--deep-carrot);
    border-radius: 4px;
}

.calendar-dropdown .calendar-dropdown-wrapper .date-dropdown>.mobile-options.show ul {
    flex: 1 1 auto;
    display: flex;
    flex-flow: row wrap;
    list-style-type: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    grid-gap: 10px 8px;
    gap: 10px 8px;
}
.DesignerDetails>div {
    font-family: var(--sf-font-sohne-md);
    margin-top: 10px;
}

.DesignerDetails div>span:first-child {
    display: inline-block;
    margin-right: 40px;
    text-decoration: line-through;
}

.DesignerDetails div>span:last-child {
    text-decoration: none;
}

.DesignerDetails div>span:nth-child(2) {
    color: #CC0000;
}
.designer-info {
    max-width: 634px;
    margin-bottom: 24px;
    margin-top: 10px;
}

.designer-info .designer-title {
    height: 28px;
    color: var(--gray-medium);
    font-family: var(--sf-font-sohne);
    font-size: 18.66px;
    letter-spacing: 0;
    line-height: 28px;
    margin-bottom: 16px;
}

.designer-info .designer-detail {
    display: flex;
    font-family: var(--sf-font-sohne);
    align-items: flex-start;
    color: var(--gray-dark-blue);
    font-size: 14px;
    letter-spacing: 0;
    line-height: 21px;
}

.designer-info .designer-detail img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin-right: 16px;
}

.designer-wrapper {
    display: flex;
}

@media (max-width: 768px) {
    .designer-info .designer-detail img {
        width: 56px;
        height: 56px;
    }
}

@media (min-width: 375px) {
    .designer-info {
        max-width: 351px;
    }
}

@media (min-width: 480px) {
    .designer-info {
        max-width: 464px;
    }
}

@media (min-width: 768px) {
    .designer-info {
        max-width: 445px;
    }
}

@media (min-width: 992px) {
    .designer-info {
        max-width: 571px;
    }

    .designer-info .designer-title {
        font-size: 24.88px;
    }
}

@media (min-width: 1200px) {
    .designer-info {
        max-width: 698px;
    }
}

@media (min-width: 1600px) {
    .designer-info {
        max-width: 994px;
    }
}
.social-share-icons {
    display: flex;
    white-space: nowrap;
    text-decoration: none;
    grid-gap: 10px;
    gap: 10px;
    justify-content: center;
    align-items: center;
}


a.DropDown {
    display: flex;
    color: var(--gray-medium) !important;
    white-space: nowrap;
    text-transform: uppercase;
}

a.DropDown .arrowIcon {
    margin: 7px 0 0 7px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--text-color);
}

a.DropDown span.Icon.actionMore.action-view-more {
    min-height: 22px;
    min-width: 22px;
}

a.DropDown:hover {
    color: var(--gray-medium);
}

a.DropDown.not-in-view {
    visibility: hidden;
}

.DropDownPanel {
    max-width: 50vw;
    padding: 16px;
    max-height: 480px;
    overflow: auto;
}

a.DropDown .color-swatch.action-more:hover {
    border-color: #f5f6f8;
    box-shadow: 2px 2px 7px 7px rgb(25 18 18 / 5%);
    background-color: #EBEDF0;
    border-radius: 6px;
}

@media screen and (max-width: 480px) {
    .DropDownPanel {
        min-width: 50vw;
        max-width: 100vw;
        max-height: 60vh;
        overflow-y: scroll;
    }

    .DropDownPanel .FilterPanelItem .SVGIconBox {
        width: 98px;
        margin: 0 4px 8px 0;
    }
}

@media screen and (max-width: 768px) and (min-width: 481px) {
    .DropDownPanel {
        min-width: 33vw;
        max-width: 40vw;
        max-height: 40vh;
        overflow-y: scroll;
    }
}
.SelectedFilters {
    display: none;
    flex-flow: row wrap;
    list-style: none;
    align-items: center;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 16px;
}

.FilterBar:not(.filter-enabled) .SelectedFilters {
    display: flex;
}

.SelectedFilters li {
    display: flex;
    flex-flow: column nowrap;
    background-color: #595959;
    border-radius: 10px;
    padding: 0px 8px 0px 8px;
    margin: 16px 16px 0px 0px;
    position: relative;
    flex-shrink: 0;
}

.SelectedFilters li:first-child {
    margin-left: 0;
}

.SelectedFilters li.clearAll {
    background: none;
    padding: 0px 8px 0px 8px;
    text-transform: capitalize;
    margin-right: 0px;
}

.SelectedFilters li a {
    display: flex;
    flex: 1 1 auto;
    color: #fff;
    font-size: var(--font-size-default);
    font-family: var(--sf-font-sohne);
    line-height: 21px;
    position: relative;
    padding-right: 15px;
}

.SelectedFiltersTopBar {
    display: none;
}

@media screen and (max-width: 480px) {
    .SelectedFiltersTopBar {
        display: block;
    }

    .SelectedFilters li a {
        padding: 2px 15px 2px 0px;
    }
}

.SelectedFilters li a:active,
.SelectedFilters li a:hover {
    color: #fff;
}

.SelectedFilters li:not(.clearAll) a:after,
.SelectedFilters li:not(.clearAll) a:before {
    --height: 1px;
    --width: 13px;
    content: '';
    position: absolute;
    width: var(--width);
    height: var(--height);
    background-color: #fff;
    transform: rotate(45deg);
    top: calc(50% - (var(--height) * 0.5));
    right: calc(var(--width) * -0.1);
}

.SelectedFilters li:not(.clearAll) a:after {
    transform: rotate(-45deg);
}

.SelectedFilters li.clearAll a:after,
.SelectedFilters li.clearAll a:before {
    --height: 2px;
    --width: 13px;
    content: '';
    position: absolute;
    width: var(--width);
    height: var(--height);
    background-color: #595959;
    transform: rotate(45deg);
    top: calc(50% - (var(--height) * 0.6));
    left: calc(var(--width) * -0.1);
}

.SelectedFilters li.clearAll a:after {
    transform: rotate(-45deg);
}

.SelectedFilters li.clearAll a:active,
.SelectedFilters li.clearAll a:hover,
.SelectedFilters li.clearAll a {
    color: #595959;
    padding-right: 0px;
    padding-left: 15px;
}

@media (max-width: 991px) {
    .SelectedFilters {
        width: 100%;
        flex-flow: row nowrap;
        overflow: auto;
    }

    .SelectedFilters::-webkit-scrollbar {
        display: none;
    }

    .SelectedFilters li .clearAllFilters {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
    }
}

/*# sourceMappingURL=storefe_styles~bb9f020d.b7e2b153.css.map*/