form {
	background-color: #09152c;
	border-radius: 30px;
	padding: 50px;
	margin-top: 30px;
}

@media(max-width: 991px) {
	form {
		padding: 30px 15px;
	}
	form .w3:last-child {
		width: 100%;
	}
}

form:first-child {
	margin-top: 0;
}

input, textarea {
	width: 100%;
	font-family: 'Poppins';
	font-size: 14px;
	color: #000;
	background: #fff;
	border: 1px solid #fff;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	padding: 0 20px;
	box-sizing: border-box;
    outline: none;
   -webkit-appearance: default-button;
   -webkit-appearance: none;
   -webkit-tap-highlight-color: transparent;
}

label {
	font-family: 'Poppins-Bold';
	font-size: 16px;
	line-height: 1.3;
	color: #fff;
}

input {
	height: 47px;
}

input:placeholder {
    font-family: 'Poppins';
	font-size: 14px;
	color: #000;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
	font-family: 'Poppins';
	font-size: 14px;
	color: #000;
}

input:-moz-placeholder, textarea:-moz-placeholder {
	font-family: 'Poppins';
	font-size: 14px;
	color: #000;
}

input::-moz-placeholder, textarea::-moz-placeholder {
	font-family: 'Poppins';
	font-size: 14px;
	color: #000;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
	font-family: 'Poppins';
	font-size: 14px;
	color: #000;
}

textarea {
	height: 120px;
}

.fields {
	display: flex;
	flex-wrap: wrap;
}

button[type="submit"] {
	border: 0;
	outline: none;
	margin-top: 35px;
	cursor: pointer;
}

/*quantity - begin*/
.quantity__block {
	width: 190px;
	display: flex;
	align-items: center;
	background-color: #fff;
	border-radius: 40px;
}

@media(max-width: 767px) {
	.quantity__block {
		width: 150px;
	}
}

@media(max-width: 470px) {
	label {
		display: block;
		text-align: center;
	}
	.quantity__block, .quantity {
		width: 100%;
	}
}

.quantity__block input {
	width: 10%;
	flex: 1 1;
	height: 55px;
	font-family: 'Poppins-Bold';
	font-size: 16px;
	text-align: center;
	padding: 0;
}

.quantity__btn {
	width: 50px;
	height: 55px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Poppins-Bold';
	font-size: 27px;
	color: #1e4898;
	cursor: pointer;
	transition: .3s;
}

.quantity__btn:hover {
	color: #00A159;
	transition: .3s;
}
/*quantity - end*/

