input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea,
.fw_form_fw_form .wrap-forms input[type="text"],
.fw_form_fw_form .wrap-forms input[type="email"],
.fw_form_fw_form .wrap-forms input[type="url"],
.fw_form_fw_form .wrap-forms input[type="password"],
.fw_form_fw_form .wrap-forms input[type="search"],
.fw_form_fw_form .wrap-forms input[type="number"],
.fw_form_fw_form .wrap-forms input[type="tel"],
.fw_form_fw_form .wrap-forms input[type="range"],
.fw_form_fw_form .wrap-forms input[type="date"],
.fw_form_fw_form .wrap-forms input[type="month"],
.fw_form_fw_form .wrap-forms input[type="week"],
.fw_form_fw_form .wrap-forms input[type="time"],
.fw_form_fw_form .wrap-forms input[type="datetime"],
.fw_form_fw_form .wrap-forms input[type="datetime-local"],
.fw_form_fw_form .wrap-forms input[type="color"],
.fw_form_fw_form .wrap-forms textarea {
	color: $color__text-input;
	border: 1px solid $color__border-input;
	border-radius: 8px;
	padding: 6px 50px;
	outline: none;
	appearance: none;
	margin-bottom: 25px;
	height: 5.6rem;
	min-width: 200px;
	@include font-size(1.3);
	
	&:focus {
		color: $color__text-main;
	}
}

select,
.fw_form_fw_form .wrap-forms select {
	color: $color__text-input;
	border: 1px solid $color__border-input;
	border-radius: 8px;
	padding: 6px 50px;
	outline: none;
	margin-bottom: 25px;
	height: 5.6rem;
	min-width: 200px;
	@include font-size(1.3);
	
	&:focus {
		color: $color__text-main;
	}
}

textarea,
.fw_form_fw_form .wrap-forms textarea {
	width: 100%;
	min-height: 200px;
	padding: 21px 50px;
}

.wrap-forms .form-builder-item {
	.field-text,
	.field-gap,
	.field-textarea,
	.field-select,
	.field-upload,
	.field-date,
	.field-time,
	.field-multiple,
	.field-rating,
	.field-table {
	    margin-bottom: 0;
	}
}

.fw-btn,
.fw-btn.fw-btn-1,
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	appearance: none;
	display: inline-block;
	margin-bottom: 2.5rem;
	border: 2px solid;
	border-color: $color__green;
	border-radius: 8px;
	background: $color__green;
	color: $color__white;
	@include font-size(1.2);
	line-height: 1;
	font-weight: 600;
	padding: 2rem 1rem;
	min-width: 200px;
	text-align: center;
	text-transform: uppercase;
	vertical-align: middle;
	cursor: pointer;
	text-decoration: none;
	white-space: nowrap;
	outline: none;
	user-select: none;
	transition: all 0.3s ease;

	&:hover,
	&:active,
	&:focus {
		border-color: $color__green;
		color: $color__green;
		background: $color__white;
		opacity: 1;
	}
}

.fw-btn.fw-btn-1.fw-btn-white {
	background: $color__white;
	border-color: $color__white;
	color: $color__green;

	&:hover,
	&:active,
	&:focus {
		border-color: $color__white;
		color: $color__white;
		background: $color__green;
	}
}

.fw-btn.fw-btn-1.fw-btn-transparent {
	background: $color__transparent;
	border-color: $color__green;
	color: $color__green;

	&:hover,
	&:active,
	&:focus {
		border-color: $color__green;
		color: $color__green;
		background: $color__transparent;
	}
}

.fw-btn.fw-btn-1.fw-btn-transparent-white {
	background: $color__transparent;
	border-color: $color__white;
	color: $color__white;

	&:hover,
	&:active,
	&:focus {
		border-color: $color__white;
		color: $color__white;
		background: $color__transparent;
	}
}

.form-builder-item-recaptcha {
	margin-bottom: 25px;

	> div {
		max-width: 100% !important;
	}
}
.text-center .form-builder-item-recaptcha {
	> div {
		margin: 0 auto;
	}
}

