
/*Form*/
/**/
/* defaults */
/**/
.devn-form {
	margin: 0;
	outline: none;
	font: 14px/1.55 'Open Sans', Helvetica, Arial, sans-serif;
	color: #272727;
}
.devn-form header {
	display: block;
	padding: 0px 0px 9px 0px;
	margin-bottom: 13px;
	font-size: 22px;
	font-weight: normal;
	color: #272727;
	border-bottom: 1px solid #e3e3e3;
	font-family: 'Raleway', sans-serif;
}
.devn-form header strong {
	font-weight: 600;
}

.devn-form fieldset {
	display: block;	
	padding: 25px 0px 5px;
	border: none;
	background: none;
}
.devn-form fieldset + fieldset {
	border-top: 1px solid rgba(0,0,0,.1);
}
.devn-form section {
	margin-bottom: 20px;
}
.devn-form footer {
	display: block;
	padding: 15px 0px 25px;
}
.devn-form footer:after {
	content: '';
	display: table;
	clear: both;
}
.devn-form a {
	color: #999;
}
.devn-form .label {
	display: block;
	margin-bottom: 6px;
	line-height: 19px;
	font-weight: 400;
}
.devn-form .label.col {
	margin: 0;
	padding-top: 10px;
}
.devn-form .note {
	margin-top: 6px;
	padding: 0 1px;
	font-size: 11px;
	line-height: 15px;
	color: #999;
}
.devn-form .input,
.devn-form .select,
.devn-form .textarea,
.devn-form .radio,
.devn-form .checkbox,
.devn-form .toggle,
.devn-form .button {
	position: relative;
	display: block;
}
.devn-form .input input,
.devn-form .select select,
.devn-form .textarea textarea {
	display: block;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	width: 100%;
	height: 39px;
	padding: 8px 10px;
	outline: none;
	border-width: 1px;
	border-style: solid;
	border-radius: 0;
	background: #fff;
	font: 15px/19px 'Open Sans', Helvetica, Arial, sans-serif;
	color: #404040;
	appearance: normal;
	-moz-appearance: none;
	-webkit-appearance: none;
}
.devn-form .progress {
	float: right;
	margin-top: 10px;
	line-height: 39px;
	color: #232323;
}


/**/
/* file inputs */
/**/
.devn-form .input-file .button {
	position: absolute;
	top: 4px;
	right: 4px;
	float: none;
	height: 31px;
	margin: 0;
	padding: 0 20px;
	font-size: 13px;
	line-height: 31px;
}
.devn-form .input-file .button:hover {
	box-shadow: none;
}
.devn-form .input-file .button input {
	position: absolute;
	top: 0;
	right: 0;
	padding: 0;
	font-size: 30px;
	cursor: pointer;
	opacity: 0;
}


/**/
/* selects */
/**/
.devn-form .select-multiple select {
	height: auto;
}


/**/
/* textareas */
/**/
.devn-form .textarea textarea {
	height: auto !important;
	resize: none;
}
.devn-form .textarea-resizable textarea {
	resize: vertical;	
}
.devn-form .textarea-expandable textarea {
	height: 39px;
}
.devn-form .textarea-expandable textarea:focus {
	height: auto;
}


/**/
/* radios and checkboxes */
/**/
.devn-form .radio,
.devn-form .checkbox {
	margin-bottom: 4px;
	padding-left: 27px;
	font-size: 15px;
	line-height: 27px;
	color: #404040;
	cursor: pointer;
}
.devn-form .radio:last-child,
.devn-form .checkbox:last-child {
	margin-bottom: 0;
}
.devn-form .radio input,
.devn-form .checkbox input {
	margin-top: 8px;
}
.devn-form .inline-group {
	margin: 0 -30px -4px 0;
}
.devn-form .inline-group:after {
	content: '';
	display: table;
	clear: both;
}
.devn-form .inline-group .radio,
.devn-form .inline-group .checkbox {
	float: left;
	margin-right: 30px;
}
.devn-form .inline-group .radio:last-child,
.devn-form .inline-group .checkbox:last-child {
	margin-bottom: 4px;
}
.devn-form .btn{
	padding: 6px 12px;
}	
.devn-form *, .devn-form *:after, .devn-form *:before {
	margin: 0;
	padding: 0;
	box-sizing: content-box;
	-moz-box-sizing: content-box;
}
.devn-form section {
	margin-bottom: 20px;
}
.devn-form .row {
	margin: 0 -15px;
}
.devn-form .row:after {
	content: '';
	display: table;
	clear: both;
}
.devn-form .col {
	float: left;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}
