/* * {
	box-sizing: border-box;
	letter-spacing: 0.05rem;
	outline: 0 none;
	margin: 0;
	padding: 0;
	-webkit-tap-highlight-color: transparent;
} */


label {
	position: relative;
	display: inline-block;
}

label:before {
	content: '';
	height: 31px;
	position: absolute;
	right: 7px;
	top: 3px;
	width: 22px;
	background: #fff;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
	pointer-events: none;
	display: block;
}

label:after {
	content: " ";
	position: absolute;
	right: 15px;
	top: 46%;
	margin-top: -3px;
	z-index: 2;
	pointer-events: none;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6.9px 4px 0 4px;
	border-color: #aaa transparent transparent transparent;
	pointer-events: none;
}

label select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding: 0 30px 0 10px;
	border: 1px solid #e0e0e0;
	border-radius: 3px;
	line-height: 36px;
	height: 36px;
	background: #fff;
	margin: 0 5px 5px 0;
}

select::-ms-expand {
	display: none;
}

.grid-container {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
	padding: 0px;
	column-gap: 20px;
}

.seat-combobox {
	grid-column: 4 / span 1;
	grid-row: 2 / span 1;
}

.flex {
	display: flex;
}

.flex-column {
	flex-direction: column;
}

.flex-row {
	flex-direction: row;
}

.flex-center {
	justify-content: center;
}

.seatRow {
	margin-right: 20px;
}

.seatImage {
	background-color: white;
	grid-column: 1 / span 3;
	grid-row: 1 / span 4;
}

.seatImage img {
	width: 90%;
	height: auto;
}

.buy-button {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 50px;
	background-color: #f8e71c;
	border-radius: 0 0 10px 10px;
}

.buy-button button {
	text-align: center;
	font-size: 20px;
	width: 100%;
	height: 100%;
	background-color: #f8e71c;
	color: black;
	border: none;
	border-radius: 0 0 10px 10px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
}

.seat-label {
	margin-bottom: 5px;
	font-family: 'Montserrat', sans-serif;
}

.Field {
	position: relative;
	transition: box-shadow .3s;
	background-color: #ffffff;
	padding: 20px 20px 60px 20px;
	border-width: 0px;
	border-radius: 10px;
	border-style: solid;
	margin-right: 30px;
	box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
}

.Field:hover {
	box-shadow: 0 0 15px rgba(33, 33, 33, 0.2);
}


@media only screen and (max-width: 850px) { 
	.seatImage {
		background-color: white;
		grid-column: 1 / span 5;
		grid-row: 1 / span 4;
	}

	.seat-combobox {
		grid-column: 1 / span 5;
		grid-row: 3 / span 1;
	}

	.Field{
		margin-left: 10px;
		margin-right: 10px;
	}

	.seatImage img {
		width: 100%;
	}
}

