@charset "UTF-8";
/**  _     _ _               _           
 *  | |__ (_) | ___  _ __ __| | ___ _ __ 
 *  | '_ \| | |/ _ \| '__/ _` |/ _ \ '__|
 *  | |_) | | | (_) | | | (_| |  __/ |   
 *  |_.__/|_|_|\___/|_|  \__,_|\___|_|   
 */
*, ::before, ::after{
	margin:0;
	padding:0;
	border:0 none;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	outline:none;
}
html{
	position:relative;
}
html:before{
	content:'';
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color:var(--c4);
	display:block;
	z-index:-1;
}
html, body{
	min-height:100%;
	font-family:var(--f-all);
	font-size:14px;
	font-weight:400;
	line-height:normal;
	color:var(--c0);
	word-wrap:break-word;
	background-color:var(--c4);
	-webkit-text-size-adjust:100%;
	-moz-text-size-adjust:none;
	-ms-text-size-adjust:100%;
}
html.touchevents, .touchevents body{
	font-size: 16px;
	line-height:normal;
}
input{
	-webkit-appearance:none;
	width:100%;
	padding:0 0.35em;
	font-family:var(--f-dig);
	font-size:1em;
	font-weight:400;
	line-height:32px;
	color:var(--c0);
	background-color:var(--c100);
	border:1px solid var(--c0-35-a);
	border-radius:0.5rem;
	-webkit-box-shadow:inset 0 1px 2px var(--c0-10-a);
	box-shadow:inset 0 1px 2px var(--c0-10-a);
}
.input-group input{
	border-radius:0.5rem 0 0 0.5rem;
}
input[placeholder]{
	-o-text-overflow:ellipsis;
	text-overflow:ellipsis;
}
input::-webkit-input-placeholder{
	color:var(--c0-35-a);
}
input::-moz-placeholder{
	color:var(--c0-35-a);
}
input:-ms-input-placeholder{
	color:var(--c0-35-a);
}
input::-ms-input-placeholder{
	color:var(--c0-35-a);
}
input::placeholder{
	color:var(--c0-35-a);
}
input::-moz-placeholder{
	color:var(--c0-35-a);
}
input::-webkit-input-placeholder{
	color:var(--c0-35-a);
}
input::-ms-input-placeholder{
	color:var(--c0-35-a);
}
:focus, :active{
	outline:none !important;
}
input:focus{
	caret-color:var(--c2);
	border:1px solid var(--c2);
}
input:focus::-webkit-input-placeholder{
	color:var(--c0-65-a);
}
input:focus::-moz-placeholder{
	color:var(--c0-65-a);
}
input:focus:-ms-input-placeholder{
	color:var(--c0-65-a);
}
input:focus::-ms-input-placeholder{
	color:var(--c0-65-a);
}
input:focus::placeholder{
	color:var(--c0-65-a);
}
input:focus::-moz-placeholder{
	color:var(--c0-65-a);
}
input:focus::-webkit-input-placeholder{
	color:var(--c0-65-a);
}
input:focus::-ms-input-placeholder{
	color:var(--c0-65-a);
}
input.iconic{
	padding-right:2em;
	background-repeat:no-repeat, repeat;
	background-position:right 0.5em top 50%, 0 0;
	background-size:1.15em auto, 100%;
}
select {
	-webkit-appearance:none;
	width: 100%;
	padding:0 2em 0 0.35em;
	font-family:var(--f-dig);
	font-size:1em;
	font-weight:400;
	line-height:32px;
	color:var(--c0);
	background-color:var(--c100);
	background-repeat: no-repeat, repeat;
	background-position: right 7px top 50%, 0 0;
	background-size: 0.5rem auto, 100%;
	border:1px solid var(--c0-35-a);
	border-radius:0.5rem;
	display: block;
	-webkit-box-shadow:inset 0 0 2px 0 var(--c0-10-a);
	box-shadow:inset 0 0 2px 0 var(--c0-10-a);
	cursor: pointer;
}
select::-ms-expand{
	display:none;
} 
select:hover{
	border-color:var(--c0);
}
select:focus{
	color:var(--c0);
	border-color:var(--c2);
}
select option{
	font-weight:400;
}

