@font-face {
    font - family: 'FontAwesome';
    src: url('/fonts/fontawesome-webfont.eot?v=4.3.0');
    src: 
    url('/fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'), 
    url('/fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'), 
    url('/fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'), 
    url('/fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'), 
    url('/fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg');
    font - weight: normal;
    font - style: normal
}

.listMenu {
	position: absolute;
	top: 2em;
	left: 1em;
	/*background-color: rgba(255, 255, 255, 1);*/
	z-index: 1002;
	width: 200px;
	/*max-height: 334px;*/
	color: #000;
	opacity: 1;
}

.dummy-logo {
	position: relative;
	top: 0em;
	left: 0em;
	width: 100%;
	max-height: 20%;
	/*padding: 0.1em;*/
	text-align: center;
	color: #fff;
}

.dummy-logo img {
	max-width: 185px;
}

.icon--arrow-top:before {
	content: '\f176';
	content: '\f077';
}

.icon--arrow-bottom:before {
	content: '\f175';
	content: '\f078';
} 

.icon--arrow-left:before {
	content: '\f177';
}

.icon--menu:before {
	content: '\f039';
}

.icon--cross:before {
	content: '\f00d';
}

/* Menu styles */

.listMenu .menu {
	opacity: 1;
	width: 100%;
	text-align: left;
	font-size: 1em;
    max-height: 80%;
    height: 65%;
    display: block;
    overflow-y: scroll;
    overflow-x: hidden;
	position: relative;
	font-family: "Open Sans", sans-serif !important;
}

.menu__wrap {
	/*max-height: 193px;*/
	top: 1em;
	bottom: 0;
	width: 100%;
}

.menu__level {
	position: absolute;
	left: 0;
	display: none;
	width: 100%;
	margin: 0;
	padding: 0;
    /*margin-top: -10px;*/
	list-style-type: none;
}

.scroll {
	display: block;
}

.menu__level--current {
	display: block;
}

.menu__item {
    display: block;
    font-weight: 300;
    font-size: 13px;
    font-family: "Open Sans", sans-serif;
    line-height: 0.5;
    /*border-bottom: 1px solid #DADADA;*/
    word-break: break-word;
}

.menu__item:last-child {
    border-bottom: 0px solid #DADADA;
}

.menu__item:hover {
	/*background-color: #383838;*/
}

.menu__item:hover .menu__link {
	color: white;
}

.menu__link {
	font-weight: 400;
	position: relative;
	display: block;
	padding: 1em 2.5em 1em 1.5em;
	/*color: #383838;*/
	opacity: 0.65;
    line-height: 13px;
}

.menu__link[data-submenu]::after {
	content: '\f141';
	font-family: 'FontAwesome';
	position: absolute;
	right: 0;
	padding-right: 1.5em;
	/*color: rgba(0,0,0,0.8);*/
}

.menu__link:hover,
.menu__link[data-submenu]:hover::after {
	color: #fff;
	text-decoration: none;
}

.menu__link:focus,
.menu__link[data-submenu]:focus::after {
	color: rgb(92, 94, 220);
	text-decoration: none;
	outline: 0;
}

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

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

.animate-outToRight .menu__item {
	-webkit-animation: outToRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
	animation: outToRight 0.6s 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.6s both cubic-bezier(0.7, 0, 0.3, 1);
	animation: outToLeft 0.6s 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.6s both cubic-bezier(0.7, 0, 0.3, 1);
	animation: inFromLeft 0.6s 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.6s both cubic-bezier(0.7, 0, 0.3, 1);
	animation: inFromRight 0.6s 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.7em;
	line-height: 1;
	position: relative;
	/*padding: 1.5em 1.75em 0em 2.5em;*/
	padding: 1.1em;
    padding-left: 2em;
}

.menu__breadcrumbs a {
	font-size: 1.2em;
	display: inline-block;
	cursor: pointer;
	vertical-align: middle;
	letter-spacing: 1px;
	text-transform: uppercase;
	/*color: #3a3a3a !important;*/
	margin-right: 25px;
}

.menu__breadcrumbs a:last-child {
	/*pointer-events: none;*/
}

.menu__breadcrumbs a:hover {
	color: #3a3a3a !important;
	text-decoration: none;
}

.menu__breadcrumbs a:not(:last-child)::after {
	content: '\f178';
	font-family: 'FontAwesome';
	display: inline-block;
	padding: 0 0.5em;
	color: #33353e;
}

.menu__breadcrumbs a:not(:last-child):hover::after {
	color: #33353e;
	text-decoration: none;
}

.menu__back {
	position: absolute;
	z-index: 100;
	right: 0.9em;
	/*left: 0.9em;*/
	margin: -3px;
	cursor: pointer;
	/*color: #000;*/
	border: none;
	background: none;
	margin-top: 4px;
	font-size: 16px !important;
}

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

.menu__back:hover,
.menu__back:focus {
	/*color: rgb(92, 94, 220);*/
	outline: none;
	text-decoration: none;
}

