@keyframes sevf-skel-shimmer {
    0% {
        background-position: -200% 0
    }

    to {
        background-position: 200% 0
    }
}

@keyframes sevf-fadein {
    to {
        opacity: 1
    }
}

.sevf-skeleton {
    animation: sevf-fadein 1.5s linear forwards;
    animation-delay: .3s;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    opacity: 0
}

.sevf-skeleton--vertical {
    max-width: 280px
}

.sevf-skeleton--horizontal .sevf-skel-btn,
.sevf-skeleton--mobile .sevf-skel-btn {
    margin-bottom: 8px
}

.sevf-skel-btn {
    border-radius: 6px;
    flex: 0 0 auto;
    height: 38px;
    margin-right: 1rem;
    width: 7rem
}

.sevf-skel:after {
    animation: sevf-skel-shimmer 1.4s ease-in-out infinite;
    background-image: linear-gradient(90deg, transparent, var(--sevf-skel-highlight) 45%, transparent 60%);
    background-size: 200% 100%;
    content: "";
    inset: 0;
    position: absolute
}

@media(prefers-reduced-motion:reduce) {
    .sevf-skel:after {
        animation: none
    }
}

.sevf-product-placeholder {
    position: relative
}

li.sevf-product-placeholder {
    list-style: none
}

.sevf-product-placeholder img {
    margin: 0 auto
}

