#open {
	position: relative;
	width: min(1057px, calc(100% - 32px));
	max-width: 1057px !important;
	margin-left: auto;
	margin-right: auto;
	padding-top: 0;
	padding-bottom: 24px;
	padding-left: 0;
	padding-right: 0;
	z-index: 2;
}

#open.is-module-locked {
	pointer-events: none !important;
}

#open .ticket-info {
	margin-bottom: 0;
	padding: 0;
}

#open .ticket-selection-header {
	margin: 0;
	font-size: 18px;
	line-height: 1.2;
	font-weight: 700;
	color: rgba(226, 0, 122, 1);
}

#open .tickets-list {
	margin-top: 8px !important;
}

#open .tickets-list-wrapper {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	align-items: stretch;
}

#open .normal-ticket-wraper {
	margin: 0;
	display: flex;
	height: 100%;
}

#open .normal-ticket-content {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	position: relative;
	width: 100%;
	height: 290px;
	min-height: 290px;
	padding: 14px 16px 58px;
	border: 1px solid #111111;
	background: #ffffff;
	box-sizing: border-box;
}

#open .normal-ticket-content > .col-md-7,
#open .normal-ticket-content > .col-md-2,
#open .normal-ticket-content > .col-xl-3 {
	width: 100%;
	max-width: none;
	flex: 0 0 auto;
	padding-left: 0;
	padding-right: 0;
}

#open .normal-ticket-content > .col-md-2.col-xl-3 {
	margin-top: 0;
}


#open .normal-ticket-content .product-name {
	min-height: 104px;
	margin: 0;
	font-size: 22px;
	line-height: 1.18;
	font-weight: 400;
	color: #111111;
}

#open .normal-ticket-content .product-name > div {
	min-width: 0;
}

#open .product-name-text {
	display: block;
}

#open .no-tickets-label {
	display: block;
	margin-top: 6px;
	margin-left: 0;
	font-size: 12px;
	line-height: 1.35;
	font-weight: 700;
	color: #7a7a7a;
	font-style: normal;
}

#open .cart-desc-info-btn {
	flex: 0 0 auto;
	padding: 0;
	border: 0;
	background: transparent;
	color: #111111;
	box-shadow: none;
}

#open .cart-desc-info-btn:hover,
#open .cart-desc-info-btn:focus-visible {
	color: rgba(226, 0, 122, 1);
}

#open .product-price {
	margin-top: 10px;
	margin-bottom: 12px;
	font-size: 22px;
	line-height: 1.1;
	font-weight: 700;
	color: rgba(226, 0, 122, 1);
}

#open .product-price .price-value {
	white-space: nowrap;
}


#open .qbuttons {
	position: absolute !important;
	right: 16px;
	bottom: 14px;
	display: flex !important;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	width: auto !important;
	min-width: 0 !important;
	max-width: none !important;
	margin: 0 !important;
}

#open .qbuttons .ticket-quantity-announcer {
	display: none !important;
}


#open .qbuttons .pbtn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	min-width: 38px;
	max-width: 38px;
	height: 38px;
	min-height: 38px;
	max-height: 38px;
	padding: 0;
	margin: 0 !important;
	border: 1px solid #111111;
	border-radius: 50%;
	background: #ffffff;
	color: #111111;
	cursor: pointer;
	font-size: 0;
	line-height: 0;
	flex: 0 0 38px;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

#open .qbuttons .pbtn i {
	display: none;
}

#open .qbuttons .pbtn svg {
	display: block;
	width: 14px;
	flex: 0 0 auto;
	pointer-events: none;
}

#open .qbuttons .minus.pbtn svg {
	height: 2px;
}

#open .qbuttons .plus.pbtn svg {
	height: 14px;
}

#open .qbuttons .product.plus.pbtn {
	background: #111111;
	color: #ffffff;
}

#open .qbuttons .pbtn:hover,
#open .qbuttons .pbtn:focus-visible {
	border-color: rgba(226, 0, 122, 1);
	color: rgba(226, 0, 122, 1);
}

