#nlp-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,.55);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	box-sizing: border-box;
}

#nlp-overlay.nlp-hidden {
	display: none;
}

#nlp-popup {
	background: #fff;
	border-radius: 10px;
	max-width: 600px;
	width: 100%;
	padding: 40px 36px 36px;
	position: relative;
	box-shadow: 0 8px 40px rgba(0,0,0,.25);
	text-align: left;
	box-sizing: border-box;
}

#nlp-close {
	position: absolute;
	top: 12px;
	right: 16px;
	background: none;
	border: none;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	color: #666;
	padding: 0;
}

#nlp-close:hover {
	color: #000;
}

#nlp-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 130PX;
	height: 130PX;
	border-radius: 50%;
	background: rgba(0,0,0,.06);
	margin: 0 auto 16px;
	font-size: 52px;
	line-height: 1;
	overflow: hidden;
	background-color: white;
	border: 2px solid white;
}

#nlp-icon img {
	width: 98px;
	height: 98px;
	object-fit: cover;
	border-radius: 50%;
}

#nlp-heading {
	margin: 0 0 10px;
	font-size: 1.5em;
	color: #222;
	text-align: center;
}

#nlp-subheading {
	margin: 0 0 24px;
	color: #555;
	font-size: .95em;
	line-height: calc(1em + 5px);
	white-space: pre-line;
}

#nlp-subheading p,
#nlp-subheading li {
	margin: 0 0 5px;
}

#nlp-subheading .has-text-align-left,
#nlp-subheading .alignleft {
	text-align: left;
}

#nlp-subheading .has-text-align-center,
#nlp-subheading .aligncenter {
	text-align: center;
}

#nlp-subheading .has-text-align-right,
#nlp-subheading .alignright {
	text-align: right;
}

#nlp-subheading .has-text-align-justify {
	text-align: justify;
}

#nlp-form .wpcf7-form {
	text-align: left;
}

#nlp-form input[type="checkbox"] {
	width: 18px;
	height: 18px;
	vertical-align: middle;
	margin-right: 6px;
	cursor: pointer;
}

#nlp-form .wpcf7-checkbox,
#nlp-form .wpcf7-list-item {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	text-align: left;
}

#nlp-form input[type="email"],
#nlp-form input[type="text"] {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 1em;
	box-sizing: border-box;
	margin-bottom: 12px;
}

#nlp-form input[type="submit"],
#nlp-form .wpcf7-submit {
	width: 100%;
	padding: 11px;
	margin-top: 25px;
	background: #b0358a;
	color: #fff;
	border: none;
	border-radius: 5px;
	font-size: 1em;
	cursor: pointer;
	transition: background .2s;
}

#nlp-form input[type="submit"]:hover,
#nlp-form .wpcf7-submit:hover {
	background: #b0358a;
}

@media (max-width: 480px) {
	#nlp-popup {
		padding: 32px 20px 28px;
	}
}


span.wpcf7-list-item.first.last {
    margin-left: 0px !important;
    margin-top: 10px;
}