input[type="checkbox"]{
	width:auto;
}
button{
	font-size: 1rem;
	line-height: normal;
	font-weight: 400;
	font-family: unset;
}
button:-moz-focus-inner{
	border:0 !important;
}
.btn {
	position: relative;
	margin-left:-1px;
	padding:0 0.75em;
	font-family:var(--f-dig);
	font-size:1em;
	font-weight:400;
	line-height:32px;
	text-align:center;
	text-decoration:none;
	white-space:nowrap;
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
	-webkit-touch-callout:none;
	color:var(--c0);
	background-color:var(--c2-10);
	border:1px solid var(--c2);
	border-radius:0.5rem;
	-webkit-box-shadow:1px 1px 2px 0 var(--c0-10-a-a);
	box-shadow:1px 1px 2px 0 var(--c0-10-a-a);
	display:block;
	-ms-touch-action:manipulation;
	touch-action:manipulation;
	cursor:pointer;
	-webkit-transition:all ease 0.25s;
	-o-transition:all ease 0.25s;
	transition:all ease 0.25s;
}
.btn.na {
	opacity: 0.25;
	cursor: default;
}
.btn:not(.na):hover{
	color:var(--c100);
	background-color:var(--c2);
}
.btn:not(.na):active{
	top:1px;
	-webkit-box-shadow:none;
	box-shadow:none;
}
.input-group .btn{
	min-width: 8em;
	border-radius:0 0.5rem 0.5rem 0;
}



img{
	width:100%;
	height:auto;
	border:0;
}
strong, label, h1, h2, h3, h4{
	font-weight:700;
}
ul, li{
	list-style:none;
}

.fade-in{
	-webkit-animation-duration:1s;
	animation-duration:1s;
	-webkit-animation-fill-mode:both;
	animation-fill-mode:both;
	-webkit-animation-name:fadeIn;
	animation-name:fadeIn;
}
@-webkit-keyframes fadeIn{
	from{
		opacity:0;
	}
	to{
		opacity:1;
	}
}
@keyframes fadeIn{
	from{
		opacity:0;
	}
	to{
		opacity:1;
	}
}
.fade-in-down{
	-webkit-animation-duration:1s;
	animation-duration:1s;
	-webkit-animation-fill-mode:both;
	animation-fill-mode:both;
	-webkit-animation-name:fadeInDown;
	animation-name:fadeInDown;
}
@-webkit-keyframes fadeInDown{
	from{
		opacity:0;
		-webkit-transform:translate3d(0,-100%,0);
	}
	to{
		opacity:1;
		-webkit-transform:none;
	}
}
@keyframes fadeInDown{
	from{
		opacity:0;
		-webkit-transform:translate3d(0,-100%,0);
		transform:translate3d(0,-100%,0);
	}
	to{
		opacity:1;
		-webkit-transform:none;
		transform:none;
	}
}
.fade-out-up{
	-webkit-animation-duration:1s;
	animation-duration:1s;
	-webkit-animation-fill-mode:both;
	animation-fill-mode:both;
	-webkit-animation-name:fadeOutUp;
	animation-name:fadeOutUp;
}
@-webkit-keyframes fadeOutUp{
	from{
		opacity:1;
	}
	to{
		opacity:0;
		-webkit-transform:translate3d(0,-100%,0);
	}
}
@keyframes fadeOutUp{
	from{
		opacity:1;
	}
	to{
		opacity:0;
		-webkit-transform:translate3d(0,-100%,0);
		transform:translate3d(0,-100%,0);
	}
}
.slide-in-right{
	-webkit-animation-duration:1s;
	animation-duration:1s;
	-webkit-animation-fill-mode:both;
	animation-fill-mode:both;
	-webkit-animation-name:slideInRight;
	animation-name:slideInRight;
}
@-webkit-keyframes slideInRight{
	from{
		-webkit-transform:translate3d(100%,0,0);
		visibility:visible;
	}
	to{
		-webkit-transform:translate3d(0,0,0);
	}
}
@keyframes slideInRight{
	from{
		-webkit-transform:translate3d(100%,0,0);
		transform:translate3d(100%,0,0);
		visibility:visible;
	}
	to{
		-webkit-transform:translate3d(0,0,0);
		transform:translate3d(0,0,0);
	}
}
.slide-out-right{
	-webkit-animation-duration:1s;
	animation-duration:1s;
	-webkit-animation-fill-mode:both;
	animation-fill-mode:both;
	-webkit-animation-name:slideOutRight;
	animation-name:slideOutRight;
}
@-webkit-keyframes slideOutRight{
	from{
		-webkit-transform:translate3d(0,0,0);
	}
	to{
		visibility:hidden;
		-webkit-transform:translate3d(100%,0,0);
	}
}
@keyframes slideOutRight{
	from{
		-webkit-transform:translate3d(0,0,0);
		transform:translate3d(0,0,0);
	}
	to{
		visibility:hidden;
		-webkit-transform:translate3d(100%,0,0);
		transform:translate3d(100%,0,0);
	}
}
