.tickera .event_tickets tr td:last-child {
    display: none;
}

.variation-popup-overlay {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
	transition: opacity 500ms;
	z-index: 50;
}

.overlay:target {
	visibility: visible;
	opacity: 1;
}

.popup {
	padding: 20px;
	background: #1e1f23;
	border-radius: 5px;
	transition: all 2s ease-in-out;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-height: 50vh;
	overflow-y: hidden;
	min-width:25vw;
}

@media screen and (max-width: 576px){
	.popup {
		margin: 0 auto;
		width: 95%;
	}
}

.popup .close {
	position: sticky;
	top: 20px;
	transition: all 200ms;
	font-size: 30px;
	font-weight: bold;
	text-decoration: none;
	float: right;
	background: #191a1c;
	padding: 0 10px;
	border-radius: 5px;
	z-index: 2;
}

.popup .content {
	max-height: 30%;
	overflow: auto;
}