/*GENERAL RULES*/

html, body {
	color: #ccc;
	font-size: 100%;
	font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
	width: 100%;
	min-width: 100%;
	height: 100%;
	min-height: 100%;
	position: relative;
	background-color: #232626;
}

::-webkit-selection {
	color: white;
	background-color: #09caff;
}

::-moz-selection {
	color: white;
	background-color: #09caff;
}

::-o-selection {
	color: white;
	background-color: #09caff;
}

::selection {
	color: white;
	background-color: #09caff;
}

/*STRUCTURE & BOX MODELS*/

header {
	width: 100%;
	height: 60px;
	position: fixed;
	top: 0;
	z-index: 999;
	-webkit-backdrop-filter: saturate(180%) blur(10px);
	backdrop-filter: saturate(180%) blur(10px);
	padding-top: 20px;
	padding-bottom: 10px;
	background-color: #232626;
	box-sizing: content-box;
}

header h1 {
	font-size: 1em;
	font-style: normal;
	color: #cdcdcd;
	position: relative;
	top: 15px;
}

header h1 em {
	font-style: normal;
}

.line {
	
  border-left: 6px solid gray;
  height: 100%;
}

#global-wrapper {
	max-width: 90%;
	height: 100%;
	min-height: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-top:60px;
}

/*TYPOGRAPHY*/

h1, h2, h3, h4, h5, h6 {
	color: #ddd;
	font-family: 'Poppins';
	font-weight: bold;
	margin-bottom: 1.25em;
}

h1 {
	font-size: 4em;
}

h2 {
	font-size: 2.5em;
}

strong {
	color: black;
}

label {
	color: black;
}

.ticket-template {
	display: block;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
}

.ticket-template.selected {
	/*name|duration|timing-function|delay|iteration-count|direction|fill-mode|play-state*/
	-webkit-animation: fx-pop 250ms ease-in-out 0 1;
	animation-name: fx-pop 250ms ease-in-out 0 1;
}

label {
	color: black;
}

/*INPUTS*/
.currency-selector {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	padding-left: .5rem;
	border: 0;
	background: transparent;
	-webkit-appearance:none;
	-moz-appearance:none;
	appearance:none;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1024' height='640'><path d='M1017 68L541 626q-11 12-26 12t-26-12L13 68Q-3 49 6 24.5T39 0h952q24 0 33 24.5t-7 43.5z'></path></svg>") 90%/12px 6px no-repeat;
	font-family: inherit;
	color: inherit;
}

.currency-amount {
  text-align: right;
}

.currency-addon {
  width: 6em;
  text-align: left;
  position: relative;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0 .25rem .25rem 0;
}

/*UTILITIES*/

.d-block {
	margin-left: auto;
	margin-right: auto;
}

/*MEDIA QUERIES*/

/*Large screens*/

@media (min-width : 1025px) {
	#splash {
		background-size: auto;
		height: 800px;
	}
	
	#slug {
		width: 800px;
		height: 330px;
		right: 3%;
	}
	
	.slanted::after {
		height: 150px;
	}
	
	#lasting-all-day {
		background-position: left top;
	}
}

/*Desktops, laptops and large screens*/

@media (max-width : 1024px) {
}

/*Tablets*/

@media (max-width : 768px) {
}


@media (max-width : 767px) {

	.text-sm-center {
		text-align: center !important;
	}
}

/*Smartphones (portrait)*/

@media (max-width : 576px) {
}

@media (max-width : 575px) {
	.text-xs-center {
		text-align: center !important;
	}
}

/*ANIMATIONS & EFFECTS*/

.responsive-fluid {
	-webkit-transition: all 250ms;
	-moz-transition: all 250ms;
	-o-transition: all 250ms;
	transition: all 250ms;
}

.img-fluid {
	max-width: 100%;
	height: auto;
}

@-webkit-keyframes fx-pop {
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@keyframes fx-pop {
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
