/* CSS Für Ticketing */
* {
	padding: 0px;
	margin: 0px;
}

body {
	padding: 5px;
	box-sizing: border-box;
	font-size: 14px;
    font-weight: 300;
    font-family: "Verdana", sans-serif;
}

body p {
	line-height: 1.5em;
    margin-bottom: 20px;
    color: #000;
}

body h1 {
    font-family: Verdana, sans-serif;
    font-size: 2em;
    clear: both;
    color: #000;
}

body h2 {
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 1.3em;
    margin-bottom: 7px
}

a {
    padding: 3px 5px 5px;
    color: #fff;
    display: inline-block;
    background-color: #000;
    text-decoration: none;
    cursor: pointer;
}

.wrap {
	margin-bottom: 14px;
}

input[type=checkbox] {
	margin-right: 7px;
}

label input {
	display: block;
	height: 20px;
	font-size: 1.3em;
	padding: 5px 3px;
	border: 2px solid #000;
	margin-right: 5px;
}

.error {
	color: red;
}

.ticket_person {
	margin-top: 30px;
	width: 100%;
}

a.generateTickets {
	box-sizing: border-box;
	padding: 10px 15px;
	border: 2px solid #000;
}

a.generateTickets:hover {
	background-color: #fff;
	border: 2px solid #000;
	color: #000;
	text-decoration: underline;
}


#ticketPanel {
	opacity: 0;
	z-index: -1;
	background-color: #fff;
	box-shadow: 2px 2px 10px rgba(0,0,0,.3);
	padding: 30px;
	position: absolute;
	width: 70%;
	height: auto;
	left: 50%;
	top: 50%;
	transform: translate(-50%, 100%);
	transition: all 300ms ease-in-out;
}

#ticketPanel .close {
	position: absolute;
	right: 20px;
	top: 20px;
	cursor: pointer;
}

#ticketPanel.visible {
	z-index: 10;
	opacity: 1;
	transform: translate(-50%, -50%);
}

#free_button_container {
	margin-top: 50px;
	display: inline-block;
    min-width: 75px;
    max-width: 750px;
    position: relative;
    width: 250px;
    height: 35px;
}

.free_ticket {
	text-align: center;
	border-radius: 4px;
	font-size: 16px;
    min-height: 35px;
    max-height: 55px;
    min-width: 60%;
    width: 60%;
    font-weight: 900;
    background: #2C2E2F;
    height: 35px;
    box-sizing: border-box;
    border: none;
    vertical-align: top;
    cursor: pointer;
    outline: none;
    overflow: hidden;
}

.free_ticket:hover {
	box-shadow: inset 0 0 100px 100px rgba(255, 255, 255, 0.2);
}

.free_ticket span {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #fff;
	vertical-align: top;
    position: relative;
    top: 20%;
    font-size: 16px;
}

.input-row {
	margin-bottom: 20px;
	width: 100%;
}
.input-field {
	display: inline-block;
	width: 170;
	margin-bottom: 10px;
}

#ticketPanel .close::before {
	content: "x";
	font-size: 25px;
	color: red;
}

#ticketPanel .row {
	height: auto;
	clear: both;
	display: block;
	border-bottom: 1px solid #ccc;
	padding: 6px 5px;
	height: 20px;
}

#ticketPanel .row .col_1 {
	width: 60%;
	margin-right: 5%;
	float: left;
}

#ticketPanel .row .col_2 {
	width: 15%;
	margin-right: 5%;
	float: left;
}

#ticketPanel .row .col_3 {
	width: 15%;
	float: left;
}

#ticketPanel .row .col_3 input {
    font-size: 14px;
    font-weight: 300;
}

#ticketPanel .row .total {
	font-weight: bold;
	border: none;
}

#paypal-button-container {
	margin-top: 30px;
	display: none;
}

#complete {
	position: absolute;
	top: 0px;
	left: 0px;
	background-color: #fff;
	width: 100vw;
	height: 100vh;
	z-index: -1;
	transform: scale(0);
	opacity:1;
	transition: all 300ms ease-in-out;
}

#complete.visible {
	opacity: 1;
	z-index: 100;
	transform: scale(1);
}
