.popUp{
	width: 95%;
	max-width: 588px;
	margin: 0 auto;
	box-sizing: border-box;
}

.popUp__head{
	width: 100%;
	box-sizing: border-box;
	height: 200px;
	background: url('./images/back.jpg') no-repeat left center;
	background-size: cover;
	position: relative;
}

.popUp__body{
	background-color: #fff;
	box-sizing: border-box;
	padding: 40px 70px 70px;
}
.popUp__title{
	text-align: center;
	margin-bottom: 50px;
}

.popUp__field input,
.popUp__field textarea{
	display: block;
	width: 100%;
	box-sizing: border-box;
	margin-bottom: 5px;
	border: 2px solid #81C6D6;
	outline: none;
	padding-left: 20px;
	height: 60px;
	border-radius: 3px;
}
.popUp__field textarea{
	resize: none;
	height: 145px;
	padding-top: 20px;
}
.popUp__button{
	width: 250px;
	text-align: center;
	height: 60px;
	box-sizing: border-box;
	border-radius: 3px;
	border:  3px solid #81C6D6;
	font-weight: 500;
	font-size: 20px;
	background-color: #81C6D6;
	display: block;
	margin: 50px auto 0;
}

.popUp__button:hover{
	background-color: #fff;
	cursor: pointer;
}

.popUp__logo{
	position: absolute;
	top: 19px;
	left: 20px;
	width: 150px;
	height: 50px;
	background: url('./images/logo.png') no-repeat center;
}

.popUp__close.mfp-close{
	width: 40px;
	height: 40px;
	display: block;
	position: absolute;
	top: 24px;
	box-sizing: border-box;
	right: 20px;
	border-radius: 50%;
	border: 2px solid #FFF;
	background: url('./images/times.png') no-repeat center transparent;
}
.popUp__close.mfp-close:hover{
	cursor: pointer;
	border-color: #81C6D6;
}