/* Аккордеон фильтра */
.eyrf-widget {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-bottom: 10px;

}
  .eyrf-input {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 10px;
    padding: 0 10px;
		gap: 10px;
}

.eyrf-num {
    width: 70px;
    padding: 8px 25px 8px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
}

/* Кнопка сброса */
.eyrf-reset {
    position: absolute;
    right: 15px;
    color: #FF0000;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    font-weight: bold;
    z-index: 2;
}

.eyrf-reset.visible {
    opacity: 1;
}

.eyrf-reset:hover {
	    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.eyrf-title {
    background: #fff;
    color: #FF0000;
    padding: 15px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
}

.eyrf-title:after {
    content: '+';
    font-size: 18px;
    color: #FF0000;
}

.eyrf-title.active:after {
    content: '-';
}

.eyrf-form {
    display: none;
    padding: 15px;
    background: #fff;
}

.eyrf-form.active {
    display: block;
}

/* Слайдер */
.noUi-target {
    height: 4px !important;
    background: #e0e0e0;
    border: none;
    box-shadow: none;
    margin: 15px 10px;
}

.noUi-connect {
    background: #FF0000 !important;
}

.noUi-handle {
    width: 14px !important;
    height: 14px !important;
    border-radius: 50%;
    background: #FF0000 !important;
    border: 2px solid #fff !important;
    box-shadow: 0 0 3px rgba(0,0,0,0.2) !important;
    cursor: pointer;
    right: -7px !important;
}

.noUi-handle:before,
.noUi-handle:after {
    display: none;
}

/* Стили для точек на слайдере */
.noUi-pips {
    padding: 10px 0;
}

.noUi-value {
    font-size: 12px;
    color: #666;
}

.noUi-marker {
    background: #FF0000;
}

.noUi-marker-large {
    height: 8px;
    width: 2px;
}

.noUi-value-large {
    margin-top: 5px;
}

/* Активная точка */
.noUi-active .noUi-value {
    color: #FF0000;
    font-weight: bold;
}

/* Инпуты */
/* Аккордеон фильтра */
.eyrf-widget {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-bottom: 10px;
    background: #fff;
}

.eyrf-title {
    font-weight: 600;
    padding: 12px 15px;
    cursor: pointer;
    background: #fff;
    color: #FF0000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
}

.eyrf-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 0 10px;
}

.eyrf-num {
    width: 100%;
    max-width: 80px;
    padding: 5px;
    border: 1px solid #e0e0e0;
}

.eyrf-dash {
    opacity: 0.6;
}

/* Кнопка */
.eyrf-apply {
    margin-top: 15px;
    display: inline-block;
    background: #FF0000;
    color: #fff;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    transition: 0.3s;
}

.eyrf-apply:hover {
    background: #cc0000;
}
