:root {
	--primary-color: #004AAD;
	--background-color: #ffffff;
	}

	html {
	font-family: Arial, sans-serif;
	font-size: 2vw;
	}

	body {
	min-height: 96vh;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	}

	.small {
	font-size: 0.6rem;
	}

	.logo {
	max-height: 4rem;
	max-width: 100%;
	}

	.row {
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
	align-items: stretch;
	}

	.column {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	}

	.card {
	display:flex;
	flex-direction: column;
	min-height: 40vh;
	min-width: 30vw;
	max-width: 100%;
	margin: 10px;
	background-color: var(--background-color);
	border-radius: 25px;
	overflow: hidden;
	box-shadow: rgba(193, 199, 212, 0.25) 0px 20px 80px 0px;
	text-align: center;
	margin-top: 1rem;
	}
	
	.terms {
	text-align: center;
	margin-top: 20px;
	}

	.wait-title {
	font-size: 1.1rem;
	padding: 25px 10px;
	margin: 0;
	color: var(--background-color);
	background-color: var(--primary-color);
	text-transform: capitalize;
	font-weight: 500;
	}

	.wait-text {
	font-size: 2.2rem;
	margin-top: auto;
	margin-bottom: auto;
	padding-top: 50px;
	padding-bottom: 50px;
	font-weight: 700;
	}

	.wait-times-target.hidden,
	.wait-times-target + .label.hidden {
	display: none;
	}

	form {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	}

	label {
	font-size: 0.5rem;
	margin-bottom: 0.25rem;
	}

	input {
	font-size: 1rem;
	text-align: center;
	}

	input[type="submit"] {
	font-size: 0.5rem;
	padding: 10px 20px;
    border-radius: 15px;
	cursor: pointer;
	background-color: var(--primary-color);
	color: var(--background-color);
	cursor: pointer;
	border: none;
	}
		input[type="submit"]:hover {
		background-color: #000;
		}

	input[type="number"] {
	background-color: #eee;
	border: none;
	width: 3em;
    height: 2em;
	}

	.notice {
	font-size: 0.6rem;
    text-align: center;
    background: rgb(255 224 0 / 50%);
    display: inline-block;
    width: 100%;
    padding: 10px;
	box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.5s ease;
	}
		.notice.hidden {
		opacity: 0;
		visibility: hidden;
		}

	.massive {
	font-size: 2em;
	}

	form .row {
	margin-bottom: 1rem;
	margin-left: -10px;
	}
		form .row.small {
		margin-bottom: 0.25rem;
		}

	form .row > * {
	margin-left: 10px;
	}