.modal-window {}

.modal__overlay {
	display: none;
	position: fixed;
	align-items: center;
	justify-content: center;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	margin: auto;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1000;
}

.modal-window.modal_opened .modal__overlay,
.modal-window.active .modal__overlay {
	display: flex;
}

.modal__wrapper {
	width: 750px;
	padding: 50px;
	background: 
		url("/images/mfedback-lefttopImg.png") 8% 8%/17% no-repeat, 
		url("/images/mfedback-bottomImg.png") 44% 100% no-repeat, 
		url("/images/mfedback-lefttopImg.png") 94% 43% no-repeat,
		#fff;
	border: 1px solid #5c068b;
	border-radius: 27px;		
}

.modal__wrapper_wide {
	width: 900px;
}

.modal__wrapper_success {
	width: 300px;
	text-align: center;
	font-size: 20px;
}

.modal__title {
	margin-bottom: 50px;
	font-size: 31px;
	text-align: center;
}

.modal__content {}

.modal__app-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 40px;
}

.modal__app-form-left {}

.modal__app-form-item {
	margin-bottom: 20px;
}

.modal__app-form-item p,
.modal__app-form-item label {
	font-weight: 600;
	font-size: 15px;
	color: #1f1446;
	margin-bottom: 5px;
	padding: 0 0 0 10px;
}

.modal__app-personal {
	margin-bottom: 50px;
	font-size: 14px;
}

.modal__app-button {
	text-align: center;
}


.modal__form-error {
	color: #ff0000;
	padding: 0 0 0 10px;
	font-size: 12px;
}