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

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

.ticket-selection-container img {
	display: block;
	width: auto;
	height: auto;
	max-width: 324px;
	max-height: 90vh;
	margin: 0 auto;
}

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

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

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

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

.ticket .name-container p {
	margin: 12px 0 0 0;
}

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

.ticket h2,
.total,
.time-selection button {
	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-container a:not(:hover) {
	text-decoration: none;
}

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

.discounted {
	text-decoration: line-through;
	color: rgb(80, 80, 80);
}

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

: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;
}

@media (min-width: 1080px) {
	.ticket-selection-container {
		margin-bottom: 16px;
	}

	.ticket-selection-container .img-container {
		max-width: 260px;
		min-width: unset;
		height: fit-content;
	}

	.ticket-selection-container img {
		max-width: 100%;
		max-height: unset;
	}

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

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

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

	.ticket h2 {
		margin: 0;
	}

	.ticket .info {
		width: 75%;
	}

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

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

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