.ls-pricing-steps {
	margin-top: 20px;
}

.ls-pricing-steps h4 {
	margin-bottom: 0;
	padding-bottom: 0;
}

.ls-overlay {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7); /* Adjust the last value for transparency */
	z-index: 998; /* Place it beneath the modal */
}

.ls-modal {
	display: block;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff; /* Lightbox background color */
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	max-width: 80%;
	max-height: 80%;
	overflow: auto;
	z-index: 999; /* Ensure it is on top of everything */
}

.ls-modal img {
	max-width: 100%;
	height: auto;
}

.ls-overlay.ls-hide,
.ls-modal.ls-hide {
	display: none;
}