.sevf-product-placeholder:before {
    bottom: 5%;
    content: "";
    display: block;
    height: 4px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    width: 50%;
    z-index: 1;
    --sevfPlaceholderL: no-repeat linear-gradient(#aaa 0 0);
    animation: sevfPlaceholderFrames 3s infinite;
    background: var(--sevfPlaceholderL), var(--sevfPlaceholderL), #eee;
    background-size: 58% 100%
}

@keyframes sevfPlaceholderFrames {
    0% {
        background-position: -150% 0, -150% 0
    }

    66% {
        background-position: 250% 0, -150% 0
    }

    to {
        background-position: 250% 0, 250% 0
    }
}

.sevf-applied-filters-container {
    clear: both;
    padding: 0;
    width: 100%
}

.sevf-applied-filters-container *,
.sevf-applied-filters-container :after,
.sevf-applied-filters-container :before {
    box-sizing: border-box
}

.sevf-applied-filters-container:empty {
    display: none
}

.sevf-applied-filters {
    padding-bottom: 20px
}

.sevf-applied-filters .sevf-applied-filter {
    align-items: center;
    background-color: #fff;
    border: none;
    border-radius: .45em;
    box-shadow: inset 0 0 0 1px #363636;
    color: #363636;
    cursor: default;
    display: inline-flex;
    flex-flow: row-reverse;
    font-size: 1em;
    font-weight: 400;
    justify-content: space-between;
    line-height: 1.25em;
    margin: 0 8px 8px 0;
    padding: 8px 12px;
    transition: box-shadow .2s
}

.sevf-applied-filters .sevf-applied-filter span {
    transition: -webkit-text-decoration .2s;
    transition: text-decoration .2s;
    transition: text-decoration .2s, -webkit-text-decoration .2s
}

.sevf-applied-filters .sevf-applied-filter strong {
    font-weight: 600
}

.sevf-applied-filters .sevf-applied-filter--outlined {
    box-shadow: inset 0 0 0 2px #363636
}

.sevf-applied-filters .sevf-applied-filter--clear-all {
    cursor: pointer
}

.sevf-applied-filters .sevf-applied-filter--clear-all:focus,
.sevf-applied-filters .sevf-applied-filter--clear-all:hover {
    box-shadow: inset 0 0 0 2px #363636;
    outline: none
}

.sevf-applied-filters .sevf-applied-filter-icon {
    background-color: transparent;
    cursor: pointer;
    line-height: 1;
    margin-left: 1.05em;
    padding: 0;
    position: relative
}

.sevf-applied-filters .sevf-applied-filter-icon:before {
    background-color: var(--sevf--colors--base);
    border-radius: 100%;
    content: "" !important;
    height: 1.7em;
    left: 50%;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: opacity .2s;
    width: 1.7em;
    z-index: 0
}

.sevf-applied-filters .sevf-applied-filter-icon:focus,
.sevf-applied-filters .sevf-applied-filter-icon:hover {
    outline: none
}

.sevf-applied-filters .sevf-applied-filter-icon:focus:before,
.sevf-applied-filters .sevf-applied-filter-icon:hover:before {
    opacity: .3
}

.sevf-applied-filters .sevf-applied-filter-icon:focus+span,
.sevf-applied-filters .sevf-applied-filter-icon:hover+span {
    text-decoration: line-through
}

.sevf-vertical-filters-container .sevf-block:first-child {
    padding-top: 0
}

.sevf-block {
    border-bottom: 1px solid #f2f2f2;
    font-size: 14px;
    padding: 15px 0
}

@media(min-width:768px) {
    .sevf-block {
        font-size: 15px
    }
}

.sevf-block:last-of-type {
    border: none
}

.sevf-block--collapsible .sevf-block__headline {
    cursor: pointer
}

.sevf-block--collapsed .sevf-block__content {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transition: all .25s
}

.sevf-block--collapsed .sevf-block__chevron-btn .sevf-block__chevron-btn-icon {
    transform: translateY(-50%) rotate(180deg)
}

.sevf-block .sevf-block__items-list-wrapper--limited {
    max-height: 400px;
    overflow-y: auto
}

.sevf-block .sevf-block__items-list-wrapper--has-scrollbar {
    padding-right: .6em
}

.sevf-block ul.sevf-block__items-list {
    list-style: none;
    margin: 0;
    padding: 0
}

.sevf-block ul.sevf-block__items-list--hidden {
    display: none
}

.sevf-block ul.sevf-block__items-list ul.sevf-block__items-list {
    margin-left: 20px;
    margin-top: .5em
}

.sevf-block__headline .sevf-block__headline-box-inner {
    align-items: center;
    color: #161616;
    display: flex;
    font-size: 18px;
    font-weight: 600;
    gap: 3px;
    line-height: 23px;
    margin: 0;
    padding: 0
}

@media(min-width:768px) {
    .sevf-block__headline .sevf-block__headline-box-inner {
        font-size: 1.33em;
        line-height: 1.33em
    }
}

.sevf-block__headline p,
.sevf-block__headline span {
    color: #767676;
    font-size: 1em;
    font-weight: 400;
    line-height: 1.25em
}

.sevf-block__headline p {
    margin-bottom: .85em
}

.sevf-block__headline-box {
    align-items: center;
    display: flex;
    flex-flow: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: 100%
}

.sevf-block__headline-box-icon {
    display: block;
    height: 18px;
    margin-left: 10px;
    width: 18px
}

.sevf-block__chevron-btn {
    background-color: transparent;
    border: none;
    border-radius: 100%;
    box-shadow: none;
    margin-left: auto;
    outline: none;
    padding: 0;
    position: relative
}

.sevf-block__chevron-btn:focus,
.sevf-block__chevron-btn:hover {
    background: none;
    outline: none
}

.sevf-block__chevron-btn-icon {
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(0)
}

.sevf-block__breadcrumbs {
    display: block;
    font-size: .9em;
    margin-bottom: .8em;
    margin-top: .5em
}

.sevf-block__breadcrumbs a {
    border-radius: 2px;
    color: var(--sevf--colors--link) !important;
    font-weight: 400 !important;
    text-decoration: none !important
}

.sevf-block__breadcrumbs a:focus {
    outline-style: dotted
}

.sevf-block__content {
    opacity: 1;
    transition: all .5s
}

.sevf-block__content-inner {
    padding: .9em 0 0
}

.sevf-block .amount {
    color: inherit;
    font-weight: inherit
}

.sevf-button {
    cursor: pointer;
    display: inline-block;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.sevf-button svg,
.sevf-button--disabled {
    pointer-events: none
}

.sevf-item {
    caret-color: transparent;
    list-style: none;
    margin: 0;
    padding: 0 0 .5em;
    position: relative;
    text-align: left
}

.sevf-item:last-of-type {
    padding-bottom: 0
}

.sevf-item__interactive {
    align-items: center;
    cursor: pointer !important;
    display: flex;
    justify-content: flex-start
}

.sevf-item__interactive:focus {
    outline: none
}

.widget-area .widget a.sevf-item__interactive,
a.sevf-item__interactive {
    font-weight: 400;
    text-decoration: none
}

.sevf-item__control {
    background: #fff;
    border: .125em solid #bbb;
    cursor: pointer;
    height: 1.25em;
    margin-right: .6em;
    position: relative;
    transition: background .3s;
    width: 1.25em
}

.sevf-item__control:after,
.sevf-item__control:before {
    content: "";
    left: 0;
    position: absolute;
    top: 0
}

.sevf-item img.sevf-item__label_image,
.sevf-item__label_image {
    border-radius: .175em;
    height: 1.25em;
    max-width: 100%
}

.sevf-item img.sevf-item__label_image.sevf-item__label_image--before-label,
.sevf-item__label_image.sevf-item__label_image--before-label {
    margin-right: .3em
}

.sevf-item img.sevf-item__label_image.sevf-item__label_image--after-label,
.sevf-item__label_image.sevf-item__label_image--after-label {
    margin-left: .3em
}

.sevf-item__label {
    color: #161616;
    line-height: 1.5em
}

.sevf-item__counter {
    color: #767676;
    margin-left: auto;
    padding-left: .3em;
    white-space: nowrap
}

.sevf-item.sevf-selected>.sevf-collapser-container>.sevf-item__interactive>.sevf-item__control,
.sevf-item.sevf-selected>.sevf-item__interactive>.sevf-item__control {
    background: var(--sevf--colors--base);
    border: none
}

.sevf-item.sevf-selected a.sevf-item__interactive,
.sevf-item.sevf-selected>.sevf-collapser-container>a.sevf-item__interactive .sevf-item__label span,
.sevf-item.sevf-selected>a.sevf-item__interactive .sevf-item__label span,
.widget-area .widget .sevf-item.sevf-selected a.sevf-item__interactive {
    font-weight: 600
}

.sevf-item.sevf-disabled {
    opacity: .4
}

.sevf-item.sevf-disabled .sevf-disabled {
    opacity: 1
}

.sevf-item.sevf-disabled>.sevf-item__interactive {
    cursor: default !important
}

.sevf-item.sevf-disabled>.sevf-item__interactive .sevf-item__control {
    cursor: default
}

.sevf-item.sevf-always-selected>div .sevf-item__interactive {
    cursor: default !important
}

.sevf-item.sevf-always-selected>div .sevf-item__interactive .sevf-item__control {
    cursor: default;
    opacity: .4
}

.sevf-item--checkbox .sevf-collapser-container {
    display: flex
}

.sevf-item--checkbox .sevf-collapser-container .sevf-collapser {
    height: 22px;
    width: 20px
}

.sevf-item--checkbox .sevf-collapser-container .sevf-collapser .sevf-button {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    width: 100%
}

.sevf-item--checkbox .sevf-collapser-container .sevf-collapser .sevf-button svg {
    transform: rotate(90deg)
}

.sevf-item--checkbox .sevf-collapser-container .sevf-collapser--open .sevf-button svg {
    transform: rotate(180deg)
}

.sevf-item--checkbox .sevf-collapser-container .sevf-item__interactive {
    width: 100%
}

.sevf-item--checkbox .sevf-item__interactive:hover>.sevf-item__control {
    box-shadow: inset 0 0 0 2px var(--sevf--colors-input-border)
}

.sevf-item--checkbox .sevf-item__control {
    border: none;
    border-radius: .175em;
    box-shadow: inset 0 0 0 1px var(--sevf--colors-input-border);
    height: 20px;
    min-width: 20px;
    position: relative;
    transition: box-shadow .2s, background-color .2s;
    width: 20px
}

.sevf-item--checkbox .sevf-item__control:hover {
    box-shadow: inset 0 0 0 2px var(--sevf--colors-input-border)
}

.sevf-item--checkbox .sevf-item__control svg {
    left: 50%;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%)
}

.sevf-popover .sevf-block--buttons {
    max-width: 300px
}

.sevf-block--buttons .sevf-block__items-list {
    display: flex;
    flex-wrap: wrap;
    grid-row-gap: 10px;
    grid-column-gap: 7px
}

.sevf-block--buttons .sevf-item--more-less {
    margin-top: .4em
}

.sevf-item--button {
    border-radius: .25em;
    box-shadow: inset 0 0 0 1px var(--sevf--colors-input-border);
    padding: 0;
    transition: box-shadow .2s, background-color .2s, opacity .2s
}

.sevf-item--button .sevf-item__label {
    padding: 3px 7px
}

.sevf-item--button .sevf-item__counter {
    margin-left: -2px;
    padding-left: 0;
    padding-right: 7px
}

.sevf-item--button:hover {
    box-shadow: inset 0 0 0 2px var(--sevf--colors-input-border)
}

.sevf-item--button.sevf-selected {
    background-color: var(--sevf--colors--base);
    box-shadow: none
}

.sevf-item--button.sevf-selected:hover {
    opacity: .9
}

.sevf-item--button.sevf-selected .sevf-item__counter,
.sevf-item--button.sevf-selected .sevf-item__label span {
    color: #fff
}

.widget ul li.sevf-item--button,
ul li.sevf-item--button {
    margin: 0
}

.sevf-block--color .sevf-block__items-list {
    display: flex;
    flex-wrap: wrap;
    grid-row-gap: 13px;
    grid-column-gap: 10px
}

.sevf-item--color {
    padding: 0
}

.sevf-item--color>.sevf-item__interactive-wrapper {
    border-radius: 100%;
    box-shadow: 2px 2px 5px hsla(0, 0%, 50%, .6);
    transition: transform .1s ease-in-out
}

.sevf-item--color .sevf-item__color {
    border-radius: 100%;
    box-shadow: 0 0 1px hsla(0, 0%, 50%, .2);
    height: 30px;
    padding: 1px;
    width: 30px
}

.sevf-item--color .sevf-item__color-inner {
    align-items: center;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 18px;
    display: flex;
    height: 100%;
    justify-content: center
}

.sevf-item--color:hover>.sevf-item__interactive-wrapper {
    transform: scale(1.1)
}

.sevf-item--color:hover.sevf-disabled>.sevf-item__interactive-wrapper {
    transform: none
}

.sevf-item--color.sevf-selected>.sevf-item__interactive-wrapper {
    transform: scale(1.1)
}

.sevf-item--color.sevf-selected:hover>.sevf-item__interactive-wrapper {
    transform: scale(1)
}

.sevf-item--radio:focus .sevf-item__control,
.sevf-item--radio:hover .sevf-item__control {
    box-shadow: inset 0 0 0 2px var(--sevf--colors-input-border)
}

.sevf-item--radio .sevf-item__control {
    background-color: transparent;
    border: none;
    border-radius: 100%;
    box-shadow: inset 0 0 0 1px var(--sevf--colors-input-border);
    height: 1.33em;
    transition: box-shadow .2s;
    width: 1.33em
}

.sevf-item--radio .sevf-item__label {
    transition: font-weight .2s
}

.sevf-item--radio.sevf-selected>.sevf-item__interactive>.sevf-item__control {
    background-color: transparent;
    box-shadow: inset 0 0 0 4px var(--sevf--colors--base)
}

.sevf-item--select {
    align-items: center;
    border-radius: .45em;
    box-shadow: inset 0 0 0 1px var(--sevf--colors-input-border);
    display: flex;
    justify-content: space-between;
    transition: all .2s
}

.sevf-item--select:focus-within,
.sevf-item--select:hover {
    background-color: #fff;
    box-shadow: inset 0 0 0 2px var(--sevf--colors-input-border)
}

.sevf-item--select input[role=combobox] {
    background: none;
    border: none;
    color: #767676;
    cursor: pointer;
    font-size: max(16px, 100%);
    height: 35px;
    padding: 7px 6px 7px 9px;
    position: relative;
    width: 100%
}

@media(min-width:768px) {
    .sevf-item--select input[role=combobox] {
        height: 40px;
        padding: 9px 6px 9px 9px
    }
}

.sevf-item--select input[role=combobox]:focus {
    outline: none
}

.sevf__select-controls {
    align-items: center;
    display: flex;
    justify-content: space-between
}

.sevf__select-controls--sep {
    background: #f2f2f2;
    display: block;
    height: 24px;
    margin: 6px 0;
    width: 1px
}

.sevf__select-controls--close {
    color: #bbb;
    font-size: 130%;
    opacity: 0;
    padding: 0 10px
}

.sevf__select-controls--close:hover {
    color: #767676
}

.sevf__select-controls--close-show {
    opacity: 1
}

.sevf__select-controls--toggle {
    line-height: 0;
    padding: 11px 12px 11px 10px
}

.sevf__select-controls--toggle path {
    stroke: #bbb
}

.sevf__select-chevron {
    transform: scale(.7)
}

.sevf__select-chevron--rev {
    transform: scale(.7) rotate(180deg)
}

.sevf__select-suggestions {
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    border-top: none;
    box-shadow: 0 2px 10px -3px #d9d9d9;
    color: #161616;
    overflow-y: auto;
    z-index: 999996
}

.sevf__select-suggestions-item {
    align-items: center;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    padding: .3em
}

.sevf__select-suggestions-item--active {
    background: #d9d9d9
}

.sevf__select-suggestions-item--active.sevf__select-suggestions-item--selected {
    opacity: .9
}

.sevf__select-suggestions-item--disabled {
    opacity: .4
}

.sevf__select-suggestions-item--selected {
    background: var(--sevf--colors--base);
    color: #fff
}

.sevf__select-suggestions-item--selected .sevf-item__counter {
    color: #fff
}

.sevf__select-suggestions-item--level-1 {
    padding-left: 1.4em
}

.sevf__select-suggestions-item--level-2 {
    padding-left: 2.5em
}

.sevf__select-suggestions-item--level-3 {
    padding-left: 3.6em
}

.sevf__select-suggestions-item--level-4 {
    padding-left: 4.7em
}

.sevf__select-suggestions-item--level-5 {
    padding-left: 5.8em
}

.sevf__select-suggestions-item--level-6 {
    padding-left: 6.9em
}

.sevf__select-suggestions-item>span {
    display: block;
    padding: 0 .3em;
    width: 100%
}

.sevf__select-suggestions-item .sevf-item__counter {
    padding-right: .7em
}

.sevf-item--toggle .sevf-item__toggle {
    display: inline-block;
    height: 30px;
    margin-right: .75em;
    position: relative;
    width: 33px
}

.sevf-item--toggle .sevf-item__toggle .sevf-item__toggle-track {
    background-color: var(--sevf--colors-input-border);
    border-radius: 4px;
    box-sizing: border-box;
    content: "";
    display: inline-block;
    height: 4px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: background .2s ease;
    vertical-align: top;
    width: 100%
}

.sevf-item--toggle .sevf-item__toggle .sevf-item__toggle-thumb {
    background-color: #fff;
    border: 1px solid var(--sevf--colors-input-border);
    border-radius: 100%;
    box-sizing: border-box;
    display: block;
    height: 18px;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s;
    width: 18px;
    z-index: 2
}

.sevf-item--toggle .sevf-item__toggle .sevf-item__toggle-thumb--shadow {
    background-color: var(--sevf--colors--base);
    border: none;
    border-radius: 100%;
    box-shadow: 0 0 0 6px var(--sevf--colors--base);
    height: 18px;
    left: 0;
    opacity: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s;
    width: 18px;
    z-index: 1
}

.sevf-item--toggle .sevf-item__toggle:hover .sevf-item__toggle-thumb--shadow {
    opacity: .7
}

.sevf-item--toggle.sevf-selected .sevf-item__toggle .sevf-item__toggle-thumb {
    border: 4px solid var(--sevf--colors--base);
    left: auto;
    right: 0
}

.sevf-range__slider-wrapper {
    margin-bottom: 30px;
    padding: 0 10px
}

.sevf-slider-histogram {
    align-content: flex-end;
    align-items: flex-end;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    height: 45px;
    justify-content: space-around
}

.sevf-slider-histogram__item {
    background-color: var(--sevf--colors--base);
    opacity: .2
}

.sevf-slider-histogram__item--active {
    opacity: .5
}

.sevf-range__track,
.sevf-range__track:before {
    background: var(--sevf--colors-input-border);
    height: 2px
}

.sevf-range__track:before {
    content: "";
    left: -9px;
    position: absolute;
    right: -9px;
    z-index: 0
}

.sevf-range__handle {
    background-color: #fff;
    border: 4px solid var(--sevf--colors--base);
    border-radius: 100%;
    display: block;
    height: 20px;
    padding: 0;
    width: 20px;
    z-index: 2 !important
}

.sevf-range__handle:focus {
    background-color: #fff;
    border: 4px solid var(--sevf--colors--base);
    outline: none
}

.sevf-range__handle:before {
    background-color: transparent;
    border: none;
    border-radius: 100%;
    box-shadow: 0 0 0 8px var(--sevf--colors--base);
    content: "";
    display: block;
    height: 18px;
    left: 50% !important;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: opacity .2s;
    width: 18px;
    z-index: 1
}

.sevf-range__handle:hover {
    background-color: #fff;
    border: 4px solid var(--sevf--colors--base)
}

.sevf-range__handle:hover:before {
    opacity: .7
}

.sevf-range__handle:focus:before {
    height: 12px;
    opacity: .5;
    width: 12px
}

.sevf-range__handle:active:before {
    opacity: 0
}

.sevf-range__segment {
    height: 100%
}

.sevf-range__segment--active {
    background: var(--sevf--colors--base);
    height: 4px
}

.sevf-range__segment--active:after {
    content: "";
    display: block;
    height: 2px;
    margin-top: -9px;
    padding: 10px 0;
    position: absolute;
    width: 100%
}

.sevf-range__segment--inactive {
    height: 2px;
    margin-top: -9px;
    min-height: 2px;
    opacity: 0;
    padding: 10px 0
}

.sevf-range__inputs-wrapper {
    align-items: center;
    display: flex;
    margin-bottom: 30px
}

.sevf-range__inputs-wrapper .sevf-input--hidden-label {
    display: none
}

.sevf-range__inputs-wrapper .sevf-input__wrapper {
    margin-right: 5px;
    min-width: 0
}

.sevf-range__inputs-wrapper .sevf-input__wrapper input[type=number] {
    margin-bottom: 0;
    max-width: 100%
}

.sevf-range__label-wrapper {
    display: flex;
    justify-content: space-between;
    margin-left: -10px;
    margin-right: -10px;
    margin-top: .7em
}

.woocommerce .sevf-input__wrapper,
:root .sevf-input__wrapper {
    position: relative;
    width: 100px
}

.woocommerce .sevf-input__wrapper>*,
:root .sevf-input__wrapper>* {
    line-height: 1.25em
}

.woocommerce .sevf-input__wrapper .sevf-input__label,
:root .sevf-input__wrapper .sevf-input__label {
    background-color: #fff;
    left: 6px;
    padding: 0 1px;
    position: absolute;
    top: 10px;
    transition: all .2s;
    z-index: 1
}

@media(min-width:768px) {

    .woocommerce .sevf-input__wrapper .sevf-input__label,
    :root .sevf-input__wrapper .sevf-input__label {
        top: 9px
    }
}

.woocommerce .sevf-input__wrapper .sevf-input__label--active,
:root .sevf-input__wrapper .sevf-input__label--active {
    bottom: auto;
    top: -12px
}

@media(min-width:768px) {

    .woocommerce .sevf-input__wrapper .sevf-input__label--active,
    :root .sevf-input__wrapper .sevf-input__label--active {
        top: -15px
    }
}

.woocommerce .sevf-input__wrapper input[type=number].sevf-input__element,
.woocommerce .sevf-input__wrapper input[type=search].sevf-input__element,
:root .sevf-input__wrapper input[type=number].sevf-input__element,
:root .sevf-input__wrapper input[type=search].sevf-input__element {
    background-color: #fff;
    border: none;
    border-radius: .45em;
    box-shadow: inset 0 0 0 1px var(--sevf--colors-input-border);
    color: #767676;
    height: 35px;
    padding: 7px 6px 7px 9px;
    position: relative;
    transition: all .2s
}

@media(min-width:768px) {

    .woocommerce .sevf-input__wrapper input[type=number].sevf-input__element,
    .woocommerce .sevf-input__wrapper input[type=search].sevf-input__element,
    :root .sevf-input__wrapper input[type=number].sevf-input__element,
    :root .sevf-input__wrapper input[type=search].sevf-input__element {
        height: 40px;
        padding: 9px 6px 9px 9px
    }
}

.woocommerce .sevf-input__wrapper input[type=number].sevf-input__element:active,
.woocommerce .sevf-input__wrapper input[type=number].sevf-input__element:focus,
.woocommerce .sevf-input__wrapper input[type=number].sevf-input__element:hover,
.woocommerce .sevf-input__wrapper input[type=search].sevf-input__element:active,
.woocommerce .sevf-input__wrapper input[type=search].sevf-input__element:focus,
.woocommerce .sevf-input__wrapper input[type=search].sevf-input__element:hover,
:root .sevf-input__wrapper input[type=number].sevf-input__element:active,
:root .sevf-input__wrapper input[type=number].sevf-input__element:focus,
:root .sevf-input__wrapper input[type=number].sevf-input__element:hover,
:root .sevf-input__wrapper input[type=search].sevf-input__element:active,
:root .sevf-input__wrapper input[type=search].sevf-input__element:focus,
:root .sevf-input__wrapper input[type=search].sevf-input__element:hover {
    background-color: #fff;
    box-shadow: inset 0 0 0 2px var(--sevf--colors-input-border)
}

.woocommerce .sevf-input__wrapper input[type=number].sevf-input__element:focus,
.woocommerce .sevf-input__wrapper input[type=search].sevf-input__element:focus,
:root .sevf-input__wrapper input[type=number].sevf-input__element:focus,
:root .sevf-input__wrapper input[type=search].sevf-input__element:focus {
    outline-color: var(--sevf--colors--base);
    outline-style: dotted;
    outline-width: 2px
}

.sevf-clear-filter-btn {
    align-items: center;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: inset 0 0 0 1px var(--sevf--colors-input-border);
    display: flex;
    justify-content: center;
    line-height: 0;
    max-height: 26px;
    max-width: 26px;
    min-height: 26px;
    min-width: 26px;
    padding: 0;
    position: relative;
    transition: all .2s
}

.sevf-clear-filter-btn--hidden {
    opacity: 0;
    pointer-events: none
}

.sevf-clear-filter-btn:hover {
    background-color: #fff;
    box-shadow: inset 0 0 0 2px var(--sevf--colors-input-border)
}

.sevf-clear-filter-btn:focus {
    outline-color: var(--sevf--colors--base);
    outline-style: dotted;
    outline-width: 2px
}

.sevf-offcanvas {
    background-color: #fff;
    border-radius: 10px 0 0 10px;
    bottom: 0;
    display: flex;
    flex-direction: column;
    max-width: 450px;
    overflow-y: auto;
    padding: 60px 0 90px;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(450px);
    transition-duration: .2s;
    transition-property: transform, visibility;
    transition-timing-function: ease-in-out;
    visibility: hidden;
    width: 100%;
    z-index: 10045
}

.sevf-offcanvas--active {
    transform: translateX(0);
    visibility: visible
}

.sevf-offcanvas--position-left {
    border-radius: 0 10px 10px 0;
    left: 0;
    right: auto;
    transform: translateX(-450px)
}

.sevf-offcanvas--position-left .sevf-offcanvas-header {
    border-radius: 0 10px 0 0;
    flex-flow: row-reverse;
    justify-content: space-between
}

.sevf-offcanvas--position-left .sevf-offcanvas-header p {
    margin: 0 8px
}

.sevf-offcanvas--position-left .sevf-offcanvas-clear {
    margin-right: 2px
}

.sevf-offcanvas--position-left.sevf-offcanvas--active {
    transform: translateX(0)
}

.sevf-offcanvas-bg {
    background-color: #000;
    height: 100vh;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: opacity .2s ease;
    width: 100vw;
    z-index: 10040
}

.sevf-offcanvas-bg--active {
    opacity: .5
}

.sevf-offcanvas .sevf-block:last-of-type {
    border-bottom: 1px solid #f2f2f2;
    margin-bottom: 34px
}

.sevf-offcanvas-footer,
.sevf-offcanvas-header {
    background-color: #fff;
    max-width: 450px;
    position: fixed;
    right: 0;
    width: 100%;
    z-index: 10
}

.sevf-offcanvas-header {
    align-items: center;
    border-bottom: 1px solid #f2f2f2;
    border-radius: 10px 0 0 0;
    display: flex;
    flex-flow: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 12px 16px 14px;
    top: 0
}

.sevf-offcanvas-header p {
    color: #767676;
    font-size: 20px;
    line-height: 25px;
    margin: 0 15px
}

.sevf-offcanvas-clear,
.sevf-offcanvas-close {
    background-color: #fff;
    border-radius: 4px;
    color: #767676;
    font-size: 15px;
    font-weight: 400;
    line-height: 19px;
    margin: 0;
    padding: 8px
}

.sevf-offcanvas-clear:hover,
.sevf-offcanvas-close:hover {
    background-color: #fff
}

.sevf-offcanvas-clear:focus,
.sevf-offcanvas-close:focus {
    outline-color: var(--sevf--colors--base);
    outline-style: dotted;
    outline-width: 2px
}

.sevf-offcanvas-clear {
    margin-left: auto
}

.sevf-offcanvas-clear:before {
    color: #d9d9d9;
    content: "|";
    display: inline-block;
    font-size: 15px;
    line-height: 19px;
    margin: 0 6px 0 auto
}

.sevf-offcanvas-content {
    overflow-y: auto;
    padding-left: 24px;
    padding-right: 24px
}

.sevf-offcanvas-footer {
    border-radius: 0 0 0 10px;
    bottom: 0;
    padding: 24px
}

.sevf-offcanvas-btn {
    background-color: #363636;
    border: 1px solid #161616;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    padding: 8px 12px;
    text-align: center;
    transition: background-color .3s;
    width: 100%
}

.sevf-offcanvas-btn:hover {
    background-color: #030303;
    border: 1px solid #161616;
    color: #fff
}

.sevf-offcanvas-btn:focus {
    outline-color: var(--sevf--colors--base);
    outline-style: dotted;
    outline-width: 2px
}

.admin-bar .sevf-offcanvas {
    top: 32px
}

@media(max-width:768px) {
    .admin-bar .sevf-offcanvas {
        top: 46px
    }
}

.sevf-popover {
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    box-shadow: none;
    box-sizing: border-box;
    max-width: 500px;
    min-width: 200px;
    padding: 12px 24px 16px;
    text-align: left;
    z-index: 99995
}

.sevf-popover sevf-range__inputs-wrapper {
    margin-top: 10px
}

.sevf-popover sevf-block,
.sevf-popover sevf-block__content-inner {
    padding: 0
}

.sevf-popover sevf-block__breadcrumbs {
    margin-top: 0;
    text-align: left
}

.sevf-popover__top-bar {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
    margin: 0 -2px
}

.sevf-popover__tooltip-icon {
    display: block;
    height: 18px;
    width: 18px
}

.sevf-popover-chevron {
    cursor: pointer;
    height: auto;
    margin-bottom: 15px;
    padding: 4px;
    width: auto
}

.sevf-popover .sevf-block,
.sevf-popover .sevf-block__content-inner {
    padding-top: 0
}

.sevf-mobile-overlay {
    background-color: #fff;
    bottom: 0;
    display: flex;
    flex-direction: column;
    left: 0;
    max-width: 100%;
    overflow-y: auto;
    padding: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 100001
}

.sevf-mobile-overlay *,
.sevf-mobile-overlay :after,
.sevf-mobile-overlay :before {
    box-sizing: border-box
}

.sevf-mobile-overlay:empty {
    display: none
}

.sevf-mobile-overlay .sevf-block:last-of-type {
    border-bottom: 1px solid #f2f2f2;
    margin-bottom: 34px
}

.sevf-mobile-overlay__footer,
.sevf-mobile-overlay__header {
    background-color: #fff;
    left: 0;
    position: fixed;
    right: 0;
    z-index: 10
}

.sevf-mobile-overlay__header {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    padding: 12px 10px 16px;
    top: 0
}

.sevf-mobile-overlay__header-title {
    color: #767676;
    font-size: 18px;
    line-height: 23px;
    margin: 0 8px
}

.sevf-mobile-overlay__header-tooltip-icon {
    display: block;
    height: 18px;
    width: 18px
}

.sevf-mobile-overlay__header-clear,
.sevf-mobile-overlay__header-close {
    background-color: #fff;
    border-radius: 4px;
    color: #767676;
    font-size: 15px;
    font-weight: 400;
    line-height: 19px;
    margin: 0;
    padding: 8px
}

.sevf-mobile-overlay__header-clear:hover,
.sevf-mobile-overlay__header-close:hover {
    background-color: #fff
}

.sevf-mobile-overlay__header-clear:focus,
.sevf-mobile-overlay__header-close:focus {
    outline-color: var(--sevf--colors--base);
    outline-style: dotted;
    outline-width: 2px
}

.sevf-mobile-overlay__header-clear {
    margin-left: auto
}

.sevf-mobile-overlay__header-clear:before {
    color: #d9d9d9;
    content: "|";
    display: inline-block;
    font-size: 15px;
    line-height: 19px;
    margin: 0 6px 0 auto
}

.sevf-mobile-overlay__content {
    margin-bottom: 66px;
    margin-top: 58px;
    padding-left: 18px;
    padding-right: 18px
}

.sevf-mobile-overlay__footer {
    bottom: 0;
    padding: 16px 18px
}

.sevf-mobile-overlay__footer .sevf-button {
    background-color: #363636;
    border: 1px solid #161616;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    padding: 8px 12px;
    text-align: center;
    transition: background-color .3s;
    width: 100%
}

.sevf-mobile-overlay__footer .sevf-button:hover {
    background-color: #030303;
    border: 1px solid #161616;
    color: #fff
}

.sevf-mobile-overlay__footer .sevf-button:focus {
    outline-color: var(--sevf--colors--base);
    outline-style: dotted;
    outline-width: 2px
}

.sevf-mobile-filters-container {
    padding: 0;
    width: 100%
}

.sevf-mobile-filters-container *,
.sevf-mobile-filters-container :after,
.sevf-mobile-filters-container :before {
    box-sizing: border-box
}

.sevf-mobile-filters-container:empty {
    display: none
}

.sevf-mobile-filters-container .sevf-mobile-filters {
    padding-bottom: 20px
}

.sevf-mobile-filters-container .sevf-mobile-filters .sevf-custom-html {
    display: inline-block
}

.sevf-mobile-filters-container .sevf-filter-button {
    margin-bottom: 8px
}

.sevf-horizontal-filters-container {
    clear: both;
    padding: 0;
    width: 100%
}

.sevf-horizontal-filters-container *,
.sevf-horizontal-filters-container :after,
.sevf-horizontal-filters-container :before {
    box-sizing: border-box
}

.sevf-horizontal-filters-container:empty {
    display: none
}

.sevf-horizontal-filters-container .sevf-horizontal-filters {
    padding-bottom: 20px
}

.sevf-horizontal-filters-container .sevf-horizontal-filters .sevf-custom-html {
    display: inline-block
}

.sevf-horizontal-filters-container .sevf-filter-button {
    margin-bottom: 8px
}

.sevf-products-preloader {
    opacity: .1;
    pointer-events: none
}

.sevf-vertical-filters-container {
    padding: 0;
    width: 100%
}

.sevf-vertical-filters-container *,
.sevf-vertical-filters-container :after,
.sevf-vertical-filters-container :before {
    box-sizing: border-box
}

.sevf-vertical-filters-container:empty {
    display: none
}

.sevf-filter-button {
    background-color: #fff;
    border-radius: 6px;
    box-shadow: inset 0 0 0 1px #363636;
    color: #363636;
    font-size: 1.1em;
    font-weight: 400;
    line-height: 1.25em;
    margin-right: 8px;
    outline: none;
    padding: 8px 12px;
    position: relative;
    transition: all .2s
}

.sevf-filter-button:before {
    background-color: transparent;
    border-radius: 6px;
    bottom: 0;
    content: "" !important;
    left: 0;
    opacity: .2;
    position: absolute;
    right: 0;
    top: 0;
    transition: background-color .2s;
    z-index: 1
}

.sevf-filter-button:hover {
    background-color: #fff;
    box-shadow: inset 0 0 0 2px #363636;
    text-shadow: 0 0 1px #363636
}

.sevf-filter-button:hover:before {
    background-color: var(--sevf--colors--base)
}

.sevf-filter-button:focus {
    outline-color: var(--sevf--colors--base);
    outline-style: dotted;
    outline-width: 2px
}

.sevf-filter-button.sevf-filter-button-selected {
    box-shadow: inset 0 0 0 2px #363636;
    font-weight: 600
}

.sevf-filter-button.sevf-filter-button-selected:before {
    background-color: var(--sevf--colors--base)
}

.sevf-filter-button.sevf-button--has-icon svg {
    margin-bottom: -2px;
    margin-left: 6px;
    transform: scale(1.2)
}

.sevf-filter-button>svg {
    display: inline-block
}

.sevf-item--more-less {
    color: var(--sevf--colors--link) !important;
    width: 100%
}

.sevf-item .sevf-item--more-less {
    padding-left: 1.2em
}

.sevf-show-more-button-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 0 50px;
    width: 100%
}

