

/* Menu styles */

.menu {
	position: relative;
	left: 0;
	height: calc(100vh - 200px);
	max-height: 600px;
	/*background: #E6E6E6;*/
}

.menu__wrap {
	position: relative;
	bottom: 0;
	overflow: hidden;
	width: 100%;
	height: 100%;
	border-top: 1px solid #ececec;
}

.menu__level {
	position: absolute;
	top: 0;
	left: 0;
	visibility: hidden;
	overflow: hidden;
	overflow-y: auto;
	/*width: calc(100% + 50px);*/
	height: calc(100% - 30px);
	width: 100%;
	margin: 0;
	padding-top: 2px;
	list-style-type: none;
}

.menu__level:focus {
	outline: none;
}

.menu__level--current {
	visibility: visible;
}

.menu__item {
	width: 100%;
}

.menu__link {
	font-weight: 400;
	position: relative;
	display: block;
	-webkit-transition: color 0.1s;
	transition: color 0.1s;
	width:calc(100% - 20px);
}

.menu__link::after {
	display: inline-block;
    font: normal normal normal 24px/1 "Material Design Icons";
    font-size: inherit;
    text-rendering: auto;
    line-height: inherit;
    -webkit-font-smoothing: antialiased;
	content: '\F142';
	position: absolute;
	right: -15px;
	top:0;
	bottom: 0;
	height: 20px;
	margin: auto;
	font-size: 18px;
	width: 16px;
	text-align: right;
	color: #AAAAAA;
}
.menu__link:not([data-submenu])::after {
	right: -16px;
	font-size: 17px
}
.menu__link[data-submenu]::after {
	/*<i class="material-icons">&#xE147;</i>*/
	content: '\F415';
	font-size: 14px
}
.menu__level .menu_todas:not([data-submenu])::after{
	content: '\F3CC';
	right: -14px;
	font-size: 14px
}
.menu__link:hover,
.menu__link:focus,
.menu__link:hover::after,
.menu__link:focus::after {
	color: #0265CD;
}

.menu__link--current::before {
	content: '\00B7';
	font-size: 1.5em;
	line-height: 0;
	position: absolute;
	top: 50%;
	left: 0.5em;
	height: 4px;
	color: #6E7375;
}

[class^='animate-'],
[class*=' animate-'] {
	visibility: visible;
}

.animate-outToRight .menu__item {
	-webkit-animation: outToRight 0.5s both cubic-bezier(0.7, 0, 0.3, 1);
	animation: outToRight 0.5s both cubic-bezier(0.7, 0, 0.3, 1);
}

@-webkit-keyframes outToRight {
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
}

@keyframes outToRight {
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
}

.animate-outToLeft .menu__item {
	-webkit-animation: outToLeft 0.5s both cubic-bezier(0.7, 0, 0.3, 1);
	animation: outToLeft 0.5s both cubic-bezier(0.7, 0, 0.3, 1);
}

@-webkit-keyframes outToLeft {
	to {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}

@keyframes outToLeft {
	to {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}

.animate-inFromLeft .menu__item {
	-webkit-animation: inFromLeft 0.5s both cubic-bezier(0.7, 0, 0.3, 1);
	animation: inFromLeft 0.5s both cubic-bezier(0.7, 0, 0.3, 1);
}

@-webkit-keyframes inFromLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes inFromLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.animate-inFromRight .menu__item {
	-webkit-animation: inFromRight 0.5s both cubic-bezier(0.7, 0, 0.3, 1);
	animation: inFromRight 0.5s both cubic-bezier(0.7, 0, 0.3, 1);
}

@-webkit-keyframes inFromRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes inFromRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.menu__breadcrumbs {
	font-size: 12px;
	line-height: 20px;
	height: 20px;
	vertical-align: middle;
	display: inline;
	padding-left: 6px
}

.menu__breadcrumbs #homeCate {
	font-size: 17px;
}
.menu__breadcrumbs a {
	text-transform: capitalize;
	cursor: pointer;
	vertical-align: middle;
	color: #6E7375;
	display: inline-flex;
}

.menu__breadcrumbs a:last-child {
	pointer-events: none;
	color: #0265CD!important;
}

.menu__breadcrumbs a:hover,
.menu__breadcrumbs a:focus {
	color: #0265CD;
	text-decoration: none!important
}

.menu__breadcrumbs a:not(:last-child)::after {
	display: inline-block;
    font: normal normal normal 24px/1 "Material Design Icons";
    font-size: inherit;
    text-rendering: auto;
    line-height: inherit;
    -webkit-font-smoothing: antialiased;
	content: '\F054';
	color: #CACACA;
	font-size: 10px
}


.menu__back {
	font-size: 14px;
	cursor: pointer;
	float:right;
	margin-top:10px;
	border: none;
	background: none;
}

.menu__back--hidden {
	pointer-events: none;
	opacity: 0;
}

.menu__back:hover,
.menu__back:focus {
	color: #0265CD;
	outline: none;
}


