.checkout_container
{
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
	margin-top: 1rem;
}

.checkout_left,
.checkout_right
{
	flex: 1;
	min-width: 14rem;
}

.secure_info
{
	margin-bottom: 1rem;
	font-size: 1rem;
	color: #4CAF50;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.widget_box
{
	border: 1px solid #ccc;
	padding: 1rem;
	margin-bottom: 1.5rem;
	box-shadow: 0 0.0625rem 0.25rem rgba(0, 0, 0, 0.06);
}

.address_row
{
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.25rem;
}

#address_text
{
	display: block;
}

.deliver_to
{
	margin-top: 0.5rem;
	font-weight: bold;
}

.separator
{
	height: 0.0625rem;
	background: #e0e0e0;
	margin: 1rem 0;
}

.add_new
{
	color: #007bff;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 0.375rem;
}

.card_selected
{
	
}

.cardholder
{
	font-size: 0.81rem;
	color: #888;
	margin-top: 0.25rem;
}

.summary_line
{
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

.total_amount
{
	font-size: 1.5rem;
}

/* Purchase Details */
.product_box
{
	border: 1px solid #ccc;
	padding: 1rem;
	margin-bottom: 1.5rem;
	box-shadow: 0 0.0625rem 0.25rem rgba(0, 0, 0, 0.06);
}

.product_row
{
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.product_img
{
	width: 5rem;
	height: 5rem;
	object-fit: cover;
	flex-shrink: 0;
}

.product_info
{
	flex: 1;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.product_top
{
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.product_name
{
	font-weight: bold;
	font-size: 1rem;
}

.product_price
{
	text-align: right;
}

.current_price
{
	font-size: 1rem;
	color: #000;
}

.old_price
{
	font-size: 0.85rem;
	color: #888;
	text-decoration: line-through;
}

.product_qty
{
	font-size: 0.875rem;
	color: #666;
	margin-top: 0.25rem;
}

/* While: > 700 */
@media (min-width: 700px)
{
	.checkout_right
	{
		margin-left: 2.5rem;
	}
}
