/**,
*:after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}*/

html, body, .container, .scroller {
	height: 100%;
}
.scroller {
	overflow:hidden;
}

.scroller,
.scroller-inner {
	position: relative;
        z-index: 2;
}

/*.container {
	position: relative;
	overflow: hidden;
	background: #fff;
}*/

.menu-trigger {
	position: relative;
	padding-left: 40px;
	font-size: 1em;
    top: 25px;
}

.menu-trigger:before {
	position: absolute;
	top: 2px;
	left: 0;
	width: 40px;
	height: 6px;
	background: #fff;
	box-shadow: 0 6px #010f40, 0 12px #fff, 0 18px #010f40, 0 24px #fff;
	content: '';
}

.mp-pusher {
	position: relative;
	left: 0;
	height: 100%;
    z-index:99;
	margin-left: 0 !important;
}

.mp-menu {
	position: fixed; /* we can't use fixed here :( */
	top: 0;
	left: 0;
	z-index: 1;
	width: 300px;
	height: 100%;
    margin-left:-100%;
	/*-webkit-transform: translate3d(-100%, 0, 0);
	-moz-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);*/
}

.mp-level {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #00162b;
	margin-left: -100%;
	overflow-y: auto;
	background: white;
	/*-webkit-transform: translate3d(-100%, 0, 0);
	-moz-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);*/
}

/* overlays for pusher and for level that gets covered */
.mp-pusher::after,
.mp-level::after,
.mp-level::before {
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 0;
	content: '';
	opacity: 0;
}

.mp-pusher::after,
.mp-level::after {
	background: rgba(0,0,0,0.3);
	-webkit-transition: opacity 0.3s, width 0.1s 0.3s, height 0.1s 0.3s;
	-moz-transition: opacity 0.3s, width 0.1s 0.3s, height 0.1s 0.3s;
	transition: opacity 0.3s, width 0.1s 0.3s, height 0.1s 0.3s;
}

.mp-level::after {
	z-index: -1;
}

.mp-pusher.mp-pushed::after,
.mp-level.mp-level-overlay::after {
	width: 100%;
	height: 100%;
	opacity: 1;
	-webkit-transition: opacity 0.3s;
	-moz-transition: opacity 0.3s;
	transition: opacity 0.3s;
}
.mp-pusher.mp-pushed .mp-menu {
	z-index: 10;
}

.mp-level.mp-level-overlay {
	cursor: pointer;
}

.mp-level.mp-level-overlay.mp-level::before {
	width: 100%;
	height: 100%;
	background: transparent;
	opacity: 1;
}

.mp-pusher,
.mp-level {
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

/* overlap */
.mp-overlap .mp-level.mp-level-open {
	/*box-shadow: 1px 0 2px rgba(0,0,0,0.2);
	-webkit-transform: translate3d(-40px, 0, 0);
	-moz-transform: translate3d(-40px, 0, 0);
	transform: translate3d(-40px, 0, 0);*/
     margin-left:-300px;
}

/* First level */
.mp-menu > .mp-level,
.mp-menu > .mp-level.mp-level-open,
.mp-menu.mp-overlap > .mp-level,
.mp-menu.mp-overlap > .mp-level.mp-level-open {
	/*box-shadow: none;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);*/
    margin-left:-100%;
}

/* cover */
.mp-cover .mp-level.mp-level-open {
	/*-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);*/
    margin-left:0px;
	z-index:1;
}

.mp-cover .mp-level.mp-level-open > ul > li > .mp-level:not(.mp-level-open) {
	/*-webkit-transform: translate3d(-100%, 0, 0);
	-moz-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);*/
     margin-left:-100% !important;
}

/* content style */
.mp-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
	z-index: 11;
	position: relative;
}

.mp-menu h6 {
	margin: 0;
	padding: 25px;
	color: rgba(255,255,255,0.4);
	text-shadow: 0 0 1px rgba(0,0,0,0.1);
	font-weight: 300;
	font-size: 2em;
}

.mp-menu.mp-overlap h6::before {
	position: absolute;
	top: 0;
	right: 0;
	margin-right: 8px;
	font-size: 75%;
	line-height: 1.8;
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.1s 0.3s;
	-moz-transition: opacity 0.3s, -moz-transform 0.1s 0.3s;
	transition: opacity 0.3s, transform 0.1s 0.3s;
	-webkit-transform: translateX(-100%);
	-moz-transform: translateX(-100%);
	transform: translateX(-100%);
}

.mp-menu.mp-cover h6 {
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 20px;
	color: #173388;
	font-family: 'PresicavHv-Regular';
	box-shadow: inset 0 -1px #eaf5f5;
}

.mp-overlap .mp-level.mp-level-overlay > h6::before {
	opacity: 1;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	-moz-transition: -moz-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	transform: translateX(0);
}

.mp-menu ul li .flex {
	display: flex;
	align-items: center;
	justify-content: center;
}

.mp-menu ul li .flex .icon {
	width: 40px;
	height: 40px;
	fill: black;
	margin-left: 2em;
}

