.eventimage-overlay {
	color: white;
    background-color: rgba(0, 0, 0, 0.2);
}

#event-information-title {
	color: white;
}

#event-information-subtitle {
	color: white;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

#loaderSpinner {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    margin: auto;
	position: absolute;
    top: 40%;
    left: 46%;
    transform: translate(-50%, -50%);
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* Define Proxima Nova Bold */
@font-face {
    font-family: 'Proxima Nova';
    src: url('ProximaNova-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

/* Define Proxima Nova Regular */
@font-face {
    font-family: 'Proxima Nova';
    src: url('ProximaNova-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
/* Heading 1 */
h1 {
    font-family: 'Proxima Nova', sans-serif !important;
    font-weight: bold !important;          /* Use bold style */
    font-size: 26px !important;            /* Font size 26px */
    line-height: 100% !important;          /* Line height 100% of font size */
}

/* Heading 2 */
h2 {
    font-family: 'Proxima Nova', sans-serif !important;
    font-weight: bold !important;          /* Use bold style */
    font-size: 20px !important;            /* Font size 20px */
    line-height: 120% !important;          /* Line height 120% of font size */
}

/* Heading 3 */
h3 {
    font-family: 'Proxima Nova', sans-serif !important;
    font-weight: bold !important;          /* Use bold style */
    font-size: 15px !important;            /* Font size 15px */
    line-height: 130% !important;          /* Line height 130% of font size */
}
/* Heading 4 */
h4 {
    font-family: 'Proxima Nova', sans-serif !important;
    font-weight: bold !important;          /* Use bold style */
    font-size: 15px !important;            /* Font size 15px */
    line-height: 130% !important;          /* Line height 130% of font size */
}
/* Heading 5 */
h5 {
    font-family: 'Proxima Nova', sans-serif !important;
    font-weight: bold !important;          /* Use bold style */
    font-size: 15px !important;            /* Font size 15px */
    line-height: 130% !important;          /* Line height 130% of font size */
}


/* Body Text */
body {
    font-family: 'Proxima Nova', sans-serif !important;
    font-weight: normal !important;        /* Use normal weight */
    font-size: 15px !important;            /* Font size 15px */
    line-height: 150% !important;          /* Line height 150% of font size */
}
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    padding: 12px 20px;
    border-radius: .25rem
}
.card>hr {
    margin-right: 0;
    margin-left: 0
}
.card-body {
    flex: 1 1 auto;
    min-height: 1px;
    padding: 20px;
}
.card-header {
    padding: .75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0,0,0,.03);
    border-bottom: 1px solid rgba(0,0,0,.125)
}

.footer {
    margin-top: 190px !important;
}

#registration-list {
	margin: auto;
	max-width: 600px;
}

#registration-list > ul {
	border-radius: 5px;
}

.registration-information {
	display: inline-block;
  width: 75%;
}

.registration-fullname {
	font-weight: bolder;
}

.registration-button-wrapper {
	display: inline-block;
    text-align: right;
}

.registration-edit-button {
	padding: 6px 10px;
}

.registration-delete-button {
	padding: 6px 10px;
}

#epr_passes_label:after {
  content:" *";
  color: red;
  visibility: visible;
}

.submitButtonWrapper > button {
  background-color: #016B45;
}