.sevf-show-more-button-container .sevf-show-more-count {
    margin-bottom: .8em
}

.sevf-show-previous-button-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
    width: 100%
}

.sevf-show-previous-button-container:empty {
    display: none
}

.sevf-items-grouped {
    margin-top: .5em
}

.sevf-items-grouped__groups-wrapper {
    max-height: 400px;
    overflow-y: auto
}

.sevf-items-grouped__groups-wrapper--has-scrollbar {
    padding-right: .6em
}

.sevf-items-grouped__group {
    margin-bottom: 1em
}

.sevf-items-grouped__group:last-child {
    margin-bottom: 0
}

.sevf-items-grouped__group-name {
    margin-bottom: .3em
}

.sevf-items-grouped__more-values-info {
    font-size: 13px;
    max-width: 200px
}

.sevf-items-search {
    align-items: center;
    border-radius: .45em;
    box-shadow: inset 0 0 0 1px var(--sevf--colors-input-border);
    display: flex;
    justify-content: space-between;
    margin-bottom: 1em;
    transition: all .2s
}

.sevf-items-search:focus-within,
.sevf-items-search:hover {
    background-color: #fff;
    box-shadow: inset 0 0 0 2px var(--sevf--colors-input-border)
}

.sevf-items-search input[type=search] {
    background: none;
    border: none;
    box-shadow: none;
    color: #767676;
    cursor: text;
    font-size: max(16px, 100%);
    height: 35px;
    padding: 7px 44px 7px 9px;
    position: relative;
    width: 100%
}

