.plp-page__toolbar {
    padding: 12px 20px 8px;
    background: #fff;
    /* border-bottom: 1px solid #eee; */
}
.plp-page__toolbar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin: 2px 0 0;
}
.plp-page__heading {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    min-width: 0;
}
.plp-page__heading h2 {
    font-size: 20px;
    margin: 0;
    color: #282c3f;
}
.plp-page__count {
    font-size: 14px;
    font-weight: 400;
    color: #7e818c;
}
.plp-page__body {
    display: grid;
    grid-template-columns: 268px minmax(0, 1fr);
    align-items: start;
}
.plp-page__filters {
    border-right: 1px solid #eee;
    background: #fff;
}
.plp-page__list {
    padding: 12px 16px 32px;
    background: #fff;
}
.listing-filters {
    padding: 16px 16px 24px;
    background: #fff;
}
.listing-filters h5 {
    font-size: 16px;
    font-weight: 700;
    color: #282c3f;
}
.listing-filters h6 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 10px;
    color: #282c3f;
}
.listing-filters .filter-block {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 14px;
    margin-bottom: 14px;
}
.listing-filters .filter-block:last-of-type {
    border-bottom: 0;
}
.listing-filters .form-check-label {
    font-size: 16px;
    color: #282c3f;
    cursor: pointer;
}
.price-slider {
    padding: 10px 6px 0;
}
.price-slider__wrap {
    position: relative;
    height: 24px;
    margin: 0 2px 8px;
}
.price-slider__rail {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 4px;
    background: #edebef;
    border-radius: 4px;
    transform: translateY(-50%);
}
.price-slider__fill {
    position: absolute;
    top: 50%;
    height: 4px;
    background: #ff3f6c;
    border-radius: 4px;
    transform: translateY(-50%);
}
.price-slider__wrap input[type="range"] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 24px;
    margin: 0;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
}
.price-slider__wrap input[type="range"]::-webkit-slider-thumb {
    pointer-events: auto;
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid #ff3f6c;
    box-shadow: 0 0 0 1px rgba(255, 63, 108, .12);
    cursor: pointer;
}
.price-slider__wrap input[type="range"]::-moz-range-thumb {
    pointer-events: auto;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid #ff3f6c;
    box-shadow: 0 0 0 1px rgba(255, 63, 108, .12);
    cursor: pointer;
}
.price-slider__wrap input[type="range"]::-moz-range-track {
    background: transparent;
    border: 0;
}
.price-slider__wrap input[type="range"]:focus {
    outline: none;
}
.price-slider__label {
    font-size: 13px;
    font-weight: 700;
    color: #ff3f6c;
    margin-top: 2px;
}
.filter-swatch {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid #d4d5d9;
    display: inline-block;
    margin-right: 8px;
    vertical-align: -2px;
}
.filter-scroll {
    max-height: 220px;
    overflow-y: auto;
    padding-right: 4px;
}
.plp-sort {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}
.plp-sort label {
    font-size: 16px;
    color: #7e818c;
    margin: 0;
    white-space: nowrap;
}
.plp-sort select {
    min-width: 190px;
    height: 36px;
    border: 1px solid #d4d5d9;
    border-radius: 4px;
    padding: 0 10px;
    font-size: 16px;
    color: #282c3f;
    background: #fff;
}
@media (max-width: 991.98px) {
    .plp-page__body {
        display: block;
    }
    .plp-page__filters {
        border-right: 0;
        border-bottom: 1px solid #eee;
    }
    .listing-filters {
        display: none;
    }
    .listing-filters.is-open { display: block; }
    .plp-mobile-filters {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 16px;
        border-bottom: 1px solid #eee;
        background: #fff;
    }
}
