.apf-box {
    padding: 18px;
    border: 1px solid #ddd;
    border-radius: 14px;
    background: #fff;
    max-width: 360px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .08);
    font-family: Arial
}

.apf-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 6px;
    margin: 25px 0 15px
}

.slider-range-fill {
    position: absolute;
    height: 6px;
    background: #0000ff;
    border-radius: 10px;
    left: 0;
    right: 0
}

input[type=range] {
    position: absolute;
    width: 100%;
    height: 6px;
    top: -6px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none
}

input[type=range]::-webkit-slider-thumb {
    pointer-events: auto;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #0000ff;
    cursor: pointer;
    -webkit-appearance: none
}

/* Remove default track fully */
input[type=range]::-webkit-slider-runnable-track {
    background: transparent !important;
    border: none;
    box-shadow: none;
}

input[type=range]::-moz-range-track {
    background: transparent !important;
    border: none;
    box-shadow: none;
}

/* Remove focus outline */
input[type=range]:focus {
    outline: none;
}

.price-values {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px
}

.apf-checkbox-group label {
    display: block;
    margin: 6px 0;
    font-size: 14px;
    cursor: pointer
}

.apply-btn {
    width: 100%;
    padding: 11px;
    border: none;
    border-radius: 10px;
    background: #0000ff;
    color: #fff;
    font-weight: bold;
    cursor: pointer
}

.clear-btn {
    display: block;
    text-align: center;
    margin-top: 10px;
    padding: 11px;
    border-radius: 10px;
    background: #f2f2f2;
    color: #000;
    text-decoration: none;
    border: 1px solid #ddd
}