body > section#events form {
	display: grid;
	grid-template-columns: 0.6fr 1.8fr 0.6fr;
	grid-auto-rows: 1fr;
	gap: 10px 10px;
	grid-template-areas:
		". . .";
	margin: 10px 0;
	background: #f8f8f8;
}

body > section#events ul {
	list-style: none;
	padding: 10px 40px;
	margin: 5px 0;
}

body > section#events form:hover {
	background: #ececec;
}

body > section#events ul li {
	padding: 5px 10px;
}

body > section#events div.left {
	padding: 10px;
}

body > section#events div.right ul.checkout {
	padding: 10px 0;
	margin: 67px 0;
}

body > section#events div.right ul.check-in {
	padding: 10px 0;
	margin: 116px 0;
}

body > section#events div.right ul li {
	text-align: center;
}

body > section#events div.right ul li input {
	border: 0px;
	font-size: 30pt;
	text-align: center;
	background-color: transparent;
}

body > section#events div.right ul li.current-cost {
	font-size: 23pt;
}

body > section#events ul li button {
	transition: all 0.3s ease;
	background: #5cd7a9;
	font-family: Arial, sans-serif;
	color: #ffffff;
	border-radius: 4px;
	border: 0;
	padding: 4px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	display: block;
	box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
	width: 100%;
}

body > section#events ul li button:hover {
	background: #fed410;
}

body > section#events ul li button.sold-out,
body > section#events ul li button[disabled] {
	background: #fff;
	cursor: not-allowed;
	color: #717171;
}
