/* Ver https://www.w3schools.com/howto/howto_js_sidenav.asp

 /* The side navigation menu */
.sidenav {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 10000; /* Stay on top */
    top: 0; /* Stay at the top */
    left: 0;
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.1s; /* 0.5 second transition effect to slide in the sidenav */
    padding-bottom: 20px;
    /*opacity: 0.93;*/
    box-shadow: 5px 5px 16px #B0B0B0;
    border-right: 1px solid silver;
    background-color: rgba(243, 243, 243, 0.93);
}

/* The navigation menu links */
.sidenav a {
    padding: 8px 8px 8px 16px;
    text-decoration: none;
    font-size: 25px;
    color: #ffffff;
    display: block;
    transition: 0.1s;
    opacity: 1;
}

.side-menu-filter-label {
    padding-left: 8px;
    text-decoration: none;
    font-size: 16px;
    display: block;
    transition: 0.1s;
    opacity: 1;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: normal;
    color: gray;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
    color: #000000;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 0px;
    font-size: 36px;
    margin-left: 50px;
    color: gray;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
    transition: margin-left .1s;
    padding: 20px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}

.side-menu-filter-separator {
    padding: 0;
    margin-top: 8px;
    margin-bottom: 8px;
    border-color: silver;
}

.side-menu-filter-header {
    margin-top: 0;
    font-size: 20px;
}

.side-menu-filter-subheader {
    padding-left: 8px;
    color: #292929;
    font-weight: bold;
}

#rol-filter-button,
#forsale-filter-button {
    box-shadow: 5px 5px 14px #CCCCCC;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    cursor: pointer;
    position: fixed;
    left: 0;
    top: 120px;
    writing-mode: vertical-rl;
    color: gray;
    border-right: 1px solid #F0F0F0;
    border-top: 1px solid #F0F0F0;
    border-bottom: 1px solid #F0F0F0;
    z-index: 1029;
    background-color: #F9F9F9;
    padding: 0;
    font-size: 28px;
}

/* Estilos para el apartado de filtro del buscador de venta */
.forsale-cancel-filters {
    height: 1em;
    margin: -16px 0px 0 0;
}

.forsale-rotate90 {
    transform: rotate(90deg);
    vertical-align: text-bottom;
}

 #forsale-filters-active i {
    vertical-align: baseline;
}

#forsale-filters-active small {
    vertical-align: baseline;
}