
*,
:before,
:after {
  box-sizing: border-box;
}

form {
  width: 70%;
  margin: 45px auto;  
}
form h1 {
  font-size: 3em;
  font-weight: 300;
  text-align: center;
  color: #2196F3;
}
form h5 {
  text-align: center;
  text-transform: uppercase;
  color: #c6c6c6;
}
form hr.sep {
  background: #2196F3;
  box-shadow: none;
  border: none;
  height: 2px;
  width: 25%;
  margin: 0px auto 45px auto;
}

.group {
  position: relative;
  margin: 45px 0;
  
}
.menuLabel {
	font-size: 16px;
	padding-bottom: 5px;
	color: #000;
}
.head-mobile {
	font-size: 14px;
	padding-bottom: 5px;
	color: #808080;
}
.inputText {
	 font-size: 2em;
}
textarea {
  resize: none;
}



input,
textarea {
  background: none;
  color: #262626;  
  padding: 10px 10px 10px 5px;
  display: block;
  width: 100%;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #c6c6c6;
}

input:focus,
textarea:focus {
  outline: none;
}

input:focus ~ label, input:valid ~ label, 
textarea:focus ~ label,
textarea:valid ~ label {
  top: -14px;
  font-size: 12px;
  
}

input:focus ~ .bar:before,
textarea:focus ~ .bar:before {
  width: 100%;
}

input[type="password"] {
  letter-spacing: 0.3em;
}

label {
  color: #808080;
  font-size: 16px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  -webkit-transition: 300ms ease all;
  transition: 300ms ease all;
}

.bar {
  position: relative;
  display: block;
  width: 100%;
}
.bar:before {
  content: '';
  height: 2px;
  width: 0;
  bottom: 0px;
  position: absolute;
  background: rgba(126,188,89,0.90);
  -webkit-transition: 300ms ease all;
  transition: 300ms ease all;
  left: 0%;
}

.btn {
  background: #fff;
  width: 100%;
  color: #959595;
  border: none;
  padding: 10px 20px;
  border-radius: 3px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  outline: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.btn:hover {
  color: #8b8b8b;
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.18), 0 5px 5px rgba(0, 0, 0, 0.12);
}
.btn.btn-link {
  background: #2196F3;
  color: #d3eafd;
}
.btn.btn-link:hover {
  background: #0d8aee;
  color: #deeffd;
}
.btn.btn-submit {
  background: #404040;
  color: #fff;
}
.btn.btn-submit:hover {
  background: rgba(126,188,89,0.90);
  color: #000;
}
.btn.btn-cancel {
  background: #eee;
}
.btn.btn-cancel:hover {
  background: #e1e1e1;
  color: #8b8b8b;
}

