@charset "UTF-8";
/* CSS Document */

body {
	background: #000;
	color: #FFF;
	margin: 0px 0px 500px 0px;
	font-family: "bicyclette",sans-serif;
}
.bg-home {
	background-image: url('/img/2022/bg-top.jpg'), url('/img/2022/bg-bottom.jpg');
	background-position: top center, bottom center;
	background-repeat: no-repeat;
	background-size: 100%;
}
.bg-page {
	background-image: url('/img/2022/bg-top.jpg');
	background-position: top center;
	background-repeat: no-repeat;
	background-size: 100%;	
}
.container { width: 800px; margin: 0 auto; padding: 50px 0 50px 0 }
.padding120 { padding: 120px 0 }
.center { text-align: center }
.left { text-align: left }
.right { text-align: right }
.cover {
	height: 100vh;
	background: url(/2019/img/2019bg.jpg) no-repeat center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
.desktop-hide { display: none !important; }


.slide1 {
	width: 100%;
	text-align: center;
	/*background: url("../img/yellowbars.png") no-repeat; 
	background-size: 30%;
	background-position: top right;*/
	min-height: 100vh;
}
.slide2 {
	width: 100%;
	/*background: url("../img/pinkbars.png") no-repeat; 
	background-size: 30%;
	background-position: top left;*/
	min-height: 100vh;
}
.header {
	width: 100%;
	background: rgba(0,0,0,0.8);
	color: #FFF;
	position: fixed;
	z-index: 1;
}
.logo { font-weight: 900; font-size: 1.5em; padding: 25px; float: left; color: #FFF }
.logo:hover { color: #F945B5 }
.logo:active { opacity: 0.3 }

.links { color: #FFF; text-transform: uppercase; padding: 30px; float: right; font-size: 1em; font-weight: 700 }
.links:hover { color: #F945B5 }
.links:active { opacity: 0.3 }

.no-ul { text-decoration: none }

.glow {
	text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.7);
}

.count-text {
	font-size: 150px;
	text-align: center;
}

.photo { width: 100% }




.cover-video {
	height: 100vh;
	background: url(/2018/img/splash.jpg) no-repeat center center; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
.cover-ticket {
	background: url(/2018/img/ticket-bg.jpg) no-repeat center center; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
h1 {
	font-family: "bicyclette",sans-serif;
	font-size: 70px;
	line-height: 0.9em;
	text-transform: uppercase;
}
h1.main-header { margin-top: 120px;}
.blur { text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3) }
h2 {
	font-family: "bicyclette",sans-serif;
	font-size: 26px;
	letter-spacing: 0.03em;
	font-weight: 400;
	line-height: 1.1em;
}
h3 {
	font-family: "bicyclette",sans-serif;
	font-size: 26px;
	letter-spacing: 0.03em;
	font-weight: 400;
	line-height: 1.3em;
}
p {
	font-family: "bicyclette",sans-serif;
	font-size: 21px;
	line-height: 1.6em;
	font-weight: 400;
}
ul li {
	font-family: "bicyclette",sans-serif;
	font-size: 20px;
	line-height: 1.6em;
	font-weight: 400;
	text-align: left;
}
/* Old button style
.button {
	font-family: "bicyclette",sans-serif;
	color: #FFF;
	background-color: #F945B5;
	padding: 20px 30px;
	font-size: 22px;
	font-weight: 900;
	text-align: center;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 20px 0 20px 0;
	line-height: 1.5em;
	display: inline-block;
	cursor:pointer;
	border-radius: 10px;
}
.button:hover { color: #000; background-color: #FDF025; }
.button:active { color: #000; background-color: #FFF; }
*/

.button {
	color: #FFF;
	background-color: #F945B5;
	padding: 20px 30px;
	text-transform: uppercase;
	letter-spacing: 4px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	width: 250px;
	margin: 0 auto;
	text-align: center;
}
.button span {
	font-family: "bicyclette",sans-serif;
	position: relative;
	z-index: 100;
	font-weight: 700;
}
.button:before, .btn:after {
	content: '';
	position: absolute;
	display: block;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
}
.button:before {
	transform: translate3d(-100%, 0, 0);
	background-color: #175DE6;
	transition: transform 300ms ;
}
.button:after {
	background-color: #F945B5;
	transform: translate3d(100%, 0, 0);
	transition: transform 300ms 300ms cubic-bezier(0.16, 0.73, 0.58, 0.62);
}
.button:hover:before {
	transform: translate3d(0, 0, 0);
}
.button:hover:after {
	transform: translate3d(0, 0, 0);
}



.form-textbox {
	font-family: "bicyclette",sans-serif;
	font-weight: 400;
	padding: 20px;
	color: #000;
	font-size: 22px;
	margin-bottom: 10px;
	width: 300px;
	border: 3px solid #444;
	outline: none;
}
.form-textbox:hover { border: 3px solid #222 }
.form-textbox:focus { border: 3px solid #000 }
.registration-complete {
	font-family: "bicyclette",sans-serif;
	background-color: #4DCF84;
	padding: 30px;
	text-align:center;
	color: #FFF !important;
	margin-bottom: 10px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px; /* future proofing */
	-khtml-border-radius: 4px; /* for old Konqueror browsers */
}

.border-error {
	border: 2px solid #E8553E;
}
.button-spinner {
	background-image: url(/img/spinner.gif);
	background-size: 40px;
	background-repeat: no-repeat;
	background-position: center;
	display:block;
	padding: 30px;
	margin-top: 10px;
}

.vip-block {
	padding: 20px;
	background-color: #FFF;
	border-radius: 3px;
	color: #000;
}

.lineup-card {
	width: 300px;
}



/* Media Queries */

/* iPhone */

@media screen and (max-width: 640px) and (max-width: 1136px) {

.grid_1,
.grid_2,
.grid_3,
.grid_4,
.grid_5,
.grid_6,
.grid_7,
.grid_8,
.grid_9,
.grid_10,
.grid_11,
.grid_12 {
	width: 100%;
	overflow: auto;
}
.container { width: 90%; min-width: 90%}
.container-small { width: 95%; min-width: 95%;}
.mobile-hide { display:none !important }
.desktop-hide { display: block !important; }
.padding120 { padding: 30px 20px 30px 20px }

h1 { font-size: 40px }
h2 { font-size: 22px }

.header { background: rgba(0,0,0,0.8) }
.logo { font-size: 1.5em; padding: 20px; float: left }
.links { padding: 15px; float: left; font-size: 0.8em; font-weight: 700 }
	
.slide1 {
	background-position: top right ;
	background-size: 50%;
}
.slide2 {
	background-size: 50%;
}
.lineup-card {
	width: 100%;
}


}