@import 'https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400&subset=latin-ext';

body {
	font-family: 'Source Sans Pro', sans-serif;
	text-align: center;
	padding-top: 2em;
	background: #000;
}

[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
	display: none !important;
}
.required-star {
	color:  red;
	font-weight:  bold;
	font-size:  1.5em;
	line-height:  0;
}

.control-label {
	font-size:  16px !important;
	font-weight:  500;
	cursor:  pointer;
	color: #fff !important;
}

label {
	color: #fff !important;
}

.form-field-has-error {
	font-weight: bold;
	color: pink !important;
}

.btn {
	background:  #00c0f1 !important;
	color:  #FFF;
	border-color: #00c0f1 !important;
}

.btn:hover,
.btn:focus,
.btn:active {
	color:  #FFF;
	background: #00c0f1 !important;
	border-color: #00c0f1 !important;
}

.form-control {
  outline: none !important;
  border: 2px solid #00c0f1 !important;
  border-radius: 10px !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}

.form-control:focus {
	border-color:  #00c0f1 !important;
}

form.ng-submitted input.ng-invalid,
form.ng-submitted select.ng-invalid {
	border-color: red !important;
	color:  red !important;
	outline:  1px solid red;
}


form .error-text {
	display: none;
}
form.ng-submitted .hasError .error-text {
	display: block;
	color: red;
	font-weight: bold;
	clear: both;
}

.tickets {
	clear: both;
	display: block;
	float: none;
	overflow:  hidden;
	text-align: center;
}

.tickets li {
	float: left;
	color:  #FFF;
	display: inline-block;
	padding: 1em;
	text-align: center;
	background: rgb(98,25,121);
	cursor: pointer;
	border-radius: 9px;
	position: relative;
}

.tickets li:hover {
	background: rgb(108,45,150);
	transition: .2s all;
}

.tickets .check {
	position: absolute;
	top: 20px;
	left: 15px;
	opacity: 0;
	transition: .2s all ease-in-out;
}

.tickets li:not(.disabled):hover .check {
	opacity: 0.5;
	transition: .2s all ease-in;
}

.tickets .selected .check {
	opacity: 1;
	transition: .2s all ease-in;
}

.tickets li.selected:hover .check {
	opacity: 1;
}

.tickets .left {
	position: absolute;
	top: 7px;
	right: 10px;
	color: lightgray;
}

.tickets .barcode {
	color: #FFF;
	position: absolute;
	bottom: 30px;
	right: 10px;
	font-size: 2em;
}

.tickets .name {
	font-weight:  bold;
	font-size: 18px;
	margin-top: 8px;
	display: inline-block;
}

.tickets li.disabled {
	background: gray;
}

.tickets li.selected {
	background: rgb(204,0,118);
}

#loader {
	position: absolute;
	transition: all .7s;
	font-size: 19px;
	overflow: hidden;
	opacity: 0;
	width: 100%;
	padding-right: 30px;
	pointer-events: none;
}

.loader-visible {
	transition: all .7s;
	opacity: 1 !important;
}