.devn-form .col-1 {
	width: 8.33%;
}
.devn-form .col-2 {
	width: 16.66%;
}
.devn-form .col-3 {
	width: 25%;
}
.devn-form .col-4 {
	width: 33.33%;
}
.devn-form .col-5 {
	width: 41.66%;
}
.devn-form .col-6 {
	width: 50%;
}
.devn-form .col-7 {
	width: 58.33%;
}
.devn-form .col-8 {
	width: 66.67%;
}
.devn-form .col-9 {
	width: 75%;
}
.devn-form .col-10 {
	width: 83.33%;
}
.devn-form .col-11 {
	width: 91.66%;
}
@media screen and (max-width: 600px) {
	.devn-form .col {
		float: none;
		width: 100%;
	}
}



/**/
/* hover state */
/**/
.devn-form .input:hover input,
.devn-form .select:hover select,
.devn-form .textarea:hover textarea,
.devn-form .radio:hover i,
.devn-form .checkbox:hover i,
.devn-form .toggle:hover i {
	border-color: #13afeb;
}
.devn-form .rating input + label:hover,
.devn-form .rating input + label:hover ~ label {
	color: #d9d9d9;
}
.devn-form .button:hover {
	opacity: 1;
}


/**/
/* focus state */
/**/
.devn-form .input input:focus,
.devn-form .select select:focus,
.devn-form .textarea textarea:focus,
.devn-form .radio input:focus + i,
.devn-form .checkbox input:focus + i,
.devn-form .toggle input:focus + i {
	border-color: #13afeb;
}


.devn-form .input input, .devn-form .select select, .devn-form .textarea textarea, .devn-form .radio i, .devn-form .checkbox i, .devn-form .toggle i, .devn-form .icon-append, .devn-form .icon-prepend {
	border-color: #d3d3d3;
	transition: border-color 0.3s;
	-o-transition: border-color 0.3s;
	-ms-transition: border-color 0.3s;
	-moz-transition: border-color 0.3s;
	-webkit-transition: border-color 0.3s;
}

.devn-form .input input, .devn-form .select select, .devn-form .textarea textarea {
	display: block;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	width: 100%;
	height: 39px;
	padding: 8px 10px 8px 30px;
	outline: none;
	border-width: 1px;
	border-style: solid;
	border-radius: 0;
	background: #fff;
	font: 15px/19px 'Open Sans', Helvetica, Arial, sans-serif;
	color: #404040;
	appearance: normal;
	-moz-appearance: none;
	-webkit-appearance: none;
}
.devn-form .rating input:checked ~ label {
	color: #999;	
}

/**/
/* bootstrap compatibility */
/**/
.devn-form *,
.devn-form *:after,
.devn-form *:before {
	margin: 0;
	padding: 0;
	box-sizing: content-box;
	-moz-box-sizing: content-box;
}
.devn-form .label {
	border-radius: 0;
	font-size: 100%;
	text-align: left;
	white-space: normal;
	color: inherit;
}
.devn-form .radio,
.devn-form .checkbox {
	font-weight: 400;
}
.devn-form .radio + .radio,
.devn-form .checkbox + .checkbox {
  margin-top: 0;
}
.devn-form label i.fa{
	position: absolute;
	top: 10px;
	left: 10px;
	color: #ccc;
}
.devn-form label:hover i.fa{
	color: #13afeb;
}	
.sky-form .textarea textarea {
	height: auto;
	resize: none;
}
.login_form {
	margin: 20px auto 0 auto;
	width: 400px;
	padding: 20px 35px 13px 35px;
	background-color: #f9f9f9;
	border: 1px solid #fff;
	-moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.2);
	box-shadow:0px 0px 5px rgba(0, 0, 0, 0.2);
}
.login_form .btn-primary{
	width: 93%;
	margin-top: 20px;
}
.login_form.two {
	margin: 0px auto 0 auto;
}

.reg_form {
	margin: 20px auto 0 auto;
	width: 550px;
	padding: 20px 35px 13px 35px;
	background-color: #f9f9f9;
	border: 1px solid #fff;
	-moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.2);
	box-shadow:0px 0px 5px rgba(0, 0, 0, 0.2);
}

.reg_form.two {
	margin: 0px auto 0 auto;
}


@media only screen and (min-width: 480px) and (max-width: 767px){
	

	.reg_form {
		margin: 10px auto 0 auto;
		width: 400px;
		padding: 18px 20px 13px 20px;
	}


	
}


@media only screen and (max-width: 479px){
	
	.login_form {
		margin: 0px auto 0 auto;
		width: 250px;
		padding: 13px 20px 13px 20px;
	}
	
	.reg_form {
		margin: 10px auto 0 auto;
		width: 280px;
		padding: 8px 10px 13px 10px;
	}

}



