    
textarea,
textarea:focus,
input[type="text"],
input[type="email"],
input[type="text"]:focus,
input[type="email"]:focus {
    color:#aaa;
    background-color:#e6e6e6;
    border:none;
    box-shadow:none;
    margin: 0;
    margin-bottom:4px;
    font-size: 1em;
    height: auto;
}



form input[type="text"],
form input[type="email"],
form input[type="text"]:focus,
form input[type="email"]:focus {
	 /*border:1px solid #000;*/
	 padding:0.5em 0.5em 0.6em;
}

form textarea,
form textarea:focus {
	/*border:1px solid #000;*/
	padding: 0.5em;	
}


form input[type="text"].realText,
form input[type="email"].realText,
form input[type="text"].realText:focus,
form input[type="email"].realText:focus,
form textarea.realText,
form textarea.realText:focus {
	color:#848487;
}

form input.inline {
	float:right;
    width: 49.5%;
}
form input.inline:not(:first-child) {
    margin-right:1%;
}

form input.break {
  clear:right;
}

form input.small_input {
  width:3em;
  text-align:center;
}

form textarea, form textarea:focus {
	height:171px;
}


form a#submitIt {
	float: left;
}

/*
form .upload_btn {
	font-size: 1em;	
	float: right;
	padding: 0.4em 1em;
	top: 10px;
	right: 30px;
}

form .upload_btn:before {
	content:'';
	position: absolute;
	top: 3px;
	right: -25px;
	display:inline-block;
	width:20px;
	height:20px;
	background-image:url('../images/upload_btn.png');
}
*/
input[type="checkbox"] {
	margin-left:0.5em;
	margin-bottom: 0;
}

input[type="checkbox"] + label, input[type="radio"] + label {
	margin-right:0;
	color:#848487;
}


form#contact_form #contactStatusMsg {
	margin-top: 1.4em;
  	color: #1775c9;
}




/*
form .contactStatusMsg.successMsg {
	color:#1775c9;
}*/
	
form #contactStatusMsg.errorMsg {
	color:#D8000C;
}
form .contactStatusMsg.warningMsg {
	color:#9F6000;
}	


form #filelist {
    position: relative;
	margin-top: 55px;
	text-align: center;
	direction: ltr;
}






/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////   RADIO BUTTON, CHECKBOX, TOGGLE SWITCH     ///////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/


input[type='radio'],
input[type='checkbox'] {
  display: none;
  cursor: pointer;
}
input[type='radio']:focus, input[type='radio']:active,
input[type='checkbox']:focus,
input[type='checkbox']:active {
  outline: none;
}
input[type='radio'] + label.radio_label,
input[type='checkbox'] + label {
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding-right: 1.7em;
  margin-right: 0.4em;
  margin-left: 0.7em;
  color: inherit;
  font-size:1em;
}
input[type='radio'] + label.radio_label:before, input[type='radio'] + label.radio_label:after,
input[type='checkbox'] + label:before,
input[type='checkbox'] + label:after {
  content: '';
  font-family: Arial, Helvetica, sans-serif;
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  right: 0;
  bottom: 0.05em;
  text-align: center;
  position: absolute;
}
input[type='radio'] + label.radio_label:before,
input[type='checkbox'] + label:before {
  background-color:#fff;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 4px solid #e6e6e6;
}

input[type='radio'] + label.radio_label:after,
input[type='checkbox'] + label:after {
  color: #fff;
}

input[type='radio']:checked + label.radio_label:before,
input[type='checkbox']:checked + label:before {
  border-color: #1775c9;
}

/*Radio Specific styles*/
input[type='radio'] + label.radio_label:before {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
input[type='radio'] + label.radio_label:hover:after, input[type='radio']:checked + label.radio_label:after {
	content:'';
	width:0.4em;
	height:0.4em;
	position: absolute;
	right: 0.4em;
	bottom: 0.5em;
	background-color:#1775c9;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}
input[type='radio'] + label.radio_label:hover:after {
  background-color:#e6e6e6;
}
input[type='radio']:checked + label.radio_label:after, input[type='radio']:checked + label.radio_label:hover:after {
  background-color:#1775c9;
}

/*Checkbox Specific styles*/
input[type='checkbox'] + label {
  margin:0;
  padding:0;
  top: 0.5em;
  right: -1.7em;
}
input[type='checkbox'] + label:before {
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  background-color:#e6e6e6;
  background-color:#fff;
  width: 1.4em;
  height: 1.4em;
}
input[type='checkbox'] + label:hover:after, input[type='checkbox']:checked + label:after {
  content: "\f00c";
  font-family:"FontAwesome";
  font-weight: bold;
  bottom: 0.45em;  
  right: 0.25em;
  font-size: 0.85em;
}
input[type='checkbox'] + label:hover:after {
  color:#e6e6e6;
  right: 0.25em;
}
input[type='checkbox']:checked + label:after, input[type='checkbox']:checked + label:hover:after {
  color:#1775c9;
}

/*Toggle Specific styles*/
input[type='checkbox'].toggle {
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 46px;
  height: 22px;
  background-color: #e6e6e6;
  position: relative;
  -moz-border-radius: 11px;
  -webkit-border-radius: 11px;
  border-radius: 11px;
  @include box-shadow(none);
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
input[type='checkbox'].toggle:hover:after {
  background-color: #848487;
}
input[type='checkbox'].toggle:after {
  content: '';
  display: inline-block;
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: ;
  top: 3px;
  right: 3px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
input[type='checkbox']:checked.toggle {
  -moz-box-shadow: inset 0 0 0 15px #e6e6e6;
  -webkit-box-shadow: inset 0 0 0 15px #e6e6e6;
  box-shadow: inset 0 0 0 15px #e6e6e6;
}
input[type='checkbox']:checked.toggle:after {
  right: 27px;
  background-color: #848487;
}

input[type='checkbox'].toggle:before {
    position:absolute;
    line-height: 22px;       
    text-transform:uppercase;
    font-family:"myBold";
}

input[type='checkbox'].toggle:before {
    content:attr(data-off);
    color:#fff;
    right: auto; 
    left:2px;
}
input[type='checkbox']:checked.toggle:before {
    content:attr(data-on);
    color:#848487;
    right: 2px; 
    left:auto;
}


input[type='checkbox'].toggle.square {
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
}
input[type='checkbox'].toggle.square:after {
    -moz-border-radius: 0%;
    -webkit-border-radius: 0%;
    border-radius: 0%;
}




.toggle_group input[type='checkbox'].toggle:before {
    font-size: 1.5em;
    content:"\f00d";
    font-family:"FontAwesome";
    right: auto; 
    left:6px;
}
.toggle_group input[type='checkbox']:checked.toggle:before {
    font-size: 1.4em;
    content:"\f00c";
    font-family:"FontAwesome";
    right: 5px; 
    left:auto;
}

