html *{
	box-sizing: border-box;
}

.fez-button-group{
	margin-top: 1em;
}

.fez-button-group:after{
	content: "";
	display: table;
	clear: both;
}



a.fez-checkbox span{
	display: inline-block;
	width: 2em;
	height: 2em;
	border-radius: 5px;
	border: 6px solid #e2e2e2;
	padding: 0.2em;
	vertical-align: middle;
	margin-right: 1em;
}

a.fez-checkbox{
	display: block;
	margin: 0.5em 0;
	cursor: pointer;
	padding: 0.5em;
	border-radius: 5px;
	text-transform: uppercase;
	font-weight: bold;
}

a.fez-checkbox:hover{
	background: #efefef;
}

@media (hover: none) {
    a.fez-checkbox:hover{
		background: #fff;
	}
}

a.fez-checkbox.selected span:after{
	content: "";
	display: block;
	width: 210%;
	height: 180%;
	position: relative;
	top: -0.5em;
	left: -0.2em;
	background: url(../img/check.svg) no-repeat;
	background-size: cover;
}

.fez-basket{
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	position: fixed;
	bottom: -100px;
	left: 0;
	width: 100%;
	background: #6a02c1;
	padding: 1em;
	color: #fff;
	transition: bottom 0.3s;
}

.fez-basket.active{
	bottom: 0;
}

.fez-basket h3{
	display: none;
	order: 1;
}

.fez-line-items{
	flex-basis: 100%;
	order: 3;
	display: none;
}

.fez-basket-mobile{
	flex-basis: 4;
	order: 2;
}

.fez-basket button{
	order: 5;
}

.fez-total{
	order: 4;
	flex-basis: 1;
}

.fez-main{

}

.fez-main button.back{
	margin-right: 1em;
}

.fez-basket button{
	font-size: 0.5em;
}

.fez-ticket{
	padding: 1em 0;
	border-bottom: 1px solid gainsboro;
}

.fez-ticket:after{
	content: "";
	clear: both;
	display: table;
}

.fez-ticket *{
	vertical-align: middle;
}

.fez-ticket .camping{
	display: inline-block;
	background: #f8a806;
	color: #fff;
	padding: 0.4em 0.6em;
	border-radius: 5px;
	font-size: 0.8em;
}

.fez-ticket .icon{
	width: 80px;
	display: inline-block;
	margin-right: 1em;
}

.fez-ticket .ticket-weekend polygon{
	fill: black
}

.fez-ticket .ticket-day polygon{
	fill: #929292
}

.fez-ticket .ticket-season polygon{
	fill: #6a01c1;
}

.fez-ticket .icon svg text{
	text-transform: uppercase;
	font-size: 170px;
	text-anchor: middle;
}

.fez-ticket .icon svg text.headline{
	font-size: 240px
}

.fez-ticket img{
	height: 50px;
}

.fez-ticket .fez-ticket-quantity{
	display: inline-block;
	min-width: 2em;
	text-align: center;
}

.fez-tickets{
	padding-bottom: 60px;
}

.inc-dec{
	display: inline-block;
	float: right;
	clear: both;
}

.fez-extras .inc-dec{
	float: none;
}

.ticket-title{
	display: block;
	margin-bottom: 0.7em;
}

.ticket-price{
	display: inline;
	float: right;
	margin: 0.5em 1em;
	color: #696969;
	font-weight: bold;
}

.inc-dec a{
	line-height: 1em;
	background: #dcdcdc;
	display: inline-block;
	text-align: center;
	color: #fff;
	font-size: 1.4em;
	padding: 0.2em;
	border-radius: 4px;
	-webkit-user-select: none; /* Chrome/Safari */        
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* IE10+ */
	-webkit-tap-highlight-color:transparent;
	font-weight: bold;
}


.inc-dec a.inc:hover, .inc-dec a.dec:hover{
	filter: brightness(105%);
}
	
.inc-dec a span{
	width: 1em;
	height: 1em;
	display: inline-block;
}

.inc-dec a.inc{
	background: #63c800;
	cursor: pointer;
}

.inc-dec a.dec{
	background: #f8a806;
	cursor: pointer;
}

.fez-working{
	display: none;
}

.working .fez-working{
	display: block;
	position: fixed;
	background: #383100b3;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
}

.fez-working svg{
	display: block;
	width: 100px;
	height: 100px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%)
}


.fez-question.hidden{
	display: none;
}


@media screen and (min-width: 400px){
	.ticket-title{
		display: inline;
		clear: unset;
		margin-bottom: 0;
	}
}


@media screen and (min-width: 768px){

	.fez-choose-tickets{
		display: flex;
		flex-wrap: nowrap;
		width: 100%;
		margin: auto;
	}

	.fez-ticket .camping{
		margin-left: 1em;
	}


	.fez-tickets{
		flex-basis: 60%;
	}

	.fez-basket{
		bottom: unset;
		position: relative;
		display: block;
		margin-left: 1em;
		background: transparent;
		color: #000;
		padding: 0 0 0 1em;
		flex-basis: 40%;
		border-left: 1px solid #e2e2e2;
	}

	.fez-basket-mobile{
		display: none;
	}

	.fez-basket h3{
		display: block;
	}

	.fez-line-items{
		display: block;
	}

	.fez-basket button{
		font-size: 1em;
	}

	.attendee-ticket-choice{
		position: fixed;
		top: 50%;
		transform: translate(-50%, -50%);
		left: 50%;
		width: 700px;
		right: unset;
		bottom: unset;
		background: #fff;
		z-index: 1000;
	}

	.fez-line-item{
		padding: 1em 0;
		border-bottom: 1px solid #e4e4e4;
		display: flex;
		justify-content: space-between;
		line-height: 1.2em;
	}

	.fez-line-item span.item{
		padding-right: 1em;
	}

	.fez-line-item span.sub-total{
		font-weight: bold;

	}
	
	.fez-total{
		text-align: right;
		margin: 1em 0;
		font-weight: bold;
	}

}

@media screen and (min-width: 960px){

	.fez-wrap{
		
	}

	

	

}