@media(min-width:768px) {
    .sevf-items-search input[type=search] {
        height: 40px;
        padding: 9px 44px 9px 9px
    }
}

.sevf-items-search input[type=search]:focus {
    background: none;
    outline: none
}

.sevf-items-search__controls {
    align-items: center;
    display: flex;
    justify-content: space-between;
    position: relative
}

.sevf-items-search__controls--loading {
    display: flex;
    opacity: .4;
    padding: 0 30px 0 2px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%)
}

@keyframes sevf-spin {
    to {
        transform: rotate(1turn)
    }
}

.sevf-items-search__controls--loading svg {
    animation: sevf-spin 1s linear infinite;
    transform-origin: 50% 50%
}

.sevf-items-search__controls--close {
    color: #bbb;
    font-size: 130%;
    margin-right: 4px;
    opacity: 0;
    padding: 0 10px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%)
}

.sevf-items-search__controls--close:hover {
    color: #767676
}

.sevf-items-search__controls--close-show {
    opacity: 1
}

.sevf-items-search .sevf-input__element {
    width: 100%
}

.sevf-block .sevf-items-search input[type=search] {
    margin: 0
}

.sevf-tooltip {
    background-color: #363636;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .051), 0 2px 3px rgba(0, 0, 0, .039), 0 6px 6px rgba(0, 0, 0, .031), 0 8px 8px rgba(0, 0, 0, .02);
    font-size: 14px;
    font-weight: 400;
    max-width: 300px;
    padding: 4px 8px;
    width: -moz-max-content;
    width: max-content;
    z-index: 1000000
}

