/*===================================*/
/*           Order Form CSS          */
/*===================================*/
.order-form{
	padding: 60px 0px;
	position: relative;
}
.order-form .wrapper{
	z-index: 2;
	position: relative;
}
.order-form:after{
	content: "";
	position: absolute;
	display: block;
	height: 100%;
	width: 100vw;
	top: 0;
	left: calc(-1*(100vw - 100%)/2);
	margin: auto;
	background: url(/wp-content/themes/cargo777/img/form-order-bg.jpg) no-repeat center center;
	background-size: cover;
	z-index: 1;
}
.order-form form{
	/*padding: 6rem;
  background-color: rgba(0,0,0,0.7);
  backdrop-filter: blur(30px);*/
  color: #fff;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1.5rem;
}
.order-form .order-form-caption{
	/*font-family: 'Bebas Neue' !important;*/
	margin-bottom: 25px !important;
	padding-left: 0;
	font-weight: 400;
	margin-top: 0px;
	text-align: left;
	font-size: 18px;
	color: #fff;
	width: 100%;
	/*max-width: 750px;*/
}
.order-form .order-form-caption a {
	color: lightgreen;
}
.order-form .form-title{
	font-family: 'Bebas Neue';
	font-weight: 600;
	color: #fff;
	font-size: 30px;
	text-align: left;
	width: 100%;
	margin-bottom: 2rem;
}
.order-form .form-title span{
	display: inline-block;
	line-height: 1;
	border-bottom:2px solid #fff;
}
.order-form .form-sect-title {
	color: #fff;
	margin: 3rem 0;
	width: 100%;
}
.form-subtitle {
  margin-bottom: 2rem;
}

.order-form .form-field{
	/*width: calc(50% - 15px);*/
	margin: 0px 0px 20px 0px !important;
	padding: 0px;
}
.order-form .form-field label {
	display: block;
	font-weight: 400;
}
.order-form .textarea-form-field{
	width: 100%;
}
.order-form textarea{
	max-width: 100% !important;
	padding-left: 0 !important;
	width: 100%;
	background: none;
	height: 110px;
	max-height: none !important;

}
.order-form .wpcf7-form-control.wpcf7-textarea {
	max-width: 100%!important;
	margin: 0;
	padding-left: 10px!important;
	padding-right: 10px!important;
}
.order-form .form-field span{
    width: 100%;
    margin: 0px 0px 20px 0px !important;
    padding: 0px;
}
.order-form input,
.order-form select,
.order-form textarea{
	background-color: transparent;
	background: transparent;
	border: 1px solid rgba(255,255,255,0.3) !important;
	border-radius: 0;	
	color: #fff;	
	width: 100% !important;
	padding: 10px;	
	font-weight: 400;
}
.order-form select option{
	color: #000;
}
.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus,
.order-form input:focus-visible,
.order-form select:focus-visible,
.order-form textarea:focus-visible{
	background-color: transparent;
	background: transparent;
	border: 1px  solid #fff !important;
	border-radius: 0;
	color: #fff;	
	outline: none;
}
.order-form select{
	color: #999;
}
.order-form select.selected {
	color: #fff;
}
.order-form input::placeholder,
.order-form select::placeholder,
.order-form textarea::placeholder{
	color: #999;
}
.form-footer{
	display: flex;
	justify-content: space-between;
	margin-top: 45px;
	width: 100%;
}
.form-footer .agree{
	float: none;
	margin-left: 0px;
	padding-right: 10px;
	color: #fff;
	max-width: 400px;
	text-transform: uppercase;
}
.order-form .form-footer input[type=submit]{
	border: 1px solid #fff;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	font-family: 'Bebas Neue';
	padding: 15px 50px 10px !important;
	background: none;
	display: block;
	text-align: center;
	width: auto !important;
	margin: 0;
	transition: all 0.25s ease;
}
.order-form .form-footer input[type=submit]:hover{
	background-color: #fff;
	color: #333;
	border-color: #fff;
}
.order-form .wpcf7 form.sent .wpcf7-response-output {
	width: 100%;
  max-width: 100%;
}

@media(max-width:768px) {
	.order-form .form-field {
		width: 100%;
	}
}

.form-block {
  padding: 6rem;
  background-color: rgba(0,0,0,0.7);
  backdrop-filter: blur(30px);
  width: 100%;
}
.form-block.form-col {
  width: calc(50% - 0.75rem);
}
@media(max-width:768px) {
	.form-block {
		padding: 2rem;
	}
	.form-block.form-col {
		width: 100%;
	}
}