html, body{
	min-height: 100vh;
	min-width: 100vw;
	max-width: 100vw;
	text-align: left;
	font-size: 14px;
	font-family: 'montserratlight', sans-serif;
	color: #4c4c4d;
	margin: 0;
	border: 0;
	padding: 0;
	background-color: #efefef;
	-webkit-font-smoothing: antialiased !important;
}

a{
	text-decoration: underline;
	color: #ff7e00;
}
a:active{
	text-decoration: underline;
	color: #de2674;
}

a:hover{
	color: #de2674;
	text-decoration: none;
}

.clear{
	clear: both;
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}

.flexContainer{
	display: -webkit-flex;
	display: flex;
	box-sizing: border-box;
}
.flexContainer.wrap{
	flex-wrap: wrap;
	justify-content: space-between
}

.flexContainer.columns{
	flex-direction: column;
}

.flexItem{
	flex: 1;
}

.innerModal{
	padding: 20px;
}

.modalPopup .title{
	text-align: center;
	font-family: 'montserratlight';
	font-size: 24px;
	line-height: 28px;
	color: #000;
	margin: 0 0 39px 0;
	padding: 0;
}

.modalPopup .subtitle{
	text-align: center;
	font-family: 'montserratlight';
	font-size: 18px;
	line-height: 22px;
	color: #fb6b5e;
	margin: 0;
	padding: 10px 0;
}

.modalPopup .buttonContainer{
	width: 300px;
	text-align: center;
	margin: 0 auto;
	padding: 0;
}

.modalPopup .button1{
	border: 2px solid #fff;
	background: #cdcdcd; 
	padding: 12px 22px; 
	margin: 0 5px 0 0;
	color: #4d4d4d; 
	text-decoration: none;
	-moz-border-radius: 4px; 
	-webkit-border-radius: 4px; 
	border-radius: 4px;
	cursor: pointer;
	-webkit-transition: background-color 0.4s ease-in-out;
	-moz-transition: background-color 0.4s ease-in-out;
	transition: background-color 0.4s ease-in-out;
}

.modalPopup .button1:hover{
	color: #fff;
	background: #999999;
	text-decoration: none;
}

.modalPopup .button2{
	border: 2px solid #fff;
	background: rgb(251,75,57);
	background: -moz-linear-gradient(left,  rgba(251,75,57,1) 0%, rgba(222,38,116,1) 100%);
	background: -webkit-linear-gradient(left,  rgba(251,75,57,1) 0%,rgba(222,38,116,1) 100%);
	background: linear-gradient(to right,  rgba(251,75,57,1) 0%,rgba(222,38,116,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fb4b39', endColorstr='#de2674',GradientType=1 );
	padding: 12px 22px;  
	margin: 0 0 0 5px;
	color: #fff; 
	text-decoration: none;
	-moz-border-radius: 4px; 
	-webkit-border-radius: 4px; 
	border-radius: 4px;
	cursor: pointer;
	-webkit-transition: background-color 0.4s ease-in-out;
	-moz-transition: background-color 0.4s ease-in-out;
	transition: background-color 0.4s ease-in-out;
}

.modalPopup .button2:hover{
	background: #ff7800;
	text-decoration: none;
}

.modalPopup .changeProductButton{
	display: inline-block;
	width: 200px;
	margin: 0;
}

.warning-banner{
	background-color:	#FEEFB3;
	border:				1px solid transparent;
	border-color:		#FAEBCC;
	border-radius:		.5em;
	box-shadow:			0px 1px 1px rgba(0, 0, 0, 0.05);
	color:				#8A6D3B;
	margin-bottom:		20px;
	padding:			10px 15px;
}

.warning-banner > .warning-header{
	font-weight:		bold;
	text-align:			center;
}

.warning-banner > .warning-message{
	text-align:			center;
}

.success-banner{
	background-color:	#DFF2BF;
	border:				1px solid transparent;
	border-radius:		.5em;
	box-shadow:			0px 1px 1px rgba(0, 0, 0, 0.05);
	color:				#4F8A10;
	margin-bottom:		20px;
	padding:			10px 15px;
}

.success-banner > .success-header{
	font-weight:		bold;
	text-align:			center;
}

.success-banner > .success-message{
	text-align:			center;
}

.error-banner{
	background-color:	#FFBABA;
	border:				1px solid transparent;
	border-radius:		.5em;
	box-shadow:			0px 1px 1px rgba(0, 0, 0, 0.05);
	color:				#D8000C;
	margin-bottom:		20px;
	padding:			10px 15px;
}

.error-banner > .error-header{
	font-weight:		bold;
	text-align:			center;
}

.error-banner > .error-message{
	text-align:			center;
}

.info-banner{
	background-color:	#BDE5F8;
	border:				1px solid transparent;
	border-radius:		.5em;
	box-shadow:			0px 1px 1px rgba(0, 0, 0, 0.05);
	color:				#00529B;
	margin-bottom:		20px;
	padding:			10px 15px;
}

.info-banner > .info-header{
	font-weight:		bold;
	text-align:			center;
}

.info-banner > .info-message{
	text-align:			center;
}

.hidden{
	display: none;
}

.pounds:before, .poundsRound:before{
	content:			"£";
}

.percent:after{
	content:			"%";
}
