.form_text_style1, .form_textarea_style1, .form_select_style1 {
    font-family: 'Roboto', sans-serif;
	font-size: 12px;
	transition: all 0.3s ease;
	width: 100%;
}

.form_text_style1:focus, .form_textarea_style1:focus, .form_select_style1:focus {
	border: 1px solid #ffffff;
	-moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
	-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
	box-shadow: 0 0 3px rgba(36, 37, 37, 1);
}

.form_text_style1, .form_textarea_style1  {
	border: 1px solid #5c718a;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
	background: #fafafa;
	outline: none;
	-webkit-appearance: none;
	position: relative;
	color: #1b2428;
	box-sizing : border-box;
	padding: 11px 10px 10px 10px;
	display: inline-block;
	width: 100%;
}

.form_select_style1{
    padding: 5px;
	margin: 0px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    border-radius:4px;
	background: #fafafa;
	border: 1px solid #5c718a;
    outline: none;
    display: inline-block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
	color: #5c718a;
	font-weight: 300;
	margin-top: 3px;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    .form_select_style1 {
		padding-right: 18px;
	}
}

.form_select_label_style1{
	position: relative;
}

.form_select_label_style1:after {
    content:'<>';
    font: 12px "Consolas", monospace;
    color: #5c718a;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    right: 6px; top: 2px;
    padding: 0 0 2px;
    border-bottom: 1px solid #ddd;
    position: absolute;
    pointer-events: none;
}

.form_select_label_style1:before {
    content: '';
    right: 5px; 
	top: 0px;
    width: 21px; 
	height: 21px;
    background: #fafafa;
    position: absolute;
    pointer-events: none;
    display: block;
}

.form_radio_style1 {
	visibility: hidden;
}

.form_radio_wrapper_style1 {
	position: relative;
	left: 2px;
	display: inline-block;
	float: left;
	margin-right: 5px;
}

.form_radio_wrapper_style1 .form_radio_label_style1 {
	border: 1px solid #5c718a;
	cursor: pointer;
	position: absolute;
	width: 14px;
	height: 14px;
	margin-top: 4px;
	top: 0px;
	left: 0px;
	border-radius: 4px;
	background: #fafafa;
}

.form_radio_wrapper_style1 .form_radio_label_style1:after {
	border: 1px solid #5c718a;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	opacity: 0;
	content: '';
	position: absolute;
	width: 4px;
	height: 4px;
	background: transparent;
	top: 3px;
	left: 3px;
	border: 2px solid #1b2428;
	border-radius: 6px;
}

.form_radio_wrapper_style1 .form_radio_label_style1:hover::after {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
	filter: alpha(opacity=30);
	opacity: 0.5;
}

.form_radio_style1:checked + .form_radio_label_style1:after {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	opacity: 1;
}

.form_checkbox_style1 {
	visibility: hidden;
}

.form_checkbox_wrapper_style1{
	width: 14px;
	display: inline-block;
	position: relative;
}

.form_checkbox_label_style1 {
	border: 1px solid #5c718a;
	cursor: pointer;
	position: absolute;
	width: 14px !important;
	height: 14px !important;
	top: 0px;
	left: 0px;
	border-radius: 4px;
	margin-top: 4px;
	background: #fafafa;
}

.form_checkbox_label_style1:after {
	border: 1px solid #5c718a;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	opacity: 0;
	content: '';
	position: absolute;
	width: 6px;
	height: 3px;
	background: transparent;
	top: 4px;
	left: 3px;
	border: 2px solid #333333;
	border-top: none;
	border-right: none;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.none_arrow:after {
	border: 1px solid #5c718a;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	opacity: 0;
	content: '';
	position: absolute;
	width: 6px;
	height: 3px;
	background: transparent;
	top: 4px;
	left: 3px;
	border: 2px solid #f4f4f4;
	border-top: none;
	border-right: none;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.form_checkbox_label_style1:hover::after {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
	filter: alpha(opacity=30);
	opacity: 0.5;
}

.form_checkbox_style1:checked + .form_checkbox_label_style1:after {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	opacity: 1;
}


.switch {
	position: relative;
	height: 26px;
	width: 100%;
	border: 1px solid #5c718a;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	background: #fafafa;
	margin: 4px 0px -8px 0px;
	overflow: hidden;
}

.switch-label {
	position: relative;
	z-index: 2;
	float: left;
	width: calc(50% - 2px);
	line-height: 27px;
	font-size: 11px;
	color: #5c718a;
	text-align: center;
	cursor: pointer;
}

.switch-label-off {
	padding-left: 2px;
}

.switch-label-on {
	padding-right: 2px;
}

.switch-input {
	display: none;
}

.switch-input:checked + .switch-label {
	color: #ffffff;
	text-shadow: 0 1px rgba(255, 255, 255, 0.25);
	-webkit-transition: 0.15s ease-out;
	-moz-transition: 0.15s ease-out;
	-o-transition: 0.15s ease-out;
	transition: 0.15s ease-out;
}

.switch-input:checked + .switch-label-on ~ .switch-selection {
	/* Note: left: 50% doesn't transition in WebKit */
	left: 50%;
}

.switch-selection {
	display: block;
	position: absolute;
	z-index: 1;
	top: 2px;
	left: 2px;
	width: calc(50% - 2px);
	height: 22px;
	background: #5c718a;
	border-radius: 3px;
	background-image: -webkit-linear-gradient(top, #4a5e75, #5c718a);
	background-image: -moz-linear-gradient(top, #4a5e75, #5c718a);
	background-image: -o-linear-gradient(top, #4a5e75, #5c718a);
	background-image: linear-gradient(to bottom, #4a5e75, #5c718a);
	-webkit-transition: left 0.15s ease-out;
	-moz-transition: left 0.15s ease-out;
	-o-transition: left 0.15s ease-out;
	transition: left 0.15s ease-out;
}
