body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

 .benefits-checkboxes label {
      margin-right: 20px;
      display: inline-block;
    }
    .dependents-container {
      margin-top: 10px;
    }
    .dependents-container select {
      margin-right: 10px;
    }
    .remove {
      color: red;
      cursor: pointer;
    }

.filter-container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      align-items: flex-end;
	margin: 3% 0;
    }

    .filter-container h2 {
      width: 100%;
      margin-bottom: 10px;
      color: #303d79;
    }

    .filter-container .filter-group {
      display: flex;
      flex-direction: column;
    }
     
  
    .filter-container .filter-group label {
      font-size: 14px;
      margin-bottom: 6px;
      color: #333;
    }

    .filter-container .filter-group select {
      padding: 8px 12px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 14px;
      min-width: 120px;
	  height: 35px !important;
	  cursor: pointer;
    }

    .btn-apply {
      padding: 10px 18px;
      background-color: #303d79;
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 14px;
      cursor: pointer;
      height: fit-content;
    }

   .btn-apply button:hover {
      background-color: #00afc9;
    }

    .btn-clear {
      padding: 10px 18px;
      background-color: white;
      color:  #303d79;
      border: 1px solid #303d79;
      border-radius: 8px;
      font-size: 14px;
      cursor: pointer;
      height: fit-content;
    }

/* Floating Modal Styling */
.floating-modal {
	width: 300px;
	min-height: 100px;
	position: fixed;
	top: 50%;
	right: 0; /* Keep at right edge */
	transform: translateX(100%); /* Initially hidden off-screen */
	background: #F4F9FB;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
	border-radius: 8px;
	padding: 10px 10px 20px 10px !important;
	z-index: 1000;
	overflow-y: auto;
	transition: transform 0.3s ease-in-out; /* Smooth sliding animation */
	font-family: Arial, sans-serif !important;
}

/* When modal is active (visible) */
.floating-modal.active {
	transform: translateX(0); /* Slide in */
}

.floating-modal h6 {
	margin: 0 !important;
	padding: 0 !important;
	font-size: 18px !important;
	color: #5C6B80;
	font-weight: bold;
}

.floating-modal .item {
	border: 1px solid #00AFC9;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 5px;
	font-size: 12px;
	margin: 15px 0;
	background-color: transparent;
}

/* Image wrapper */
.floating-modal .img-wrapper {
	width: 50px;
	height: 25px;
	padding: 1px;
	background-color: #fff;
	border-radius: 5px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0; /* Prevents shrinking if item has long title */
}

/* Image inside wrapper */
.floating-modal .img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: fit;
	display: block;
}



/* Product Info */
.floating-modal .info {
	flex-grow: 1;
	margin-left: 8px;
}

.floating-modal .info h4 {
	margin: 0 !important;
	padding: 0 !important;
	font-size: 13px !important;
	font-weight: bold;
	color: #5C6B80;
}

.floating-modal p {
	margin: 2px 0;
	color: #777;
	font-size: 11px;
}

/* Remove Button */
.floating-modal .remove-btn {
	background: none;
	border: none;
	color: red;
	font-size: 14px;
	cursor: pointer;
}

/* Price Styling */
.floating-modal .price {
	font-weight: bold;
	font-size: 13px;
	color: #333;
}

.floating-modal .compare-btn {
	width: 100%;
	background: #007bff;
	color: white;
	border: none;
	padding: 5px 10px;
	font-size: 14px;
	font-weight: bold;
	cursor: pointer;
	border-radius: 5px;
	margin-top: 10px;
}

.floating-modal .compare-btn:hover {
	background: #0056b3;
	color: white;
}

.compare-link {
	width: 100%;
	background: #007bff;
	color: white;
	border: none;
	padding: 10px;
	font-size: 12px;
	cursor: pointer;
	border-radius: 5px;
	margin-top: 10px;
	text-decoration: none;
	text-align: center;
}

.compare-link:hover {
	background: #0056b3;
}

/* Error message */
.error-message {
	color: #FF6B6B !important;
	margin: 5px 0;
	display: none;
	font-size: 0.6em !important;
}

.hidden {
	display: none;
}
.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);
	}
}
._px_wrapper {
	margin: -5% 0px 0px 0px !important;
}

._px_wrapper h2 {
	padding: 0 5%;
	color: #303d79;
	font-weight: bold;
}

