/* Icons (made with Icomoon.io) */
/* Feather Icons by Cole Bemis */

.icon {
	font-family: 'feather';
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
	line-height: 1;
	text-transform: none;
	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	speak: none;
}

.icon--arrow-left:before {
	content: '\e901';
}

.icon--menu:before {
	content: '\e903';
}

.icon--cross:before {
	content: '\e117';
} 


/* Menu styles */

.menu {
    position: fixed;
    top: 120px;
    left: 0;
    width: 300px;
    height: calc(100vh - 120px);
    background: #18202f;
}

.menu__wrap {
	position: absolute;
	top: 3.5em;
	bottom: 0;
	overflow: hidden;
	width: 100%;
}

.menu__level {
	position: absolute;
	top: 0;
	left: 0;
	visibility: hidden;
	overflow: hidden;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.menu__level--current {
	visibility: visible;
}

.menu__item {
	display: block;
	width: 100%;
}

.menu__link {
    border-top: 1px solid #283c63;
    border-bottom: 1px solid #283c63;
    position: relative;
    display: block;
    padding: 1em 2.5em 1em 1.5em;
    color: #fff;
    -webkit-transition: color 0.1s;
    transition: color 0.1s;
}

.menu__link[data-submenu]::after {
	content: '\e315';
	font-family: 'Material Icons';
	position: absolute;
	right: 0;
	padding: 0em 1.25em;
	color: #fff;
}

.menu__link:hover,
.menu__link[data-submenu]:hover::after {
	color: #fff;
}

#ml-menu  .material-icons {
    color: #fff !important;
}

#ml-menu .menu__wrap .material-icons:hover {
    color: #fff !important;
}

[class^='animate-'],
[class*=' animate-'] {
	visibility: visible;
}

.animate-outToRight .menu__item {
	-webkit-animation: outToRight 0.2s both cubic-bezier(0.7, 0, 0.3, 1);
	animation: outToRight 0.2s 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.2s both cubic-bezier(0.7, 0, 0.3, 1);
	animation: outToLeft 0.2s 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.2s both cubic-bezier(0.7, 0, 0.3, 1);
	animation: inFromLeft 0.2s 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.2s both cubic-bezier(0.7, 0, 0.3, 1);
	animation: inFromRight 0.2s 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: 0.65em;
    line-height: 1;
    position: relative;
    padding: 23px;
}

.menu__breadcrumbs a {
	font-weight: bold;
	display: inline;
	cursor: pointer;
	vertical-align: middle;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #fff;
    line-height:14px;
}

.menu__breadcrumbs a:last-child {
	pointer-events: none;
}

.menu__breadcrumbs a:hover {
	color: #fff;
    text-decoration:none;
}

.menu__breadcrumbs a:not(:last-child)::after {
	content: '\e315';
	font-family: 'Material Icons';
	display: inline-block;
	padding: 0 0.5em;
	color: #fff;
}

.menu__breadcrumbs a:not(:last-child):hover::after {
	color: #fff;
}

.menu__back {
	font-size: 1.05em;
	position: absolute;
	z-index: 100;
	top: 0;
	right: 2.25em;
	margin: 0;
	padding: 1.365em 0.65em 0 0;
	cursor: pointer;
	color: #2a2b30;
	border: none;
	background: none;
}

.menu__back--hidden {
	pointer-events: none;
	opacity: 0;
}

.menu__back:hover,
.menu__back:focus {
	color: #fff;
	outline: none;
}
.chevron_link{
    display:none;
}
@media screen and (min-width: 992px) {
    .menuElem.active > a > .chevron_link {
        transform: translateY(-10px) rotate(90deg);
    }

    .chevron_link {
        display: inline-block;
        color: #fff;
        color: #fff;
        transition: all 0.2s;
        right: 2px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .menuElem a{
        position:relative;
    }
}
/* Open and close buttons */
.action {
    display: block;
    margin: 0;
    cursor: pointer;
    border: none;
    background: none;
}

.action:focus {
	outline: none;
}

.action--close {
    font-size: 1.1em;
    top: 1.25em;
    right: 1em;
    color: #fff !important;
    position: absolute;
    top: 18px;
}

/* Example media query */
@media screen and (max-width: 992px) {
	.menu {
		z-index: 1000;
		top: 0;
		width: 100%;
		height: 100vh;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
	}
	.menu--open {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}