/**
 * @copyright Copyright © TRIC Solutions. All rights reserved.
 * @license   https://www.tric.dk/TRIC-LICENSE-COMMUNITY.txt
 * @link      https://www.tric.dk
 */
#nexus-filters [data-filter-value] .count {
    margin-left: 10px;
}
#nexus-filters [data-filter-value] .count:before {
    content : '(';
}
#nexus-filters [data-filter-value] .count:after {
    content : ')';
}


.nexus-product-list .product-image-photo {
    position: relative !important;
}

@media (max-width: 767px) {
    [x-data^="Nexus"] .filters-overlay:after {
        content: '';
        position: absolute;
        height: 100%;
        width: 20px;
        right: 0;
        top: 0;
        background: rgb(255,255,255);
        background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    }
}

.nexus-price-slider {
    position: relative;
    height: 1.25rem;
    margin-top: 0.5rem;
}
.nexus-price-slider .slider-track,
.nexus-price-slider .slider-fill {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 0.25rem;
    border-radius: 9999px;
}
.nexus-price-slider .slider-track {
    width: 100%;
    background-color: var(--color-container-darker);
}
.nexus-price-slider .slider-fill {
    background-color: var(--color-primary);
}
.nexus-price-slider input[type="range"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
}
.nexus-price-slider input[type="range"]:focus {
    outline: none;
    box-shadow: none;
}
.nexus-price-slider input[type="range"]::-webkit-slider-runnable-track {
    background: transparent;
    border: none;
}
.nexus-price-slider input[type="range"]::-moz-range-track {
    background: transparent;
    border: none;
}
.nexus-price-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    pointer-events: auto;
    height: 1.25rem;
    width: 1.25rem;
    border-radius: 9999px;
    background-color: #fff;
    border: 2px solid var(--color-primary);
    cursor: pointer;
}
.nexus-price-slider input[type="range"]::-moz-range-thumb {
    pointer-events: auto;
    height: 1.25rem;
    width: 1.25rem;
    border-radius: 9999px;
    background-color: #fff;
    border: 2px solid var(--color-primary);
    cursor: pointer;
}
.nexus-price-values span {
    cursor: pointer;
}
.nexus-price-values span:hover {
    text-decoration: underline;
}
.nexus-price-values input[type="number"] {
    width: 5.5rem;
    height: 1.75rem;
    padding: 0 0.25rem;
    font-size: inherit;
    -moz-appearance: textfield;
    appearance: textfield;
}
.nexus-price-values input[type="number"]::-webkit-outer-spin-button,
.nexus-price-values input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