._px_quotes {
	width: 100%;
	min-height: 100px;
	padding: 0 5%;
}

.form-section {
	display: flex;
	gap: 5px !important;
	background-color: #fff;
	margin-bottom: 10px;
	flex-direction: column;
	margin-bottom: 20px;
}

.results {
	width: 100%;
}

.form-section h4 {
	padding: 0 !important;
	margin: 0 !important;
	font-weight: bold;
	display: flex;
	justify-content: space-between;
	font-size: 17px;
}

.form-section h4 a {
	cursor: pointer;
	padding: 1% 3%;
	background-color: transparent;
	border: 1px solid #303d79;
	color: #303d79;
	border-radius: 8px;
	text-decoration: none;
	font-size: 0.5em;
}

.inp_checkbox label {
	cursor: pointer;
}

.form_details {
	font-size: 17px;
	color: #303d79;
}

.form_details span {
	font-size: 15px;
	text-decoration: underline;
	font-weight: bold;
	color: #00afc9;
}

._px_header {
	display: flex;
	height: 50px;
	align-items: center; /* Aligns items vertically */
	background-color: #303d79; /* Optional background */
	border: 0 none;
	padding: 0 20px; /* Optional padding */
	color: white;
	font-size: 15px;
	font-weight: bold;
}

._px_header > div {
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center; /* Centers text */
	padding: 0 10px; /* Optional padding */
}

/* Adjust width of each div manually */
._px_header > div:nth-child(1) {
	width: 3%;
} /* Adjust as needed */
._px_header > div:nth-child(2) {
	width: 15%;
}
._px_header > div:nth-child(3) {
	width: 15%;
}
._px_header > div:nth-child(4) {
	width: 27%;
}
._px_header > div:nth-child(5) {
	width: 11%;
}
._px_header > div:nth-child(6) {
	width: 18%;
}
._px_header > div:nth-child(7) {
	width: 12%;
}

._px_header > div:nth-child(7) button {
	background-color: transparent;
	border: 0 none;
	cursor: pointer;
	color: white;
	padding: 1%;
}

/* Remove border for last item */
._px_header > div:last-child {
	border-right: none;
}

._px_card {
	border-top: 4px solid #303d79;
	border-left: 1px solid gray;
	border-right: 1px solid gray;
	border-bottom: 1px solid gray;
	border-radius: 8px;
	height: auto;
	margin-bottom: 3%;
	display: flex;
	justify-content: center; /* Horizontal centering */
	align-items: center;
	gap: 5px;
	padding: 1%;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

._px_card:nth-child(1) {
	border-radius: 0px;
}

._px_card > div {
	flex: 1;
	text-align: center;
}

._px_card > div p {
	font-size: 15px;
}

._px_card > div:nth-child(1) {
	max-width: 30px !important;
}

._px_card > div:nth-child(1) label {
	display: flex;
	align-items: center;
	flex-direction: column;
}

._px_card > div:nth-child(2) {
	width: 90px !important;
	height: 55px !important;
	padding: 1%;
	display: flex;
	justify-content: center;
	align-items: center;
}

._px_card > div:nth-child(2) img {
	max-width: 100%;
	max-height: 100%;
}

._px_card > div:nth-child(3) {
	max-width: 300px !important;
}

._px_card > div:nth-child(4),
._px_card > div:nth-child(5),
._px_card > div:nth-child(6),
._px_card > div:nth-child(7) {
	max-width: 70px !important;
}

._px_card > div:nth-child(3),
._px_card > div:nth-child(4),
._px_card > div:nth-child(5),
._px_card > div:nth-child(6),
._px_card > div:nth-child(7),
._px_card > div:nth-child(8) {
	padding-top: 2%;
	display: flex;
	justify-content: center;
	align-items: center;
}
._px_card > div:nth-child(8) {
	max-width: 150px !important;
}

._px_card > div:nth-child(9) {
	max-width: 150px !important;
}

._px_card > div:nth-child(9) span:nth-child(1) {
	font-size: 25px;
	color: #00b0c9;
	font-weight: bold;
}

._px_card > div:nth-child(10) a {
	padding: 5% 8%;
	color: white;
	background-color: #303d79;
	border: 0 none;
	border-radius: 3px;
	cursor: pointer;
	text-decoration: none;
}

._px_card input[checkbox] {
	cursor: pointer !important;
}

._px_icon {
	color: #273274 !important;
	text-align: center;
	font-weight: bold;
}