.btn-box {
  text-align: center;
  margin: 50px 0;
  
}
/*SELECT BOX CSS*/
.select-css {
	display: block;
	font-size: 16px;
	font-family: sans-serif;
	font-weight: 700;
	color: #444;
	line-height: 1.3;
	padding: .6em 1.4em .5em .8em;
	width: 100%;
	max-width: 100%; 
	box-sizing: border-box;
	margin: 0;
	border: 1px solid #000;
	box-shadow: 0 1px 0 1px rgba(0,0,0,.04);
	border-radius: .5em;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: #fff;
	background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'),
	  linear-gradient(to bottom, #ffffff 0%,#e5e5e5 100%);
	background-repeat: no-repeat, repeat;
	background-position: right .7em top 50%, 0 0;
	background-size: .65em auto, 100%;
}
.select-css::-ms-expand {
	display: none;
}
.select-css:hover {
	border-color: #888;
}


/* DEFINE BORDER ON FOCUS */
.select-css:focus {
	border-color: #aaa;
	box-shadow: 0 0 1px 3px rgba(0, 0, 0, .7);
	box-shadow: 0 0 0 3px -moz-mac-focusring;
	color: #222; 
	outline: none;
	-moz-selection:background-color: #476f30;
	
}
.select-css option {
	font-weight:normal;
	-moz-selection:background-color: #476f30; 

}

/* CHECKBOX CSS */

.s-cb {
	padding: 5px;
}

.s-cb input {
  -moz-appearance: none;
  -o-apperance: none;
  -webkit-appearance: none;
  background: none; /* ios */
  border-radius: 4px;
  border: 2px solid #666;
  font-size: inherit;
  height: 2em;
  line-height: 1;
  margin: .5em 0 0 0;
  position: relative;
  vertical-align: bottom;
  width: 2em;
}

.s-cb input:before,
.s-cb input:after {
  content: "";
  position: absolute;
  transition: transform .2s ease-in-out;
}

.s-cb input:before,
.s-cb input:after {
  border-bottom: 3px solid rgba(34, 139, 236, 1);
  border-right: 3px solid rgba(34, 139, 236, 1);
  bottom: 0;
  height: 1em;
  margin: auto;
  right: .5em;
  top: -.5em;
  transform: rotate(45deg) scale(0);
  width: .625em;
}

.s-cb input:checked {
  border-color: #0d5192;
  box-shadow: inset 0 0 20px 3px rgba(34, 139, 236, .05);
}

.s-cb input:checked:before {
  transform: rotate(45deg) scale(1);
}

.s-cb input:focus {
  box-shadow: 0 0 0 1px rgba(34, 139, 236, 1);
  border: 2px solid rgba(34, 139, 236, 1);
  outline: 1px dotted rgba(34, 139, 236, 1);
  outline-offset: 3px;
}


/**
 * Disabled styles
 */
.s-cb input[disabled] {
  opacity: .45
}

.s-cb input[disabled] + label {
  opacity: .75;
}


/* close the whitespace gap between the input and the label
   allow for a required visual indicator to be absolutely positioned
*/
.s-cb label {
  position: relative;
  
}

/* if a checkbox is required, make some space for the
   CSS generated visual indicator. */
.s-cb input[required] + label {
  padding-right: .9em;
}


/**
 * Styling for invalid (aka unchecked required checkbox)
 */
.s-cb input:invalid {
  box-shadow: 0 0 0 1px rgba(20, 20, 20, 1);
  border: 2px solid rgba(20, 20, 20, 1);
}

.s-cb input:invalid:focus {
  box-shadow: 0 0 0 1px rgba(220, 20, 20, 1);
  border-color: rgba(220, 20, 20, 1);
}


/**
 * Create a visual indicator for the required checkbox
 */
.s-cb input[required] + label:after,
.s-cb input[required] + label:before {
  border-left: .35em solid transparent;
  border-right: .35em solid transparent;
  content: " ";
  position: absolute;
  right: 0;
}

.s-cb input[required] + label:after {
 border-bottom: .6em solid red;
 top: -.2em;
}

.s-cb input[required] + label:before {
 border-top: .6em solid red;
 top: 0
}

/* when checked, ease up on the "error" feel to the indicator */
.s-cb input[required]:checked + label:after {
  border-bottom-color: rgba(34, 139, 236, .8);
}

.s-cb input[required]:checked + label:before {
  border-top-color: rgba(34, 139, 236, .8);
}



/**
 * IE11 / Edge
 *
 * Note that -ms-check will apply to radio button
 * styles as well.
 */
.s-cb input::-ms-check {
  border-color: rgba(34, 139, 236, 1);
  color: rgba(34, 139, 236, 1);
}
/*SMARTPHONE AND NARROW WINDOWS (LESS THAN 700PX WIDE)*/
@media only screen and (min-width: 0px) and (max-width: 700px) {
	
.btn {
  font-size: 24px;  
}
.head {
	font-size: 24px;
}

label {
	font-size: 24px;
}
.select-css {
	display: block;
	font-size: 24px;
}
	
}