#header {
    z-index: 100;
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    background-color: rgb(34, 34, 34);
}

#header ul {
    color: white;
    margin: 0;
    padding: 0;
    display: flex;
}

#header ul a li {
    margin: 0;
    padding: 0;
    font-size: 0.9em;
    list-style: none;
    text-transform: uppercase;
    margin: 0 10px;
}

#header ul a {
    color: white;
    text-decoration: none;
}

#header #carrito-icon a {
    color: black;
    text-decoration: none;
}

#nav-bars {
    display: none;
    cursor: pointer;
}

#nav-bars-close {
    display: none;
    cursor: pointer;
}

.header-responsive {
    display: none;
    width: 80% !important;
}

.header-responsive ul {
    padding: 0;
    margin: 0;
}

.header-responsive ul li {
    list-style: none;
    margin-bottom: 10px;
}

.header-responsive ul li a {
    color: black;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 2em;
    font-weight: 600;
}



@media (max-width: 700px) {
    
    #header ul a {
        display: none;
    }

    #nav-bars {
        display: block;
    }

}

@media (max-width: 500px) {
    
    .header-responsive {
        width: 100% !important;
    }

    .header-responsive ul li a {
        font-size: 1.2em;
    }

}



/* header-responsive */