
/*
	CSS Reset
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*
	General
*/

* {
	box-sizing: border-box;
}

html, body {
	height: 100%;
}

body {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	background: #f5a731;
}

.View {
	min-height: 100%;
	display: none;
	justify-content: center;
	align-items: center;
	padding: 30px 0;
}

.View.Open {
	display: flex;
}

.Center {
	width: 280px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.Logo {
	width: 239px;
	height: 69px;
	background: url(logo.png);
	background-size: contain;
	margin-bottom: 30px;
}

input[type="submit"],
button {
	cursor: pointer;
}

.Box {
	width: 100%;
	background: #ffffff;
	padding: 10px;
	border-radius: 10px;
	box-shadow: 1px 1px 4px #00000033;
	margin: 10px 0;
}

.Box *:last-child {
	margin-bottom: 0px;
}

.Box label,
.Box input,
.Box select,
.Box button {
	display: block;
	width: 100%;
	outline: none;
}

.Box label {
	font-weight: bold;
	font-size: 15px;
	color: #555;
	margin-bottom: 10px;
}

.Box input,
.Box select,
.Box button {
	margin-bottom: 10px;
	border-radius: 8px;
}

.Box input[type="text"],
.Box input[type="email"],
.Box select,
.Box button {
	background: #eee;
	border: 0;
	padding: 6px;
	font-size: 14px;
}

.Box input[type="submit"],
.Box button {
	background: #f5a731;
	font-size: 14px;
	border: 0;
	padding: 6px;
	-webkit-appearance: none;
	color: white;
	font-weight: bold;
	text-shadow: 0 1px 0px #00000011;
}

.RadioLabel input {
	margin: initial;
	border-radius: initial;
	display: initial;
	width: initial;
	margin: 8px 0;
}

h1 {
	font-weight: bold;
	font-size: 14px;
	opacity: 0.6;
	margin-top: 15px;
}

/*
	Login
*/

#LoginView .Notice {
	opacity: 0.4;
	color: #000;
	font-size: 14px;
	line-height: 17px;
	text-align: center;
	padding: 10px;
}

/*
	Login Confirmation
*/

#LoginConfirmationView .Notice {
	font-size: 14px;
	padding: 18px 30px;
	text-align: center;
	color: #888;
	line-height: 18px;
}

/*
	Reservations
*/

#ReservationsView .Header {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-bottom: 10px;
}

#ReservationsView .Header .emailLabel {
	font-size: 13px;
}

#ReservationsView .Header .LogoutButton {
	background: #00000055;
	font-size: 12px;
	padding: 4px 6px;
	border-radius: 6px;
	margin-left: 8px;
	cursor: pointer;
	font-weight: bold;
	color: #ffffffcc;
}

#ReservationsView .NoReservations {
	font-size: 13px;
	font-weight: bold;
	color: #aaa;
	display: block;
	text-align: center;
}

#ReservationsView .Reservation {
	display: flex;
	align-items: center;
	justify-content: space-between;
	line-height: 25px;
}

#ReservationsView .DeleteButton {
	cursor: pointer;
	color: #993333;
}

/*
	PaymentView
*/

#PaymentView .PayButton {
	display: flex;
	text-align: left;
	justify-content: space-between;
	align-items: center;
}

#PaymentView .PayButton .price {
	background: #00000055;
	padding: 2px 8px;
	border-radius: 5px;
}

#PaymentView button:not(.PayButton) {
	background: #aaa;
}
