/* Two Tone Design 32.css */

body {
	margin: 0;
	padding: 0;
}
a {
	cursor: pointer;
	color: darkblue;
}
::placeholder {
    text-transform: none;
}

#formContainer {
	font-family: 'Open Sans Condensed', arial, sans;
	width: 500px;
	padding: 30px;
	background: #FFFFFF;
	margin: 50px auto;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.22);
	-moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.22);
	-webkit-box-shadow:  0px 0px 15px rgba(0, 0, 0, 0.22);
}

#formContainer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.formRow {
	padding: 5px;
	text-align: left !important;
	display: block;
	margin: 0px;
	clear: both;
}

.fieldName {
	margin-bottom:10px;
	font-family: 'Open Sans Condensed', sans-serif;
	color: #5E5E5E;
	text-shadow: #f5ffff 0 1px 0;
	vertical-align: middle;
	margin-right: 15px;
	float: none !important;
}

.inputTextField, .object_Contact, textarea, select, #captchaInput, .rightElement {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	outline: none;
	display: block;
	width: 100% !important;
	padding: 7px;
	border: none;
	border-bottom: 1px solid #ddd;
	background: transparent;
	margin-bottom: 10px;
	font: 16px Arial, Helvetica, sans-serif;
	height: 45px;
}
.intl-tel-input {
	width: 100%;
}
#captchaInput {
	width: auto;
}

.inputTextField:focus, .object_Contact:focus, #captchaInput:focus, .rightElement:focus {
	background: transparent !important;
}


#formSubmit {
	background-color: #2CBBBB;
	border: 1px solid #27A0A0;
	display: block;
	cursor: pointer;
	color: #FFFFFF;
	font-family: 'Open Sans Condensed', sans-serif;
	font-size: 14px;
	padding: 8px 18px;
	text-decoration: none;
	margin: 5px auto;
	-webkit-appearance: none;
  	-moz-appearance: none;
  	appearance: none;
}

 #formsubmit:hover {
 	background:linear-gradient(to bottom, #34CACA 5%, #30C9C9 100%);
	background-color:#34CACA;
 }

#reqInfo {
	margin-bottom: 20px;
}

.formText {
	color: #808080;
	text-shadow: #f5ffff 0 1px 0;
	margin-bottom:20px !important;
	width: 300px !important;
	display: block;
}

#confirmText {
	display: block;
    font-size: 12px;
    color: #5E5E5E;
}

.introText {
	background: #4D4D4D;
	text-transform: uppercase;
	text-align: left;
	font-family: 'Open Sans Condensed', sans-serif;
	color: #797979;
	font-size: 18px;
	font-weight: 100;
	padding: 20px;
	padding-left: 25px;
	margin: -30px -30px 30px -30px;
}

.userCheckboxes {
	clear: both;
}

#teamSelection {
	display: inline-block;
	width: 100%;
}

li#field_BirthdayMM.formRow {
	margin-bottom: 20px;
}

li#field_Gender.formRow {
	margin-bottom: 20px;
}

#emailEntryAlert {
	color:	#5E5E5E;
}

.reqMarker {
	font-size: 12px;
}

li select {
	margin-left: 0px !important;
	padding:	5px;
}

#collectFunds {
	color: #555;
}

#collectFunds span {
	color:	#555;
}
#signup_BirthdayDD {
	margin-bottom:	10px;
}
#signup_BirthdayMM {
	margin-bottom:	10px;
}


#collectFunds {
	margin-left: 0px;
}
#collectFunds td {
	text-align: left !important;
	margin-bottom: 0px;
	display: block;
	margin-left: 10px;
}
#collectFunds table {
	background: transparent;
	margin-left: -10px;
}
#collectFunds .inputTextField {
	margin-bottom: 10px !important;
	margin-left: 0px;
}
#fieldTable {
	width: 100%;
}


/* custom object styles */
input[type=checkbox].object_Contact, select.object_Contact {
	display: inline-block;
	width: auto !important;
}
.objectImage, .objectFile {
	padding: 5px;
}
.objectSet {
	margin: 8px 0px;
	text-align: left;
}
.objectSet .mask-variable {
	display: inline-block;
	margin-top: -4px;
	margin-left: 3px;
	vertical-align: middle;
}
.objectDatetime select {
	vertical-align: inherit !important;
}


/******************* Responsive Styles *******************/
@media screen and (max-width : 1024px){

form {
	width: 100%;
  background-size: 100%;
}
body {
	width:	100%;
}
#formContainer img {
	max-width:	100%;
}
#container {
	margin:	10px !important;
	  margin-left: auto !important;
  margin-right: auto !important;
}
}
@media screen and (max-width : 480px){
#formContainer {
	padding:	10px;
}
}


/* new style of checkboxes */
.newCheckboxWrapper {
  display: inline-block;
  position: relative;
  padding-left: 24px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 14px;
  text-align: left;
}
.newCheckboxWrapper input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.newCheckboxIndicator, .newCheckboxIndicatorRed, .newCheckboxIndicatorGreen {
  position: absolute;
  top: -1px;
  left: 0px;
  height: 16px;
  width: 16px;
  background: #e6e6e6;
  outline: 1px solid #ccc;
}
.newCheckboxWrapper:hover input ~ .newCheckboxIndicator, .newCheckboxWrapper input:focus ~ .newCheckboxIndicator {
  background: #ccc;
}
.newCheckboxWrapper input:checked ~ .newCheckboxIndicator {
  background: #428BCA;
}
.newCheckboxWrapper:hover input:not([disabled]):checked ~ .newCheckboxIndicator, .newCheckboxWrapper input:checked:focus ~ .newCheckboxIndicator {
  background: #5BC0DE;
}
.newCheckboxWrapper input:checked ~ .newCheckboxIndicatorRed {
  background: #B64700;
}
.newCheckboxWrapper:hover input:not([disabled]):checked ~ .newCheckboxIndicatorRed, .newCheckboxWrapper input:checked:focus ~ .newCheckboxIndicatorRed {
  background: #FF946D;
}
.newCheckboxWrapper input:checked ~ .newCheckboxIndicatorGreen {
  background: #5CB85C;
}
.newCheckboxWrapper:hover input:not([disabled]):checked ~ .newCheckboxIndicatorGreen, .newCheckboxWrapper input:checked:focus ~ .newCheckboxIndicatorGreen {
  background: #76DF5B;
}
.newCheckboxWrapper input:disabled ~ .newCheckboxIndicator, .newCheckboxWrapper input:disabled ~ .newCheckboxIndicatorRed, .newCheckboxWrapper input:disabled ~ .newCheckboxIndicatorGreen {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}
.newCheckboxIndicator:after, .newCheckboxIndicatorRed:after, .newCheckboxIndicatorGreen:after {
  content: '';
  position: absolute;
  display: none;
}
.newCheckboxWrapper input:checked ~ .newCheckboxIndicator:after, .newCheckboxWrapper input:checked ~ .newCheckboxIndicatorRed:after, .newCheckboxWrapper input:checked ~ .newCheckboxIndicatorGreen:after {
  display: block;
}
.newCheckboxWrapper .newCheckboxIndicator:after, .newCheckboxWrapper .newCheckboxIndicatorRed:after, .newCheckboxWrapper .newCheckboxIndicatorGreen:after {
  left: 6px;
  top: 2px;
  width: 3px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.newCheckboxWrapper input:disabled ~ .newCheckboxIndicator:after, .newCheckboxWrapper input:disabled ~ .newCheckboxIndicatorRed:after, .newCheckboxWrapper input:disabled ~ .newCheckboxIndicatorGreen:after {
  border-color: #7b7b7b;
}

