.nw-woo-ajax-product-filter {
    --filter-white: #FFFFFF;
    --filter-light-grey: #EDEDED;
    --filter-light-grey-2: #C5C5C5;
    --filter-grey: #7F7F7F;
    --filter-grey-2: #373737;
    --filter-dark-grey: #222321;
    --filter-selected: #FFC107;
    --filter-text: #333333;
    --filter-text-hover: #515151;
    --filter-accent: #0073AA;
}

.nw-widget-wrapper {
    position: relative;
    display: inline-block;
}
.nw-widget-wrapper.list-style{
    display: inline-block;
}
.nw-widget-wrapper.list-style .nw-widget-dropdown{
    position: absolute;
    top: 0;
    display: none;
    opacity: 0;
    visibility: hidden;
    left: 0;
    z-index: 50;
    -webkit-transition: ease all .2s;
    -o-transition: ease all .2s;
    transition: ease all .2s;
}
.nw-widget-wrapper.list-style .nw-widget-dropdown-inner {
    position: absolute;
    top: 40px;
    left: 0;
    max-height: 415px;
    min-width: 270px;
    width: 400px;
    padding: 15px 20px;
    background: var(--filter-white);
    -webkit-box-shadow: 0px 20px 15px 0px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 20px 15px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 20px 15px 0px rgba(0, 0, 0, 0.05);
    overflow-y: auto;
    z-index: 10;
}
.nw-widget-wrapper.list-style.active-container .nw-widget-dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
    -webkit-transition: ease all .2s;
    -o-transition: ease all .2s;
    transition: ease all .2s;
}
.nw-widget-wrapper .nw-widget-open-button,
.nw-widget-wrapper .nw-filter-clear-button,
.nw-widget-wrapper .nw-filter-show-more-button{
    position: relative;
    text-transform: uppercase;
    background: transparent;
    font-size: 13px;
    line-height: 30px;
    padding: 4px 42px 4px 20px;
    border: 1px solid var(--filter-grey);
}

