.middleSectionnew {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	background: linear-gradient(#85C1E9, #fff);
}

#wrappernew {
	position:relative;
	min-height:100%;
}

.row {
  margin-right: -15px !important;
  margin-left: -15px !important;
}

#wrapper .container-fluid {
	padding-left: 0px !important;
	padding-right: 0px !important;
}

.lead-text {
	font-size: 14px !important;
}

.feature-list li {
	font-size: 14px !important;
}

.feature-list i {
	font-size: 1.55rem !important;
}

.pricing-card {
	padding: 35px 25px !important;
}

.config-label {
	font-weight: 400 !important;
	font-size: 14px !important;
}

.new-price, .text-muted {
	font-size: 14px !important;
}

.buy-btn {
	background-color: #337ab7;
	font-size: 16px !important;
	font-weight: 600 !important;
}

/* .buy-btn:hover {
	background-color: #286090 !important;
} */

.btn:active, .btn.active {
	box-shadow: none !important;
}

.btn-option {
	padding: 6px 5px !important;
	font-size: 12px !important;
}

.price-area {
	background-color: #e4f1fa !important;
}

.btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus,
	.btn.active.focus {
	outline: none !important;
}

.form-select.form-select-sm {
	padding: 6px 5px !important;
	font-size: 12px !important;
	margin-left: 2px !important
}

h2 {
	margin-bottom: 4px !important;
	margin-top: 4px !important;
	font-size: 22px !important;
}

.panel-body {
	font-size: 16px !important;
}

.new-price {
	font-size: 20px !important;
}

.feature li {
	font-size: 16px;
}

.panel-primary {
	box-shadow: 0px 0px 10px #73a5c6;
}

.panel-body {
	font-size: 16px;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: #333;
	background-color: #fff;
}

/* Hero Section */
.hero-section {
	padding-top: 40px !important;
	padding-bottom: 37px !important;
}

h1 {
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 20px;
}

.lead-text {
	font-size: 1.1rem;
	margin-bottom: 30px;
	color: #555;
}

/* Feature List */
.feature-list {
	list-style: none;
	padding: 0;
}

.feature-list li {
	margin-bottom: 15px;
	display: flex;
	align-items: flex-start;
}

.feature-list i {
	color: #fd7e14;
	margin-right: 15px;
	font-size: 1.2rem;
	margin-top: 2px;
	width: 10px;
	text-align: center;
}

/* --- Configurator Card Styling --- */
.pricing-card {
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	padding: 25px;
	background-color: #fff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.config-row {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	/* For smooth height animation */
	transition: all 0.4s ease;
}

.config-label {
	width: 100px; /* Slightly wider to accommodate "No. of Domains" */
	font-weight: 700;
	color: #666;
	font-size: 0.9rem;
	flex-shrink: 0;
}

.config-options {
	flex-grow: 1;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

/* Buttons */
.btn-option {
	border: 1px solid #dee2e6;
	background: #fff;
	color: #666;
	padding: 6px 15px;
	border-radius: 20px;
	font-size: 0.85rem;
	transition: all 0.2s;
	cursor: pointer;
	flex: 1; /* Distribute space evenly */
	text-align: center;
	min-width: 80px;
}

.btn-option:hover {
	background-color: #f8f9fa;
}

/* Active State (Orange) */
.btn-option.active {
	background-color: #fd7e14; /* Orange */
	color: white;
	border-color: #fd7e14;
}

/* Hidden Row Animation Logic */
.hidden-row {
	max-height: 0;
	opacity: 0;
	margin-bottom: 0;
	overflow: hidden;
	pointer-events: none;
}

.visible-row {
	max-height: 100px; /* Arbitrary large height */
	opacity: 1;
	margin-bottom: 15px;
	pointer-events: auto;
}

/* Dropdown Styling */
.form-select-sm {
	border-radius: 4px;
	border-color: #dee2e6;
}

/* Price Area */
.price-area {
	background-color: #eef6ff;
	padding: 20px;
	border-radius: 8px;
	margin-top: 20px;
	text-align: left;
}

.old-price {
	text-decoration: line-through;
	color: #dc3545; /* Red */
	font-size: 14px;
	margin-right: 10px;
}

.new-price {
	font-size: 2rem;
	color: #333;
}

.buy-btn {
	background-color: #337ab7;
	color: white;
	width: 100%;
	padding: 12px;
	font-weight: 600;
	border: none;
	border-radius: 6px;
	margin-top: 15px;
	transition: background 0.2s;
}

.buy-btn:hover {
	background-color: #fd7e14;
	color: white;
}

/* Note Box Animation */
.note-box {
	background-color: #fff;
	border-left: 4px solid #0d6efd;
	padding: 10px 15px;
	font-size: 12px;
	color: #555;
	margin-top: 15px;
	border-radius: 4px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
	/* Animation props */
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	margin-top: 0;
	padding-top: 0;
	padding-bottom: 0;
	transition: all 0.4s ease;
}

.note-box.show {
	max-height: 200px;
	opacity: 1;
	margin-top: 15px;
	padding-top: 10px;
	padding-bottom: 10px;
}

/* FAQ Section */
.faq-section {
	background-color: #f0f7ff;
	padding: 50px 0;
	margin-top: 50px;
}

.product-item {
	margin-bottom: 20px;
}

/* ---------- AJAX Loader ---------- */
#ajax-loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.7);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.loader-spinner {
	width: 48px;
	height: 48px;
	border: 5px solid #ddd;
	border-top: 5px solid #fd7e14; /* orange */
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

@keyframes spin {to { transform:rotate(360deg);}}

.ttips {
	position: relative;
	display: inline-flex;
}

.ttips i {
	display: inline-flex;
	width: 12px;
	height: 14px;
}

.ttips:hover .ttipsContent {
	display: block;
	visibility: visible;
	opacity: 1;
}

.ttipsContent {
	padding: 10px;
	background: #f8fbfe;
	font-size: 13px;
	visibility: hidden;
	min-width: 320px;
	border: 1px solid #e4f1fa;
	color: #000;
	left: -15px;
	top: 12px;
	text-align: left;
	border-radius: 3px;
	padding: 10px;
	position: absolute;
	z-index: 9999;
	opacity: 0;
	transition: opacity 0.3s;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.ttipsContent p {
	font-weight: normal;
	font-size: 12px;
	margin-bottom: 5px;
}

.buy-now-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	text-decoration: none !important;
}

.buy-now-link:hover, .buy-now-link:focus{color:#ffffff!important}