.modal {
	display: none;
	position: fixed;
	z-index: 100;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.4);
	padding-top: 80px;
}

.modal-content {
	position: relative;
	margin: auto;
	padding: 0;
	background-color: #fff;
	width: 90%;
	max-width: 1160px;
	-webkit-animation-name: animatetop;
	-webkit-animation-duration: 0.4s;
	animation-name: animatetop;
	animation-duration: 0.4s;
	box-shadow: 0px 14px 24px rgba(0, 0, 0, 0.25);
	border-radius: 8px;
}

.modal-body {
	margin-bottom: 90px;
}

@-webkit-keyframes animatetop {
	from {
		top: -300px;
		opacity: 0
	}
	to {
		top: 0;
		opacity: 1
	}
}

@keyframes animatetop {
	from {
		top: -300px;
		opacity: 0
	}
	to {
		top: 0;
		opacity: 1
	}
}

.openModal {
	cursor: pointer;
}

.closeModal {
	float: right;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 50px;
	margin-right: -30px;
	margin-top: -60px;
	color: #fff;
}

.closeModal:hover,
.closeModal:focus {
	color: #eae8e8;
	text-decoration: none;
	cursor: pointer;
}

@media only screen and (max-width: 767px) {
	.modal-content {
		width: 80%;
	}
}

@media only screen and (max-width: 575.98px) {
	.modal-content {
		width: 90%;
	}
	.closeModal {
		margin-right: 0;
		margin-top: -50px;
		line-height: 0.8;
		padding: 0 6px;
		background-color: rgba(0, 0, 0, 0.1);
		border-radius: 100%;
	}
}

@media screen and (max-height: 700px ) and (min-height: 600px) {
	.modal {
		padding-top: 60px;
	}
}

@media screen and (min-width: 1500px) {
	.closeModal {
		margin-right: -70px;
	}
}

.result_form {
	width: 90%;
	max-width: 500px;
	margin: 40px auto;
}

@media screen and (max-height: 780px) {
	.result_form {
	margin: 30px auto 40px;
	}
}

.result_form input[type=email], .result_form input[type=text], .result_form input[type=tel] {
	width: calc(100% - 30px);
	height: 50px;
	max-width: 470px;
	color: #000;
	border: 1px solid #ccc;
	background-color: #fff;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	font-size: 16px;
	font-weight: 400;
	border-radius: 15px !important;
	padding-left: 15px;
	padding-right: 15px;
	margin-bottom: 15px;
}

.result_form_confidentiality {
	padding: 0 0 15px;
}

.result_form_confidentiality input {
	margin-right: 10px;
    height: 15px;
    width: 15px;
}

.result_form_confidentiality a {
	color: rgb(17, 85, 204);
	text-decoration: none;
}

.approval {
	cursor: pointer;
	padding: 17px 0;
	width: 100%;
	border-color: transparent;
	border-radius: 10px !important;
	-moz-border-radius: 10px !important;
	-webkit-border-radius: 10px !important;
	font-size: 16px;
	text-transform: uppercase;
	color: #ffffff !important;
	background: #f38bae !important;
	text-align: center;
	font-weight: bold;
}

.result_messengers {
	display: none;
}