.nw-widget-wrapper button.nw-widget-open-button:after {
    content: "";
    position: absolute;
    right: 18px;
    top: 0;
    bottom: 0;
    width: 14px;
    background-image: url(../assets/dropdown_arrow.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotateX(180deg);
    -webkit-transition: ease all .2s;
    -o-transition: ease all .2s;
    transition: ease all .2s;
}
.nw-widget-wrapper .nw-filter-clear-button,
.nw-widget-wrapper .nw-filter-show-more-button{
    text-transform: none;
    padding: 4px 22px 4px 10px;
    border: 1px solid transparent;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: ease all .2s;
    -o-transition: ease all .2s;
    transition: ease all .2s;
}
.nw-widget-wrapper.list-style.selected .nw-filter-clear-button{
    opacity: 1;
    visibility: visible;
    -webkit-transition: ease all .2s;
    -o-transition: ease all .2s;
    transition: ease all .2s;
}
.nw-widget-wrapper.selected .nw-filter-clear-button:hover{
    opacity: 0.75;
    -webkit-transition: ease all .2s;
    -o-transition: ease all .2s;
    transition: ease all .2s;
}
.nw-widget-wrapper .nw-widget-dropdown ul{
    padding-inline-start: 0;
    margin: 0;
}
.nw-widget-wrapper .nw-widget-dropdown ul li.nw-widget-dropdown-item{
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
    position: relative;
    margin-top: 8px;
    cursor: default;
}
.nw-widget-wrapper .nw-widget-dropdown ul li.nw-widget-dropdown-item:first-of-type{
    margin-top: 0;
}
.nw-widget-wrapper .nw-widget-dropdown ul li.nw-widget-dropdown-item:hover {
    opacity: 0.75;
}
.nw-widget-wrapper .nw-widget-dropdown ul li label {
    display: flex;
    position: relative;
    width: 100%;
    cursor: pointer;
    padding:5px 0;
    margin-bottom: 0;
}

.nw-widget-wrapper .nw-widget-dropdown ul li input[type="checkbox"] {
    opacity: 0;
    width: 0;
    margin-right: 48px;
}
.nw-widget-wrapper .nw-widget-dropdown ul li span.option-label {
    display: block;
    margin-right: 40px;
}

.nw-widget-wrapper .nw-widget-dropdown ul li label span.checkmark {
    position: absolute;
    height: 24px;
    width: 24px;
    min-height: 24px;
    min-width: 24px;
    left: 10px;
    top: 50%;
    border: 1px solid var(--filter-grey);
    transform: translateY(-50%);
    background-position: center;
    background-size: 24px;
    background-repeat: no-repeat;
    background-image: none;
}
.nw-widget-wrapper .nw-widget-dropdown ul li span.option-qty {
    display: block;
    position: absolute;
    right: 10px;
    top: 50%;
    font-size: 13px;
    line-height: 30px;
    color: var(--filter-grey);
    transform: translateY(-50%);
}

.nw-widget-wrapper .nw-widget-dropdown ul li.nw-widget-dropdown-item.checked label span.checkmark {
    background-image: url(../assets/selected.svg);
}
/* hide empty filter */
.nw-widget-wrapper.empty-filter:not(.selected) .nw-filter-button,
.nw-widget-wrapper.empty-filter:not(.selected) .nw-filter-button:hover{
    opacity: .5;
}
.nw-widget-wrapper.empty-filter:not(.selected) .nw-widget-dropdown,
.nw-widget-wrapper.active-container.empty-filter:not(.selected) .nw-widget-dropdown{
    /*display: none;*/
}
.nw-widget-wrapper .nw-widget-dropdown ul li.nw-widget-dropdown-item.empty-option:not(.checked){
    /*display: none;*/
}

/* loader */
.products .nw-ajax-filter-loader{
    text-align: center;
    width: 100%;
    display: block;
    padding:200px 0 300px;
}
/*
.nw-ajax-filter-loader .loader-icon{
    display: block;
    width:65px;
    height: 65px;
    background-image: url(../assets/loader.svg);
    background-size: cover;
    margin:0 auto;
}*/
.nw-ajax-filter-loader{
    display: flex;
    flex-wrap: wrap;
}
.nw-ajax-filter-loader .nw-ajax-filter-loader-icon{
    display: inline-block;
    border: 6px solid #f3f3f3;
    border-top: 6px solid #000000;
    border-radius: 50%;
    width:68px;
    height: 68px;
    animation: nw-ajax-filter-spin 1s linear infinite;
}
@media (max-width: 1199.98px) {
    .products .nw-ajax-filter-loader{
        padding:100px 0 200px;
    }
}

.nw-widget-dropdown-item .nw-ajax-filter-loader .nw-ajax-filter-loader-icon {
    display: inline-block;
    border: 1px solid #f3f3f3;
    border-top: 2px solid #707070;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    animation: nw-ajax-filter-spin 1s linear infinite;
}
@keyframes nw-ajax-filter-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.nw-widget-wrapper > .nw-widget-wrapper-inner{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
/* display type: dropdown */
.nw-widget-wrapper.dropdown-style{
    display: block;
}
.nw-widget-wrapper.dropdown-style:not(:last-of-type) {
    margin-bottom:-1px;
}
.nw-widget-wrapper.dropdown-style.active-container{
    padding-bottom: 16px;
}
.nw-widget-wrapper.dropdown-style > .nw-widget-wrapper-inner{
    flex-direction: column;
    width: 100%;
}
.nw-widget-wrapper.dropdown-style .nw-widget-open-button{
    padding: 4px 42px 4px 30px;
}
.nw-widget-wrapper.dropdown-style.active-container .nw-widget-open-button:after{
    transform: rotateX(0deg);
    -webkit-transition: ease all .2s;
    -o-transition: ease all .2s;
    transition: ease all .2s;
}
.nw-widget-wrapper.dropdown-style .nw-widget-dropdown{
    position: relative;
    top: 0;
    display: flex;
    /*opacity: 0;*/
    /*visibility: hidden;*/
    height: 0;
    overflow: hidden;
    z-index: 9;
    -webkit-transition: ease all .2s;
    -o-transition: ease all .2s;
    transition: ease all .2s;
}
.nw-widget-wrapper.dropdown-style.active-container .nw-widget-dropdown{
    /*opacity:1;*/
    /*visibility: visible;*/
    height: auto;
    -webkit-transition: ease all .2s;
    -o-transition: ease all .2s;
    transition: ease all .2s;
}
.nw-widget-wrapper.dropdown-style .nw-widget-dropdown-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    background: white;
    padding: 15px 10px 0;

}
.nw-widget-wrapper.dropdown-style.selected .nw-widget-open-button:before{
    content: "";
    position: absolute;
    left: 14px;
    height:10px;
    width: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color:var(--filter-selected);
    border-radius: 50%;
    opacity:1;
    visibility: visible;
    z-index: 1;
    -webkit-transition: ease all .2s;
    -o-transition: ease all .2s;
    transition: ease all .2s;
}
.nw-widget-wrapper.dropdown-style.selected.active-container .nw-widget-open-button:before{
    content: "";
    opacity:0;
    visibility: hidden;
    z-index: -1;
    -webkit-transition: ease all .2s;
    -o-transition: ease all .2s;
    transition: ease all .2s;
}
.nw-widget-wrapper.dropdown-style{
    height: 0;
    overflow: hidden;
    -webkit-transition: ease all .2s;
    -o-transition: ease all .2s;
    transition: ease all .2s;
}
.nw-widget-wrapper.dropdown-style.selected.active-container,
.nw-widget-wrapper.dropdown-style.show-less.active-container .show-more-button-wrapper{
    height: auto;
    -webkit-transition: ease all .2s;
    -o-transition: ease all .2s;
    transition: ease all .2s;
}
.nw-widget-wrapper.dropdown-style .nw-filter-clear-button,
.nw-widget-wrapper.dropdown-style.show-less .nw-filter-show-more-button{
    visibility: hidden;
    opacity: 0;
    padding: 4px 22px 4px 18px;
    -webkit-transition: ease all .2s;
    -o-transition: ease all .2s;
    transition: ease all .2s;
}
.nw-widget-wrapper.dropdown-style.selected.active-container .nw-filter-clear-button,
.nw-widget-wrapper.dropdown-style.show-less.active-container .nw-filter-show-more-button{
    visibility: visible;
    opacity:1;
    -webkit-transition: ease all .2s;
    -o-transition: ease all .2s;
    transition: ease all .2s;
}
.nw-widget-wrapper.dropdown-style.selected.active-container .nw-filter-clear-button:hover,
.nw-widget-wrapper.dropdown-style.show-less.active-container .nw-filter-show-more-button:hover{
    opacity: 0.75;
    -webkit-transition: ease all .2s;
    -o-transition: ease all .2s;
    transition: ease all .2s;
}
.nw-widget-wrapper.dropdown-style.show-less .show-less-active{
    opacity:0;
    visibility: hidden;
    height: 0;
    margin:0;
    overflow: hidden;
}
.nw-widget-wrapper.dropdown-style .show-less-active{
    opacity:1;
    visibility: visible;
    height: auto;
    -webkit-transition: ease all .2s;
    -o-transition: ease all .2s;
    transition: ease all .2s;
}
.nw-widget-wrapper.list-style button.nw-filter-button,
.nw-woo-filter-active-filters .active-filter-button{
    display: inline-block;
    text-align: center;
    background: var(--filter-white);
    border: 1px solid var(--filter-grey);
    border-radius: 2px;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    padding: 7px 20px;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0;
    color: var(--filter-text);
    cursor: pointer;
    -webkit-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    position: relative;
    margin-right: 12px;
    margin-top: 5px;
    margin-bottom: 5px;
    text-transform: none;
    font-weight: normal;
}
.nw-widget-wrapper.list-style .nw-widget-dropdown{
    top:10px;
}
.nw-widget-wrapper.list-style button.nw-filter-button:hover,
.nw-woo-filter-active-filters .active-filter-button:hover{
    opacity: 0.75;
    border-color: var(--filter-dark-grey);
}
.nw-widget-wrapper.list-style.active-container button.nw-filter-button{
    border-color: var(--filter-dark-grey);
}
.nw-widget-wrapper.list-style.selected button.nw-filter-button,
.nw-woo-filter-active-filters .active-filter-button{
    display: flex;
    padding: 7px 44px 7px 20px;
    background-color: var(--filter-light-grey);
}
.nw-widget-wrapper.list-style button.nw-filter-button:after,
.nw-woo-filter-active-filters .active-filter-button:after{
    content: attr(data-qty);
    position: absolute;
    top: 50%;
    right: 12px;
    border-radius: 2px;
    background-color: var(--filter-white);
    color:var(--filter-text);
    transform: translateY(-50%);
    background-image:unset;
    display: none;
    visibility: hidden;
    font-size: 14px;
    line-height: 20px;
    min-height: 20px;
    min-width: 20px;
    border: none;
    animation: nwShowSelected 0.4s ease-in forwards;
}
.nw-widget-wrapper.list-style.selected button.nw-filter-button:after,
.nw-woo-filter-active-filters .active-filter-button:after{
    display: block;
    visibility: visible;
    animation: nwShowSelected 0.4s ease-in forwards;
}
.nw-widget-wrapper.list-style.selected button.nw-filter-button[data-qty="0"]:after,
.nw-woo-filter-active-filters .active-filter-button[data-qty="0"]{
    display: none;
    visibility: hidden;
}
.nw-woo-filter-active-filters .active-filter-button.active-filter-price:after{
    display: none;
}
.nw-widget-wrapper button.nw-filter-button .label-chevron{
    display: none;
    position: relative;
    left: 0;
    right: 0;
    margin-left: 12px;
    top: 50%;
    bottom: 0;
    height: 14px;
    width: 14px;
    background-image: url(../assets/dropdown_arrow_down.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 0;
    background-color: transparent;
    color: initial;
    transform: translateY(-50%);
}
.nw-widget-wrapper button.nw-filter-button .filter-value.value-not-set{
    display: none;
}

@keyframes nwShowSelected {
    0% {
        visibility: hidden;
    }
    50% {
        visibility: hidden;
    }
    100% {
        visibility: visible;
    }
}

.nw-widget-wrapper label {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 8px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.nw-widget-wrapper label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.nw-widget-wrapper .nw-widget-dropdown ul li span.option-label{
    margin-left: 42px;
}

.nw-widget-dropdown-inner.nw-ajax-filter-dropdown-inner {
    border: 1px solid var(--filter-light-grey-2);
    width: 400px;
    background-color: var(--filter-white);
    padding: 30px 20px;
    z-index: 60;
}
.nw-attribute-filter-group .clear-filter-button-wrapper{
    display: none;
}
.nw-attribute-filter-group.selected .clear-filter-button-wrapper{
    display: flex;
}
.nw-attribute-filter-group .outer-clear-filter-button-wrapper{
    display: none;
}
.nw-attribute-filter-group .outer-clear-filter-button-wrapper button.nw-filter-clear-button{
    margin-left: 20px;
    margin-right: 20px;
}
.nw-widget-wrapper button.nw-filter-clear-button:after {
    content: "";
    position: absolute;
    right: 8px;
    top: 0;
    bottom: 0;
    width: 8px;
    background-image: url(../assets/close.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
/* filters mobile */
.nw-widget-wrapper .nw-widget-mobile-dropdown-heading .close-mobile-filters,
.nw-widget-wrapper .nw-widget-dropdown-buttons .close-mobile-filters{
    display: none;
    margin-left: auto;
}
.nw-woo-filter-controls-container .filter-mobile-header{
    display: none;
}
.nw-woo-filter-wrapper .nw-woo-filter-mobile-button-container{
    display: none;
}
.nw-widget-wrapper .nw-widget-dropdown-inner .nw-widget-mobile-dropdown-heading {
    display: none;
}
.nw-woo-filter-controls-container .filter-mobile-header,
.nw-widget-wrapper .nw-widget-dropdown-inner .nw-widget-mobile-dropdown-heading{
    padding-bottom: 10px;
    margin-bottom:20px;
    border-bottom: 1px solid var(--filter-light-grey);
}
.nw-woo-filter-controls-container .filter-mobile-header .mobile-filter-title{
    padding:10px 0 10px 10px;
    margin-bottom: 0;
}
.nw-widget-wrapper .nw-widget-dropdown-inner .nw-widget-mobile-dropdown-heading .mobile-filter-title{
    padding:10px 0 10px 10px;
    margin-bottom: 0;
}
.nw-go-back .filter-back-icon{
    display: block;
    width: 15px;
    height: 15px;
    background-image: url('../assets/filter_back_arrow.svg');
    cursor: pointer;
    background-size: 15px 15px;
    background-repeat: no-repeat;
    background-position: center center
}
@media (max-width: 767px) {
    .nw-woo-filter-controls-container{
        padding:10px;
    }
    .nw-woo-filter-controls-container .filter-mobile-header{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .nw-widget-wrapper.nw-attribute-filter-group,
    .nw-widget-wrapper.nw-price-filter-group {
        position:relative;
        display: flex;
        flex-direction: column;
        width: 100%
    }
    .nw-widget-wrapper.list-style button.nw-filter-button {
        width: 100%;
        margin: 0 .625rem 10px;
        border: none;
        padding: 10px;
        text-align: left;
        background-image: url('../assets/caret.svg');
        background-repeat: no-repeat;
        background-size: 8px;
        background-position: calc(100% - 0.625rem) center
    }
    .nw-widget-wrapper.list-style.selected button.nw-filter-button {
        padding: 10px .625rem;
        background-color: var(--filter-white);
    }
    .nw-widget-wrapper.list-style.selected button.nw-filter-button:after {
        content: attr(data-qty);
        position: relative;
        display: inline-block;
        top: 0;
        right: unset;
        left: 10px;
        text-align: center;
        visibility: visible;
        transform: none;
        background-color: var(--filter-light-grey);
        animation: none;
    }
    .nw-widget-wrapper.list-style.selected button.nw-filter-button[data-qty="0"]:after{
        display: none;
        visibility: hidden;
    }
    .nw-widget-wrapper.nw-attribute-filter-group .nw-ajax-filter-dropdown {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: block;
        width: 100%;
        -webkit-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    .nw-widget-wrapper.nw-attribute-filter-group.active-container .nw-ajax-filter-dropdown {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
    .nw-widget-wrapper.nw-attribute-filter-group .nw-widget-dropdown-inner {
        width: 100%;
        min-width: unset;
        top: 0;
        bottom: 0;
        max-height: unset;
        padding: 10px;
    }
    .nw-widget-wrapper .nw-widget-dropdown-inner .nw-widget-mobile-dropdown-heading {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .nw-widget-wrapper .nw-ajax-filter-dropdown-inner .widget-filter-buttons{
        padding:0 10px;
    }
    .nw-widget-wrapper .nw-ajax-filter-dropdown-inner .widget-filter-buttons{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    .nw-widget-dropdown-buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        margin-top: 1.25rem
    }
    .nw-widget-wrapper .nw-widget-mobile-dropdown-heading .close-mobile-filters,
    .nw-widget-wrapper .nw-widget-dropdown-buttons .close-mobile-filters{
        display: block;
    }
    .nw-woo-filter-wrapper button.button.nw-filter-clear-button{
        margin-top: 0
    }
}
/* price range option */
.nw-price-filter-group.list-style.selected button.nw-filter-button.nw-filter-price-button{
    padding: 7px 20px 7px 20px;
}
.nw-widget-wrapper.list-style.selected button.nw-filter-button.nw-filter-price-button:after{
    display: none;
}
.nw-widget-wrapper.selected button.nw-filter-button.nw-filter-price-button .price-filter-value,
.nw-price-filter-group button.nw-filter-button.nw-filter-price-button .price-filter-value{
    display: none;
}
.nw-range-input-container input[type='range'] {
    width: 100%;
    height: 30px;
    overflow: hidden;
    cursor: pointer;
    outline: none;
}
.nw-range-input-container input[type='range'],
.nw-range-input-container input[type='range']::-webkit-slider-runnable-track,
.nw-range-input-container input[type='range']::-webkit-slider-thumb {
    -webkit-appearance: none;
    background: none;
}
.nw-range-input-container input[type='range']::-webkit-slider-runnable-track {
    width: 100%;
    height: 1px;
    background: var(--filter-grey-2);;
}
.nw-range-input-container input[type='range']:nth-child(2)::-webkit-slider-runnable-track{
    background: none;
}
.nw-range-input-container input[type='range']::-webkit-slider-thumb {
    position: relative;
    height: 19px;
    width: 19px;
    margin-top: -9px;
    background: var(--filter-white);
    border: 1px solid var(--filter-grey-2);;
    border-radius: 25px;
    z-index: 1;
}
.nw-range-input-container input[type='range']:nth-child(1)::-webkit-slider-thumb{
    z-index: 2;
}
.nw-range-input-container{
    position: relative;
    display: block;
}
.nw-range-input-wrap{
    position: relative;
    display: flex;
    height: 28px;
    width: calc(100% - 24px);
    margin: 5px 12px;
}
.nw-range-input-wrap input{
    position: absolute;
}
.nw-range-price-wrap{
    position: relative;
    display: flex;
    justify-content: space-between;
    margin: 5px 12px;
}
.nw-range-buttons-wrap{
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.nw-range-buttons-wrap .nw-price-range-button{
    margin-right:12px;
    margin-bottom:5px;
    -webkit-transition: ease all .2s;
    -o-transition: ease all .2s;
    transition: ease all .2s;
}
.nw-range-buttons-wrap .nw-price-range-button:hover{
    background-color: var(--filter-white);
    color: var(--filter-text-hover);
    -webkit-transition: ease all .2s;
    -o-transition: ease all .2s;
    transition: ease all .2s;
}
.nw-price-filter-group .nw-price-clear-button{
    visibility: hidden;
    opacity: 0;
    cursor:pointer;
}
.nw-price-filter-group.selected .nw-price-clear-button{
    visibility: visible;
    opacity: 1;
}
@media (max-width: 767px) {
    .nw-widget-wrapper.nw-price-filter-group .nw-widget-dropdown{
        width:100%;
    }
    .nw-widget-wrapper.nw-price-filter-group .nw-widget-dropdown .nw-widget-dropdown-inner {
        width: calc(100% - 40px);
        margin: 0 20px;
    }
    .nw-price-filter-group.list-style.selected button.nw-filter-button.nw-filter-price-button{
        padding: 10px .625rem;
    }
    .nw-widget-wrapper.nw-price-filter-group .nw-widget-dropdown-inner .nw-widget-mobile-dropdown-heading{
        display: none;
    }
    .nw-woo-filter-active-filters .active-filter-button.active-filter-price .price-filter-label,
    .nw-price-filter-group button.nw-filter-button.nw-filter-price-button .price-filter-label{
        margin-right:10px;
    }
    .nw-widget-wrapper.selected button.nw-filter-button.nw-filter-price-button .price-filter-value{
        display: inline-block;
        font-size: 14px;
        line-height: 20px;
        background-color: var(--filter-light-grey);
        border-radius: 2px;
        padding: 0 8px;
    }
}

/* Proof of concept for Firefox */
@-moz-document url-prefix() {
    .nw-range-input-wrap::before{
        content:'';
        width:100%;
        height:1px;
        background: var(--filter-grey-2);;
        display:block;
        position: relative;
        top:14px;
    }
    input[type='range']:nth-child(1){
        position:absolute;
        top:35px !important;
        overflow:visible !important;
        height:0;
    }

    input[type='range']:nth-child(2){
        position:absolute;
        top:35px !important;
        overflow:visible !important;
        height:0;
    }
    input[type='range']::-moz-range-thumb {
        position: relative;
        height: 19px;
        width: 19px;
        margin-top: -9px;
        background: var(--filter-white);
        border: 1px solid var(--filter-grey-2);
        border-radius: 25px;
        z-index: 1;
    }
    input[type='range']:nth-child(1)::-moz-range-thumb {
        transform: translateY(-20px);
    }
    input[type='range']:nth-child(2)::-moz-range-thumb {
        transform: translateY(-20px);
    }
}

/***** FILTERS *****/
.nw-woo-filter-wrapper{
    position: relative;
}

/* results count */
.woocommerce .nw-woo-filter-wrapper .nw-woo-filter-results-container{
    margin-left: auto;
    white-space: nowrap;
}
.woocommerce .nw-woo-filter-wrapper .nw-woo-filter-results-container .woocommerce-result-count{
    margin: 5px 20px;
}

/* ordering */
.woocommerce .nw-woo-filter-wrapper .nw-woo-filter-ordering-container{
    margin-left: auto;
}
.woocommerce .nw-woo-filter-wrapper .nw-woo-filter-results-container + .nw-woo-filter-ordering-container{
    position: relative;
    margin-left: 0;
}
.woocommerce .nw-woo-filter-wrapper form.woocommerce-ordering {
    margin-bottom: 0;
    float: none;
    width: 100%;
}
.woocommerce .nw-woo-filter-wrapper .woocommerce-ordering select {
    border: 1px solid var(--filter-grey);
    border-radius: 2px;
    font-size: 15px;
    line-height: 18px;
    letter-spacing: 0;
    color:var(--filter-text);
    padding: 8px 44px 8px 20px;
    margin-top: 5px;
    margin-bottom: 5px;
    transition: .25s ease-in-out;
}
.woocommerce .nw-woo-filter-wrapper .woocommerce-ordering select:hover{
    border: 1px solid var(--filter-dark-grey);
}
.nw-woo-filter-ordering-container .button-order-toggle{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    right: 0;
    bottom: 0;
    z-index: 9;
    pointer-events: none;
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--filter-grey);
    padding: 15px;
    text-transform: uppercase;
    margin-right: 0;
    background-color: var(--filter-white);
    color: var(--filter-text);
}
.nw-woo-filter-ordering-container .button-order-toggle{
    display: none;
}
.nw-woo-filter-ordering-container .button-order-toggle:after {
    content: "";
    display: inline-block;
    width: 15px;
    height: 14px;
    background-image: url(../assets/sort_ico.svg);
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 10px;
}
.nw-woo-filter-ordering-container .button-order-toggle:hover{
    border: 1px solid var(--filter-dark-grey);
}
.nw-woo-filter-wrapper button.mobile-filters-button {
    display: none;
    width: 100%;
}
.nw-woo-filter-controls-container .filter-actions {
    display: none;
}
@media (max-width: 767px) {
    .nw-woo-filter-wrapper .nw-woo-filter-controls-container.show {
        /*padding-left: 1.25rem;*/
        /*padding-right: 1.25rem;*/
    }
    .nw-woo-filter-wrapper .nw-woo-filter-mobile-button-container{
        display: flex;
        width: 48%;
    }
    .woocommerce .nw-woo-filter-wrapper button.mobile-filters-button.has-active-filters,
    .woocommerce .nw-woo-filter-wrapper .mobile-filters-button{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .nw-woo-filter-wrapper button.mobile-filters-button {
        font-weight: normal;
        text-transform: none;
        font-size: 15px;
        background-color: var(--filter-white);
        color: var(--filter-text);
        border: 1px solid var(--filter-grey);
        border-radius: 2px;
        height: 36px;
        width: 100%;
        margin-right: 5px;
    }
    .nw-woo-filter-wrapper button.mobile-filters-button.has-active-filters{
        background-color: var(--filter-light-grey);
    }
    .nw-woo-filter-wrapper button.mobile-filters-button .filter-label{
        position: relative;
        display: flex;
        width: 100%;
    }
    .nw-woo-filter-wrapper button.mobile-filters-button .filter-label:after{
        display: none;
        content: attr(data-active-filters);
        position: absolute;
        top: 50%;
        right: 0;
        border-radius: 2px;
        background-color: var(--filter-white);
        color:var(--filter-text);
        transform: translateY(-50%);
        background-image:unset;
        font-size: 14px;
        line-height: 20px;
        min-height: 20px;
        min-width: 20px;
        border: none;
    }
    .nw-woo-filter-wrapper button.mobile-filters-button.has-active-filters .filter-label:after{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .nw-woo-filter-wrapper button.mobile-filters-button .filter-icon {
        display: inline-block;
        width: 15px;
        height: 14px;
        background-image: url(../assets/filters_icon.svg);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        margin-left: 10px;
    }
    .nw-woo-filter-wrapper button.mobile-filters-button:hover{
        background-color: var(--filter-white);
        border: 1px solid var(--filter-text-hover);
    }
    .nw-woo-filter-controls-container {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        opacity: 0;
        z-index: -1;
        visibility: hidden;
        display: block;
        transition: opacity .25s ease-in-out, visibility .25s ease-in-out;
        background-color: var(--filter-white);
    }
    .nw-woo-ajax-product-filter .nw-woo-filter-controls-container.show {
        opacity: 1;
        visibility: visible;
        z-index: 1000;
    }
    .nw-filter:not(.d-none) {
        display: block;
    }
    .nw-filter .filter-button {
        width: 100%;
        border: none;
        padding: 0;
        text-align: left;
        background-image: url('../assets/caret.svg');
        background-repeat: no-repeat;
        background-size: 8px;
        background-position: right center;
    }
    .nw-filter.highlighted button {
        background-color: transparent;
    }
    .nw-filter.highlighted button span {
        background-color: var(--filter-light-grey);
    }
    /*
    .nw-filter .dropdown {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: block;
        width: 100%;
        transition: .25s ease-in-out;
        transform: translateX(-100%);
        padding-top: 0;
    }
    .nw-filter .dropdown.show {
        transform: translateX(0);
    }*/
    .nw-woo-filter-controls-container .filter-dropdown-close{
        padding:10px;
        background: unset;
        width:auto;
        height: auto;
    }
    .nw-woo-filter-controls-container .filter-dropdown-close .filter-close-icon{
        display: block;
        margin-left: auto;
        width: 15px;
        height: 15px;
        cursor:pointer;
        background-image: url('../assets/close.svg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
    }
    .nw-woo-filter-controls-container .filter-actions {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: absolute;
        margin-top: 50px;
        bottom: 60px;
        padding-left: 20px;
        padding-right: 20px;
        width: 100%;
        left: 0;
    }
    /*
    .nw-filter {
        padding: 15px;
        border: none;
    }
     */
    .filter-mobile-header {
        margin-left: -20px;
        margin-right: -20px;
        border-bottom: 1px solid var(--filter-light-grey);
        margin-bottom: 20px;
        display: flex;
        align-items: center;
    }

    /*
    a.filterBackBtn {
        display: block;
        margin-right: 20px;
        width: 15px;
        height: 15px;
        background-image: url('../assets/filter_back_arrow.svg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
    }
     */
    .nw-woo-filter-ordering-container {
        width: 48%;
        margin-left: 5%;
    }
    .nw-woo-filter-ordering-container select {
        width: 100%;
    }
}
/* active filters */
.nw-woo-filter-active-filters{
    display: none;
}
.nw-woo-filter-active-filters .active-filter-button.active-filter-price {
    padding: 7px 20px 7px 20px;
}
@media (max-width: 767px) {
    .nw-woo-filter-active-filters{
        display: block;
    }
    .nw-woo-filter-active-filters .active-filters-container:empty {
        display: none;
    }
}

/* calypso updates */
/*
.calypso-style .nw-woo-filter-controls-container{
    padding:0;
}
.calypso-style .nw-woo-filter-controls-container .filter-by-label{
    margin-right: 12px;
    margin-top: 5px;
    margin-bottom: 5px;
    color: #767676;
}
.woocommerce .nw-woo-filter-wrapper.calypso-style .woocommerce-ordering select {
    background-image: url('../assets/dropdown_arrow_down.svg');
    background-repeat: no-repeat;
    background-position: calc(100% - 16px) center;
    background-size: 12px;
}
.calypso-style .nw-widget-wrapper.list-style button.nw-filter-button{
    padding: 7px 44px 7px 20px;
    background-image: url('../assets/dropdown_arrow_down.svg');
    background-repeat: no-repeat;
    background-position: calc(100% - 16px) center;
    background-size: 12px;
}
.calypso-style .nw-widget-wrapper.list-style button.nw-filter-button:after {
    right: 9px;
}

.woocommerce .calypso-style .nw-widget-wrapper .nw-price-range-button,
.woocommerce .calypso-style .nw-widget-wrapper .nw-filter-clear-button,
.woocommerce .calypso-style .nw-widget-wrapper .nw-filter-show-more-button{
    border-radius: 2px;
    border: none;
    background-color: transparent;
    font-weight: 500;
    font-size: 16px;
    text-decoration: underline;
}
.woocommerce .calypso-style .nw-widget-wrapper .nw-price-range-button:hover,
.woocommerce .calypso-style .nw-widget-wrapper .nw-filter-clear-button:hover,
.woocommerce .calypso-style .nw-widget-wrapper .nw-filter-show-more-button:hover{
    opacity: 0.75;
    border: none;
    background-color: transparent;
}
.woocommerce .calypso-style .nw-woo-filter-wrapper .nw-woo-filter-results-container .woocommerce-result-count{
    margin: 5px 0 5px 20px;
}
.calypso-style .nw-widget-wrapper.list-style button.nw-filter-clear-button.button{
    padding: 9px 10px 8px 10px;
    margin-top: 0.625rem;
}
.calypso-style .nw-widget-wrapper button.nw-filter-clear-button:after {
    display: none;
}
.calypso-style .nw-woo-filter-wrapper button.mobile-filters-button.has-active-filters,
.calypso-style .nw-woo-filter-wrapper .mobile-filters-button{
    text-align: left;
    font-weight: normal;
    text-transform: none;
    font-size: 15px;
    background-color: var(--filter-white);
    color: var(--filter-text);
    border: 1px solid var(--filter-grey);
    border-radius: 2px;
    height: 36px;
    width: 100%;
    margin-right: 5px;
}
.calypso-style .nw-woo-filter-wrapper button.mobile-filters-button.has-active-filters .filter-label:after{
    background-color: var(--filter-light-grey);
}
.calypso-style .nw-woo-filter-controls-container .filter-mobile-header .mobile-filter-title{
    padding:10px 0 10px 0;
}
.calypso-style .nw-woo-filter-controls-container .filter-dropdown-close{
    padding:10px 0 10px 10px;
}
.calypso-style .nw-widget-wrapper .nw-widget-dropdown-inner .nw-widget-mobile-dropdown-heading .nw-go-back,
.calypso-style .nw-widget-wrapper .nw-widget-dropdown-inner .nw-widget-mobile-dropdown-heading .mobile-filter-title,
.calypso-style .nw-widget-wrapper .nw-widget-dropdown-inner .nw-widget-mobile-dropdown-heading .filter-dropdown-close{
    margin-top:-10px;
}
.calypso-style .nw-widget-wrapper .nw-widget-dropdown-inner .nw-widget-mobile-dropdown-heading .mobile-filter-title{
    padding-left: 20px;
}
.calypso-style .nw-widget-wrapper.initial-empty.empty-filter:not(.selected) .nw-filter-button{
    display: none;
}
.calypso-style .nw-widget-wrapper.empty-filter.active-container .nw-widget-dropdown-inner{
    display: none;
}
.calypso-style .nw-widget-wrapper .nw-widget-dropdown ul li.nw-widget-dropdown-item.empty-option:not(.checked){
    display: none;
}
.calypso-style .nw-widget-wrapper .nw-widget-dropdown ul li.nw-widget-dropdown-item.checked label span.checkmark {
    background-image: unset;
}
.calypso-style .nw-widget-wrapper .nw-widget-dropdown ul li label span.checkmark {
    position: absolute;
    height: 18px;
    width: 18px;
    min-height: 18px;
    min-width: 18px;
    background-color: var(--filter-white);
    border-radius: 2px;
    border: 1px solid var(--filter-grey-2);
    transform: translateY(-50%);
    background-size: 18px;
}
.calypso-style .nw-widget-wrapper .nw-widget-dropdown-item.nw-ajax-filter-select.checked .checkmark:after,
.calypso-style .nw-widget-wrapper label input:checked ~ .checkmark:after,
.calypso-style .nw-widget-wrapper label:hover input ~ .checkmark:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    top: 3px;
    left: 3px;
    border-radius: 2px;
    background-color: var(--filter-grey-2);
}
.calypso-style .nw-widget-wrapper .nw-widget-dropdown ul li span.option-qty{
    right:0;
}
.calypso-style .nw-widget-wrapper .nw-widget-dropdown ul li span.option-label {
    margin-left: 35px;
}
.calypso-style .nw-widget-wrapper .nw-widget-dropdown ul li label span.checkmark{
    left:0;
}
.calypso-style .nw-widget-wrapper .nw-widget-dropdown ul li.nw-widget-dropdown-item:hover{
    opacity:1;
}
.calypso-style .nw-widget-wrapper .nw-widget-dropdown ul li.nw-widget-dropdown-item:hover label{
    opacity:0.7;
}
.calypso-style .nw-widget-wrapper .nw-widget-dropdown ul li .nw-custom-option-heading{
    margin-top:20px;
    margin-bottom:6px;
    display: inline-block;
    width: 100%;
    font-weight: 600;
}
.calypso-style .nw-widget-wrapper .nw-widget-dropdown ul li:first-of-type .nw-custom-option-heading{
    margin-top:0;
}

@media (hover: none) and (pointer: coarse) {
    .calypso-style .nw-widget-wrapper .nw-widget-dropdown-item.nw-ajax-filter-select:not(.checked) .checkmark:after,
    .calypso-style .nw-widget-wrapper label input:not(:checked) ~ .checkmark:after{
        display: none;
    }
}
@media (max-width: 767px) {
    .calypso-style .nw-woo-filter-controls-container{
        padding:10px 30px;
    }
    .calypso-style .nw-widget-mobile-dropdown-heading .mobile-filter-title,
    .calypso-style .filter-mobile-header .mobile-filter-title{
        font-size: 18px;
        line-height: 26px;
    }
    .calypso-style .nw-widget-wrapper.nw-attribute-filter-group {
        position: relative;
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .calypso-style .nw-widget-wrapper.list-style button.nw-filter-button{
        font-size: 18px;
        width: 100%;
        margin: 0;
        border: none;
        padding: 14px 0;
        text-align: left;
        background-color: var(--filter-white);
        background-image: url('../assets/dropdown_arrow_down.svg');
        background-repeat: no-repeat;
        background-size: 8px;
        background-position: right center;
    }
    .calypso-style .nw-widget-wrapper.list-style.selected button.nw-filter-button{
        background-color: var(--filter-white);
    }
    .calypso-style .nw-woo-filter-controls-container .filter-by-label {
        display: block;
        margin-bottom: 10px;
    }
    .calypso-style .nw-widget-wrapper.list-style.selected button.nw-filter-button:after{
        content: attr(data-qty);
        position: relative;
        display: inline-block;
        top:0;
        right: unset;
        left: 10px;
        text-align: center;
        visibility: visible;
        transform: none;
        background-color: var(--filter-light-grey);
        animation: nwShowSelected 0.4s ease-in forwards;
    }
    .calypso-style .nw-widget-wrapper.list-style.selected button.nw-filter-button[data-qty="0"]:after{
        display: none;
        visibility: hidden;
    }
    .calypso-style .nw-widget-wrapper.nw-attribute-filter-group .nw-ajax-filter-dropdown {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: block;
        width: 100%;
        -webkit-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    .calypso-style .nw-widget-wrapper.nw-attribute-filter-group.active-container .nw-ajax-filter-dropdown {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    .calypso-style .nw-widget-wrapper.nw-attribute-filter-group .nw-widget-dropdown-inner{
        width: 100%;
        min-width: unset;
        top:0;
        bottom:0;
        max-height: unset;
        padding:20px 30px;
        background-color: var(--filter-white);
    }
    .calypso-style .nw-woo-filter-controls-container .filter-mobile-header.top-level{
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
        border-bottom: 1px solid #BCBAB4;
    }
    .calypso-style .nw-widget-wrapper.nw-attribute-filter-group .nw-widget-dropdown-inner .nw-widget-mobile-dropdown-heading{
        border-bottom: 1px solid #BCBAB4;
        margin-bottom: 20px;
        display: -webkit-box;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .calypso-style span.nw-go-back {
        display: block;
        width: 15px;
        height: 15px;
        background-image: url(../assets/filter_back_arrow.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
    }
    .calypso-style .nw-widget-dropdown-buttons{
        margin-top:1.25rem
    }
    .calypso-style .nw-widget-wrapper.list-style button.nw-filter-clear-button.button{
        margin-top: 0;
        padding-left:0;
    }
    .calypso-style .nw-woo-filter-controls-container .reset-filter.button{
        padding-left:0;
        margin-left:10px;
    }
    .calypso-style .nw-widget-wrapper .nw-ajax-filter-dropdown-inner .widget-filter-buttons{
        padding:0;
    }
    .calypso-style .nw-widget-wrapper .nw-widget-dropdown-buttons .close-mobile-filters{
        margin-right: 0;
    }
}
*/

/* bisley styles moved to \themes\wp-bootstrap\css\nw-woo-ajax-filter-styles.css */
/* bisley style */
/*
.bisley-style .nw-woo-ajax-product-filter-inner {
    padding-top: 25px;
    padding-bottom: 20px;
    margin-top: 30px;
    border-top: 1px solid #C5C5C5;
}
.bisley-style .nw-woo-filter-wrapper button.button.nw-filter-clear-button,
.bisley-style .nw-woo-filter-wrapper button.button.nw-price-clear-button{
    font-size: 16px;
    line-height: 13px;
    font-weight: 400;
    letter-spacing: 0;
    text-decoration: underline;
    text-transform: none;
    color: var(--filter-text);
    border: none;
    background: none;
    opacity: 1;
    padding: 9px 10px 8px 10px;
    margin-top: .625rem;
    -webkit-transition: ease all .2s;
    -o-transition: ease all .2s;
    transition: ease all .2s;
}
.bisley-style .nw-woo-filter-wrapper button.button.nw-filter-clear-button:hover,
.bisley-style .nw-woo-filter-wrapper button.button.nw-filter-clear-button:hover,
.bisley-style .nw-woo-filter-wrapper .nw-widget-wrapper.selected button.button.nw-filter-clear-button:hover,
.bisley-style .nw-woo-filter-wrapper .nw-widget-wrapper.selected button.button.nw-price-clear-button:hover {
    border: none;
    background: none;
    opacity: .75;
}
.bisley-style .nw-woo-filter-wrapper .nw-range-buttons-wrap .nw-price-range-button {
    margin-right: 12px;
    margin-bottom: 5px;
    -webkit-transition: ease all .2s;
    -o-transition: ease all .2s;
    transition: ease all .2s;
}
.bisley-style .nw-widget-wrapper.list-style .nw-filter-clear-button{
    padding: 9px 10px 8px 10px;
    margin-top: 0.625rem;
}
.bisley-style .nw-widget-wrapper button.nw-filter-clear-button:after {
    display: none;
}
/* bisley-style hide empty filter */
/*
.bisley-style .nw-widget-wrapper.empty-filter:not(.selected) .nw-filter-button,
.bisley-style .nw-widget-wrapper.empty-filter:not(.selected) .nw-filter-button:hover{
    opacity: 1;
}
.bisley-style .nw-widget-wrapper.empty-filter:not(.selected) .nw-widget-dropdown,
.bisley-style .nw-widget-wrapper.active-container.empty-filter:not(.selected) .nw-widget-dropdown{
    display: block;
}
.bisley-style .nw-widget-wrapper .nw-widget-dropdown ul li.nw-widget-dropdown-item.empty-option:not(.checked){
    display: flex;
}
.bisley-style .nw-widget-wrapper .nw-widget-dropdown ul li.nw-widget-dropdown-item.checked label span.checkmark {
    background-image: unset;
}
.bisley-style .nw-widget-wrapper .nw-widget-dropdown ul li label span.checkmark {
    position: absolute;
    height: 18px;
    width: 18px;
    min-height: 18px;
    min-width: 18px;
    background-color: var(--filter-white);
    border-radius: 2px;
    border: 1px solid var(--filter-grey-2);
    transform: translateY(-50%);
    background-size: 18px;
}
.bisley-style .nw-widget-wrapper .nw-widget-dropdown-item.nw-ajax-filter-select.checked .checkmark:after,
.bisley-style .nw-widget-wrapper label input:checked ~ .checkmark:after,
.bisley-style .nw-widget-wrapper label:hover input ~ .checkmark:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    top: 3px;
    left: 3px;
    border-radius: 2px;
    background-color: var(--filter-grey-2);
}
.bisley-style .nw-widget-wrapper .nw-widget-dropdown ul li span.option-qty{
    right:0;
}
.bisley-style .nw-widget-wrapper .nw-widget-dropdown ul li span.option-label {
    margin-left: 35px;
}
.bisley-style .nw-widget-wrapper .nw-widget-dropdown ul li label span.checkmark{
    left:0;
}
.woocommerce .bisley-style .nw-woo-filter-wrapper .woocommerce-ordering select,
.woocommerce .bisley-style .nw-woo-filter-wrapper .button{
    border-radius: 3px;
}
.woocommerce .bisley-style .nw-woo-filter-wrapper .reset-filter{
    padding-left: 0;
    margin-left:0;
}
.bisley-style .nw-widget-wrapper.list-style .nw-widget-dropdown-inner {
    min-width: 270px;
    width: 400px;
    max-height: 80vh;
}
.bisley-style .nw-woo-filter-wrapper button.button.nw-filter-clear-button,
.bisley-style .nw-woo-filter-wrapper button.button.nw-price-clear-button{
    text-decoration: underline !important;
}
.bisley-style .nw-woo-filter-wrapper button.button.nw-filter-clear-button{
    padding-left: 0;
}
@media (hover: none) and (pointer: coarse) {
    .bisley-style .nw-widget-wrapper .nw-widget-dropdown-item.nw-ajax-filter-select:not(.checked) .checkmark:after,
    .bisley-style .nw-widget-wrapper label input:not(:checked) ~ .checkmark:after{
        display: none;
    }
}
@media (max-width: 767px) {
    .bisley-style .nw-woo-ajax-product-filter-inner {
        margin-top: 0;
    }
    .bisley-style .nw-woo-filter-wrapper,
    .bisley-style .nw-woo-filter-active-filters{
        padding-left: 15px;
        padding-right: 15px;
    }
    .bisley-style .nw-woo-filter-active-filters .active-filters-container{
        margin-bottom:15px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .bisley-style .nw-woo-filter-active-filters .active-filters-container:empty {
        display: none;
    }
    .woocommerce .bisley-style .nw-woo-filter-wrapper button.mobile-filters-button {
        display: flex;
        font-size: 15px;
        line-height: 18px;
        font-weight: 400;
        text-transform: none;
        background-color: var(--filter-white);
        color: var(--filter-text);
        border: 1px solid var(--filter-grey);
    }
    .woocommerce .bisley-style .nw-woo-filter-wrapper button.mobile-filters-button.has-active-filters{
        background-color: var(--filter-light-grey);
    }
    .woocommerce .bisley-style .nw-woo-filter-wrapper button.mobile-filters-button:hover{
        background-color: var(--filter-light-grey);
        color: var(--filter-text);
        border: 1px solid var(--filter-text-hover);
    }
    .woocommerce .bisley-style .nw-widget-wrapper .nw-widget-dropdown-buttons .close-mobile-filters{
        margin-left:auto;
    }
    .woocommerce .bisley-style .nw-widget-wrapper .nw-widget-dropdown-buttons .nw-filter-clear-button{
        margin-left:0;
        padding-left:0;
    }
    .bisley-style .nw-woo-filter-wrapper button.button.nw-filter-clear-button,
    .bisley-style .nw-woo-filter-wrapper button.button.nw-price-clear-button{
        margin-top:0;
    }
    .bisley-style .nw-woo-filter-wrapper .filter-mobile-header.top-level {
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
    }
    .bisley-style .nw-woo-filter-wrapper .nw-widget-mobile-dropdown-heading .nw-widget-mobile-dropdown-title,
    .bisley-style .nw-woo-filter-wrapper .filter-mobile-header p{
        font-size: 19px;
        font-weight: 600;
    }
    .bisley-style .nw-widget-wrapper.list-style button.nw-filter-button {
        width: 100%;
        margin: 0 0 10px;
    }
    /* price for mobile */
/*
    .bisley-style .nw-widget-wrapper.nw-price-filter-group .nw-widget-dropdown{
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: block;
        width: 100%;
        transform: translateX(-100%);
        transition: 0.25s ease-in-out;
    }
    .bisley-style .nw-widget-wrapper.nw-price-filter-group.active-container .nw-widget-dropdown {
        transform: translateX(0px);
    }
    .bisley-style .nw-widget-wrapper.nw-attribute-filter-group .nw-widget-dropdown-inner,
    .bisley-style .nw-widget-wrapper.nw-price-filter-group .nw-widget-dropdown-inner {
        width: 100%;
        min-width: unset;
        top: 0;
        bottom: 0;
        max-height: unset;
        padding:10px;
        margin:0;
    }
    .bisley-style .nw-widget-wrapper.nw-attribute-filter-group .nw-widget-dropdown-inner ul{
        padding: 0 10px;
    }
    .bisley-style .nw-widget-wrapper.nw-price-filter-group .nw-widget-dropdown-inner .nw-widget-mobile-dropdown-heading {
        border-bottom: 1px solid var(--filter-light-grey);
        margin-bottom: 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}
*/

/*
update /themes/wp-bootstrap/css/ux-updates.css?ver=6.9
header.sticky:not(.plain) {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 60 !important;
    background: #fff;
}

html {
    margin-top: 0 !important;
}
html #wpadminbar{
    display: none;
}
 */