.modal_wrapper {
	background: rgba(0,0,0,.7);
	position: fixed;
	left: 0;
	top: 0;
	z-index: 6;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 100%;
}
.modal_wrapper.hide {
	display: none;
}
.modal {
	box-sizing: border-box;
	background: white;
	max-width: 800px;
	width: 100%;
	min-height: 440px;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	padding: 0 45px;
	padding-top: 200px;
	text-align: center;
	line-height: 24px;
	padding-bottom: 30px;
}
.modal_bg {
	width: 100%;
	height: 185px;
	position: absolute;
	top: 0px;
	left: 0px;
	background: #0099D8;
	overflow: hidden;
}
.modal_img {
	width: 280px;
	height: 280px;
	background: white;
	border-radius: 50%;
	top: 100%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	position: absolute;
}
.modal_img img {
	position: absolute;
	left: 30px;
	height: 150px;
	width: 200px;
	left: 77px;
}
.modal_title {
	font-size: 26px;
	margin: 10px 0;
	margin-top: 22px;
	line-height: 29px;
}
.modal_text {
	margin-top: 15px;
}
.modal_btn {
	padding: 16px 45px;
	padding-left: 64px;
	background: #f13754;
	color: #fff;
	display: inline-block;
	border-radius: 0;
	font-weight: 500;
	white-space: nowrap;
	font-size: 22px;
	margin-top: 30px;
	transition: 0.3s;
	position: relative;
}
.modal_btn:after {
	content: '';
	left: 27px;
	position: absolute;
	top: 14px;
	background-image: url(https://lifecareforyou.com/wp-content/themes/assure/assets/img/white-phone.png);
	background-size: 26px;
	width: 26px;
	height: 26px;
	right: auto;

}
.modal_btn:hover {
	background: #c93149;
}
.modal_close {
	position: absolute;
	right: 5px;
	top: 5px;
	height: 30px;
	width: 30px;
	z-index: 6;
	cursor: pointer;
	transition: 0.2s;
	transform: scale(1.0);
}
.modal_close:hover {
	transform: scale(1.1);
}
.modal_close::before,
.modal_close::after {
	content: '';
	position: absolute;
	height: 2px;
	width: 26px;
	background: white;
	top: 13px;
	left: 2px;
	transform: rotate(45deg);
}
.modal_close::after {
	transform: rotate(-45deg);
}
.modal_checkmark {
	width: 140px;
	margin-top: 10px;
}
.modal_form {
	display: flex;
	margin-top: 23px;
}
.modal_form input[type=email] {
	border-top-right-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
	padding-left: 10px;
	box-sizing: border-box;
	font-size: 17px;
	font-family: 'Montserrat';
}
.modal_form input[type=email]::placeholder {
	font-size: 17px;
}
.modal_form input[type=submit] {
	outline: none;
	border: none;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}
@media screen and (max-width: 767px) {
	.modal_img img {
		left: 60px;
	}
	.modal_form {
    	flex-direction: column;
	}
	.modal_form input[type=email] {
    	border-radius: 5px !important;
	}
	.modal_form input[type=submit] {
		border-radius: 5px !important;
		margin-top: 12px;
		height: 46px;
	}
	.modal_img {
		width: 250px;
		height: 250px;
	}
	.modal_img img {
		height: 150px;
		width: 150px;
	}
	.modal_bg {
    	height: 150px;
	}
	.modal {
		min-height: 400px;
    	padding-top: 152px;
	}
	.modal_text {
		margin-top: 4px;
	}
}