html {
	scroll-behavior: smooth;
}

.req {
  color: red;
}

.btn {
	white-space: normal; !important
	max-width: 300px;
}

.floor-plan {
	width: 400px;
	position: relative;
}

.booth-grid {
	position: absolute;
	left: 96px;
	top: 94px;
	display: grid;
	grid-template-rows: 31px 5px repeat(5, 31px) 11px 31px;
	grid-template-columns: 31px 12px repeat(4, 31px) 12px 31px;
}

.booth, .legend-available {
	background-color:rgb(180, 180, 255);
	text-align: center;
}

.booth-south {
	border: 1px solid black;
	border-bottom: none;
}

.booth-north {
	border: 1px solid black;
	border-top: none;
}

.booth-east {
	border: 1px solid black;
	border-right: none;
}

.booth-west {
	border: 1px solid black;
	border-left: none;
}


.booth-label {
	width: 100%;
	height: 100%;
	font-weight: bold;
}

.booth input[type=checkbox] {
    position: absolute;
    opacity: 0;
}

.booth input[type=checkbox]:checked + label, .legend-selected {
    background-color: rgb(15, 202, 15); 
}

.booth input[type=checkbox]:disabled + label, .legend-unavailable {
	background-color:rgb(255, 255, 0);
}

.expiration-date-item {
	margin: 5px;
}

.legend-table {
	max-width: 200px;
}
.legend {
	max-width: 200px;
	display: grid;
	grid-template-columns: 10px 1fr;
	grid-template-rows: 1fr 1fr;
	grid-row-gap: 5px;
	grid-column-gap: 5px;
}

.legend-box {
	height: 10px;
	width: 10px;
}

.payment {
	display: none;
}

.booth-label a {
	text-decoration: none;
	color: #000000
}

.anchor {
	display: block;
	position: relative;
	top: -45px; 
	visibility: hidden;
  }

.platinum-logo {
	max-width: 300px;
}

.tutorial-img {
	max-width: 150px;
}

@media (max-width: 600px){
	.floor-plan {
		width: 240px;
		position: relative;
	}
	
	.booth-grid {
		position: absolute;
		left: 58px;
		top: 56px;
		display: grid;
		grid-template-rows: 19px 3px repeat(5, 19px) 7px 19px;
		grid-template-columns: 19px 7px repeat(4, 19px) 7px 19px;
	}
	.booth-label {
		font-size: small;
	}
	}
