/* === HORIZONTAL TICKET === */
.ticket {
	margin: auto;
	display: flex;
	background: white;
	box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.left {
	display: flex;
}

.image {
	height: 100%;
	width: 250px;
	background-image: url("/dist/img/tour.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	opacity: 0.85;
}

.admit-one {
	position: absolute;
	color: darkgray;
	height: 250px;
	padding: 0 10px;
	letter-spacing: 0.15em;
	display: flex;
	text-align: center;
	justify-content: space-around;
	writing-mode: vertical-rl;
	transform: rotate(-180deg);
}

.admit-one span:nth-child(2) {
	color: white;
	font-weight: 700;
}

.left .ticket-number {
	height: 250px;
	width: 250px;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	padding: 5px;
}

.ticket-info {
	padding: 10px 30px;
	display: flex;
	flex-direction: column;
	text-align: center;
	justify-content: space-between;
	align-items: center;
}

.date {
	width: 100%;
	border-top: 1px solid gray;
	border-bottom: 1px solid gray;
	padding: 5px 0;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.date span {
	width: 100px;
}

.date span:first-child {
	text-align: left;
}

.date span:last-child {
	text-align: right;
}

.date .center {
	color: #f89d15;
	font-size: 20px;
}

.show-name {
	font-size: 32px;
	/* font-family: "Nanum Pen Script", cursive; */
	color: #f89d15;
}

.show-name h1 {
	font-size: 48px;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: #3d342d;
}

.time {
	padding: 10px 0;
	color: #3d342d;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-weight: 700;
}

.time span {
	font-weight: 400;
	color: gray;
}

.left .time {
	font-size: 16px;
}


.location {
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: 100%;
	padding-top: 8px;
	border-top: 1px solid gray;
}

.location .separator {
	font-size: 20px;
}

.right {
	/* width: 180px; */
	border-left: 1px dashed #404040;
}

.right .admit-one {
	color: darkgray;
}

.right .admit-one span:nth-child(2) {
	color: gray;
}

.right .right-info-container {
	height: 100%;
	padding: 5px 10px 5px 10px;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
}

.right .show-name h3 {
	font-size: 13px;
}

.right .show-name p {
	font-size: 12px;
}

.barcode {
	height: 100px;
}

.barcode img {
	height: 100%;
}

.right .ticket-number {
	color: gray;
	font-size: 18px;
}


/* === VERTICAL TICKET === */
.ticket-background {
	background: #0054a6;
	padding: 20px 30px;
	border-radius: 5px;
	z-index: 2;
}

@media screen and (max-width: 768px) {
	.ticket-background {
		padding: 10px;
		border-radius: 0;
	}
}

.ticket-content {
	width: 300px;
	background: #FFF;
	position: relative;
	border-radius: 10px;
	z-index: 9;
	overflow: hidden;
}

@media screen and (max-width: 768px) {
	.ticket-content {
		min-width: 100%;
	}
}

.ticket-number {
	position: absolute;
	top: 10px;
	right: 10px;
}

.ticket-warning {
	position: absolute;
	font-size: 12px;
	color: #999;
	
	/* transform: rotate(270deg);
	left: -135px;
	top: 40px; */

	left: 50%;
	transform: translateX(-50%);
	bottom: -15px;
}

.ticket-content hr {
	border-top: 2px dashed #0054a6;
	opacity: unset !important;
	margin: 20px 0;
}

.ticket-content hr::after {
	content: '';
	width: 25px;
	height: 25px;
	border-radius: 50%;
	position: absolute;
	/* bottom: 50%; */
	transform: translateY(-50%);
	left: -15px;
	background: #0054a6;
	z-index: 8;
}

.ticket-content hr::before {
	content: '';
	width: 25px;
	height: 25px;
	border-radius: 50%;
	position: absolute;
	transform: translateY(-50%);
	right: -15px;
	background: #0054a6;
	z-index: 8;
}

.content-top {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	padding: 5px 0;
}

.content-bottom {
	position: relative;
	display: flex;
	align-items: center;
}

.content-bottom-bg {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	filter: blur(0.8px);
	z-index: 1;
}

.content-bottom .content {
	z-index: 7;
	background: rgba(0,0,0,.7);
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 8px;
	color: white;
	padding: 10px;
}