#open .qbuttons .product.plus.pbtn:hover,
#open .qbuttons .product.plus.pbtn:focus-visible {
	background: rgba(226, 0, 122, 1);
	border-color: rgba(226, 0, 122, 1);
	color: #ffffff;
}

#open .qbuttons .pbtn.button-disabled-visual,
#open .normal-ticket-content.ui-state-disabled .qbuttons .pbtn {
	opacity: 0.35;
	cursor: default !important;
	pointer-events: none !important;
}

#open .numberOfTickets {
	width: 16px;
	padding: 0;
	border: 0;
	background: transparent;
	font-size: 14px;
	line-height: 1;
	font-weight: 700;
	color: #111111;
	text-align: center;
	pointer-events: none;
	flex: 0 0 16px;
}

#open .normal-ticket-content.ui-state-disabled {
	opacity: 0.6;
}

@media (max-width: 991px) {
	#open .tickets-list-wrapper {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	#open {
		width: calc(100% - 16px);
		margin-left: auto;
		margin-right: auto;
		padding-left: 0;
		padding-right: 0;
	}

	#open .ticket-selection-header {
		font-size: 14px;
		line-height: 1.2;
	}

	#open .tickets-list-wrapper {
		grid-template-columns: 1fr;
	}

	#open .tickets-list {
		margin-top: 10px !important;
	}

	#open .tickets-list-wrapper {
		gap: 12px;
	}

	#open .normal-ticket-content {
		height: 210px;
		min-height: 210px;
		padding: 16px 18px 70px;
	}

	#open .normal-ticket-content .product-name {
		min-height: 0;
		font-size: 17px;
		line-height: 1.08;
	}

	#open .product-price {
		margin-top: auto;
		margin-bottom: 18px;
		font-size: 19px;
		line-height: 1.1;
	}

	#open .qbuttons {
		left: auto;
		right: 18px;
		bottom: 16px;
		width: auto !important;
		justify-content: flex-end !important;
		gap: 18px;
	}

	#open .qbuttons .pbtn {
		width: 40px;
		min-width: 40px;
		max-width: 40px;
		height: 40px;
		min-height: 40px;
		max-height: 40px;
		flex-basis: 40px;
	}

	#open .numberOfTickets {
		width: 14px;
		font-size: 16px;
		flex-basis: 14px;
	}
}

#open .vip-parking-gate {
	width: 100%;
}

#open .vip-parking-gate__title {
	margin: 0 0 16px;
	font-size: 18px;
	line-height: 1.2;
	font-weight: 700;
	color: rgba(226, 0, 122, 1);
}

#open .vip-parking-gate__fields {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-bottom: 16px;
}

#open .vip-parking-gate__field input {
	width: 100%;
	height: 70px;
	border: 0 !important;
	border-radius: 0;
	background: #f2f2f2 !important;
	padding: 0 24px !important;
	box-shadow: none !important;
	font-size: 16px;
	color: #111111;
	box-sizing: border-box;
}

#open .vip-parking-gate__field input::placeholder {
	color: #6f6f6f;
	font-size: 16px;
}

#open .vip-parking-gate__actions {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 24px;
}

#open .vip-parking-gate__submit {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: 18px;
	padding: 0;
	margin: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #1a1a1a;
	cursor: pointer;
}

#open .vip-parking-gate__submit-label {
	line-height: 1;
}

#open .vip-parking-gate__submit-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	min-width: 38px;
	min-height: 38px;
	box-sizing: border-box;
	border: 1px solid #1a1a1a;
	border-radius: 999px;
	line-height: 0;
}

#open .vip-parking-gate__submit-icon svg {
	display: block;
	width: 12px;
	height: 12px;
	transform: scaleX(-1);
}

#open .vip-parking-gate__info {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: #111111;
}

#open .vip-parking-gate__info p {
	margin: 0 0 16px;
}

#open .vip-parking-gate__info p:last-child {
	margin-bottom: 0;
}

@media (max-width: 767px) {
	#open .vip-parking-gate__title {
		font-size: 14px;
	}

	#open .vip-parking-gate__fields {
		grid-template-columns: 1fr;
	}
}