@charset "UTF-8";

#rsvp {
	width: 30em;
	margin: auto;
}

#rsvp table {
	margin: auto;
	margin-top: 1em;
}
#rsvp table tr td {
	padding: 0.2em;
}
#rsvp table tr td label {
	color: #555;
	font-size: 1.2em;
	font-family: 'intro_regular', sans-serif;
}
#rsvp input[type="text"] {
	color: #555;
	border: solid 1px #ccc;
	padding: 0.6em;
	font-size: 1em;
	height: 1em;
	font-weight: bold;
	font-family: 'Quicksand', sans-serif;
}
#rsvp .button {
	position: relative;
	display: inline-block;
	background: #fff;
	border: solid 1px #ccc;
	padding: 0.35em 0.8em 0 0.8em;
	box-sizing: border-box;
	height: 2em;
	color: #555;
	font-size: 1.2em;
	font-family: 'intro_regular', sans-serif;
	cursor: pointer;
}
#rsvp .button .signal {
	width: 1em;
	height: 1em;
}

#rsvp .email-input {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	width: 100%;
}
#rsvp .email-input input[type="text"] {
	flex-grow: 1;
	flex-shrink: 1;
	margin-right: 10px;
}
#rsvp .email-input input[type="text"].error {
	border-color: red;
}
#rsvp .email-input .button {
	width: 7em;
	text-align: center;
	flex-grow: 0;
	flex-shrink: 0;
}
#rsvp .email-error {
	font-size: 0.8em;
	color: red;
}
#rsvp .email-message {
	font-size: 0.8em;
	padding-bottom: 1em;
}

#rsvp .label {
	color: #555;
	font-size: 1em;
	font-family: 'intro_regular', sans-serif;
	text-align: right;
	width: 100%;
	padding: 0;
	margin-top: 1em;
}
#rsvp ul {
	color: #555;
	font-family: 'intro_regular', sans-serif;
	list-style: none;
	width: 100%;
	padding: 0;
	padding-bottom: 2em;
}
#rsvp ul li {
	position: relative;
	text-align: left;
	margin: 0;
	margin-bottom: 0.5em;
	font-size: 1.2em;
	padding: 1em 0.5em;
	line-height: 1em;
	background-color: #fff;
	box-sizing: border-box;
}
#rsvp ul li .select {
	float: right;
	margin-top: -0.5em;
}
#rsvp ul li .select div {
	display: inline-block;
	padding: 0.5em;
	border-radius: 0.5em;
	cursor: pointer;
}
#rsvp ul li .select div.selected {
	color: #fff;
	background-color: #555;
}
#rsvp ul li .message {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: #fff;
	line-height: 3em;
	text-align: center;
}
