header {
	width: 100%;
	height: 70px;
	padding: 0px 10px;
	border-radius: 10px 10px 0px 0px;
	background-color: #fff;
	box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
	display: flex !important;
	flex-direction: row;
	justify-content: space-between;
}

.extended {
	box-shadow: none
}

.extended .nav-container {
	width: 100%;
	height: auto;
	padding: 10px 0px;
	margin-right: unset;
	background-color: #fff;
	display: flex;
	flex-direction: column-reverse;
	position: absolute;
	top: 70px;
	left: 0px;
	z-index: 10;
}

.extended .nav-container nav {
	width: 100%;
	background-color: unset !important;
	box-shadow: none !important;
}

.extended .nav-container nav ul {
	width: 100%;
	height: 100%;
	padding: 10px 15px 5px;
	flex-direction: column;
}

.extended .nav-container nav ul>li {
	width: 100%;
}

.extended .nav-container nav ul>li:not(:last-child) {
	margin-right: unset;
	margin-bottom: 10px;
}

.extended .nav-container nav ul>li>a{
	padding: 5px !important;
	color: #252947;
	background-color: #f5f5f5;
	border-radius: 4px;
	text-align: center;
	display: block;
	font-family: 'Quicksand SemiBold', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
}

.menu-btn-container {
	width: 20%;
	height: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.nav-container {
	height: 100%;
	display: none;
	flex-direction: row;
}

.nav-container nav {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.nav-container nav ul {
	width: 100%;
	height: 100%;
	list-style-type: none;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.nav-container nav ul>li {
	width: calc( 100% / 5 );
	height: 100%;
}

.nav-container nav ul>li:not(:last-child) {
	margin-right: 10px;
}

.nav-container nav ul>li>a {
	height: 100%;
	color: #252947;
	padding: 0px 20px;
	text-decoration: none;
	font-size: 16px;
	font-family: 'Quicksand bold', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.nav-container nav ul>li>a:hover {
	background-color: #FF0000;
	color: #fff;
}

.c-l-h {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.c-l-h img {
	width: 40%;
}

.social-networks-container {
	width: 20%;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.social-networks-container>div:not(:last-child) {
	margin-right: 5px;
}

.social-networks-container>div img{
	width: 20px;
	margin: 0px 6px;
}

#content-icon-tienda {
	position: relative;
}

#count-add-card {
	width: 13px;
	height: 13px;
	padding: 2px;
	box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	position: absolute;
	background-color: #ff0000;
	border-radius: 50%;
	bottom: -1px;
	right: 2px;
}

#count-add-card span {
	color: #ffffff;
	font-size: 10px;
}

@media screen and ( min-width: 992px ) {
	.nav-container {
		display: none;
	}
}