.search-form {
	input[type="search"] {
		min-width: 50%;
	}

	input[type="submit"] {
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
}

.widget {
	.search-form {
		input[type="search"] {
			width: 100%;
			margin-bottom: 10px;
		}
	
		input[type="submit"] {
			width: 100%;
		}
	}
}

.comment-form {
	p {
		margin: 0;
	}
}

@media (max-width: 991px) {
	input[type="text"],
	input[type="email"],
	input[type="url"],
	input[type="password"],
	input[type="search"],
	input[type="number"],
	input[type="tel"],
	input[type="range"],
	input[type="date"],
	input[type="month"],
	input[type="week"],
	input[type="time"],
	input[type="datetime"],
	input[type="datetime-local"],
	input[type="color"],
	textarea,
	.fw_form_fw_form .wrap-forms input[type="text"],
	.fw_form_fw_form .wrap-forms input[type="email"],
	.fw_form_fw_form .wrap-forms input[type="url"],
	.fw_form_fw_form .wrap-forms input[type="password"],
	.fw_form_fw_form .wrap-forms input[type="search"],
	.fw_form_fw_form .wrap-forms input[type="number"],
	.fw_form_fw_form .wrap-forms input[type="tel"],
	.fw_form_fw_form .wrap-forms input[type="range"],
	.fw_form_fw_form .wrap-forms input[type="date"],
	.fw_form_fw_form .wrap-forms input[type="month"],
	.fw_form_fw_form .wrap-forms input[type="week"],
	.fw_form_fw_form .wrap-forms input[type="time"],
	.fw_form_fw_form .wrap-forms input[type="datetime"],
	.fw_form_fw_form .wrap-forms input[type="datetime-local"],
	.fw_form_fw_form .wrap-forms input[type="color"],
	.fw_form_fw_form .wrap-forms textarea,
	select,
	.fw_form_fw_form .wrap-forms select {
		padding: 6px 40px;
		margin-bottom: 2.5rem;
		height: 5rem;
	}

	textarea,
	.fw_form_fw_form .wrap-forms textarea {
		padding: 15px 40px;
	}

	.fw-btn,
	.fw-btn.fw-btn-1,
	button,
	input[type="button"],
	input[type="reset"],
	input[type="submit"] {
		padding: 1.7rem 1rem;
	}
}

@media (max-width: 767px) {
	input[type="text"],
	input[type="email"],
	input[type="url"],
	input[type="password"],
	input[type="search"],
	input[type="number"],
	input[type="tel"],
	input[type="range"],
	input[type="date"],
	input[type="month"],
	input[type="week"],
	input[type="time"],
	input[type="datetime"],
	input[type="datetime-local"],
	input[type="color"],
	textarea,
	.fw_form_fw_form .wrap-forms input[type="text"],
	.fw_form_fw_form .wrap-forms input[type="email"],
	.fw_form_fw_form .wrap-forms input[type="url"],
	.fw_form_fw_form .wrap-forms input[type="password"],
	.fw_form_fw_form .wrap-forms input[type="search"],
	.fw_form_fw_form .wrap-forms input[type="number"],
	.fw_form_fw_form .wrap-forms input[type="tel"],
	.fw_form_fw_form .wrap-forms input[type="range"],
	.fw_form_fw_form .wrap-forms input[type="date"],
	.fw_form_fw_form .wrap-forms input[type="month"],
	.fw_form_fw_form .wrap-forms input[type="week"],
	.fw_form_fw_form .wrap-forms input[type="time"],
	.fw_form_fw_form .wrap-forms input[type="datetime"],
	.fw_form_fw_form .wrap-forms input[type="datetime-local"],
	.fw_form_fw_form .wrap-forms input[type="color"],
	.fw_form_fw_form .wrap-forms textarea,
	select,
	.fw_form_fw_form .wrap-forms select {
		padding: 6px 20px;
		margin-bottom: 2rem;
		height: 4rem;
	}

	textarea,
	.fw_form_fw_form .wrap-forms textarea {
		padding: 10px 20px;
	}

	.fw-btn,
	.fw-btn.fw-btn-1,
	button,
	input[type="button"],
	input[type="reset"],
	input[type="submit"] {
		padding: 1.2rem 0.5rem;
		margin-bottom: 2rem;
	}
}