header {
    width: 100%;
    height: 80px;
    background: rgb(3, 10, 75);
    position: fixed;
    top: 0;
    padding: 0 15px;
    z-index: 9999;
    box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.5);
}
.container-header {
    width: 100%;
    height: 100%;
    max-width: 1114px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* border: 1px solid red; */
}
.header-logo {
    width: auto;
    /* border: 1px solid white; */
}
#logo {
    display: block;
    margin: auto;
    height: 70px;
    /* border: 1px solid red; */
}
.user-options {
    width: 100px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    /* border: 1px solid yellow; */
}
.container-shopping-cart {
    width: 35px;
    /* border: 1px solid orange; */
}
.qtd-products-added {
    width: 27px;
    height: 16px;
    margin: auto;
    font-size: 0.75rem;
    text-align: center;
    line-height: 18px;
    background: white;
    border-radius: 4px;
    color: rgb(0, 0, 80);
}
.link-shopping-cart {
	width: 35px;
	height: 30px;
	cursor: pointer;
	display: block;
	/* border: 1px solid red; */
}
.shopping-cart {
	width: 100%;
	height: 100%;
	/* border: 1px solid blue; */
}
.shopping-cart:hover{
	opacity: 0.8;
}
.user-access {
	width: 70px;
	height: 50px;
	/* border: 1px solid red; */
}
.user-access a {
	width: 100%;
	height: 25px;
	display: block;
	text-decoration: none;
	color: rgb(255, 255, 255);
	text-align: center;
	font-size: 0.8rem;
	line-height: 22px;
	/* border: 1px solid orange; */
}
.user-access a:first-child {
	border-bottom: 1px solid white;
}
.user-access a:hover {
	color: rgba(255, 255, 255, 0.8);
}
.link-user-area {
	width: 30px;
	height: 30px;
	/* border: 1px solid gray; */
}
.img-user {
	width: 100%;
	cursor: pointer;
	/* border: 1px solid red; */
}
.overlay-user-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	overflow: hidden;
	z-index: 9999;
	/* display: none; */
}
.user-modal {
	width: 220px;
	height: 160px;
	background: white;
	padding: 5px;
	position: absolute;
	top: 50%;
	left: 50%;
	box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
	transform: translate(-50%, -50%);
	padding: 5px;
}