.bpf-sidebar {
    color: #1D1D1B;
    font-family: inherit;
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bpf-section {
    border: 1px solid #DDD;
    padding: 15px 30px;
    border-radius: 10px;
}

.bpf-section summary {
    align-items: center;
    cursor: pointer;
    display: flex;
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    justify-content: space-between;
    list-style: none;
    position: relative;
}
.bpf-section[open] summary {
    margin-bottom: 40px;
}
.bpf-section summary::before {
    content: none;
    width: 50px;
    height: 2px;
    background: #000;
    position: absolute;
    bottom: -10px;
    left: 0;
}

.bpf-section[open] summary::before {
    content: "";
}

.bpf-section summary::-webkit-details-marker {
    display: none;
}

.bpf-section summary::after {
    border-bottom: 2px solid currentColor;
    border-right: 2px solid currentColor;
    content: "";
    height: 7px;
    transform: rotate(45deg);
    transition: transform 160ms ease;
    width: 7px;
}

.bpf-section[open] summary::after {
    transform: rotate(225deg);
}

.bpf-options {
    display: grid;
    gap: 9px;
    padding: 0 0 14px;
}

.bpf-check {
    align-items: center;
    cursor: pointer;
    display: grid;
    font-size: 16px;
    font-weight: 500;
    gap: 10px;
    grid-template-columns: 16px minmax(0, 1fr) auto;
    line-height: 1.25;
}

.bpf-check input {
    accent-color: #1f1f1f;
    height: 14px;
    margin: 0;
    width: 14px;
}

.bpf-check small {
    color: #8a8a8a;
    font-size: 11px;
}

.bpf-price-grid {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 0 14px;
}

.bpf-price-grid label {
    display: grid;
    gap: 5px;
}

.bpf-price-grid span {
    color: #686868;
    font-size: 11px;
    font-weight: 600;
}

.bpf-price-grid input {
    border: 1px solid #dedede;
    border-radius: 6px;
    font: inherit;
    font-size: 12px;
    min-height: 36px;
    padding: 8px 10px;
    width: 100%;
}

.bpf-colors {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 0 14px;
}

.bpf-color {
    cursor: pointer;
    display: inline-flex;
    position: relative;
}

.bpf-color input {
    inset: 0;
    opacity: 0;
    position: absolute;
}

.bpf-color span {
    background: var(--bpf-color);
    border: 1px solid #cfcfcf;
    border-radius: 999px;
    box-shadow: inset 0 0 0 2px #ffffff;
    display: block;
    height: 22px;
    transition: box-shadow 160ms ease, transform 160ms ease;
    width: 22px;
}

.bpf-color input:checked + span {
    box-shadow: 0 0 0 2px #111111, inset 0 0 0 2px #ffffff;
    transform: scale(1.03);
}

.bpf-actions {
    display: grid;
    gap: 10px;
    padding-top: 18px;
}

.bpf-submit {
    background: #111111;
    border: 0;
    border-radius: 6px;
    color: #ffffff;
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    min-height: 40px;
    padding: 10px 14px;
}

.bpf-clear {
    color: #555555;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
}

.bpf-is-extra {
    display: none;
}

.bpf-expanded .bpf-is-extra {
    display: grid;
}

.bpf-see-more,
.bpf-price-apply {
    appearance: none;
    background: transparent;
    border: 0;
    color: #6682DF;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 24px !important;
    margin: 0;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.bpf-see-more:hover,
.bpf-price-apply:hover {
    appearance: none;
    background: transparent;
    border: 0;
    color: #6682DF;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 24px !important;
    margin: 0;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.bpf-price-apply {
    margin-top: 4px;
}

@media (max-width: 767px) {
    .bpf-sidebar {
        background: #ffffff;
        border: 1px solid #ececec;
        border-radius: 8px;
        padding: 0 14px 14px;
    }
}
