.theatre {
	max-width: 700px;
	margin:0 auto;
	/*stage*/
	border-style: solid;
	border-width: 30px 10px 10px 10px;
	border-top-color: #950f0f;
	border-right-color: #ffffff00;
	border-bottom-color: #ffffff00;
	border-left-color: #ffffff00;
}
.stage {
	width: 100%;
	height: 30px;
	background: #c7c7c7;
	border-radius: 0 0 3px 3px;
	padding: 4px;
	text-align: center;
	margin-bottom: 20px;
}

.stagelabel {
	color: white;
	font-family: "Martel", cursive;
	letter-spacing:20px;
	font-weight: bold;
}

.stageinfobox {
	width: 100%;
	border: solid 2px #c7c7c7;
	border-radius: 0 0 3px 3px;
	padding: 20px 4px 2px;
	text-align: center;
	margin-bottom: 8px;
}

/* SEATS LAYOUT */
#seating {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(17, 1fr); /* 17=16+aisle */
	grid-template-rows: repeat(14, 1fr) repeat(1, 2fr);  
	grid-gap: 10px 4px;
	justify-items: center;
	align-items: center;
	border-bottom: 4px solid #c7c7c7;
}

#seating:nth-child(3) {
	margin-left: -50px;
}
	
/* SEAT & "COLOR CODE" */
.seat{
	color: #fff;
	font-size: 12px;
	text-align: center;
	padding-top: 3px;
	/*border-radius: 50%;*/
	width: 26px;
	height: 26px;
	-webkit-user-select: none; /* Safari */
	-ms-user-select: none; /* IE 10 and IE 11 */
	user-select: none; /* Standard syntax */
}

@media screen and (max-width:510px) {
	.seat {
		border-radius: 45% ;
		width: 18px;
		font-size: 11px;
		padding-top: 4px;
	}
}

.seat {
	background: #a1a1a1;
}

.aisle {
	-webkit-user-select: none; /* Safari */
	-ms-user-select: none; /* IE 10 and IE 11 */
	user-select: none; /* Standard syntax */
}

.myGridTable {
	padding: 6px;
	border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}