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

/* Modal Content/Box */
.sfc-modal-content {
	background-color: #fff;
	margin: 110px auto; /* 15% from the top and centered */
	padding: 20px;
	width: 500px;
	min-height: 300px;
	box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	position: relative;
	text-align: left;
}


.sfc-modal-content .close {
	color: #aaa;
	font-size: 18px;
	line-height: 18px;
	font-weight: bold;
	position: absolute;
	top: 10px;
	right: 10px;
}

.sfc-modal-content .close:hover,
.sfc-modal-content .close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}
.sfc-modal-content strong {
	font-weight: bold;
}
#sfc-modal-offer-wall .sfc-modal-content {
	width: 750px;
}
@media (max-width: 768px) {
	.sfc-modal-content{
		width: 100% !important;
		height: 100%;
		margin: 0;
		border-radius: 0px;
	}
}