html, body {
	margin: 0;
	padding: 0;
}
body {
	background-color: #e3e3e3;
	font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 15px;
	color: #b9b9b9;
}
header {
	background: #fff;
}
h4 {
	margin: 20px 0 10px;
	font-size: 18px;
	font-weight: bold;
	color: #A8D500;
}
h5 {
	margin: 20px 0 10px;
	font-size: 15px;
	font-weight: bold;
	color: #666;
}
a {
	color: #555;
}
a:hover {
	text-decoration: underline;
	color: #64ac15;
}

/** BUTTONS **/
.btn-primary {
	background: #64ac15;
	border: 0 none;
}
.btn-primary:hover,
.btn-primary:focus {
	background: #64ac15;
	border: 0 none;
}

/** FORMS */
.form-control {
	padding: 1em;
	line-height: 1.4;
	background-color: #f9f9f9;
	border: 1px solid #e5e5e5;
	border-radius: 3px;
	font-size: 15px;
}
.input-group input,
input[type="radio"] + label {
	width: 100%;
	padding: 1em;
	line-height: 1.4;
	background-color: #f9f9f9;
	border: 1px solid #e5e5e5;
	border-radius: 3px;
	transition: all 0.35s ease-in-out;
}
input:focus {
	outline: 0;
	border-color: #64ac15;
}
input:focus + .input-icon i {
	color: #A8D500;
}
input:focus + .input-icon:after {
	border-right-color: #A8D500;
}
input[type="radio"] {
	display: none;
}
input[type="radio"] + label {
	display: inline-block;
	width: 50%;
	text-align: center;
	float: left;
	border-radius: 0;
}
input[type="radio"] + label:first-of-type {
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
}
input[type="radio"] + label:last-of-type {
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
}
input[type="radio"] + label i {
	padding-right: 0.4em;
}
input[type="radio"]:checked + label,
input[type="radio"]:checked + label:before {
	background-color: #A8D500;
	color: #fff;
	border-color: #64ac15;
}
input[type="radio"]:checked + label:after {
	opacity: 1;
}
.input-group {
	margin-bottom: 1em;
	zoom: 1;
}
.input-group:before,
.input-group:after {
	content: "";
	display: table;
}
.input-group:after {
	clear: both;
}
.input-group-icon {
	position: relative;
}
.input-group-icon input {
	padding-left: 4.4em;
}
.input-group-icon .input-icon {
	position: absolute;
	top: 0;
	left: 0;
	width: 3.4em;
	height: 3.4em;
	line-height: 3.4em;
	text-align: center;
	pointer-events: none;
}
.input-group-icon .input-icon:after {
	position: absolute;
	top: 0.6em;
	bottom: 0.6em;
	left: 3.4em;
	display: block;
	border-right: 1px solid #e5e5e5;
	content: "";
	-webkit-transition: 0.35s ease-in-out;
	-moz-transition: 0.35s ease-in-out;
	-o-transition: 0.35s ease-in-out;
	transition: 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
}
.input-group-icon .input-icon i {
	-webkit-transition: 0.35s ease-in-out;
	-moz-transition: 0.35s ease-in-out;
	-o-transition: 0.35s ease-in-out;
	transition: 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
}
.btn-success {
	background-color: #A8D500;
	border-color: #A8D500;
}

.card {
	max-width: 38em;
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0px 3px 10px -2px rgba(0, 0, 0, 0.2);
}

/** USER LIST **/
.user {
	min-height: 368px;
	margin: 0 auto 30px;
	padding: 20px 15px 0;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 0 15px rgba(198,206,215,.5);
	text-align: center;
}
.user.single-member {
	padding: 30px 15px;
	min-height: 0 !important;
	text-align: left;
}
.user.single-member h1 {
	margin: 15px 0 30px;
	text-align: left;
	font-weight: bold;
	color: #444;
}
.user a.link {
	display: block;
	position: absolute;
	top: 0; right: 0;
	bottom: 0; left: 0;
}
.user .user_avatar {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	height: 200px;
	margin: 0 auto;
	border-radius: 50%;
	overflow: hidden;
}
.user .user_avatar img {
	width: 100%;
}
.user .badge {
	position: absolute;
	top: 15px; left: 50%;
	display: inline-block;
	transform: translateX(-50%);
	padding: 3px 6px;
	background: #F0ED46;
	border-radius: 2em;
	vertical-align: super;
	font-size: 10px;
	font-weight: normal;
	line-height: 1;
	color: #000;
	z-index: 2;
}
.user h1, .user h3 {
	position: relative;
	margin: 25px 0 10px;
	font-size: 22px;
}
.user h3 {
	margin: 20px 0 15px;
	font-size: 20px;
	font-weight: bold;
	color: #666;
}
.user .tagline {
	margin-bottom: 25px;
	font-size: 13px;
	color: #666;
}
.user-bio {
	margin-bottom: 30px;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 0 15px rgba(198,206,215,.5);
	background: #fff;
}
.user-bio h2 {
	margin: 0 0 15px;
	font-size: 20px;
	text-align: left;
	font-weight: bold;
	color: #A8D500;
}
.social-wrap a {
	display: inline-block;
	width: 30px;
	height: 30px;
	margin: 0 5px 5px;
	padding-top: 2px;
	background: #000;
	border-radius: 2em;
	transition: .3s all;
	text-align: center;
	color: #fff;
}

/** FORM SEARCH **/
.form-search {
	text-align: center;
	margin-bottom: 40px;
}
.np-search-wrap {
	position: relative;
}
.form-search button {
	position: absolute;
	top: -5px;
	right: 15px;
	padding: 0;
	color: #999;
	font-size: 20px;
	background: transparent;
	border: 0 none;
}
.form-search .reset {
	position: absolute;
	top: -5px;
	right: 40px;
	color: #999;
	font-size: 20px;
}
.form-search input {
	max-width: 500px;
	padding: 15px;
	width: 100%;
	margin: 0 auto;
	border-radius: 5px;
	background-color: #fff;
	border: 1px solid #ddd;
	color: #333;
	font-size: 18px;
	font-weight: 400;
}

.dropzone {
	padding: 15px;
	border: 2px dashed #999;
	border-radius: 5px;
	background: #fff;
}
.preview-image {
	display: block;
	max-width: 150px;
	max-height: 150px;
	margin-top: 20px;
}

footer {
	text-align: center;
	font-size: 12px;
}