/*SCROLL TOP*/
.menu__top {
	/*font-size: 1.5em;*/
	position: absolute;
	z-index: 100;
	bottom: -2em;
	padding: 0.3em;
	cursor: pointer;
	color: #000;
	border: none;
	background: rgba(255, 255, 255, 1);
	/*opacity: 0.9;*/
	width: 50%;
}

.menu__top--hidden {
	pointer-events: none;
}

.menu__top:hover {
	background-color: rgb(92, 94, 220);
	color: #fff;
	outline: none;
	text-decoration: none;
}

/*SCROLL TOP 2*/
.menu_top {
	font-size: 1.5em;
	position: absolute;
	z-index: 100;
	bottom: -1.34em;
	padding: 0.3em;
	cursor: pointer;
	color: #000;
	border: none;
	background: rgba(255, 255, 255, 1);
	/*opacity: 0.9;*/
	width: 50%;
}

.menu_top--hidden {
	pointer-events: none;
}

.menu_top:hover {
	background-color: #4F99C6;
	color: #fff;
	outline: none;
	text-decoration: none;
}

/*SCROLL BOTTOM*/
.menu__bottom {
	/*font-size: 1.5em;*/
	position: absolute;
	right: 0;
	z-index: 100;
	bottom: -2em;
	padding: 0.3em;
	cursor: pointer;
	color: #000;
	border: none;
	background: rgba(255, 255, 255, 1);
	/*opacity: 0.9;*/
	width: 50%;
}

.menu__bottom--hidden {
	pointer-events: none;
	opacity: 1;
}

.menu__bottom:hover {
	background-color: rgb(92, 94, 220);
	outline: none;
	text-decoration: none;
	color: #fff;
}

/*SCROLL BOTTOM 2*/
.menu_bottom {
	font-size: 1.5em;
	position: absolute;
	right: 0;
	z-index: 100;
	bottom: -1.34em;
	padding: 0.3em;
	cursor: pointer;
	color: #000;
	border: none;
	background: rgba(255, 255, 255, 1);
	/*opacity: 0.9;*/
	width: 50%;
}

.menu_bottom--hidden {
	pointer-events: none;
	opacity: 1;
}

.menu_bottom:hover {
	background-color: #4F99C6;
	outline: none;
	text-decoration: none;
	color: #fff;
}

.menu__bottom:focus {
	outline: 0;
}

.menu__top:focus {
	outline: 0;
}

.menu_bottom:focus {
	outline: 0;
}

.menu_top:focus {
	outline: 0;
}

/* Open and close buttons */

.action {
	position: absolute;
	display: block;
	margin: 0;
	padding: 0;
	cursor: pointer;
	border: none;
	background: none;
}

.action:focus {
	outline: none;
}

.action--open {
	/*font-size: 1.8em;*/
	font-size: 18px;
	top: 15px;
	left: 1em;
	display: none;
	color: #fff;
	position: fixed;
	z-index: 1000;
	padding: 5px;
}

.action--open .icon {
	font-size: inherit;
	line-height: inherit;
}

.action--close {
	font-size: 20px;
	right: -29px;
	display: none;
	color: #000;
	z-index: 11000 !important;
	padding-left: 7px;
	padding-right: 7px;
	background-color: rgba(255,255,255,1);
	-webkit-animation-duration: 0.2s;
    animation-duration: 0.2s;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.action--close:hover .action--close i {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media screen and (max-width: 641px) {
	.listMenu {
		display: block !important;
	}
	.action--open {
	    display: block !important;
	    opacity: 1 !important;
	}
	#desktopMinimizeBtn {
		display: none !important;
	}
}
	.action--open {
		display: block;
	}
	.action--close {
		/*display: block;*/
	}
	/*.dummy-logo img {
		max-height: 100%;
		max-width: 100%;
	}*/
	.listMenu {
		z-index: 1500;
		top: 0;
		left: 0;
		width: 300px;
		max-height: 100% !important;
		height: 100% !important;
		-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;

		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
	.menu--open {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	.open-menu-hide {
		display: none;
	}

.listMenu .menu::-webkit-scrollbar {
    width: 2px;
}
 
.listMenu .menu::-webkit-scrollbar-track {
    /*-webkit-box-shadow: inset 0 0 6px rgba(255,255,255,0.3); */
}
 
.listMenu .menu::-webkit-scrollbar-thumb {
    background: #000;
}
.listMenu .menu::-webkit-scrollbar-thumb:window-inactive {
    /*background: rgba(33,149,245,0.8);*/
}

/* Desktop minimizer */
#desktopMinimizeBtn {
	opacity: 1;
    font-size: 18px;
    top: 15px;
    left: 1em;
    color: #fff;
    z-index: 998;
    position: absolute;
    margin: 0;
    padding: 0;
    cursor: pointer;
    border: none;
    background: none;
    display: none;
}
button:focus {
	outline:0;
}