.v360-filters {
    margin: 50px 0 32px;
}
.v360-filter-option input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid #111;
    border-radius: 0;
    background: #fff;
    cursor: pointer;
    position: relative;
}

.v360-filter-option input[type="checkbox"]:checked {
    background: #111;
    border-color: #111;
}

.v360-filter-option input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.v360-filter-option input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,0,0,.12);
}
.v360-filter-heading {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 22px;
}

.v360-filter-group {
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 18px;
    margin-bottom: 18px;
}

.v360-filter-group-title {
    position: relative;
    width: 100%;
    padding: 0 28px 0 0;
    margin: 0;
    background: transparent;
    border: 0;
    text-align: left;
    font-size: 16px !important;
    font-weight: 600;
    cursor: pointer;
    color: black;
    text-transform: none;
}
.v360-filter-group-title:hover {
    border: solid 0px #db608100;
    background-color: #db608100;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    color: #000000 !important;
    text-decoration: none;
}
.v360-filter-group-title::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 22px;
    line-height: 1;
    font-weight: 600;
}

.v360-filter-group.is-open .v360-filter-group-title::after {
    content: "–";
}

.v360-filter-options {
    display: none;
    flex-direction: column;
    gap: 10px;
    padding-top: 14px;
}

.v360-filter-group.is-open .v360-filter-options {
    display: flex;
}

.v360-filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    line-height: 1.3;
}

.v360-filter-option input {
    width: 17px;
    height: 17px;
    margin: 0;
}

.v360-filter-option small {
    margin-left: auto;
    opacity: .55;
    font-size: 13px;
}

.v360-filter-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
}

.v360-filter-submit {
    background: #000;
    color: #fff;
    border: 2px solid #000;
    padding: 11px 18px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.v360-filter-clear {
    color: #000;
    font-size: 14px;
    text-decoration: underline;
}

.v360-filter-mobile-toggle {
    display: none;
}
.v360-filter-apply {
    display: none;
}

@media (max-width: 768px) {
    .v360-filter-apply {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        background: #000;
        color: #fff;
        border: 2px solid #000;
        padding: 14px 18px;
        font-size: 15px;
        font-weight: 800;
        text-transform: uppercase;
        cursor: pointer;
    }

    .v360-filter-apply.has-changes {
        background: #111;
    }

    .v360-filters {
        margin: 20px 0 30px;
    }

    .v360-filter-mobile-toggle {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        background: #000;
        color: #fff;
        border: 2px solid #000;
        padding: 14px 18px;
        font-size: 15px;
        font-weight: 800;
        text-transform: uppercase;
        cursor: pointer;
    }

    .v360-filter-inner {
        display: none;
        padding-top: 22px;
    }

    .v360-filters.is-open .v360-filter-inner {
        display: block;
    }

    .v360-filter-heading {
        display: none;
    }
}