/* CSS Document */
#FormContainer{margin: auto; width:98%; }
#FormSheet{
	margin:40px auto;
	padding: 30px;
	box-shadow: 0 0 10px 0px #CCC;
}
fieldset{
	height: fit-content;
}
#FormSheet fieldset{
	width: 98%;
	border: none;
/*	border-top:1px solid #CCC;*/
	/*box-shadow: 0 0 10px 0px #CCC;*/
	margin: 0 auto;
/*	padding: 30px 40px;*/
	position: relative;
}
#FormSheet legend{
	margin-top: 20px;
	margin-left: 40px;
	padding-left: 20px;
	padding-right: 20px;
	position: absolute;
	left:-40px;
	top:5px;
	letter-spacing: 2px;
	font-style: italic;
}

/* Change the white to any color ;) */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active  {
    -webkit-box-shadow: 0 0 0 30px white inset;
}

input:not([type=radio]):not([type=checkbox]), select{
	width: 100%;
    height: 30px;
   /* box-shadow: 0 0 10px 0px #CCC;*/
	/*box-shadow: 2px 2px 6px 0 #ccc; */ 
    border: none;
	border-bottom: 1px solid #ccc;
/*	background:#f3f3f3;*/
	padding:0 5px;
	margin-bottom: 5px;
	font-size: 0.7rem;
	font-weight: 300px !important;
}
.LeftSideForm{
	float: left;
	width: 47.5%;
	padding-bottom: 20px;
	padding-top: 20px;
	position: relative;
}
.RightSideForm{
	float: right;
	width: 47.5%;
	padding: 20px 0;
	position: relative;
}
.LeftHalf{
	width: 45%;
	float: left;
	position: relative;
}
.LeftThird{
	width: 26.6%;
	float: left;
	position: relative;
}
.LeftFourth{
	width: 16.2%;
	float: left;
	position: relative;
}
.WithPad{
	margin-right: 10%;	
}
.WithHalfPad{
	margin-right: 2%;	
}


.form label:not(.switch) {
	display: block;
	position: relative;
	line-height: 40px;
	height: 40px;
	overflow: hidden;
	font-weight: 550;
	text-transform: uppercase;
	font-size: 0.7rem;
	
}
.form span {
	font-size:0.7rem;
	font-weight: 300 !important;
}

.ButtonBox{
	width:fit-content;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.ConsultBox{
	border:1px solid #CCC;
	height: 300px;
	width: 100%;
}
.Consult{
	position: relative;
    width: 300px;
    border: none;
	height: 300px;
    margin-bottom: 30px;
    margin-top: 30px;
    text-align: center;
    padding: 30px 50px 100px 50px;
    z-index: 999;
	margin-left: auto;
	margin-right: auto;
}
.NormalInput{
	width: auto;
    height: auto;
    box-shadow: none;
}



.switch-field {
	letter-spacing:1px;
    overflow: hidden;
}


.switch-field input {
    position: absolute !important;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    width: 1px;
    border: 0;
    overflow: hidden;
}

.switch-field label {
  float: left;
}

.switch-field label {
  display: inline-block;
  width:50%;
  background-color:#f3f3f3;
  color: rgba(0, 0, 0, 0.6);
  font-weight: normal;
  text-align: center;
  text-shadow: none;
  padding: 6px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition:    all 0.1s ease-in-out;
  -ms-transition:     all 0.1s ease-in-out;
  -o-transition:      all 0.1s ease-in-out;
  transition:         all 0.1s ease-in-out;  
}

.switch-field label:hover {
    cursor: pointer;
}

.switch-field input:checked + label {
  background-color: #655B5D;
  color:#FFF;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.switch-field label:first-of-type {
  border-radius: 4px 0 0 4px;
}

.switch-field label:last-of-type {
  border-radius: 0 4px 4px 0;
}

input:invalid+span:after {
  position:absolute; 
  content: '✱';
  right: 10px;
  top:-5px;
  line-height: 30px;
  color: #333
}

input:valid+span:after {
 	position: absolute;
    content: '✓';
    right: 10px;
	  top:-5px;
    line-height: 30px;
    color: #333;
}








