:root {
    --blue-color: var(--color-destacado);
    --gray-color: var(--color-cuartiario);
}
.body{
    font-family: var( --font-family-global);
}
.buscar {
    width: 100%;
}

.BuscarBarra .form-select {
    flex: 1;
    min-width: 200px;
    border-color: var(--color-destacado);
}

.BuscarBarra {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 1100px) {
    .BuscarBarra .form-select {
        flex: 1;
        min-width: 10vw;
    }
    .BuscarBarra .CambioPrecio {
        min-width: 10vw;
        min-height: 50px;
        align-items: center;
    }
    .BuscarBarra .search {
        flex: 1;
        min-width: 10vw;
    }
}
@media (max-width: 575px) {

    .BuscarBarra .search {
        flex: 1;
        min-width: 80vw;
    }
}

#SliderBarra #input-min{
    display: none;
    width: 100px;
    height: 40px;
    text-align: center;
}
#SliderBarra #slider{
    display: none;
    margin-top: 20px;
    margin-bottom: 40px;
}
#SliderBarra #input-max{
    display: none;
    width: 100px;
    height: 40px;
    text-align: center;
}

@media (max-width: 768px) {
    #SliderBarra #input-min{
        width: 100%;
        height: 40px;
        text-align: center;
    }
    #SliderBarra #slider{
        width: 100%;
        margin-top: 20px;
        margin-bottom: 40px;
    }
    #SliderBarra #input-max{
        width: 100%;
        height: 40px;
        text-align: center;
    }
    .noUi-pips{
        display: none;
    }
}


#SliderBarra[mostrar] #input-min{
    display: flex;
}
#SliderBarra[mostrar] #slider{
    display: flex;
}
#SliderBarra[mostrar] #input-max{
    display: flex;
}

.scroll-to-top {
    position: fixed;
    left: 20px;
    bottom: 20px;
    background-color: #007bff8e; 
    color: #fff; 
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    font-size: 34px; 
    cursor: pointer;
    box-shadow: 0 8px 15px rgba(0, 123, 255, 0.3); 
    z-index: 1000; 
    display: none; 
    transition: all 0.3s ease; 
    line-height: 50px; 
    text-align: center; 
    font-family: Arial, sans-serif; 
}

.scroll-to-top:hover {
    background-color: #0056b3; 
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 123, 255, 0.4); 
}
