/* Shop Page Styling */
body.archive {
  background-color: #f5f5f5;
}
.term-description {
	margin-bottom: 30px;
}

/* Shop page heading */
.woocommerce-products-header__title.page-title {
  font-size: 2em;
  margin-bottom: 1rem;
  color: #253773;
}

/* Product card styling */
.woocommerce ul.products li.product {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 20px !important;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.3s ease;
  box-sizing: border-box;
}

.woocommerce ul.products li.product:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.woocommerce ul.products li.product img {
  margin: 0 auto 20px auto;
  max-height: 180px;
  object-fit: contain;
}
.need-help-tab input,
.need-help-tab textarea {
	border: 1px solid #CCCCCC;
	width: 100%;
	padding: 10px 15px;
	border-radius: .25rem;
	margin-bottom: 20px;
	margin-bottom: 20px;
}
#need-help-form {
	margin: 30px auto 30px auto;
  	width: 80%;
  	text-align: center;
}
#tab-description table {
	width: 100%;
}


/* Product Title */
.woocommerce ul.products li.product h2.woocommerce-loop-product__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1C1747;
  margin: 10px 0;
}

/* Price - override with !important */
.woocommerce ul.products li.product .price {
  font-size: 1rem;
  color: #253773 !important;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Add to cart button */
.woocommerce ul.products li.product .button {
  background-color: #EC1E24;
  color: #fff;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.woocommerce ul.products li.product .button:hover {
  background-color: #b5101c;
  color: #fff;
}

/* Sale badge */
.woocommerce span.onsale {
  background-color: #253773 !important;
  color: #fff;
  border-radius: 50%;
  padding: 0.5em 0.75em;
  font-size: 0.75rem;
  font-weight: 700;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
  min-width: 2.5em;
  min-height: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-sizing: content-box; 
}
.woocommerce-ordering select.orderby {
  border: 1px solid #CCCCCC;
  width: 100%;
  padding: 10px 15px;
  border-radius: 0.25rem;
  background: #fff;
  color: #333;
  font-size: 1rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23666' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px 16px;
}

.woocommerce-ordering {
  max-width: 250px;
  margin-bottom: 30px;
}
/* Quantity Input */
.summary.entry-summary .quantity input.qty {
  border: 1px solid #CCCCCC;
  width: 100%;
  max-width: 50px;
  padding: 5px 10px;
  border-radius: .25rem;
  font-size: 1rem;
  min-height: 40px;
  margin-right: 0;
}
/* Add to Cart Button */
.single_add_to_cart_button.button {
  background-color: #EC1E24;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin-left: 1rem;
  border-radius: 4px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.3s ease;
}
.single_add_to_cart_button.button:hover {
  background-color: #b5101c;
  color: #fff;
}
/* Price Color */
.summary.entry-summary .price,
.summary.entry-summary .price .woocommerce-Price-amount {
  color: #253773 !important;
}
/* Force Add to Cart Button Styling */
.woocommerce div.product form.cart .button.single_add_to_cart_button {
  background-color: #EC1E24 !important;
  color: #fff !important;
  border: none !important;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
.woocommerce div.product form.cart .button.single_add_to_cart_button:hover {
  background-color: #b5101c !important;
  color: #fff !important;
}
.wc-block-cart .wc-block-cart__submit-container {
	margin-top: 30px;
}

/* My Account
--------------------------------------------------*/
body.woocommerce-account {
  background-color: #f5f5f5;
}

/* White content box */
.woocommerce-account .woocommerce {
  background: #fff;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-wrap: wrap;
}

/* Navigation menu */
.woocommerce-MyAccount-navigation {
  width: 25%;
  padding-right: 30px;
  border-right: 1px solid #eee;
}

.woocommerce-MyAccount-navigation ul {
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid #eee;
}

.woocommerce-MyAccount-navigation ul li {
  border-bottom: 1px solid #eee;
}

.woocommerce-MyAccount-navigation ul li a {
  display: flex;
  align-items: center;
  padding: 12px 10px;
  color: #333;
  font-weight: 500;
  border-radius: 0;
  transition: all 0.3s ease;
}

.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li a:hover {
	border-color: #EC1E24;
	color: #EC1E24
}

.woocommerce-MyAccount-navigation ul li a:before {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: 12px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.woocommerce-MyAccount-navigation ul li a:hover:before {
  opacity: 1;
}

/* Icon mappings */
.woocommerce-MyAccount-navigation-link--dashboard a:before {
  content: "\f3fd";
}
.woocommerce-MyAccount-navigation-link--orders a:before {
  content: "\f291";
}
.woocommerce-MyAccount-navigation-link--downloads a:before {
  content: "\f1c6";
}
.woocommerce-MyAccount-navigation-link--edit-address a:before {
  content: "\f015";
}
.woocommerce-MyAccount-navigation-link--payment-methods a:before {
  content: "\f09d";
}
.woocommerce-MyAccount-navigation-link--edit-account a:before {
  content: "\f007";
}
.woocommerce-MyAccount-navigation-link--customer-logout a:before {
  content: "\f2f5";
}

/* Account content area */
.woocommerce-MyAccount-content {
  width: 75%;
  padding-left: 30px;
}

.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
  color: #253773;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.woocommerce-MyAccount-content a {
  color: #EC1E24;
  text-decoration: underline;
}

.woocommerce-MyAccount-content a:hover {
  color: #b5101c;
}
.woocommerce form .form-row .input-text, .woocommerce form .form-row select {
	border-color: #CCCCCC !important;
}


/* Clearfix */
.woocommerce-account .woocommerce::after {
  content: "";
  display: table;
  clear: both;
}

/* Cart Page
--------------------------------------------------*/
body.woocommerce-cart {
  background-color: #f5f5f5;
  padding-top: 40px;
}

/* White card for full cart layout */
body.woocommerce-cart .wp-content {
  background: #fff;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
body.woocommerce-cart .wp-content ul li::before {
	display: none;
}
body.woocommerce-cart .wp-content ul li {
	padding: 0;
}
body.woocommerce-cart .checkout-button {
	background-color: #EC1E24 !important;
}
body.woocommerce-cart .checkout-button:hover {
	background-color: #B5101C !important;
}



body.woocommerce-cart .upsell-cart-wrapper {
	display: flex;
	flex-wrap: wrap;
}
body.woocommerce-cart .upsell-box {
	flex: 1 1 100%;
	border: 1px solid #e1e1e1;
	padding: 1.5rem;
	border-radius: 6px;
	margin-right: 20px;
}
body.woocommerce-cart .upsell-inner {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}
body.woocommerce-cart .upsell-image img {
	max-width: 150px;
	height: auto;
}
body.woocommerce-cart .upsell-content {
	flex: 1;
}
body.woocommerce-cart .upsell-box h3 {
	margin: 0 0 0.5rem;
	font-size: 1.2rem;
}
body.woocommerce-cart .upsell-box .upsell-description {
	margin: 0 0 1rem;
	font-size: 0.95rem;
}
body.woocommerce-cart .upsell-box .upsell-price {
	font-weight: bold;
	font-size: 1.1rem;
	margin-bottom: 1rem;
}


/* Cart totals block */
.wp-block-woocommerce-cart-order-summary-block {
  background: #fff;
  border: 1px solid hsla(0, 0%, 7%, 0.11);
  border-radius: 5px;
  padding: 30px;
  margin-top: 20px;
}

/* Heading */
.wp-block-woocommerce-cart-order-summary-heading-block,
.wp-block-woocommerce-cart-order-summary-block h2 {
  font-size: 1.5rem;
  color: #253773;
  margin-bottom: 1rem;
}

/* Totals */
.wc-block-components-totals-item__label {
  font-weight: 600;
  color: #333;
}

.wc-block-components-totals-item__value,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  font-weight: bold;
  color: #253773;
  font-size: 1.1rem;
}

/* Need Help Installation section */
.need-help-installation .wc-block-cart-item__image img {
	max-width: 150px;
}
	
.wp-block-woocommerce-empty-cart-block li.wc-block-grid__product:before {
	display: none;
}

/* Proceed to Checkout Button */
.wc-block-cart__submit-button {
  background-color: #EC1E24 !important;
  color: #fff !important;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  display: inline-block;
  text-align: center;
  transition: background-color 0.3s ease;
}

.wc-block-cart__submit-button:hover {
  background-color: #b5101c !important;
  color: #fff !important;
  text-decoration: none;
}

.wc-block-cart__submit-button .wc-block-components-button__text {
  margin: 0;
}

/* Checkout Page
--------------------------------------------------*/
body.woocommerce-checkout {
  background-color: #f5f5f5;
}

/* Container */
.page-template-page-checkout .woocommerce {
  background: #fff;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
body.woocommerce-checkout .wp-content ul li::before {
	display: none;
}
body.woocommerce-checkout .wp-content ul li {
	padding: 0;
}

/* Headings */
.wc-block-components-title {
  font-size: 1.5rem;
  color: #253773;
  margin-bottom: 1rem;
}

/* Sub text (descriptions) */
.wc-block-components-checkout-step__description {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* Input Fields */
.wc-block-components-text-input input,
.wc-blocks-components-select select,
.wc-block-components-address-form input,
.wc-block-components-address-form select,
.wc-block-components-textarea  {
  border: 1px solid #CCCCCC !important;
  width: 100%;
  padding: 10px 15px;
  border-radius: 0.25rem;
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Labels */
.wc-block-components-text-input label,
.wc-blocks-components-select__label {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
  color: #253773;
}

/* Totals */
.wc-block-components-totals-item__label {
  font-weight: 600;
  color: #333;
}
.wc-block-components-totals-item__value,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  font-weight: bold;
  color: #253773;
  font-size: 1.1rem;
}

/* Place Order Button */
.wc-block-components-checkout-place-order-button {
  background-color: #EC1E24 !important;
  color: #fff !important;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  display: inline-block;
  text-align: center;
  transition: background-color 0.3s ease;
}
.wc-block-components-checkout-place-order-button:hover {
  background-color: #b5101c !important;
  color: #fff !important;
  text-decoration: none;
}

/* Return to Cart Link */
.wc-block-components-checkout-return-to-cart-button {
  display: inline-flex;
  align-items: center;
  color: #253773;
  margin-right: 20px;
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.wc-block-components-checkout-return-to-cart-button:hover {
  color: #EC1E24;
}
.block-components-text-input input[type="email"] {
	border-color: #CCCCCC;
}
.wc-block-checkout__sidebar .wc-block-components-product-name {
	text-align: left;
	text-shadow: none;
}
.wp-block-button__link {
  color: #fff;
  background-color: #EC1E24 !important;
  border-radius: 6px;
  text-decoration: none;
  padding: 12px 24px;
  font-size: 1.125em;
  font-weight: 600;
  border: none;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.wp-block-button__link:hover {
  background-color: #b5101c !important;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.12);
  color: #fff;
}

/* Consent link */
.marketing-consent input[type="checkbox"] {
	-moz-appearance: none;
	appearance: none;
	background-color: #fff;
	border: 1px solid rgba(25, 23, 17, 0.48);
	border-radius: 4px;
	box-sizing: border-box;
	font-size: 1em;
	height: 1.5em;
	width: 1.5em;
	min-height: 1.5em;
	min-width: 1.5em;
	margin: 0 1em 0 0;
	overflow: hidden;
	vertical-align: middle;
	position: relative;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}
.marketing-consent label {
	align-items: flex-start;
	cursor: pointer;
	display: inline-flex;
	font-size: 0.875em;
	margin-bottom: 0 !important;
	position: relative;
}
.marketing-consent svg {
	display: none;
	position: absolute;
	left: 0.25em;
	width: 1em;
	height: 1em;
	pointer-events: none;
	margin-left: 0 !important;
	margin-right: 0 !important;
}
.marketing-consent input[type="checkbox"]:checked + svg {
	display: block;
}
.marketing-consent .checkbox-label {
	line-height: 1.4;
}
.marketing-consent {
	margin-bottom: 1.5em;
}
.woocommerce button.button.alt {
	background-color: #EC1E24 !important;
}

/* Order Received
--------------------------------------------------*/
.woocommerce-order {
	background: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.woocommerce-order-received .woocommerce-order-overview li:before {
	display: none;
}

/* Shopping Cart Widget
--------------------------------------------------*/
#shopping-cart {
	position: relative;
}
#shopping-cart:hover {
	cursor: pointer;
}
#shopping-cart:hover .dropdown-menu-mini-cart {
	display: block;
}
ul.dropdown-menu-mini-cart {
    position: absolute;
    top: 60px;
	right: 0;
    width: 280px;
    display: none;
	z-index: 999;
	background-color: #FFFFFF;
	box-shadow: 0px 8px 15px rgba(0,0,0,0.1);
	color: #1C1747;
	padding: 15px 0;
}
a.dropdown-back:focus,
a.dropdown-back:hover {
	text-decoration: none !important;
}
ul.woocommerce-mini-cart {
	margin: 0;
	padding: 0;
    max-height: 280px;
    overflow-y: auto;
}
ul.dropdown-menu-mini-cart li {
	list-style: none;
	position: relative;
	/* float: left; Not sure why this was added */ 
} 
ul.woocommerce-mini-cart a.remove {
    display: block;
    font-size: 1.5em;
    height: 1em;
    width: 1em;
    text-align: center;
    line-height: 1;
    border-radius: 100%;
    color: #ed1f24 !important;
    text-decoration: none;
    font-weight: 700;
    border: 0;
	position: absolute;
	top: 10px;
	right: 10px;	
}
ul.woocommerce-mini-cart a.remove:hover {
    color: #fff !important;
    background: #ed1f24;
}
ul.woocommerce-mini-cart img.attachment-woocommerce_thumbnail {
	position: absolute;
	left: 15px; 
	top: 15px;
    width: 50px !important;
    height: auto;
    box-shadow: none;
}
ul.woocommerce-mini-cart li {
	padding: 10px 25px 10px 85px !important;
	float: left;
	width: 100%;
}
.woocommerce-mini-cart-item a {
	display: block;
	float: left;
}
ul.woocommerce-mini-cart li a {
	font-size: 14px;
	text-align: left;
	color: #253773 !important;
}
.woocommerce-mini-cart__total {
	margin-top: 10px;
	border-top: 1px solid #FFFFFF;
	padding: 10px 15px;
	float: left;
	width: 100%;
}
.woocommerce-mini-cart .woocommerce-Price-amount {
	margin-left: 0 !important;
	color: #253773 !important;
}
.woocommerce-mini-cart__total .woocommerce-Price-amount {
	float: right;
	color: #253773 !important;
}
.woocommerce-mini-cart__total .woocommerce-Price-currencySymbol,
.woocommerce-mini-cart .woocommerce-Price-currencySymbol {
	color: #253773 !important;
}
.woocommerce-Price-amount bdi {
	font-weight: bold;
}
ul.woocommerce-mini-cart li .quantity {
	display: block;
	float: left;
	clear: both;
	margin-left: 0 !important;
	font-size: 12px;
	color: #253773 !important;
}
.woocommerce-mini-cart__buttons {
	float: left;
	padding: 0 15px;
	width: 100%;
}
.woocommerce-mini-cart__buttons a.button {
  	display: flex;
  	align-items: center;
  	justify-content: center;
	text-transform: uppercase;
	padding: 12px 24px;
	color: #253773 !important;
	width: 100% !important;
	transition: background 0.5s ease;
}
.woocommerce-mini-cart__buttons a.button:hover {
	background: #253773 !important;
	color: #FFFFFF !important;
	text-decoration: none;
}
.woocommerce-mini-cart__buttons a.checkout {
	margin-top: 5px !important;
	background: #253773 !important;
	color: #FFFFFF !important;
}
.woocommerce #respond input#submit:hover,
.woocommerce-mini-cart__buttons a.checkout:hover {
	-webkit-box-shadow: 0 5px 10px 0 rgba(0,0,0,.3),inset 0 0 230px rgba(0,0,0,.1);
	box-shadow: 0 5px 10px 0 rgba(0,0,0,.3),inset 0 0 230px rgba(0,0,0,.1);
}
.woocommerce-mini-cart__empty-message {
	padding: 15px 15px 0 15px !important;
}

/* Page Numbers */
.woocommerce nav.woocommerce-pagination ul {
    display: flex !important;        
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 30px auto;
    border: none !important;         
    white-space: normal !important;  
    list-style: none;
    clear: none;
}
.woocommerce nav.woocommerce-pagination ul li {
    float: none !important;
    display: inline-flex !important;
    border-right: none !important;
    overflow: visible !important;
    margin: 0;
    padding: 0;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    width: 48px;
    height: 48px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: #ed1f24;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1em;
    font-weight: normal;
    margin: 0;
    padding: 0;
    line-height: 1; 
}
.woocommerce nav.woocommerce-pagination ul li span.current {
    background-color: #B5101C !important;
	color: #FFFFFF !important;
    font-weight: bold;
}
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li a:focus {
    background-color: #B5101C !important;
	color: #FFFFFF !important;
	text-decoration: none;
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) { 	
	
	/* Cart page */
	body.woocommerce-cart .upsell-inner {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	body.woocommerce-cart .upsell-content {
		text-align: left;
		margin-top: 1rem;
		width: 100%;
	}
	
	
}

/* ---------------------------------------------------------
   PRODUCT BUNDLES 
   --------------------------------------------------------- */
.bundle_form.layout_tabular table.bundled_products {
    border: 0;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}
.bundle_form.layout_tabular table.bundled_products thead {
    display: none;
}
.bundle_form.layout_tabular table.bundled_products tbody {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.bundle_form.layout_tabular table.bundled_products tr.bundled_product {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 14px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    background: #fff;
}
.bundled_item_images_col {
    flex: 0 0 55px !important;
    max-width: 55px !important;
}
td.bundled_item_images_col {
	width: 10% !important;
	min-width: 50px !important;
}
.bundled_item_price_quantity {
	display: none;
}
.bundled_item_details_col {
    flex: 1 1 auto;
    min-width: 0;
}
.bundled_product_title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}
.bundled_product_excerpt {
    display: none !important;
}
.bundled_item_qty_col {
    flex: 0 0 auto;
    margin-left: auto;               
    display: flex;
    flex-direction: row;               
    align-items: center;
    justify-content: flex-end;
    gap: 14px;                         
    text-align: right;
}
table.bundled_products td.bundled_item_col {
	padding: 0 !important;
}
.bundled_item_qty_col .quantity {
    display: inline-flex;
    align-items: center;
    gap: 0;
}
.bundled_products .bundled_item_qty_col .quantity input.qty {
	margin-right: 0;
	width: 40px;
}
.bundled_item_qty_col .qty-minus,
.bundled_item_qty_col .qty-plus {
    border: 1px solid #ccc;
    background: #f7f7f7;
    padding: 6px 10px;
    font-size: 14px;
    cursor: pointer;
    line-height: 1;
}
.bundled_item_qty_col .qty-minus {
    border-radius: 4px 0 0 4px;
}
.bundled_item_qty_col .qty-plus {
    border-radius: 0 4px 4px 0;
}
.bundled_item_qty_col input.qty {
    width: 55px;
    height: 32px;
    border-left: 0;
    border-right: 0;
    text-align: center;
    padding: 6px;
    font-size: 14px;
    margin: 0;
}
.bundled_item_qty_col .bundled_item_cart_details {
    margin: 0;
}
.bundled_item_qty_col .bundled_item_cart_details .price {
    display: inline-block;
    font-size: 16px !important;
    font-weight: 500;
    white-space: nowrap;
}
.bundle_wrap .bundle_price .price {
    font-size: 1.2rem;
    font-weight: 700;
}
@media (max-width: 768px) {
    .bundle_form.layout_tabular table.bundled_products tr.bundled_product {
        flex-direction: row;
        align-items: flex-start;
    }
    .bundled_item_images_col {
        flex: 0 0 50px !important;
        max-width: 50px;
    }
    .bundled_item_qty_col {
        margin-left: auto;             
    }
}
.bundled_item_qty_col .quantity {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 0;
    white-space: nowrap;
}
.bundled_item_qty_col .qty-minus,
.bundled_item_qty_col .qty-plus {
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    min-width: 32px;
    height: 32px;
    padding: 0 !important;
    line-height: 1;
}
.bundled_item_qty_col .quantity input.qty {
    appearance: textfield !important;
    -moz-appearance: textfield !important;
}
.bundled_item_qty_col .quantity input.qty::-webkit-inner-spin-button,
.bundled_item_qty_col .quantity input.qty::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
    margin: 0;
}
.bundled_item_qty_col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    min-width: 100px !important;
}