header {
  font-family: "Helvetica Neue", Helvetica, Helvetica, Arial, sans-serif;
}
header a:hover {
	color: #666666;
	text-decoration: none;
}
body {
	font-family: "PT Sans", "Helvetica Neue", "Arial", sans-serif;
}
h1 {
	font-family: "PT Sans", "Helvetica Neue", "Arial", sans-serif;
	font-weight: 700;
	font-size: 23px;
	color: #231f20;
	margin: 0px 0px 25px 0px;
	padding: 0px 0px 5px 0px;
	line-height: normal;
	text-rendering: optimizeLegibility;
}
h2 {
	font-family: "PT Sans", "Helvetica Neue", "Arial", sans-serif;
	font-weight: 700;
	font-size: 20px;
	color: #231f20;
	border-bottom: 1.5px solid #000000;
	margin: 0px 0px 5px 0px;
	padding: 0px 0px 5px 0px;
	line-height: normal;
	letter-spacing: 1px;
	text-rendering: optimizeLegibility;
}
h3, h4, h5 {
	font-family: "PT Sans", "Helvetica Neue", "Arial", sans-serif;
	font-weight: 300;
	font-size: 18px;
	color: #231f20;
	text-rendering: optimizeLegibility;
}
h6 {	
	font-family: "PT Sans", "Helvetica Neue", "Arial", sans-serif;
	font-weight: 500;
	font-size: 14px;
	margin-bottom: 5px;
	color: #231f20;
	text-rendering: optimizeLegibility;
}

#content a {
	color: #352568;
	text-decoration: underline;
}

#content a:hover {
	color: rgba(53, 37, 104, .85);
	text-decoration: underline;
}

input[type="button"], input[type="submit"], input[type="reset"], button, .button, #content a.button {
	font-family: "PT Sans", "Helvetica Neue", "Arial", sans-serif;
	color: #ffffff;
	background: #352568;
	font-size: 20px;
	font-weight: 400;
	border-radius: 6px;
	line-height: 1;
	margin: 0;
	padding: 10px 20px 11px;
	text-align: center;
	transition: background-color .15s ease-in-out;
	border: none;
	text-decoration: none;
}

input[type="button"]:hover, input[type="submit"]:hover, input[type="reset"]:hover, button:hover, .button:hover, #content a.button:hover {
	color: #ffffff;
	background: rgba(53, 37, 104, .85);
	cursor: pointer;
	text-decoration: none;
}
input[type="text"] {
	font-size: 18px;
	color: #231F20;
	border: 2px solid #352568;
	border-radius: 6px;
	padding: 5px;
	line-height: 1.3;
	min-height: 40px;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;  
}

label {
	font-family: "PT Sans", "Helvetica Neue", "Arial", sans-serif;
	color: #231F20;
	font-size: 18px;
}
#attendOptions label, #joinOptions label {
	font-size: 16px;	
}
select {
	font-family: "PT Sans", "Helvetica Neue", "Arial", sans-serif;
	color: #231F20;
	font-size: 16px;
	border: 2px solid #352568;
	border-radius: 6px;
	padding: 5px;
	line-height: 1.3;
	height: 40px;
	-webkit-appearance: menulist-button;
	-moz-appearance: menulist-button;
	appearance: menulist-button; 
}

div.alert-box {
	text-shadow: none;
}
div.alert-box.alert {
	line-height: 1.4;
	font-size: 16px;
	background-color: white;
    color: #c60f13;
    border: 1px solid #c60f13;
    text-shadow: none;
    padding: 15px;
    margin-bottom: 20px;
}


.input-feedback {
	margin-bottom: 10px;
	color: #c60f13;
}

#statusMsg, #waitlist {
	font-size: 16px;
}
#redwaitlist {
	font-size: 18px;
	color: #c60f13;
}
#memberExpMsg {
	font-weight: bold;
	color: #c60f13;
}
#regForm p {
	padding-top: 10px;
	padding-bottom: 10px;
}
#nonMemContainer {
	padding-top: 20px;
}
#joinRenew {
	padding-top: 20px;
}
#joinRenew > div {
	padding: 20px;
	margin-bottom: 20px;
	background: rgba(237, 187, 28, 0.6);
	line-height: 1.5em;
}
#joinRenew p.bundleHeader {
	text-align: center;
	font-weight: bold;
	font-size: 20px;
	padding-bottom: 0px;
}
#joinMsg {
	font-size: 18px;
	text-align: center;
}
#joinOptions {
	padding-top: 20px;
	/*padding-left: 20px;*/
}
div:has(#submitBtn) {
	padding-top: 10px;
}
.boldgreen {
	font-weight: bold;
	color: #352568;
}

/* spinner */
#loaderWrap {
  /* The div that shows/hides. */
  display: none; /* starts out hidden */
  z-index: 40001; /* High z-index to ensure it appears above all content */
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.loaderOverlay {
  /* Shades out background when selector is active */
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  z-index: 40001;
}
.vertical-offset {
  /* Fixed position to provide the vertical offset */
  position: absolute;
  bottom: 20%;
  width: 100%;
  z-index: 40002; /* ensures box appears above overlay */
}
.loaderBox {
  /* The actual box, centered in the fixed-position div */
  max-width: 550px; /* Whatever width you want the box to be */
  position: relative;
  margin: 0 auto; /* Everything below is just visual styling */
  padding: 20px 20px 0 20px;
}

/* loading spinner */
.loader {
  margin: auto;
  border: 20px solid #EAF0F6; /*circle background*/
  border-radius: 50%;
  border-top: 20px solid #352568; /*spinning color*/
  width: 200px;
  height: 200px;
  animation: spinner 4s linear infinite;
}

@keyframes spinner {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}