/*------------------------------------*\
    #FORMS
\*------------------------------------*/
label {
	font-weight: 300;
	margin-bottom: 8px;
	text-transform: capitalize;
	font-size: 14px;
	color: $color-heading;
}

.form-group {
	margin-bottom: 0;
}

.form-control {
	color: #aaaaaa;
	font-family: $font-body;
	font-size: 14px;
	font-weight: 400;
	line-height: 40px;
	height: 42px;
	border: 1px solid #e6eaf4;
	background: #f8f9fc;
	padding-left: 20px;
	margin-bottom: 20px;
	position: relative;
	@include rounded(4px);
	@include prefix(box-shadow, none, moz webkit);
}

.form-control:focus {
	border-color: $color-theme;
	@include prefix(box-shadow, none, moz webkit);
}

/* Placeholder */

.form-control::-webkit-input-placeholder {
	color: $color-body;
}

.form-control:-moz-placeholder {
	color: $color-body;
}

.form-control::-moz-placeholder {
	color: $color-body;
}

.form-control:-ms-input-placeholder {
	color: $color-body;
}

.select-form {
	position: relative;

	i {
		position: absolute;
		top: 0;
		right: 20px;
		z-index: 1;
		line-height: 44px;
		color: #aaaaaa;
	}

	select {
		-webkit-appearance: none;
		-moz-appearance: none;
		-ms-appearance: none;
		-o-appearance: none;
		appearance: none;

		&.form-control:not([size]):not([multiple]) {
			height: 42px;
			line-height: 35px;
		}
	}
}

/* Input Radio */
.form-radio {
	text-align: center;

	.form-check-label {
		display: block;
		position: relative;
		padding-left: 6px;
		margin-bottom: 20px;
		cursor: pointer;
		font-size: 14px;
	}

	.form-check-input {
		z-index: -1;
		opacity: 0;
		margin: 0;
	}

	.label-radio {
		position: relative;
	}

	.radio-indicator {
		position: absolute;
		top: -2px;
		left: 0;
		height: 14px;
		width: 14px;
		background: transparent;
		border: 1px solid #aaaaaa;
		border-radius: 50%;
		cursor: pointer;

		&:after {
			content: '';
			position: absolute;
			display: none;
			left: 3px;
			top: 3px;
			height: 6px;
			width: 6px;
			border-radius: 50%;
			background: #ffffff;
		}
	}

	input:checked~.radio-indicator {
		background: $color-theme;
		border-color: $color-theme;
	}

	.label-radio:hover input:not([disabled]):checked~.radio-indicator,
	.label-radio input:checked:focus~.radio-indicator {
		background: $color-theme;
	}

}

.label-radio input:checked~.radio-indicator:after {
	display: block;
}

.subscribe-alert {
	margin-top: 20px;
}