   /*Panel de categorias*/
   .category-panel {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background-color: white;
    transition: left 0.3s ease;
    z-index: 1000;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.category-panel.is-open {
    left: 0;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.category-menu {
    margin-top: 40px;
}

@media (max-width: 768px) {
    .category-panel {
        width: 100%;
        left: -100%;
    }
}

/*Fin de panel de categorias*/


.change-location-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 10px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 20px;
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
}

@media (max-width: 768px) {
    .filter-button {
        display: block;
    }

 
}


/*Ocultar El boton de Scroll UP*/

.scrollingUp.is-active {
    display: none;
}