/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: May 26 2026 | 14:13:54 */
.irs-bar,
.irs-from,
.irs-to{
	background-color: #500000 !important;
}
.irs-handle{
	border-color: #500000 !important;
}

/* Main Heading */
.filterCon h2,
.filterCon h3,
.filterCon .widget-title {
    color: #222;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 24px 0;
    padding-bottom: 16px;
    border-bottom: 2px solid #e8e8e8;
}

/* Section Headings */
.filterCon h4,
.filterCon .woof_block_title {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 12px 0;
}

/* Labels */
.filterCon label {
    color: #444;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    transition: color 0.2s;
}

.filterCon label:hover {
    color: #000;
}

/* Checkboxes and Radios */
.filterCon input[type="checkbox"],
.filterCon input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #333;
}

.filterCon .price_label span {
    color: #fff;
    background: #007bff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

/* Remove any backgrounds from inner widgets */
.filterCon .widget,
.filterCon .woof_container {
    background: transparent;
    border: none;
    padding: 0;
    margin-bottom: 20px;
}

/* Buttons */
.filterCon button,
.filterCon .button {
    background: #500000;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
    width: 100%;
    margin-top: 16px;
}

.filterCon button:hover,
.filterCon .button:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}