.modal-frontend-form {
	width: 490px;
	height: auto;
	background: #fff;
	position: fixed;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: none;
	opacity: 0;
	z-index: 9999;
}
.modal-close {
	width: 21px;
	height: 21px;
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
	display: block;
}
.overlay {
	z-index: 9998;
	position: fixed;
	background-color: #052c3b;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	cursor: pointer;
	max-width: 100% !important;
	display: none;
	margin: 0 !important;
}
.title-form-order {
	display: block;
	font-size: 29px;
	font-weight: 600;
	text-align: center;
	margin-bottom: 20px;
}
.frontend-form {
	padding: 10px 20px;
}
.frontend-form input {
	display: block;
	width: 100%;
	margin-bottom: 15px;
}
.open-form {
	font-size: 20px;
	text-decoration: none !important;
	color: #fff;
	background: #ee8527;
	display: inline-block;
	margin: 0 10px !important;
	padding: 5px 19px;
	border-radius: 3px;
}
.open-form:hover {
	color: #fff;
}
.error-field-required {
	color: #cc0000;
}

@media(max-width: 500px){
	.modal-frontend-form{
		width: 100%;
	}
}