.basket-summary {
	background-color: #322332;
	color: white;
	padding: 18px 0 18px 0;
	display: flex;
    justify-content: space-evenly;
	align-items: center;
	font-family: 'VM Circular Whisper', Arial, sans-serif;
}

.rfs-address span {
	font-size: 18px;
}

.rfs-address button {
	font-size: 14px;
	font-family: 'VM Circular Whisper', Arial, sans-serif;
	border-bottom: 2px solid white;
	margin-left: 10px;
}

.basket-summary button {
	background-color: #322332;
	color: white;
}

.open-basket {
	font-family: 'VM Circular Chat', Arial, sans-serif;
	font-size: 17px;
}

.open-basket button:before {
    content: url(/content/dam/www-virginmedia-ie/img/basket-cart-icon-white.svg);
    position: relative;
    right: 13px;
    top: 1px;
}

.priceVal {
	font-size: 30px !important;
}

.monthly-bill span, .one-off-cost span {
	font-size: 14px;
}

.desktop-basket {
	display: block;
}

.mobile-basket {
	display: none;
}



@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;
	}
	
	.open-basket {
		order: 2;
	}
	
	.open-basket button {
		font-size: 12px;
		border-radius: 22px;
		border: 1px solid white;
		height: 33px;
		text-align: center;
		width: 110px;
		padding-bottom: 4px;
	}
	
	.open-basket button:before {
		content: url(/content/dam/www-virginmedia-ie/img/basket-cart-mobile.svg);
		top: 4px;
		right: 10px;
	}
	
	.open-basket button:after {
	    content: url(/content/dam/www-virginmedia-ie/img/down-icon-white-arrow.svg);
		position: relative;
		left: 8px;
		bottom: 1px;
	}
	
	.monthly-bill {
		order: 3;
	}
	
	.one-off-cost {
		order: 4;
	}
	
	.monthly-bill, .one-off-cost, .open-basket {
		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;
	}


}



