@charset "UTF-8";

header a:active, header a:hover {
	text-decoration: none;
	outline: 0;
}


/* ------------------------------------------
  RESPONSIVE NAV STYLES
--------------------------------------------- */
.nav-collapse ul {
	width: 100%;
	margin: 0;
	padding: 10px 0;
	display: block;
	list-style: none;
}

.nav-collapse li {
	width: 100%;
	display: block;
}

.js .nav-collapse {
	clip: rect(0 0 0 0);
	max-height: 0;
	position: fixed;
	display: block;
	overflow: hidden;
	zoom: 1;
}

.nav-collapse.opened {
	max-height: 9999px;
}

.disable-pointer-events {
	pointer-events: none !important;
}

.nav-toggle {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-touch-callout: none;
	-ms-user-select: none;
	user-select: none;
}

@media screen and (min-width: 950px) {
	.js .nav-collapse {
		position: relative;
	}
	
	.js .nav-collapse.closed {
		max-height: none;
	}
	
	.nav-collapse ul {
		padding: 0;
	}
	
	.nav-toggle {
		display: none;
	}
}

/* ------------------------------------------
  FIXED HEADER
--------------------------------------------- */

header {
	background: rgba(15, 16, 16, .96);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 48px;
	z-index: 9993;
}

header .logo {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	text-decoration: none;
	width: 37px;
	min-width: 37px;
	max-width: 62px;
	height: auto;
	min-height: 38px;
	max-height: 64px;
	margin-right: 20px;
	padding: 0;
	float: left;
}

header .logo h1 {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

header .logo a {
	width: 100%;
	height: 0;
	margin: 5px 0 0;
	padding-top: 38px;
	display: block;
	overflow: hidden;
	background: url(../images/logo_colored@2x.png) 0 0 no-repeat;
	background-size: auto 38px;
}

@media screen and (min-width: 950px) {
	header {
		height: 80px;
		background: rgba(15, 16, 16, .96); /* Default */
		transition: all .25s ease-in-out;
	}
	
	header > div {
		height: 100%;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-direction: row;
		flex-direction: row;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-ms-flex-align: center;
		align-items: center;
	}
	
	header .logo {
		width: 62px;
		float: none;
		background-color: transparent;
		transition: all .25s ease-in-out;
	}
	
	header .logo h1 {
		height: 100%;
	}
	
	header .logo a {
		margin-top: 0;
		padding-top: 64px;
		background-size: auto 64px;
		transition: all .25s ease-in-out;
	}
	
	header.smaller {
		height: 48px;
		background: rgba(15, 16, 16, .96);
	}
	
	header.smaller .logo {
		width: 37px;
	}
	
	header.smaller .logo a {
		margin-top: 0;
		padding-top: 38px;
		background-size: auto 38px;
	}
}


/* ------------------------------------------
  MASK
--------------------------------------------- */

.mask {
	height: 0;
	background: rgba(15, 16, 16, 1);
	visibility: hidden;
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	opacity: 0;
	z-index: 9992;
	transition: all .25s ease-in-out;
}

.android .mask {
	-webkit-transition: none;
	transition: none;
}

.js-nav-active .mask {
	height: 100vh;
	visibility: visible;
	opacity: 1;
}

@media screen and (min-width: 950px) {
	.mask {
		display: none !important;
		opacity: 0 !important;
	}
}


/* ------------------------------------------
  NAVIGATION STYLES
--------------------------------------------- */

.fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
}

.nav-collapse, .nav-collapse * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.nav-collapse, .nav-collapse ul {
	font: 600 17px/1 var(--serif-default);
	list-style: none;
	text-align: center;
	width: 100%;
	float: left;
	display: block;
}

@media screen and (min-width: 950px) {
	.nav-collapse, .nav-collapse ul {
		font-size: 15px;
		float: right;
		width: auto;
		height: auto;
		background-color: transparent;
	}
	
	header.smaller .nav-collapse, header.smaller .nav-collapse ul {
		font-size: 14px;
	}
}

.nav-collapse li {
	float: left;
	width: 100%;
}

