
.basket_full{
    opacity: 0;
    transition:var(--transition);
}

.basket_populated .basket_full{
    opacity: 1;
    transition:var(--transition);
}


.was_basket_page{
    padding:0 var(--gap);
}

.basket_grid{
    display: grid;
    grid-template-columns: 1fr auto auto auto 100px;
    row-gap:var(--gap-small);
    margin-top: 2rem;
	overflow-x: auto;
}

.basket_grid > div{
    border-bottom:1px solid var(--pale-dark, #CCC9BC);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
}

.br_heading{
    color: var(--dark, #181818);
    font-family: var(--heading-font);
    font-size: var(--step-0);
    font-weight: 600;
}


.br_product_link{
    display: flex;
    align-items: center;
    gap:var(--gap-small)
}

.brpl_image{
    width:52px;
}

.brpl_placeholder{
    width:52px;
    height:73px;
    background:url('/site/assets/images/icons/bundle.svg') no-repeat center center;
    background-size: 52px 73px;
}

.br_quant{
    text-align: center;
}

.br_quant input{
    width: 52px;
}

.br_cost{
    text-align: right;
    justify-content: end;
}

.br_remove{
    text-align: center;
    justify-content: center;
}

.total_table{
    display: flex;
    justify-content: end;
    max-width:45%;
    margin-left:auto;
}

.tt_row{
    padding: 0.5rem;
    border-bottom:1px solid var(--pale-dark, #CCC9BC);
    display: grid;
    grid-template-columns: 200px 1fr;
    align-items: center;
}

.total_label{
    font-weight: 700;
    line-height: 43.585px; /* 272.406% */
    letter-spacing: 0.32px;
    text-transform: uppercase;
}

.total_value{
text-align: right;

font-size: var(--step-0);
font-weight: 700;
}


.wp_form{
    display: flex;
    flex-direction: column;
    gap: var(--gap-small);
}

.wp_form label, 
.flabel{
    display: block;
    font-family: var(--heading-font);
    font-weight: 700;
    margin:4px 0 6px;
}

.wp_checkout{
    min-height:100px;
    background: url('/site/assets/images/spinner.svg') no-repeat center center;
}

input[type=file]{
    padding: 1rem;
    border:2px dotted var(--grey);
}

progress:not([value]) {
    opacity: 0;
    transition:var(--transition);
}

.checkout_button_row{
    display: flex;
    padding:var(--gap) 0;
    justify-content: end;
}

/** our own basket form now does not use FormBuilder */

.basket_form_container{
	display: flex;
	justify-content: end;
	padding-block: var(--gap);
}
.basket_form{
	max-width: 720px;
	margin-left: auto;
	display: flex;
	flex-direction: column;
	gap: var(--gap-small);
}

.shipping_container{
    display: flex;
    flex-direction: column;
    gap: var(--gap-small);
	border:0;
	font-size: 14px;
	line-height: 1.1;

	legend{
		font-weight: var(--strong);

		margin-bottom: 4px;
	}
}
.bf_meta{
	display: flex;
	flex-direction: column;
	gap: var(--gap-small);
	width: 300px;
	padding: var(--gap-small);
	background-color: var(--issue-light);
	font-size: 14px;
	line-height: 1.1;

	.faux_label{
		display: block;
		margin-bottom: 4px;
		font-weight: var(--strong);
	}

	hr{
		background-color: var(--pale);
		margin: 0;
	}

	.bfd_input{
		background: url('/site/assets/images/icons/pound.svg') no-repeat #ffffff 4px center;
		background-size: 1em 1em;
		padding: 4px 4px 4px 1.8em;
		border:1px solid var(--dark);
		border-radius: 4px;
		width:120px;
	}
}