.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 200px;
    height: 100%;
    background: #ffffff;
    transition: transform 0.3s ease-in-out;
    padding-top: 60px;
    transform: translateX(-100%);
	z-index: 1000;}
.menu a {
    display: block;
    color: #000000;
    text-decoration: none;            
    text-align: left;            
    transition: background 0.3s ease, transform 0.2s ease;}
.menu a:hover {
    transform: scale(1.1);}
.menu-movil {
    display:flex;
    position: fixed;
    top: 1.5rem;
	margin-left:20px;
    background: #FFFFFF;
    color: #2f2f2f;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    border-radius: 5px;
    z-index: 1000;}
.menu.show {transform: translateX(0);}
ul {list-style: none;}
span.label {margin-right: 0.5em;}
.close-menu {  
	position: absolute;          
    top: 15px;
    right: 1em;
    background: #ffffff;
    color: #000000;
    padding: 3px 4px 2px 4px;
    border: none;
    cursor: pointer;
    font-size: 1.5em;
    border-radius: 5px;}
button#close-menu {background: white;color: #333;}
.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;}
.search-wrapper i {
    position: absolute;
    right: 10px;}
	
	