
.product-list nav {
    text-align: center;
    text-transform: uppercase;  
    background-color: rgb(245,245,245);
}

    .product-list nav ul {
        width: 99%;
        margin: 0 auto;
        list-style-type: none;
        padding:0;
    }

        .product-list nav ul li {
            display: inline-block;
        }

            .product-list nav ul li a {
                /*color: #9d9d9d;*/
                width: 125px;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
                text-decoration: none;
                display: inline-block;
                padding: 1em;
                box-sizing: border-box;
            }

                .product-list nav ul li a:hover {
                    color: #fff;
                    text-decoration: none;
                    background-color: rgb(21,100,195);
                }

.current_page {
    background-color: rgb(21,100,195);
}

.current_page a {
    color: white;
}

#menu_button_wrapper{
    display: none;
}

.hidden {
    display: none;
}

/* Responsive for smaller screens */

@media (max-width: 760px) {
    #menu_button_wrapper{
        display: block;
        padding: 1em;
        color: #9d9d9d;
        -webkit-box-shadow: 0 1px 0 rgba(255,255,255,.1);
        box-shadow: 0 1px 0 rgba(255,255,255,.1);
        margin-bottom: .5em;
    }
    
    #menu_button {
        box-sizing: border-box;
        float: right;
        padding: .5em 1em;
        border-radius: 5px;
        color: white;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
		background-color: #333;
    }
    
    #menu_button:hover {
        cursor: pointer;
        background-color: rgb(21,100,195);
    }
    
    #hamburger {
        float: right;
        padding-top: .15em;
    }
    
    #menu_button span{
        display: block;
        background-color: #fff;
        width: 1.2em;
        height: .15em;
        border-radius: 1px;
        margin-bottom: .2em;
    }

    .product-list nav ul {
        width: 100%;
        margin: 0 auto;
        padding: 0;
        box-sizing: border-box;
    }

        .product-list nav ul li {
            display: block;
        }

            .product-list nav ul li a {
                width: 100%;
            }

}
