* {
	box-sizing: border-box;
}

html,
body {
	margin: 0 !important;
	padding: 0 !important;
	font-family: Arial, sans-serif !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: Arial, sans-serif !important;
}

._px_container {
	 margin: -7% 0px 15px 0px !important;
}

.loader-wrapper {
	width: 100%;
	height: 500px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.loader {
	--d: 38px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	color: #00afc9;
	box-shadow: calc(1 * var(--d)) calc(0 * var(--d)) 0 0,
		calc(0.707 * var(--d)) calc(0.707 * var(--d)) 0 1px,
		calc(0 * var(--d)) calc(1 * var(--d)) 0 2px,
		calc(-0.707 * var(--d)) calc(0.707 * var(--d)) 0 3px,
		calc(-1 * var(--d)) calc(0 * var(--d)) 0 4px,
		calc(-0.707 * var(--d)) calc(-0.707 * var(--d)) 0 5px,
		calc(0 * var(--d)) calc(-1 * var(--d)) 0 6px;
	animation: l27 1s infinite steps(8);
}
@keyframes l27 {
	100% {
		transform: rotate(1turn);
	}
}

.hidden {
	display: none;
}

._px_wrapper {
  margin: -7% 0 0 0 !important;
}

.compare-container{
  content: "";
  display: table;
  clear: both;
  width: 100%;
}

 .ben-list {
	float: left;
	width: 20%;
	padding: 10px;
	box-sizing: border-box; 
}

.ben-features {
	float: right;
	 width: 80%;
	 box-sizing: border-box;
}
.ben-list  ul {
  list-style: none;
  padding: 0;
}

 .ben-list ul li {
  margin-bottom: 10px;
  padding: 10px;
  text-align: center;
}

.ben-list ul li.active-tab {
  border: 1px solid #303d79; 
  font-weight: bold;
  border-radius: 4px;
  padding: 6px 10px;
}


 .ben-list  ul li:nth-child(1) {
  font-weight: bold;
}
 .ben-list  ul li:nth-child(1) span {
  color: grey;
  font-size: 13px;
  font-weight: normal;
}

 .ben-list  ul li a {
  text-decoration: none;
  color: #303d79;
}

.pricing-table {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	width: 100%;
}

 .feature-group {
        display: contents; /* ensures grid layout continuity */
      }

.cell {
	padding: 0.75rem 1rem;
	text-align: center;
	font-size: 0.85rem;
	border-bottom: 1px solid #ddd;
	background: #ffffff;
	position: relative;
}

.header {
	background: #ffffff;
	font-weight: bold;
	font-size: 1rem;
	display: block;
	padding: 2rem 1rem 1rem;
	position: relative;
}

.feature-title {
	background: #fff;
	text-align: left;
	font-weight: bold;
}

.feature {
	text-align: left;
	background: #fcfcfc;
}

.recommended-col {
	background: #e4fcff !important;
}

.recommended-header {
	border-top: 3px solid #00afc9;
}

.recommended .badge {
	position: absolute;
	top: 8px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #00afc9;
	color: white;
	font-size: 0.6rem;
	font-weight: bold;
	padding: 4px 12px;
	border-radius: 20px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	z-index: 10;
}

.plan-name {
	white-space: nowrap;
	margin-top: 0.4rem;
	font-size: 0.9em;
}

.logo {
	height: 40px;
	width: auto;
	max-width: 90px;
	object-fit: contain;
	display: block;
	margin: 0.5rem auto 0;
}

.recommended-header span {
	color: #00afc9;
}

.btn {
	padding: 0.6rem 1.2rem;
	border-radius: 4px;
	border: none;
	font-weight: bold;
	cursor: pointer;
	font-size: 0.95rem;
}

.btn.free {
	background-color: #e6f4ea;
	color: #00afc9;
}

.btn.upgrade {
	background-color: #00afc9;
	color: white;
}

.btn.upgrade.dark {
	background-color: #333;
	color: white;
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
	.pricing-table {
		grid-template-columns: 1fr;
	}

	.cell.header,
	.cell.feature-title,
	.cell.feature {
		text-align: center;
	}

	.cell.header {
		padding-top: 3rem;
	}

	.logo {
		height: 28px;
		margin-bottom: 0.3rem;
	}

	.plan-name {
		margin: 0.3rem 0 0;
	}

	.btn {
		width: 100%;
		margin-top: 0.5rem;
	}

	.recommended .badge {
		top: 12px;
		left: 50%;
		transform: translateX(-50%);
	}
}

@media (max-width: 480px) {
	body {
		padding: 1rem 0.5rem;
	}

	.cell {
		font-size: 0.9rem;
		padding: 0.6rem;
	}

	.btn {
		font-size: 0.95rem;
	}
}



