/* form field styles */


.input_container {
	border: 1px solid #39364f;
	padding: 2px 5px;
	margin-bottom: 18px;
	background-color: #fff;
    display: flex;
    flex-direction: column-reverse;	
}

.input_container label {
	font-size: 0.7em;
	line-height: 1.25em;
	padding-left: 6px;
}

#registrant .input_container 
#attendee .input_container{
	margin-bottom: 9px;	
}

input:focus + label {
    color: blue;
}

select,
input[type=text],
input[type=email],
input[type=number],
input[type=url],
input[type=password] {
	color: #000;
	width: 98%;
	height: 28px;
	padding-left: 6px;	
	outline: none; /* so blue focus lines don't show on chrome*/
	border: none;
	font-size: 1em;
}

input[type=text].inline, select.inline {
	width: auto;
	border: 1px solid #39364f;
	padding-left: 2px;	
}

.Multiple { /*color picker*/
	width: 60px;
	margin-right: 3px;
}

.colorPick {
	padding-top: 3px;
} 

#registrant select,
#registrant input[type=text],
#attendee select,
#attendee input[type=text] { /*report screen*/
	font-size: 0.9em;
}

#tables input[type=text] {
	border: 1px solid #CCC;
}

textarea {
	color: #000;
	width: 98%;
	margin-left: 6px;	
	outline: none; /* so blue focus lines don't show on chrome*/
	border: 1px solid #CCC;
	font-size: 1em;
	font-family: 'Open Sans',Helvetica,Arial,sans-serif;
	font-weight: 400;	
}

::placeholder {
  color: #39364f;
  font-style: italic;
  font-size: 0.9em; 
}

#login .btn {
	font-size: 19px;
	color: #fff;
	width: 100%;
	height: 42px;
	/*border-radius: 30px;*/
	border-color: transparent;
	margin-bottom: 18px;
	margin-top: 2px;
	background-color: #060;	
	box-sizing: border-box;
}

/* end of login screen */


.multi_inputs {
	display: flex;
}

.multi_inputs > .input_container {
	margin-right: 12px;
}

.multi_half {
	width: 50%;
}

.multi_third {
	width: 33.3%;
}

.multi_inputs > .multi_half > .input_container, .multi_inputs > .multi_third > .input_container {
	margin-right: 12px;
}

.radioCheckButtons {
	padding: 0px;
}

#registrant .radioCheckButtons,
#attendee .radioCheckButtons {
	font-size: 0.9em;
}

.radioButton {
     -webkit-appearance: none;
     -moz-appearance: none;
     appearance: none;
     display: inline-block;
     position: relative;
     background-color: #fff;
     color: #fff;
	 margin-top: 6px;
     top: 3px;
     height: 18px;
     width: 18px;
	 border: 1px solid #060 !important;
     border-radius: 50px;
     cursor: pointer;     
     outline: none;	
} 

.radioButtonBox {
	border-radius: 2px;
	top: 5px;	
}

.choiceHideBox {
	border-radius: 2px;
	top: -1px;
}

.radioButton:checked::before {
     position: absolute;
     font: 16px/1 'Open Sans', sans-serif;
     left: 5px;
     top: 0px;
     content: '\02143';
     transform: rotate(40deg);
}
.radioButton:hover {
     background-color: #ececec;
}
.radioButton:checked {
     background-color: #0a2c4f;
}


#registrant .radioButton, 
#attendee .radioButton {
	 margin-top: 6px;
     top: 3px;
     height: 16px;
     width: 16px;
} 

#registrant .radioButtonBox, 
#attendee .radioButtonBox {
	border-radius: 2px;
	top: 5px;	
}

#registrant .radioButton:checked::before, 
#attendee .radioButton:checked::before{
     font: 14px/1 'Open Sans', sans-serif;
     left: 4px;
}

#registrant .radioButtonBox,
#attendee .radioButtonBox {
	border-radius: 2px;
	top: 3px;	
}



#fixedBottomBar {
	position: fixed;
	z-index: 4;
	background-color: #fff;
	border-top: 1px solid #eeedf2;
	bottom: 0;
	left: 0;
	min-height: 64px;
	overflow: hidden;
	width: 100%;
}

.noshow {
	display: none;	
}

.saveButtons {
	margin-top: 18px;
	display: flex; 
	flex-wrap: wrap;
	justify-content: flex-end;
	/*justify-content: center;*/
}
.saveButton {
	background-color: #f05537;
	color: #ececec;
	text-decoration: none;
	border: 0;
	text-align: center;
	margin-bottom: 16px;
	cursor: pointer;
	height: 44px;
	padding: 0 30px 1px;
	border-radius: 4px;
	font-size: 1em;	
}
.saveButton:first-child {
	margin-right: 30px;
}
.discardButton {
	background-color: #fff;
	color: #000;
	border: 2px solid #a9a8b3;	
}

.otherButton {
	background-color: #f05537;
	color: #ececec;
	text-decoration: none;
	border: 0;
	text-align: center;
	cursor: pointer;
	padding: 2px 12px 3px;
	border-radius: 4px;
	font-size: 1em;	
}

.uploadButton {
	border: 1px solid #333;
	padding: 5px 0px;
	margin: 5px;
	background: #777;
	color: #fff;
	width: 100px;
	text-align: center;
	display: inline-block;
	/*display: block;
	float: left;*/
	cursor: pointer;
}

.error {
	color: red;
}

.chkError {
	font-size: 0.7em;
	color: red;
	padding-left: 6px;
}

div.errorMessage > span {
	color: red;	
}
