/* ===========================
MODAL STYLE
=========================== */
.pricing-card {
	background: #f3f4f4;
	border-radius: 20px;
	padding: 35px 25px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
	height: 100%;
	position: relative;
	transition: 0.35s ease;
	overflow: hidden;
}

.pricing-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card.active {
	background: #000;
	color: #fff;
	/* transform: scale(1.05); */
	z-index: 2;
}

.pricing-card.active:hover {
	transform: scale(1.05) translateY(-8px);
}
.payment-modal {
	border: 2px solid #2a2a2e;
	border-radius: 12px;
	overflow: hidden;
	backdrop-filter: blur(23px);
	background: linear-gradient(
		90deg,
		rgba(42, 123, 155, 1) 0%,
		rgba(33, 27, 45, 1) 0%,
		rgba(23, 19, 32, 1) 100%
	);
	box-shadow: 0 20px 60px rgb(0 0 0 / 12%);
}
#paymentModal {
	/* overflow-y: unset !important; */
	overflow-x: unset !important;
}

.wrapper-django1.p-5.rounded-3 {
	padding: 63px 70px !important;
}

.payment-left h3 {
	margin-bottom: 8px;
}

.payment-left p {
	color: #6b7280;
	margin-bottom: 30px;
}

/* PRICE BOX */
.btn-close {
	filter: brightness(0) saturate(100%) invert(59%) sepia(22%) saturate(1118%)
		hue-rotate(355deg) brightness(97%) contrast(89%);
	opacity: 1;
}

.price-line {
	display: flex;
	justify-content: space-between;
	margin-bottom: 14px;
	color: #555;
}

.price-line.total {
	border-top: 1px solid #ddd;
	padding-top: 14px;
	margin-top: 14px;
	font-size: 18px;
	color: #111;
}

/* BUTTON */
.submit-btn {
	width: 100%;
	height: 55px;
	border: none;
	border-radius: 10px;
	background: #000;
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	transition: 0.3s;
	font-family: var(--font-inter);
}

.submit-btn:hover {
	background: var(--secondary-color);
	color: #fff;
}

.submit-btn i {
	margin-left: 8px;
}

/* RIGHT SIDE */
.payment-right {
	background: #0b0b0b;
	height: 100%;
	padding: 35px;
}

#paymentModal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1060;
	display: none;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	outline: 0;
	background: #f0f8ff40;
	backdrop-filter: blur(14px);
}

.custom-input::placeholder {
	color: var(--heading-color);
}

/* RESPONSIVE */
@media (max-width: 1400px) {
	.wrapper-django1.p-5.rounded-3 {
		padding: 53px 60px !important;
	}
}

@media (max-width: 991px) {
	.payment-left {
		padding: 30px;
	}

	.payment-right {
		padding: 25px;
	}
}

@media (max-width: 767px) {
	.payment-left h3 {
		font-size: 24px;
	}

	.payment-left {
		padding: 22px;
	}

	.wrapper-django1.p-5.rounded-3 {
		padding: 43px 10px !important;
	}
	.payment-left {
		margin-top: 0;
	}
}
