.dgf-filter-bar {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px; gap: 20px;
}
.dgf-filter-left {
display: flex;
gap: 10px;
align-items: center;
}
.dgf-sorting {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 0; } @media (max-width: 768px) {
.dgf-filter-bar {
flex-direction: column;
align-items: stretch;
}
.dgf-sorting {
width: 100%;
justify-content: space-between;
}
}
.dgf-all-filters-button {
padding: 4px 16px;
background: #ffffff;
color: #2d2d2d;
border: 1px solid #cccccc;
border-radius: 25px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: background 0.3s ease;
}
.dgf-all-filters-button:hover, .dgf-all-filters-button:focus {
background: #eeeeee;
color:#2d2d2d
} .dgf-filter-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
z-index: 9998;
opacity: 0;
transition: opacity 0.3s ease;
}
.dgf-filter-overlay.active {
display: block;
opacity: 1;
} .dgf-filter-sidebar {
position: fixed;
top: 0;
right: -400px;
width: 400px;
height: 100vh;
background: white;
z-index: 9999;
overflow-y: auto;
transition: right 0.3s ease;
box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}
.dgf-filter-sidebar.open {
right: 0;
} .dgf-filter-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
border-bottom: 2px solid #ddd;
position: sticky;
top: 0;
background: white;
z-index: 10;
}
.dgf-filter-header h3 {
margin: 0;
font-size: 22px;
}
.dgf-filter-close {
background: none;
border: none;
font-size: 32px;
line-height: 1;
cursor: pointer;
padding: 0;
width: 32px;
height: 32px;
color: #666;
transition: color 0.2s ease;
}
.dgf-filter-close:hover {
color: #999999;
background-color:#ffffff
} .dgf-filter-content {
padding: 20px;
}
.dgf-filter-group {
margin-bottom: 25px;
padding-bottom: 25px; }
.dgf-filter-group:last-child {
border-bottom: none;
}
.dgf-filter-group h4 {
margin: 0 0 12px 0;
font-size: 16px;
font-weight: bold;
color: #333;
}
.dgf-filter-group ul {
list-style: none;
margin: 0;
padding: 0;
}
.dgf-filter-group ul li {
margin-bottom: 8px;
}
.dgf-filter-group ul li a {
display: block;
padding: 8px 12px;
color: #333333;
text-decoration: none; transition: all 0.2s ease;
}
.dgf-filter-group ul li a:hover {
background: #ffffff;
color: #cccccc;
} .dgf-filter-sub {
margin-left: 8px!important;
margin-top: 5px!important;
}  .dgf-filter-hidden {
display: none;
} .dgf-filter-show-more {
display: inline-block;
margin-top: 4px;
padding: 0 4px;
color: #9f9a9a!important;
text-decoration: none;
font-size: 14px; transition: background 0.2s ease;
}
.dgf-filter-show-more:hover {
background: #ffffff;
text-decoration: none;
color: #cccccc;
} @media (max-width: 768px) {
.dgf-filter-sidebar {
width: 90%;
max-width: 350px;
}
}  .dgf-budget-filter {
padding:10px 12px
}
#dgf-budget-slider {
margin: 20px 0 30px 0;
height: 6px;
background: #e0e0e0;
border: none;
border-radius: 3px;
}
.ui-slider-horizontal .ui-slider-range {
background: #0073aa;
border-radius: 3px;
}
.ui-slider .ui-slider-handle {
width: 18px;
height: 18px;
border-radius: 50%;
background: #f36805;
border: 2px solid #fff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
cursor: pointer;
top: -6px;
}
.dgf-budget-inputs {
display: flex;
gap: 15px;
}
.budget-input-group {
flex: 1;
display: flex;
align-items: center;
gap: 8px;
}
.budget-input-group label {
font-size: 13px;
font-weight: 600;
color: #666;
}
.budget-input-group input {
flex: 1;
padding: 8px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 14px;
max-width: 80px;
} .dgf-loading-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.9);
display: flex;
align-items: center;
justify-content: center;
z-index: 100;
}
.dgf-spinner {
width: 50px;
height: 50px;
border: 4px solid #f3f3f3;
border-top: 4px solid #0073aa;
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
} .dgf-reset-filters {
padding: 4px 16px;
background: #fff;
color: #2d2d2d;
border: 1px solid #ccc;
border-radius: 25px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
margin-left: 10px;
}
.dgf-reset-filters:hover {
background: #eee;
} .dgf-filter-group label {
display: flex;
align-items: center;
cursor: pointer;
padding: 0 12px;
transition: background 0.2s;
}
.dgf-filter-group label:hover {
background: #f5f5f5;
}
.dgf-filter-group input[type="checkbox"] {
margin-right: 10px;
cursor: pointer;
} .dgf-main-content {
position: relative;
} .ui-widget-content {
border: none;
background: #e0e0e0;
}
.ui-slider {
position: relative;
text-align: left;
}
.ui-slider-horizontal {
height: 6px;
}
.ui-slider-horizontal .ui-slider-handle {
top: -6px;
margin-left: -9px;
}
.ui-slider .ui-slider-handle {
position: absolute;
z-index: 2;
cursor: pointer;
border-radius: 50%;
background: #f36805;
border: 2px solid #fff;
box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.ui-slider .ui-slider-handle:focus {
outline: none;
}
.ui-slider-horizontal .ui-slider-range {
top: 0;
height: 100%;
}
.ui-slider .ui-slider-range {
position: absolute;
z-index: 1;
display: block;
background: #f36805;
border-radius: 3px;
}
.ui-corner-all {
border-radius: 3px;
}