.basket-summary {
	background-color: white;
	color: #322332;
	padding: 18px;
	display: flex;
    justify-content: space-between;
	align-items: center;
	font-family: 'VM Circular Book', Arial, sans-serif;
	max-width: 1200px;
    flex-direction: row;
    margin: 20px auto 0 auto;
    border-radius: 32px;
    height: 68px;
}

.centre-align {
	justify-content: center !important;
}

.shadow {
	box-shadow: 0px 4px 30px 20px rgba(0, 0, 0, 0.1);
}

.grey-background {
	background-color: transparent;
	border-top: none !important;
    border-bottom: none !important
}

.rfs-address span {
	font-size: 18px;
}

.address_price, .price {
	display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;

}

button.change_address {
	font-size: 14px;
    font-family: 'VM Circular chat', Arial, sans-serif;
    border-bottom: 2px solid white;
    margin-left: 10px;
	margin-right: 15px;
    background: white;
    text-decoration: underline;
}

.basket-summary .back_button {
	background-color: white;
	border: 1px solid #322332;
	color: #322332;
}

.basket-summary .continue_button {
	background-color: #E10A0A;
	border: 1px solid #E10A0A;
	color: white;
}

.basket-summary .continue_button, .basket-summary .back_button {
	border-radius: 22px;
    padding: 10px 18px;
	font-family: 'VM Circular Book', Arial, sans-serif;
}

.priceVal {
	font-size: 24px !important;
}

.monthly-bill span, .one-off-cost span {
	font-size: 14px;
}

.desktop-basket {
	display: block;
}

.mobile-basket {
	display: none;
}

.basket-summary button:focus-visible {
	outline: #00d5ff 2px solid;
    outline-offset: 5px;
}



@media only screen and (max-width: 960px) {
	.basket-summary {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-around;
		padding: 12px 0;
	}

	.priceVal {
		font-size: 16px !important;
	}
	
	.monthly-bill span, .one-off-cost span {
		font-size: 11px;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	
	.rfs-address span {
		font-size: 12px;
		font-family: 'VM Circular Book', Arial, sans-serif;
		font-weight: 700;
	}
	
	.rfs-address button {
		font-size: 12px;
		border-bottom: 1px solid white;
		margin-left: 16px;
	}
	
	.monthly-bill {
		order: 3;
	}
	
	.one-off-cost {
		order: 4;
	}
	
	.monthly-bill, .one-off-cost {
		display: inline-block;
	}
	
	.rfs-address {
		display: block;
		width: 100%;
		text-align: right;
		order: 1;
		border-bottom: 1px solid #6F656F;
		padding: 0 10px 10px 10px;
		margin-bottom: 12px;
	}
	
	.desktop-basket {
		display: none;
	}

	.mobile-basket {
		display: block;
	}


}