.nav-collapse li.mobile {
	display: block !important;
	visibility: visible;
}

.nav-collapse li i {
	margin-right: 5px;
}

@media screen and (min-width: 950px) {
	.nav-collapse li {
		width: auto;
	}
	
	.nav-collapse li + li {
		margin-left: 5px;
	}
	
	.nav-collapse li.mobile {
		display: none !important;
		visibility: hidden;
		transition: all .25s ease-in-out;
	}
	
	header.smaller .nav-collapse li.mobile {
		display: block !important;
		visibility: visible;
	}
}

.nav-collapse a, .nav-collapse button {
	color: #fff !important;
	text-decoration: none;
	width: 100%;
	margin: 0;
	padding: .7em 1.25em;
	display: block;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

.nav-collapse a:active, .nav-collapse .active a {
	background: #b73214 !important;
	border-radius: 3px;
}

.nav-collapse form {
	margin: 0;
	padding: 0;
}

.nav-collapse button {
	color: #fff;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 0;
	border-radius: 0;
	background: transparent;
	cursor: pointer;
}

@media screen and (min-width: 950px) {
	.nav-collapse a, .nav-collapse button {
		text-decoration: none !important;
		text-align: center;
		margin: 0;
		padding: .7em 1.25em;
		position: relative;
		float: left;
		border-top: 0;
		border-radius: 4px;
		box-sizing: border-box;
		transition: all .25s ease-in-out;
	}
	
	.nav-collapse a:hover, .nav-collapse button:hover {
		color: #fff !important;
		background: rgba(255, 255, 255, .15);
	}
	
	.nav-collapse .active a:hover, .nav-collapse .active button:hover {
		color: #fff !important;
		background: #b73214 !important;
	}
	
	header.smaller .nav-collapse a, header.smaller .nav-collapse button {
		padding: .6em .8em .7em;
	}
}

.nav-collapse .logout {
	margin-left: 0;
	border-top: 1px solid rgba(255, 255, 255, .2);
	margin-top: 20px;
	padding-top: 15px;
	position: relative;
}

.nav-collapse .logout:before {
	content: "";
	width: 1px;
	height: 2em;
	margin: auto 0;
	background-color: rgba(255, 255, 255, 0);
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
}

.nav-collapse ul ul a {
	background: #ca3716;
	padding-left: 2em;
}

@media screen and (min-width: 950px) {
	.nav-collapse ul ul a {
		display: none;
	}
	
	.nav-collapse .logout {
		margin-left: 1em;
		border-top: none;
		margin-top: 0;
		padding-top: 0;
	}
	
	.nav-collapse .logout:before {
		background-color: rgba(255, 255, 255, .5);
		left: -.5em;
	}
	
}


/* ------------------------------------------
  NAV TOGGLE STYLES
--------------------------------------------- */

@font-face {
font-family: "togglenavi";
src: url("../webfonts/toggle_icons/togglenavi.eot");
src: url("../webfonts/toggle_icons/togglenavi.eot?#iefix") format("embedded-opentype"),
    url("../webfonts/toggle_icons/togglenavi.ttf") format("truetype"),
    url("../webfonts/toggle_icons/togglenavi.woff") format("woff"),
    url("../webfonts/toggle_icons/togglenavi.svg#togglenavi") format("svg");
font-weight: normal;
font-style: normal;
}

.nav-toggle {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-decoration: none;
	text-indent: -300px;
	position: relative;
	overflow: hidden;
	width: 32px;
	height: 48px;
	float: right;
}

.nav-toggle:before {
	color: #fff; /* Edit this to change the icon color */
	font: normal 28px/48px "togglenavi"; /* Edit font-size (28px) to change the icon size */
	text-transform: none;
	text-align: center;
	position: absolute;
	content: "\e901"; /* Hamburger icon */
	text-indent: 0;
	speak: none;
	width: 100%;
	left: 0;
	top: 0;
}

.nav-toggle.active:before {
	font-size: 24px;
	content: "\e900"; /* Close icon */
}