.lity {
	background: rgba(0, 0, 0, 0.3) !important;

}

.lity-content::after {
	border-radius: 50px 5px 50px 5px;
}

#mp_tell_a_friend_form {
	position: relative;
	border-radius: 50px 5px 50px 5px;
	padding: 25px 25px 35px 25px;
	background: #f2f1f1;
	max-width: 600px;
	overflow-y: scroll;
	overflow-x: scroll;
	-ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}

#mp_tell_a_friend_form::-webkit-scrollbar {
    width: 0px;
    background: transparent; /* make scrollbar transparent */
}

#mp_tell_a_friend_form fieldset {
	display: flex;
	flex-wrap: wrap;
    align-items: center;
	padding: 0;
	margin: 0 0 10px 0;
	border: 0;
}

#mp_tell_a_friend_form .formicon {
	position: absolute;
	top: 0;
	left: 0;
}

#mp_tell_a_friend_form .formicon img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
}

#mp_tell_a_friend_form .title h4 {
	margin-top: 10px;
	margin-bottom: 15px;
	margin-left: 100px;
	font-size: 20px;
	color: #dc0d15;
}

#mp_tell_a_friend_form .desc {
	margin-left: 100px;
}

#mp_tell_a_friend_form .desc a {
	color: #dc0d15;
}

#mp_tell_a_friend_form p,
#mp_tell_a_friend_form label {
	color: #747474;
}

#mp_tell_a_friend_form label {
	flex: 1;
	min-width: 200px;
}

#mp_tell_a_friend_form input[type="text"],
#mp_tell_a_friend_form input[type="email"] {
	padding: 5px 10px;
	font-size: 13px;
	flex: 2;
	border-radius: 5px;
	border: 1px #747474 solid;
}

#mp_tell_a_friend_form input[type="submit"] {
	border-radius: 5px;
	padding: 5px 10px;
	color: #fff;
	background: #dc0d15;
	border: 1px solid #dc0d15;
}

#mp_tell_a_friend_form input[type="submit"]:hover {
	border-radius: 5px;
	padding: 5px 10px;
	color: #dc0d15;
	background: #fff;
	border: 1px solid #dc0d15;
}

#mp_tell_a_friend_form .spinner {
	display: inline-block;
	margin:
}

#mp_tell_a_friend_form .spinner img {
	height: 25px;
	width: 25px;
	animation-name: spin;
	animation-duration: 5000ms;
	animation-iteration-count: infinite;
	animation-timing-function: linear; 
	margin-bottom: -8px;
	margin-left: 20px;
}

@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}

#mp_tell_a_friend_form .form-messages {
	margin-bottom: 25px;
}

#mp_tell_a_friend_form .form-messages .success {
	padding: 5px 10px;
	color: #fff;
	background: #90EE90;
}

#mp_tell_a_friend_form .form-messages .error {
	padding: 0;
	margin: 0 0 10px;
	color: #dc0d15;
	font-weight: bold;
	background: transparent;
}

#mp_tell_a_friend_form .captcha {
	margin-bottom: 25px;
}

#mp_tell_a_friend_form .captcha label {
	vertical-align: top;
}

#mp_tell_a_friend_form .captcha img {
	filter: grayscale(1);
	max-width: 150px;
	width: 40%;
}

#mp_tell_a_friend_form .captcha label:hover img {
	filter: grayscale(0);
}

#mp_tell_a_friend_form .captcha .choices {
	text-align: center;
}

#mp_tell_a_friend_form .captcha input {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

/* IMAGE STYLES */
#mp_tell_a_friend_form .captcha [type=radio] + img {
  cursor: pointer;
  margin: 0 10px;
}

/* CHECKED STYLES */
#mp_tell_a_friend_form .captcha [type=radio]:checked + img {
  outline: 2px solid #f00;
  filter: grayscale(0)
}