/*
Theme Name: Realar
Theme URI: https://wordpress.themeholy.com/realar
Author: Themeholy
Author URI: https://themeforest.net/user/themeholy 
Description: Realar - Real Estate Apartment Complex WordPress Theme
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: realar
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others. 

*/

/* Header sub-menu icon */
.hide-icon.main-menu ul.sub-menu li a:before {
    display: none;
}
.hide-icon.main-menu ul.sub-menu li a:hover {
    padding-left: 0;
}

/*  */
.filter-item.hidden {
    display: none;
}





/* Estilos existentes del tema... */

/* Agregar al final del archivo */
.toggle-btn {
    display: none;
    top: 20px;
    right: 20px;
    background-color: #2c3e50;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1001;
}


@media (max-width: 991px) {
    .toggle-btn {
        display: block;
    }

    aside.sidebar-area {
        position: fixed;
		height: 100vh;
        top: 0;
        right: 0;
		z-index: 999;
		overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    aside.sidebar-area.active {
        transform: translateX(0);
    }
}

@media (min-width: 992px) {
    .toggle-btn {
        display: none;
    }
}