/* Botones Filtros desplegables */ 

.mas-filtros {
    width: 100%; 
    float: right; 
    font-size: 10px; 
    cursor: pointer; 
    border-radius: 20px; 
    background:#eeeeee; 
    border: solid 1px #d3d3d3; 
    text-align: center; 
    padding: 0px 7px 0px 9px;
}

.arrow {
    border: solid #4c3736;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
}
  
.noUi-handle-upper i {
    top: 9px;
    position: relative;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.noUi-handle-lower i {
    top: -10px;
    position: relative;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

.campos-precios {
    margin: 28px 0px 30px;
    width: 300px;
}

.campos-precios table {
    width: 90%;
    border-collapse: collapse;
    /* border: solid 1px black; */
}

.campos-precios td {
    padding: 5px;
    vertical-align: middle;
}

.campos-precios span {
    white-space: nowrap; /* Evita el salto de línea */
}

/* Potencia */

.campos-potencia {
    margin: 28px 0px 30px;
    width: 300px;
}

.campos-potencia table {
    width: 90%;
    border-collapse: collapse;
    /* border: solid 1px black; */
}

.campos-potencia td {
    padding: 5px;
    vertical-align: middle;
}

.campos-potencia span {
    white-space: nowrap; /* Evita el salto de línea */
}




/* Lumenes */

.campos-lúmenes {
    margin: 28px 0px 30px;
    width: 300px;
}

.campos-lúmenes table {
    width: 90%;
    border-collapse: collapse;
    /* border: solid 1px black; */
}

.campos-lúmenes td {
    padding: 5px;
    vertical-align: middle;
}

.campos-lúmenes span {
    white-space: nowrap; /* Evita el salto de línea */
}



.precio-min, .precio-max {
    width: 75px;
}

.potencia-min, .potencia-max {
    width: 75px;
}

.lúmenes-min, .lúmenes-max {
    width: 75px;
}





#error-message {
    font-size: 12px;
    color: red;
    /* text-align: center; */
    margin-top: 10px;
}






/* noUiSlider */ 

.slider-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
.noUi-base {
    background: #ddd;
    border-radius: 5px;
    height: 10px;
}
.noUi-connect {
    background: #2a6ebf !important;
}
.noUi-handle {
    background: #2a6ebf !important;
    border-radius: 0px !important;
    width: 60px !important;
    height: 20px !important;
    font-size: 12px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer !important;
    box-shadow: none !important;
}
.noUi-handle-lower {
    left: 6px;
    top: 18px !important;
}
.noUi-handle-upper {
    right: -30px !important;
    top: -26px !important;
}
.noUi-handle:after, .noUi-handle:before {
    display:none !important;
}
.noUi-target {
    padding: 3px 0;
}
.noUi-value {
    font-size: 12px;
    line-height: 1;
    text-shadow: none;
}


/* Style for noUi-handle to ensure proper padding and expansion */
.noUi-handle {
    padding: 0 4px; /* Padding for left and right */
    white-space: nowrap; /* Prevent text wrapping */
    box-sizing: content-box; /* Ensure padding doesn't affect width calculation */
}

.noUi-handle-upper,
.noUi-handle-lower {
    display: flex;
    align-items: center;
    justify-content: center;
}







/* Optional: Remove tooltip styling */
.noUi-tooltip {
    display: none; /* Hide the tooltip if not used */
}






/* Ocultar flechas para todos los navegadores en campos input number*/
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield; /* Para Firefox */
}