@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300&display=swap');

* {
	box-sizing: border-box;
}

body {
	background-color: #212121;
	display: flex;
	flex-direction: column;
	color: #fff;
	align-items: center;
	justify-content: center;
	height: 100vh;
	font-family: 'Lato', sans-serif;
	margin: 0;
}

.show-container {
	margin: 20px 0;
}

.show-container select {
	background-color: #fff;
	border: 0;
	border-radius: 5px;
	font-size: 14px;
	margin-left: 10px;
	padding: 5px 15px 5px 15px;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}

.container {
  perspective: 1000px;
  margin-bottom: 30px;
}

h1 {
	font-size: 22px;
	text-align: center;
	margin-bottom: 30px;
}
.seat {
  height: 14px;
  width: 15px;
  margin: 3px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
	list-style: none;
	margin: 5px 5px 0 5px;
}


.seat.selected {
  background-color: #ffffff;
}

.occupied {
	background-color:rgba(46, 33, 33, 0.1)
}
.seat.occupied {
  background-color:rgb(63, 62, 62)
}

.front {
	background-color: rgb(243, 223, 42);
	opacity: .9
}

.center {
	background-color: rgb(29, 170, 29);
	opacity: .9
}

.ends {
	background-color: rgb(252, 179, 45);
	opacity: .9
}

.seat:not(.occupied):hover {
	cursor: pointer;
	transform: scale(1.2);
}

.showcase {
	background: rgba(0, 0, 0, 0.1);
	padding: 5px 10px;
	border-radius: 5px;
	color: #777;
	list-style-type: none;
	display: flex;
	justify-content: space-between;
}

.showcase li {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 10px;
}

.showcase li small {
	margin-left: 2px;
}

.showcase .seat:not(.occupied):hover {
	cursor: deault;
	transform: scale(1.2);
}

.showcase.ticket-band {
	margin-top: -10px;
}

.row {
	display: flex;
}

div.row:nth-child(3) {
	margin-bottom: 18px;
}

.seat:nth-of-type(2) {
	margin-right: 18px;
}

.seat:nth-last-of-type(2) {
	margin-left: 18px;
}

p.text {
  margin: 5px 0;
}

p.text span {
  color: #6feaf6;
}

.stage {
	background-color: rgb(180, 182, 162);
	height: 70px;
	width: 100%;
	margin: 15px 0;
	transform: rotateX(-45deg);
  box-shadow: 0 3px 10px; rgba(255,255,255,0.4);
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;

}

.screen {
  background-color: #fff;
  height: 70px;
  width: 100%;
  margin: 15px 0;
  transform: rotateX(-45deg);
  box-shadow: 0 3px 10px rgba(255, 255, 255, 0.7);
}






