/* top-menu ------------------------------------- */
section#top-menu {
    width: 100%;
    height: 2.1rem;
    background-color: var(--primaryColor);
    > div {
    	display: flex;
    	justify-content: space-between;
    	height:100%;
		width: 100%;
		max-width: var(--maxPageWidth);
		margin: auto;
	    > nav {
	        width: 100%;
	        height: 100%;
	        /*max-width: var(--maxPageWidth);*/
	        /*margin: auto;*/
	        text-align: right;
	    }
	    > nav > a {
	        display: inline-block;
	        color: white;
	        padding: 0.3rem 0.5rem;
            height: 100%;
	    }
        > nav > a img {
            height: 100%;
        }
	    > nav > a:hover {
	        font-weight: bold;
	    }
	    > nav > a.active-cart {
	        /*color: var(--primaryColor);*/
	        font-weight: bold;
	    }
    }
}
/* top-menu ---------------------------------------- */

/* search products form --------------------------------- */
section#top-menu > div > form {
    width: 100%;
    max-width: 400px;
    height: 100%;
    border: solid 1px var(--primaryColor);
    display: flex;
    border-radius: 5px;
/*    position: absolute;
    right: 0px;
    top: var(--headerMenuHeight);*/

    > button {
        display: inline-block;
        height: 100%;
        width: auto;
        background-color: var(--primaryColor);
        padding: 4px 8px;
        cursor: pointer;
    }

    > button > img {
        height: 100%;
        width: auto;
        display: inline-block;
    }

    > input {
        height: 100%;
        width: 100%;
        padding: 4px;
        font-size: 16px;
        font-weight: bold;
        color: var(--primaryColor);
        outline: none;
        border-radius: 5px;
        display: inline-block;
    }

    input::placeholder {
        color: var(--lightGray);
    }
}

@media (width < 600px) {
    section#top-menu {
        height: 4.2rem;
        > div {
            flex-direction: column-reverse;
            height: 100%;
        }
    }

    section#top-menu > div > nav {
        height: 50%;
    }
    section#top-menu > div > form#search-products-form {
        height: 50%;
    }
}


/*header > form#search-products-form {
width: 100%;
max-width: var(--maxPageWidth);
text-align: right;
margin: auto;
padding: 3px 0px;
input {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    padding: 5px 3px;  
    border: solid thin lightgray;
    width: 100%;
    max-width: 16rem;
}
input::placeholder {
    color: lightgray;
}
button {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    background-color: var(--primaryColor);
    padding: 6px 12px;
}
}*/
/* search products form --------------------------------- */