.err-msg {
	color: red !important;
}

.errorDisplay {
	font-size: 12px;
	color: red !important;
}

.text-danger {
	color: red !important;
}

#snackbar-failure {
	visibility: hidden;
	min-width: 300px;
	margin-left: -125px;
	background-color: #ff0000;
	color: #fff;
	font-weight: 800;
	text-align: center;
	border-radius: 2px;
	padding: 16px;
	position: fixed;
	z-index: 999999999;
	top: 80px;
	right: 30px;
	font-size: 17px;
	text-transform: capitalize;
}

#snackbar-failure.show {
	visibility: visible;
	-webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
	animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

#snackbar-success {
	visibility: hidden;
	min-width: 250px;
	margin-left: -125px;
	background-color: #69d931;
	color: #fff;
	font-weight: 800;
	text-align: center;
	border-radius: 2px;
	padding: 16px;
	position: fixed;
	z-index: 999999999;
	top: 80px;
	right: 30px;
	font-size: 17px;
	text-transform: capitalize;
}

#snackbar-success.show {
	visibility: visible;
	-webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
	animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

.err-msg {
	font-size: 12px;
	color: red;
}

.pbl_form {
	font-family: 'Poppins', sans-serif;
	background: linear-gradient(135deg, #f7fafc, #e2e8f0);
	color: #2d3748;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	/* min-height: 100vh; */
	padding: 20px 0;
	overflow-x: hidden;
}

.pbl_form .form_box {
	border-radius: 15px !important;
	background: #fff;
	border: solid #d1d1d1 0px !important;
}

.pbl_form *, .pbl_form *::before, .pbl_form *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.pbl_form .container {
	display: flex;
	width: 90%;
	max-width: 1200px;
	background: #ffffff;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	position: relative;
	z-index: 1;
	height: auto;
}

.pbl_form .pbl-sidebar {
	width: 320px;
	background: linear-gradient(135deg, #2a9d8f, #e76f51);
	color: #ffffff;
	padding: 40px 25px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: left;
	position: relative;
	overflow: hidden;
	border-top-left-radius: 15px;
	border-bottom-left-radius: 15px;
}

.pbl_form .pbl-sidebar::after {
	content: '';
	position: absolute;
	bottom: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%,
		rgba(255, 255, 255, 0) 70%);
	animation: rotateReverse 18s linear infinite;
	z-index: 0;
}

@
keyframes rotateReverse { 100% {
	transform: rotate(-1turn);
}

}
.pbl_form .pbl-sidebar-card {
	background: rgba(255, 255, 255, 0.1);
	padding: 25px;
	border-radius: 15px;
	backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	z-index: 1;
	width: 100%;
}

.pbl_form .pbl-sidebar-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.pbl_form .pbl-sidebar-card img {
	width: 100%;
	max-width: 200px;
	height: auto;
	border-radius: 10px;
	margin-bottom: 20px;
	border: 3px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.pbl_form .pbl-sidebar-card img:hover {
	transform: scale(1.05);
}

.pbl_form .pbl-sidebar-card h2 {
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	margin-bottom: 15px;
	text-align: center;
}

.pbl_form .pbl-sidebar-card h3 {
	font-size: 18px;
	font-weight: 600;
	color: #e0f7fa;
	margin: 15px 0 10px;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.pbl_form .pbl-sidebar-card p {
	font-size: 14px;
	line-height: 1.6;
	color: #f1faee;
	margin-bottom: 15px;
}

.pbl_form .pbl-sidebar-card ul {
	padding-left: 20px;
}

.pbl_form .pbl-sidebar-card ul li {
	font-size: 14px;
	margin-bottom: 10px;
	color: #e0eaff;
	position: relative;
}

.pbl_form .main-content {
	flex: 1;
	padding: 40px;
	position: relative;
	z-index: 1;
	background: #fff;
}

.pbl_form .header {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
	background: linear-gradient(90deg, #2a9d8f, #e76f51);
	padding: 20px 30px;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(42, 157, 143, 0.3);
}

.pbl_form .header .order-icon {
	width: 40px;
	height: 40px;
	background-size: contain;
	margin-right: 15px;
}

.pbl_form .header h2 {
	font-size: 32px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	margin: 0;
}

.pbl_form .form-group {
	margin-bottom: 30px;
	background: #ffffff;
	padding: 25px;
	border-radius: 12px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
	border-left: 5px solid #e76f51;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pbl_form .form-group:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.pbl_form .form-group h3 {
	font-size: 20px;
	color: #2d3748;
	margin-bottom: 20px;
	font-weight: 600;
	border-bottom: 2px solid #e76f51;
	padding-bottom: 10px;
	display: inline-block;
}

.pbl_form .form-group label {
	display: block;
	font-weight: 500;
	margin-bottom: 8px;
	margin-top: 8px;
	color: #4a5568;
	font-size: 14px;
}

.pbl_form .form-group p {
	display: block;
	font-weight: 500;
	margin-bottom: 8px;
	margin-top: 8px;
	color: #4a5568;
	font-size: 14px;
}

.pbl_form .form-group input, .pbl_form .form-group select, .pbl_form .form-group textarea{
	width: 100%;
	padding: 12px 15px;
	border: 2px solid #edf2f7 !important;
	border-radius: 8px;
	font-size: 14px;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.pbl_form .form-group input[type="checkbox"] {
	width: 15px !important;
	padding: 12px 15px;
	border: 2px solid #edf2f7 !important;
	border-radius: 8px;
	font-size: 14px;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.pbl_form .form-group input:focus, .pbl_form .form-group select:focus,
	.pbl_form .form-group textarea:focus {
	border-color: #2a9d8f;
	box-shadow: 0 0 8px rgba(42, 157, 143, 0.2);
	outline: none;
}

.pbl_form .form-group .file-upload {
	border: 2px dashed #e2e8f0;
	padding: 10px;
	text-align: center;
	border-radius: 8px;
	background: #fafafa;
	transition: border-color 0.3s ease, background 0.3s ease;
	cursor: pointer;
}

.pbl_form .form-group .file-upload:hover {
	border-color: #e76f51;
	background: #f7eceb;
}

.pbl_form .form-group .file-upload label {
	color: #4a5568;
	font-weight: 600;
	cursor: pointer;
	display: block;
	margin-bottom: 5px;
}

.pbl_form .form-group .file-upload span {
	color: #718096;
	font-size: 12px;
}

input[type="file"] {
	display: none;
}

.pbl_form .submit-button {
	background: linear-gradient(135deg, #2a9d8f, #e76f51);
	color: #fff;
	border: none;
	padding: 18px 50px;
	border-radius: 50px;
	cursor: pointer;
	font-size: 22px;
	font-weight: 700;
	box-shadow: 0 8px 25px rgba(42, 157, 143, 0.4);
	transition: all 0.3s ease;
	width: 100%;
	text-transform: uppercase;
	border-left: none;
	text-align: center;
	margin-top: 20px;
	display: inline-block;
}

.pbl_form .submit-button:hover {
	background: linear-gradient(135deg, #e76f51, #2a9d8f);
	transform: translateY(-4px);
	box-shadow: 0 10px 30px rgba(231, 111, 81, 0.5);
}

/* Responsive Design */
@media ( max-width : 767px) {
	.pbl_form .container {
		width: 100%;
		margin: 10px;
		border-radius: 15px;
		flex-direction: column;
	}
	.pbl_form .pbl-sidebar {
		display: none;
	}
	.pbl_form .main-content {
		padding: 20px;
	}
	.pbl_form .header {
		padding: 15px 20px;
	}
	.pbl_form .header .order-icon {
		width: 30px;
		height: 30px;
		margin-right: 10px;
	}
	.pbl_form .header h2 {
		font-size: 24px;
	}
	.pbl_form .form-group {
		padding: 15px;
	}
	.pbl_form .form-group input, .pbl_form .form-group select, .pbl_form .form-group textarea
		{
		padding: 10px 12px;
	}
	.pbl_form .form-group .file-upload {
		padding: 20px;
	}
	.pbl_form .submit-button {
		padding: 14px 40px;
		font-size: 18px;
	}
	.pbl_form .pbl-sidebar-card img {
		max-width: 150px;
	}
}

@media ( min-width : 768px) {
	.pbl_form .container {
		flex-direction: row;
		height: auto;
	}
	.pbl_form .pbl-sidebar {
		width: 320px;
		border-top-right-radius: 0;
		border-bottom-left-radius: 15px;
	}
}

.carousel {
	position: relative;
}

.carousel-inner {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.carousel-item {
	position: relative;
	display: none;
	align-items: center;
	width: 100%;
	transition: transform 0.6s ease;
	backface-visibility: hidden;
	perspective: 1000px;
}

@media screen and (prefers-reduced-motion: reduce) {
	.carousel-item {
		transition: none;
	}
}

.carousel-item.active, .carousel-item-next, .carousel-item-prev {
	display: block;
}

.carousel-item-next, .carousel-item-prev {
	position: absolute;
	top: 0;
}

.carousel-item-next.carousel-item-left, .carousel-item-prev.carousel-item-right
	{
	transform: translateX(0);
}

@
supports (transform-style: preserve-3d) { .carousel-item-next
	.carousel-item-left, .carousel-item-prev.carousel-item-right {
	transform:translate3d(0, 0, 0);
	
}

}
.carousel-item-next, .active.carousel-item-right {
	transform: translateX(100%);
}

@
supports (transform-style: preserve-3d) { .carousel-item-next
	,.active.carousel-item-right { transform:translate3d(100%, 0, 0);
	
}

}
.carousel-item-prev, .active.carousel-item-left {
	transform: translateX(-100%);
}

@
supports (transform-style: preserve-3d) { .carousel-item-prev ,
	.active.carousel-item-left { transform:translate3d(-100%, 0, 0);
	
}

}
.carousel-fade .carousel-item {
	opacity: 0;
	transition-duration: 0.6s;
	transition-property: opacity;
}

.carousel-fade .carousel-item.active, .carousel-fade .carousel-item-next.carousel-item-left,
	.carousel-fade .carousel-item-prev.carousel-item-right {
	opacity: 1;
}

.carousel-fade .active.carousel-item-left, .carousel-fade .active.carousel-item-right
	{
	opacity: 0;
}

.carousel-fade .carousel-item-next, .carousel-fade .carousel-item-prev,
	.carousel-fade .carousel-item.active, .carousel-fade .active.carousel-item-left,
	.carousel-fade .active.carousel-item-prev {
	transform: translateX(0);
}

@
supports (transform-style: preserve-3d) { .carousel-fade
	.carousel-item-next, .carousel-fade .carousel-item-prev, .carousel-fade
	.carousel-item.active, .carousel-fade .active.carousel-item-left,
	.carousel-fade .active.carousel-item-prev { transform:translate3d(0, 0,
	0);
	
}

}
.carousel-indicators {
	position: absolute;
	right: 0;
	bottom: 10px;
	left: 0;
	z-index: 15;
	display: flex;
	justify-content: center;
	padding-left: 0;
	margin-right: 15%;
	margin-left: 15%;
	list-style: none;
}

.carousel-indicators li {
	position: relative;
	flex: 0 1 auto;
	width: 30px;
	height: 3px;
	margin-right: 3px;
	margin-left: 3px;
	text-indent: -999px;
	cursor: pointer;
	background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators li::before {
	position: absolute;
	top: -10px;
	left: 0;
	display: inline-block;
	width: 100%;
	height: 10px;
	content: "";
}

.carousel-indicators li::after {
	position: absolute;
	bottom: -10px;
	left: 0;
	display: inline-block;
	width: 100%;
	height: 10px;
	content: "";
}

.carousel-indicators .active {
	background-color: #fff;
}

.carousel-caption {
	position: absolute;
	right: 15%;
	bottom: 20px;
	left: 15%;
	z-index: 10;
	padding-top: 20px;
	padding-bottom: 20px;
	color: var(--font-secondary-theme-color);
	text-align: center;
}

.otp-section {
	margin-bottom: 30px;
	background: #ffffff;
	padding: 25px;
	border-radius: 12px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
	border-left: 5px solid #e76f51;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.otp-section:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.otp-section h3 {
	font-size: 20px;
	color: #2d3748;
	margin-bottom: 20px;
	font-weight: 600;
	border-bottom: 2px solid #e76f51;
	padding-bottom: 10px;
	display: inline-block;
}

.otp-section p {
	font-size: 14px;
	color: #4a5568;
	margin-bottom: 15px;
}

.otp-section .phone-info {
	font-size: 14px;
	color: #4a5568;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 5px;
}

.otp-section .phone-info .edit-icon {
	width: 16px;
	height: 16px;
	background:
		url('https://cdn-icons-png.flaticon.com/512/1828/1828917.png')
		no-repeat center;
	background-size: contain;
	display: inline-flex;
	cursor: pointer;
}

.otp-section .phone-input {
	display: none;
	margin-bottom: 20px;
}

.otp-section .phone-input input {
	width: 100%;
	padding: 12px 15px;
	border: 2px solid #edf2f7;
	border-radius: 8px;
	font-size: 14px;
	background: #fafafa;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.otp-section .phone-input input:focus {
	border-color: #2a9d8f;
	box-shadow: 0 0 8px rgba(42, 157, 143, 0.2);
	outline: none;
}

.otp-wrapper {
	max-width: 300px;
	margin: 0 auto;
}

.otp-cards {
	display: flex;
	gap: 5px;
	justify-content: space-between;
	margin-bottom: 15px;
}

.otp-card {
	width: 50px;
	height: 50px;
	border: 2px solid #edf2f7;
	border-radius: 10px;
	background: #fff;
	text-align: center;
	font-size: 18px;
	line-height: 50px;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	font-weight: 500;
}

.otp-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.otp-card:focus {
	border: 3px solid #2a9d8f;
	box-shadow: 0 0 10px rgba(42, 157, 143, 0.2);
	outline: none;
}

.resend-otp {
	font-size: 14px;
	color: #4a5568;
	margin-bottom: 15px;
}

.resend-otp a {
	color: #e76f51;
	text-decoration: none;
	cursor: pointer;
}

.resend-otp a.disabled {
	color: #a0aec0;
	pointer-events: none;
}

.hiw-section {
	padding: 60px 0;
	background: #f7fafc;
	text-align: center;
	font-family: 'Montserrat', sans-serif;
}

.hiw-section-title {
	font-size: 36px;
	font-weight: 700;
	color: #2d3748;
	margin-bottom: 40px;
	text-transform: uppercase;
	letter-spacing: 1px;
	position: relative;
	font-family: 'Montserrat', sans-serif;
}

.hiw-section-title::after {
	content: '';
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, #2a9d8f, #e76f51);
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
}

.hiw-steps-container {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
	flex-wrap: nowrap;
}

.hiw-step-card {
	background: #ffffff;
	border-radius: 15px;
	padding: 20px 15px; /* Reduced padding to make the card more compact */
	width: 220px;
	min-height: 260px;
	/* Reduced min-height to accommodate tighter spacing */
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}

.hiw-step-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hiw-step-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 10px; /* Reduced margin-bottom from 20px to 10px */
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hiw-step-number {
	position: absolute;
	top: -10px;
	right: -10px;
	width: 30px;
	height: 30px;
	background: #fff;
	color: #2d3748;
	font-weight: 700;
	font-size: 16px;
	line-height: 30px;
	border-radius: 50%;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hiw-step-image {
	width: 50%;
	height: auto;
}

.hiw-step-title {
	font-size: 20px;
	font-weight: 700;
	color: #2d3748;
	margin-bottom: 8px; /* Reduced margin-bottom from 10px to 8px */
	text-transform: uppercase;
	font-family: 'Montserrat', sans-serif;
}

.hiw-step-description {
	font-size: 14px;
	color: #718096;
	line-height: 1.5;
	/* Slightly reduced line-height for tighter spacing */
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
}

/* Responsive Design */
@media ( max-width : 991px) {
	.hiw-steps-container {
		flex-wrap: wrap;
		gap: 20px;
	}
	.hiw-step-card {
		width: 45%;
		min-height: 240px; /* Adjusted for tighter spacing */
	}
}

@media ( max-width : 767px) {
	.hiw-section-title {
		font-size: 28px;
	}
	.hiw-steps-container {
		flex-direction: column;
		align-items: center;
	}
	.hiw-step-card {
		width: 80%;
		min-height: 220px; /* Adjusted for tighter spacing */
		padding: 15px 10px; /* Further reduced padding for mobile */
	}
	.hiw-step-icon {
		width: 60px;
		height: 60px;
		margin-bottom: 8px; /* Reduced margin for mobile */
	}
	.hiw-step-number {
		width: 25px;
		height: 25px;
		font-size: 14px;
		line-height: 25px;
	}
	.hiw-step-title {
		font-size: 18px;
		margin-bottom: 6px; /* Reduced margin for mobile */
	}
	.hiw-step-description {
		font-size: 12px;
		line-height: 1.4; /* Adjusted for mobile */
	}
}

.faq2-section {
	padding: 60px 0;
	background: #f7fafc;
	text-align: center;
	font-family: 'Montserrat', sans-serif;
}

.faq2-header {
	font-size: 36px;
	font-weight: 700;
	color: #2d3748;
	margin-bottom: 40px;
	text-transform: uppercase;
	letter-spacing: 1px;
	position: relative;
}

.faq2-header::after {
	content: '';
	width: 60px;
	height: 4px;
	background: #2a9d8f;
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
}

.faq2-panel-group {
	max-width: 800px;
	margin: 0 auto;
	text-align: left;
}

.faq2-panel {
	background: #ffffff;
	border-radius: 10px;
	margin-bottom: 15px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	overflow: hidden;
}

.faq2-panel-heading {
	padding: 15px 20px;
	background: #ffffff;
	border-bottom: 1px solid #e2e8f0;
}

.faq2-panel-title {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	color: #2d3748;
}

.faq2-accordion-toggle {
	display: block;
	position: relative;
	padding-right: 30px;
	color: #2d3748;
	text-decoration: none;
	transition: color 0.3s ease;
}

.faq2-accordion-toggle:hover {
	color: #2a9d8f;
}

.faq2-toggle-icon {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 12px;
	height: 12px;
	background:
		url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%232a9d8f" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>')
		no-repeat center;
	background-size: contain;
	transition: transform 0.3s ease;
}

.faq2-accordion-toggle[aria-expanded="true"] .faq2-toggle-icon {
	transform: translateY(-50%) rotate(180deg);
}

.faq2-panel-collapse {
	overflow: hidden;
}

.faq2-panel-body {
	padding: 15px 20px;
	font-size: 14px;
	color: #718096;
	line-height: 1.6;
	background: #fafafa;
}

/* Responsive Design */
@media ( max-width : 767px) {
	.faq2-header {
		font-size: 28px;
	}
	.faq2-panel-title {
		font-size: 16px;
	}
	.faq2-panel-body {
		font-size: 12px;
		padding: 10px 15px;
	}
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

@media (max-width: 576px) {
    .productQuantityDiv .d-flex {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        gap: 8px !important;
    }
    .productQuantityDiv .form-control.text-center {
        width: 50px !important;
        padding: 5px !important;
        font-size: 14px !important;
    }
    .productQuantityDiv .btn {
        width: 35px !important;
        height: 35px !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 16px !important;
    }
    .productQuantityDiv .fa {
        font-size: 14px !important;
    }
    .productQuantityDiv .ml-3 {
        margin-left: 8px !important;
    }
}
.checkbox-row span {
			white-space: normal; /* Allow text to wrap */
			word-wrap: break-word; /* Break long words if needed */
		}
		@media (max-width: 768px) {
			.checkbox-row {
				flex-direction: column;
				align-items: flex-start;
				margin-bottom: 5px !important;
			}
			.checkbox-row label {
				margin-left: 4px;
				font-size: 0.9rem;
				line-height: 1.2; /* Improve readability for wrapped text */
			}
			.checkbox-row div {
				max-width: 100%;
				overflow-x: hidden;
			}
		}
		@media (min-width: 769px) {
			.checkbox-row label {
				max-width: 300px; /* Reasonable width for desktop */
			}
		}
