@charset "UTF-8";

@font-face {
	font-family: 'MullerLight';
	src: url('../font/mullerlight-webfont.woff2') format('woff2'),
		url('../font/mullerlight-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'MullerBold';
	src: url('../font/mullerbold-webfont.woff2') format('woff2'),
		url('../font/mullerbold-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

html {
	box-sizing: border-box;
	height: 100%;
	width: 100%;
	background-color: #1A70B3;
	font-family: 'MullerLight';
	font-weight: 300;
	overflow: hidden;
	user-select: none;
}

*, *:before, *:after {
	box-sizing: inherit;
	user-select: none;
	outline: none;
}

body {
	height: 100%;
	width: 100%;
	font-family: 'MullerLight';
	color: #fff;
	background-image: none;
	background-color: #1A70B3;
}

header {
	padding: 1em 1em .5em 1em;
	border-bottom: 2px solid #fff;
	background-color: #00AEEF;
}

header h1 {
	text-align: left;
	line-height: 1;
	font-size: 2.5em;
}

.navigation {
	margin: .5em 0 0 0;
}

.navigation ul {
	margin: 0;
	padding: 0;
	text-align: center;
	display: inline-block;
}

.navigation li {
	overflow: auto;
	list-style: none;
	float: left;
	text-align: left;
	border-right: 0;
	border: 0;
	margin-right: 1em;
	text-align: center;
}

.navigation li a {
	font-size: 18px;
	display: block;
	color: #fff;
	border-bottom: 1px solid #00AEEF;
	margin: .5em 2em .5em 0;
}

.navigation li.active a {
	border-bottom: 1px solid #fff;
}

#user {
	width: 30%;
	float: right;
	text-align: right;
}

#user p {
	margin: 0;
}

#user h1 {
	margin: 0;
	text-align: right;
}

#user .navigation li a {
	margin-right: 0;
}

h2, h3 {
	margin: 0;
}

.half {
	width: 48%;
	display: inline-block;
	vertical-align: top;
	text-align: left;
}

.half.left {
	margin-right: 1%;
}

.half.right {
	margin-left: 1%;
}

#page-content {
	padding: 1.5em;
	height: 100%;
	width: 100%;
}

section {
	overflow: hidden;
	text-align: center;
	padding-top: 100px;
	width: 100%;
}

h1 {
	text-align: center;
	letter-spacing: 1px;
	margin: 0;
}

h2 {
	letter-spacing: 1px;
}

#page-content h1 {
	margin: .5em 0 2em 0;
}

a {
	text-decoration: none;
}

input, select {
	padding: .5em;
	background-color: #fff;
	border: 1px solid #fff;
	display: block;
	border-radius: 0;
}

input.error, select.error {
	border: 1px solid #ff0000;
}

label {
	display: block;
	margin-top: 1em;
}

.button-container {
	margin-bottom: 1em;
}

.button {
	border-radius: 6px;
	display: inline-block;
	margin: 1em 0;
	padding: .5em 1em .6em 1em;
	background-color: #00AEEF;
	color: #fff;
	border: 0;
	font-family: 'MullerLight';
	font-weight: 300;
	font-size: 1em;
	cursor: pointer;
}

.button.delete {
	background-color: transparent;
	color: #ff0000;
	text-decoration: underline;
	padding: 0;
}

.button-container .button {
	margin: 0;
}

.error {
	color: #ff0000;
}

.lightbox-container {
	display: none;
}

.fancybox-content {
/*
	vertical-align: top !important;
	margin-top: 20px !important;
*/
	border-radius: 10px;
}

strong {
	font-family: 'MullerBold';
}

table {
	border-collapse: collapse;
}

#vending {
	text-align: center;
	font-family: 'mullerlight';
	color: #fff;
	background: #1A70B3;
}

#vending h1 {
	margin: 0 0 .5em 0;
	font-size: 3em;
}

.arrow {
	text-align: center;
	margin: 20% 0 0 0;
	font-size: 40px;
}

.bounce {
	animation: bounce 2s infinite;
}

.cancel {
	color: #fff;
}

@-webkit-keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-30px);
	}
	60% {
		transform: translateY(-15px);
	}
}

@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}
	40% {
	transform: translateY(-30px);
	}
	60% {
	transform: translateY(-15px);
	}
}