/*
	Written by Artem K.
	https://www.github.com/goodguyartem
*/

.ticket-selection-container {
	margin-bottom: 16px;
}

.ticket-selection-container>img {
	max-width: 80%;
	height: fit-content;
	margin: 0 auto;
	display: block;
}

.ticket-selection>h2,
.ticket-qna h2 {
	font-size: 1.8rem;
	font-weight: 400;
	text-transform: none;
	text-align: start;
}

.ticket-selection>* {
	margin-left: auto;
}

.ticket-selection>p {
	margin: 48px 0;
}

.ticket-types {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.ticket {
	background: white;
	border: 1px solid var(--blue2);
	padding: 16px;
}

.ticket h2 {
	font-weight: 400;
	text-align: start;
	margin: 0;
}

.ticket h2,
.total,
.time-selection button,
.ticket-qna h2 {
	font-size: 1.6rem;
}

.ticket p {
	font-size: 1rem;
	margin: 16px 0;
}

.ticket .price-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.ticket .price-container>* {
	margin: 0;
}

.ticket .price {
	width: fit-content;
	font-size: 1.35em;
	font-weight: 250;
}

.ticket a:any-link {
	padding: 8px;
	border: none;
	background: none;
	font-size: 1.25em;
	width: fit-content;
	text-transform: uppercase;
	color: black;
}

.ticket-qna {
	margin: 0;
}

:is(h1, h2, h3, h4, h5, h6) + .thin-list {
	margin-top: 0;
}

.thin-list > li {
	margin: 1em auto;
}

.thin-list > li:first-child {
	margin-top: 0;
}

.map-container {
	width: 100%;
	max-width: 409px;
	height: fit-content;
	margin: 64px 0 32px 0;
}

.map-container > p {
	width: 100%;
}

#map {
	width: 100%;
	height: 358px;
	z-index: 0;
	border: 1px solid var(--blue1);
}

@media (min-width: 1080px) {
	.ticket-selection-container > img {
		max-width: 260px;
		height: fit-content;
	}

	.ticket-selection-container {
		display: flex;
		gap: 64px;
		align-items: center;
	}

	.ticket-selection > p {
		margin-top: 0;
	}

	.ticket {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 16px 32px;
	}

	.ticket h2 {
		margin: 0 0 26px 0;
	}

	.ticket .info {
		width: 75%;
	}

	.ticket .price {
		font-size: 1.1em;
	}

	.ticket .price-container {
		display: flex;
		justify-content: space-around;
		width: 25%;
	}

	.ticket-qna {
		max-width: 75%;
	}

	.thin-list > li {
		width: 70%;
	}
}