.sevf-tooltip__content {
    color: #fff;
    line-height: 18px
}

.sevf-tooltip__content h3 {
    color: #fff
}

.sevf-tooltip__content p:last-child {
    margin-bottom: 0 !important
}

.sevf-tooltip__content a {
    color: #fff
}

.sevf-item--link.sevf-item--link:not(.sevf-item--is-hierarchical) {
    display: flex
}

.sevf-item--link .sevf-item__interactive {
    font-weight: 400 !important;
    transition: font-weight .2s;
    width: 100%
}

.sevf-item--link .sevf-item__interactive:hover .sevf-item__label {
    font-weight: 600 !important
}

.sevf-item--link .sevf-collapser-container {
    display: flex
}

.sevf-item--link .sevf-collapser-container .sevf-collapser {
    height: 22px;
    margin-right: 4px;
    width: 20px
}

.sevf-item--link .sevf-collapser-container .sevf-collapser .sevf-button {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    width: 100%
}

.sevf-item--link .sevf-collapser-container .sevf-collapser .sevf-button svg {
    transform: rotate(90deg)
}

.sevf-item--link .sevf-collapser-container .sevf-collapser--open .sevf-button svg {
    transform: rotate(180deg)
}

.sevf-item--link .sevf-collapser-container .sevf-item__interactive {
    width: 100%
}