/** -------------------- **/
/* Orders */

table.woocommerce-table--order-details.shop_table td.product-name {
	display: flex;
	gap: 9px;
}
/* Variant for Bundles */
table.woocommerce-table--order-details.shop_table td.product-name .bundled-product-name.bundled_table_item_indent {
	display: flex;
	gap: 9px;
}

table.woocommerce-table--order-details .order-table-image {
	background-color: #fff;
}
table.woocommerce-table--order-details .order-table-image img {
	aspect-ratio: 1 / 1;
	object-fit: scale-down;
	height: 75px;
	width: 50px;
	max-width: 50px;
}
table.woocommerce-table--order-details.shop_table td.product-name {

	&& a {
		font-size: 1rem;
		line-height: 1.333rem;
	}

	&& .order-table-product-name > a {
		display: inline-block;
		font-family: var(--theme-font-family-brand-serif);
	}

}


.shipdate-selected-container {
	width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.shipdate-selected-container h4 {
	margin-bottom: 0;
}

.shipdate-selected-container a {
	text-decoration: underline;
}


/* ******************************** */
/* SWE Buy Again order page widgets */
/* ******************************** */

table.woocommerce-table--order-details.shop_table td.product-name .swe-buy-again-container {

	display: flex;
	gap: 4px 7px;
	flex-wrap: wrap;
	align-items: baseline;
	margin: 2px 0 12px;

	&& form.cart.ajax_add_to_cart {
		display: flex;
		gap: 6px 10px;
		white-space: nowrap;
	}

	&& a.button.swe-buy-again-options-button {
		font-size: .9rem;
		color: var(--theme-palette-color-3);
		border: 1px solid var(--theme-palette-color-3);
		background-color: #fff;
		padding-left: 14px;
		padding-right: 14px;
	}
	&& a.button.swe-buy-again-options-button:link, && a.button.swe-buy-again-options-button:visited {
	}
	&& a.button.swe-buy-again-options-button:hover, && a.button.swe-buy-again-options-button:active {
		border-color: var(--theme-palette-color-2);
		color: var(--theme-palette-color-2);
;
	}

}