.mp-menu ul li .flex .icons {
	width: 25px;
    height: 25px;
    box-shadow: 0 0;
    margin-top: 15px;
    margin-right: 25px;
	background: rgba(155,155,155,0);
}
.mp-menu ul li .flex .icons svg {
	width: 100%;
    height: 100%;
}
.mp-menu ul li .flex .icons:hover svg {
	fill: #173388;
}

.mp-menu ul li > a, .mp-menu ul li .txt {
	display: block;
	padding: 1em 1em 1em 2.8em;
	outline: none;
	box-shadow: inset 0 -1px rgba(99,99,99,.1);
	text-shadow: 0 0 1px rgba(220,220,220,0.1);
	font-family: 'PresicavHv-Regular';
	letter-spacing: 1px;
	font-size: 14px;
	text-decoration: none;
	color: #173388;
	-webkit-transition: background 0.3s, box-shadow 0.3s;
	-moz-transition: background 0.3s, box-shadow 0.3s;
	transition: background 0.3s, box-shadow 0.3s;
}
.mp-menu ul li .txt {
	box-shadow: inset 0 0 rgba(99,99,99,.1);
	text-shadow: 0 0 0 rgba(220,220,220,0.1);
	color: black;
}

.mp-menu ul li::before {
	position: absolute;
	left: 20px;
	z-index: -1;
	color: #173388;
	line-height: 70px;
	height: 47px;
}

.mp-level > ul > li:first-child > a {
	box-shadow: inset 0 -1px rgba(99,99,99,.1), inset 0 1px rgba(99,99,99,.1);
}

.mp-menu ul li a:hover {
	background: rgba(155,155,155,0.1);
	box-shadow: inset 0 -1px rgba(99,99,99,.1);
}

.mp-level > ul > li:first-child > a:hover {
	background: rgba(155,155,155,0.1);
	box-shadow: inset 0 -1px rgba(99, 99, 99, 0.1), inset 0 1px rgba(99, 99, 99, 0.1);
}

.mp-menu .mp-level.mp-level-overlay > ul > li > a,
.mp-level.mp-level-overlay > ul > li:first-child > a {
	box-shadow: inset 0 -1px rgba(0,0,0,0);
}

.mp-level.mp-level-overlay > ul > li:first-child > a {
	box-shadow: inset 0 -1px rgba(128, 128, 128,1), inset 0 1px rgba(128, 128, 128,1);
} /* seems like Chrome 34.0.1847.131 needs the second shadow otherwise the transition breaks */

  .mp-menu-wrapper {
	  position: relative;
	  height: auto;
	  display: flex;
	  flex-direction: column;
  }

.mp-back {
	/*background: rgba(0,0,0,0.1);*/
	outline: none;
	color: #173388;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 700;
	display: block;
	font-size: 0.8em;
	padding: 1em;
	text-align: right;
	padding-right: 3em;
	position: relative;
	font-family: 'PresicavHv-Regular';
	box-shadow: inset 0 1px rgba(0,0,0,0.1);
	-webkit-transition: background 0.3s;
	-moz-transition: background 0.3s;
	transition: background 0.3s;
}

	.mp-back::after {
		font-family: 'linecons';
		position: absolute;
		content: "\e036";
		right: 10px;
		font-size: 1.3em;
		color: #173388;
		top: 50%;
		transform: translateY(-50%);
	}

.mp-menu .mp-level.mp-level-overlay > .mp-back,
.mp-menu .mp-level.mp-level-overlay > .mp-back::after {
	background: transparent;
	box-shadow: none;
	color: transparent;
}

.mp-menu ul li > a .img, .mp-menu ul li > a svg {
	display: inline-block;
	vertical-align: middle;
	max-width: 20px;
	height: 18px;
	margin-right: 5px;
	fill: #3aaf9f;
}

.mp-menu ul li > a span {
	display: inline-block;
	vertical-align: middle;
}

.mp-menu .lang-row {
	display: flex;
	justify-content: center;
	width: 192px;
	margin: 0 auto;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(99,99,99,0.1);
}
	.mp-menu .lang-row .lang-col {
		flex: 0 0 25%;
		text-align: center;
		border-right: 1px solid rgba(99,99,99,0.2);
		padding: 5px 0;
	}

	.mp-menu .lang-row .lang-col:last-child {
		border-right: none;
	}

		.mp-menu .lang-row .lang-col .cell {
			display: inline-block;
			text-shadow: 0 0 1px rgba(220,220,220,0.1);
			font-family: 'PresicavHv-Regular';
			letter-spacing: 1px;
			font-size: 14px;
			text-decoration: none;
			color: #3aaf9f;
		}

		.mp-menu .lang-row .lang-col .cell:hover, .mp-menu .lang-row .lang-col .cell.active {
			color: #3d3d3d;
		}

/* Fallback example for browsers that don't support 3D transforms (and no JS fallback) */
/* We'll show the first level only */
.no-csstransforms3d .mp-pusher,
.no-js .mp-pusher {
	padding-left: 300px;
}

.no-csstransforms3d .mp-menu .mp-level,
.no-js .mp-menu .mp-level {
	display: none;
}

.no-csstransforms3d .mp-menu > .mp-level,
.no-js .mp-menu > .mp-level {
    display: block;
}
