
/* #Reset & Basics 
================================================== */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,  q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
select::-ms-expand {
    display: none;
}


/* #Basic Styles
================================================== */

html {
	/*scroll-behavior: smooth;*/
}

body {
	font-family: 'Noto Sans', sans-serif;
	font-size: 16px;
	line-height: 1.8;
	color: #222;
	-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
	-webkit-text-size-adjust: 100%;
	overflow-y: scroll;
	overflow-x: hidden;
	background: #fff;
}


/* #Typography
================================================== */
	
h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
	line-height: 1.3;
	color: #0a4693;
	margin-bottom: 20px;
}
h1, h2, h3 {
	font-family: 'Montserrat', sans-serif;
	line-height: 1.1;
}
h1 {
	font-size: 2.2em;
	margin-bottom: 30px;
}
h2 {
	font-size: 1.8em;
}
h3 {
	font-size: 1.2em;
	line-height: 1.4;
	margin-bottom: 0.5rem;
}
h4 {
	font-size: 1.2em;
}
p {
	margin: 0 0 20px 0;
}
.disclaimer {
	font-size: 0.7em;
}
p.icon {
	font-weight: 600;
}
a p.icon.left::before, a p.icon::after,
p.icon.left a::before, p.icon a::after {
	content:'';
	display: inline-block;
	vertical-align: middle;
	width: 10px;
	height: 16px;
	margin-top: 6px;
	margin-left: 10px;
	margin-bottom: 10px;
	transition: all 1s cubic-bezier(0.190, 1.000, 0.220, 1.000);
}

	a p.icon,
	p.icon a {
		text-decoration: none !important;
		border: none;
		color: #0a4693;
		padding: 0;
		background: none;
		border-bottom: 1px solid transparent;
	}
	a:hover p.icon {
		color: #676c72;
	}
	a p.icon.left::after,	
	p.icon.left a::after {
		display: none;
	}
	
	a p.icon::after,	
	p.icon a::after, p.icon.left a::before {
		background: url('../images/icons/arrow-right.svg');
		background-size: 10px 16px;
	}
	a:hover p.icon::after,
	p.icon a:hover::after, p.icon.left a:hover::before,
	.iconItem:hover p.icon a::after, .iconItem:hover p.icon.left a::before{
		transform: translateX(5px);
	}
	p.icon.left a::before {
		margin-right: 10px;
		margin-left: 0;
		transform: rotate(-180deg)
	}
		p.icon.left a:hover::before {
			transform: translateX(-5px) rotate(-180deg)
		}
p.icon.open a::after {
	transform: rotate(90deg)
}
.iconItem:hover p.icon a {
	color: #676c72;
}
p.icon.share {
	margin-bottom: 20px !important;
}
p.icon.share a::after {
	width: 16px;
	height: 16px;
	background: url('../images/icons/share.svg');
	background-size: 16px 16px;
}
p.icon.share a:hover::after {
	transform: rotate(180deg);
}	
p.lead {
	font-size: 1.3em;
	line-height: 1.5;
}
p.subtext {
	font-size: 0.9em;
	text-transform: uppercase;
	color: #777;
	margin-bottom: 0.8em
}
p.message {
	background: #00094d;
    color: #fff;
	padding: 10px 15px;
	box-sizing: border-box;
	margin-right: 0;
	border-radius: 3px;
}
	p.message::before {
		content: "";
		display: block;
		float: left;
		background: url("../images/icons/info.svg") 0 0 no-repeat;
		background-size: 20px 20px;
		width: 20px;
		height: 20px;
		margin-right: 10px;
		margin-top: 2px;
		filter: brightness(0) invert(1);
	}
p.message.success {
	background: #67b346;
    color: #fff;
}
	p.message.success::before {
		background: url("../images/icons/tick.svg") 0 0 no-repeat;
	}
p.error {
	background: #fe0004;
	color: #fff;
}
	p.error::before {
		background: url("../images/icons/cross.svg") 0 0 no-repeat;
	}
p.message.outofstock {
	background: #f60;
	color: #fff;
}
p.price {
	color: #000;
}
span.discount {
	font-size: 1rem;
	color: #f60;
	font-weight: normal;
}
em {
	font-style: italic;
}
strong {
	font-weight: 600;
}
small {
	font-size: 0.75em;
}
div.message {
	background: #00094d;
	color: #fff;
	padding: 10px 15px;
	box-sizing: border-box;
	margin-right: 0;
	border-radius: 3px;
}
	div.message::before {
		content: "";
		display: block;
		float: left;
		background: url("../images/icons/info.svg") 0 0 no-repeat;
		background-size: 20px 20px;
		width: 20px;
		height: 20px;
		margin-right: 10px;
		margin-top: 3px;
		filter: brightness(0) invert(1);
	}
	div.message p:last-child {
		margin-bottom: 0;
	}
	div.message ul:last-child {
		margin-bottom: 0;
	}

/*	Blockquotes  */

blockquote {
	position: relative;
	font-style: italic;
	font-size: 1.1em;
	margin-bottom: 5px;
}
	blockquote p {
		margin-bottom: 10px;
		margin-left: 60px
	}
blockquote::before {
	display: block;
    padding-left: 10px;
    content: "\201C";
    font-size: 5em;
    position: absolute;
    left: -12px;
    top: -40px;
    color: #ccc;
}
	blockquote cite,
	blockquote p.footer {
		font-size: 0.75em;
		font-style: normal;
		font-weight: 600;
		color: #0a4693;
		margin-bottom: 10px;
	}

hr {
	display: block;
	border: solid #ddd;
	border-width: 0 0 1px;
	clear: both;
	padding-top: 50px;
	margin: 0 10px 70px;
	height: 0;
}
hr.mini,
.columns hr.mini {
	width: 100px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 20px;
	border-width: 0 0 10px;
	/*transform: skewY(-30deg);*/
	margin-bottom: 45px
}
hr.underTitle {
	padding-top: 0px;
	margin: 0 10px 50px;
	height: 0;
}
.gridItem hr,
.column hr, .columns hr {
	margin-left: 0;
	margin-right: 0;
}

	hr.narrow {
		padding-top: 10px;
		margin: 0 10px 30px;
	}
	.gridItem hr.narrow,
	.column hr.narrow,
	.columns hr.narrow  {
		margin-left: 0;
		margin-right: 0;
	}




/* #Links
================================================== */

a {
	color: #00094d;
	text-decoration: none;
	outline: 0;
	transition: color 0.3s cubic-bezier(0.165, 0.840, 0.440, 1.000), background 0.3s cubic-bezier(0.165, 0.840, 0.440, 1.000), border 0.3s cubic-bezier(0.165, 0.840, 0.440, 1.000);
	cursor: pointer;
}
a:hover {
	color: #000;
	text-decoration: none;
}
p a {
	border-bottom: 1px solid #00094d;
}
	p a:hover {
		border-bottom: 1px solid transparent;
	}


/* #Lists
================================================== */

ul, ol {
	margin-bottom: 20px;
	margin-left: 20px;
}
ul {
	list-style: square outside;
}
ol {
	list-style: decimal outside;
}
ol > li > ul {
	list-style: lower-alpha outside;
	margin-bottom: 15px;
}
	ol > li > ul li {
		font-size: 0.9em;
	}
ul.circle {
	list-style: circle outside;
}
ul.disc {
	list-style: disc outside;
}

ul ul, ul ol,  ol ol, ol ul {
	margin: 4px 0 5px 18px;
}
ul ul li, ul ol li,  ol ol li, ol ul li {
	margin-bottom: 6px;
}
li {
	margin-bottom: 3px;
}

/* iconlist */

ul.iconlist,
ul.iconlist li {
	padding: 0;
	list-style: none;
	margin: 0;
}
ul.iconlist {
	display: flex;
}
ul.iconlist li {
	display: inline;
	margin-left: 0.8em;
}
	ul.iconlist li:first-child {
		margin-left: 0;
	}
ul.iconlist li a {
	display: block;
	width: 32px;
	height: 32px;
	background-position: center; 
	background-size: 24px 24px;
	background-repeat: no-repeat;
	padding: 4px;
	box-sizing: border-box;
	position: relative;
	transition: all 0.3s cubic-bezier(0.165, 0.840, 0.440, 1.000);
}
	ul.iconlist li.flag a {
		background-size: cover;
		padding: 4px 0;
		border: 2px solid rgba(255,255,255,0.5);
		border-radius: 16px;
	}
	ul.iconlist li.currency a {
		background-size: cover;
		background-color: #fff;
		padding: 4px 0;
		border-radius: 16px;
	}
	ul.iconlist li.currency.selected a {
		filter: brightness(0) invert(1) saturate(0);
		background-color: transparent;
	}
	ul.iconlist li.account a {
		background-image: url("../images/icons/account.svg")
	}
	ul.iconlist li.logout a {
		background-image: url("../images/icons/logout.svg")
	}
	ul.iconlist li.basket a {
		background-image: url("../images/icons/basket.svg")
	}
		ul.iconlist li.basket a span {
			display: block;
			position: absolute;
			line-height: 0.5;
			font-size: 0.8rem;
			top: -5px;
			right: 8px;
			padding: 5px;
			min-width: 18px;
			height: 16px;
			border-radius: 8px;
			background: #fe0004;
			color: #fff;
			box-sizing: border-box;
		}
	ul.iconlist li.eu a {
		background-image: url("../images/icons/eu.svg");
	}
	ul.iconlist li.eur a {
		background-image: url("../images/icons/eur.svg");
	}
	ul.iconlist li.gb a {
		background-image: url("../images/icons/gb.svg");
	}
	ul.iconlist li.gbp a {
		background-image: url("../images/icons/gbp.svg");
	}
	ul.iconlist li.locations a {
		background-image: url("../images/icons/location.svg")
	}
	ul.iconlist li.telephone a {
		background-image: url("../images/icons/tel.svg")
	}
	ul.iconlist li.usd a {
		background-image: url("../images/icons/usd.svg");
	}
	ul.iconlist li a:hover {
		opacity: 0.6;
	}
	ul.iconlist li.currency a:hover {
		background-color: transparent;
		filter: brightness(0) invert(1) saturate(2);
	}

/* linklist */

ul.linklist {
	padding: 0;
	list-style: none;
	margin: 0 0 25px !important;
}
ul.linklist li {
	margin-left: 30px;
	margin-bottom: 10px;
}
ul.linklist li a {
	padding: 0;
	border-bottom: none;
}
ul.linklist li a:hover {
	background: transparent;
	color: #4189A6;
}
ul.linklist li::before {
	content: "";
	display: inline-block;
	margin-left: -30px;
	width: 20px;
	height: 20px;
	vertical-align: middle;
	transform: translateY(-1px);
	margin-right: 10px;
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-position: center center;
	filter: brightness(0) saturate(100%) invert(15%) sepia(81%) saturate(2636%) hue-rotate(206deg) brightness(95%) contrast(92%);
}
	ul.linklist li.author::before {
		background-image: url('../images/icons/account.svg');
	}
	ul.linklist li.date::before {
		background-image: url('../images/icons/date.svg');
	}
	ul.linklist li.download::before {
		background-image: url('../images/icons/download.svg');
	}
	ul.linklist li.email::before {
		background-image: url('../images/icons/email.svg');
	}
	ul.linklist li.fax::before {
		background-image: url('../images/icons/fax.svg');
	}
	ul.linklist li.hours::before {
		background-image: url('../images/icons/hours.svg');
	}
	ul.linklist li.info::before {
		background-image: url('../images/icons/info.svg');
	}
	ul.linklist li.location::before {
		background-image: url('../images/icons/location.svg');
	}
	ul.linklist li.opening::before {
		background-image: url('../images/icons/opening.svg');
	}
	ul.linklist li.tel::before {
		background-image: url('../images/icons/tel.svg');
	}
	
ul.linklist.inline li::before {
	display: inline-block;
	float: none;
	transform: translateY(3px);
	margin-right: 8px;
}

/* blog tags */

ul.tags {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 0.75rem;
	padding: 0;
	list-style: none;
}

	ul.tags li {
		margin: 0;
		padding: 0;
	}

		ul.tags li a {
			display: block;
			font-size: 0.875rem;
			margin: 0 0.75rem 0.75rem 0;
			padding: 0.4375rem 1rem 0.5rem;
			background: #0a4693;
			color: #fff;
			text-decoration: none;
			border-radius: 4px;
		}

			ul.tags li a:hover {
				background: #111;
			}


/* sitemap */

ul.sitemap {
	margin: 0 0 30px;
}
ul.sitemap, ul.sitemap ul {
	margin-left: 30px;
	list-style: none;
	padding: 0;
}
ul.sitemap li {
	position: relative;
	list-style: none;
	margin: 0;
	padding: 0;
	line-height: 30px;
}
	ul.sitemap li a {
		padding: 0 5px;
	}
	ul.sitemap li:before {
		position: absolute;
		left: -25px;
		top: 0px;
		content: '';
		display: block;
		border-left: 1px solid #ccc;
		height: 15px;
		border-bottom: 1px solid #ccc;
		width: 20px;
	}
	ul.sitemap li:after {
		position: absolute;
		left: -25px;
		bottom: -7px;
		content: '';
		display: block;
		border-left: 1px solid #ccc;
		height: 100%;
	}
ul.sitemap li.root {
	margin: 0px 0px 0px -30px;
}
	ul.sitemap li.root:before {
		display: none;
	}
	ul.sitemap li.root:after {
		display: none;
	}
	ul.sitemap li:last-child:after {
		display: none;
	}
	

/* pagination */

nav.pagination {
	max-width: 100%;
	/*background-color: rgba(10,70,147,0.1);*/
	/*border-radius: 10px;*/
	margin: 40px auto 30px;
}
nav.pagination ul {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	list-style: none;
	margin: 0;
}
	nav.pagination li {
		position: relative;
		max-width: 60px;
		flex: 1;
		text-align: center;
		transition: all 0.5s cubic-bezier(0.190, 1.000, 0.220, 1.000);
		margin-bottom: 0;
		/*padding: 1em 0.5em;*/
		box-sizing: border-box
	}
nav.pagination li:not(:last-child):after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	width: 1px;
	height: 60%;
	transform: translateY(-50%);
}
nav.pagination li:not(:last-child):after:hover {
	border-color: transparent;
}
		nav.pagination li:hover {
			background: #0a4693;
			color: #fff;
		}
nav.pagination li:first-of-type a {
	border-radius: 4px 0 0 4px;
}
nav.pagination li:last-of-type a {
	border-radius: 0 4px 4px 0;
}
nav.pagination a {
	display: block;
	font-weight: 600;
	padding: 1em 0.5em;
	color: inherit;
	text-decoration: none;
	border: none;
}
	nav.pagination li.active,
	nav.pagination li.active a:hover {
		background: #d2e7f9;
		color: #0a4693;
	}
nav.pagination img {
	width: 10px;
	transform: translateY(3px)
}

/* tabs */

ul.tabNavigation {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 2;
}
ul.tabNavigation li {
    float: left;
    margin: 0 5px -1px 0;
    padding: 0;
    list-style: none;
}
ul.tabNavigation li a {
	font-family: 'Montserrat', sans-serif;
    display: block;
    padding: 9px 12px 8px;
    background-color: #0a4693;
    border: 1px solid #0a4693;
    border-bottom: 1px solid #9fc1ea;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.95rem;
    border-radius: 3px 3px 0 0;
}
ul.tabNavigation li a.selected {
    background-color: #fff;
    border: 1px solid #9fc1ea;
    border-bottom: 1px solid #fff;
    color: #0a4693;
}

/* accordion */

.accordion {
	margin-bottom: 3em;
}

.accordion h2.subtitle {
	font-size: 1rem;
	line-height: 1;
	margin-bottom: 0;
}

.accordion * {
	text-align: left;
	font-size: 1em;
}

.accordion h2 button {
	font-family: 'Noto Sans', sans-serif;
	font-size: 1.3rem;
	font-weight: 400;
	position: relative;
	background: #fff;
	width: 100%;
	color: #00094d;
	border: none;
	padding: 20px 20px 20px 54px;
	margin-bottom: 20px;
	box-sizing: border-box;
	cursor: pointer;
	border-bottom: 1px solid #ddd;
	transition: 0.5s cubic-bezier(0.190, 1.000, 0.220, 1.000);

}
.accordion h2:first-child button {
	border-top: 1px solid #ddd;
}
.accordion h2 button:hover,
.accordion h2 button[aria-expanded="true"] {
	background: #00094d;
	color: #fff;
	border-bottom: 1px solid #fff;
}
.accordion h2 button::before {
	content: '';
	display: inline-block;
	position: absolute;
	left: 15px;
	top: 28px;
	width: 24px;
	height: 11px;
	background: url("../images/icons/arrow-down.svg") center no-repeat;
	background-size: 24px 11px;
	transition: filter 0.5s cubic-bezier(0.190, 1.000, 0.220, 1.000), transform 0.5s cubic-bezier(0.190, 1.000, 0.220, 1.000);
}
	.accordion h2 button[aria-expanded="true"]:before {
		transform: rotate(180deg)
	}
	.accordion h2 button[aria-expanded="true"]:before,
	.accordion h2 button:hover::before {
		filter: brightness(0) invert(1);
	}
.accordion .accordion-panel {
	padding-left: 20px;
	padding-bottom: 15px;
}
.accordion .twoCol {
	margin-bottom: 20px;
}
/* Filled version */
.accordion.filled h2 button {
	margin-bottom: 0;
}
.accordion.filled .accordion-panel {
	padding: 24px 30px 10px;
	margin: 0 0 30px;
	background: #f1f1f1;
}
.noPad .accordion.filled,
.noPad .accordion.filled h2,
.noPad .accordion.filled .accordion-panel {
	margin-bottom: 0 !important;
}
/* filter version */
.searchFilters .accordion h2 button,
.filter-fly .accordion h2 button {
	padding: 14px 30px 15px 54px;
	font-size: 1.1rem;
	margin-bottom: 0;
}
	.searchFilters .accordion h2 button::before,
	.filter-fly .accordion h2 button::before {
		top: 21px;
	}
.searchFilters .accordion .accordion-panel,
.filter-fly .accordion .accordion-panel {
	padding-top: 15px;
	border-bottom: 1px solid #ddd;
}

.searchFilters .accordion .accordion-panel label,
.filter-fly .accordion .accordion-panel label {
	margin-bottom: 5px;
}

/* selected filters */

#selectedFilters {
	
}
#selectedFilters ul,
#selectedFilters ul li {
	margin: 0;
	padding: 0;
	list-style: none;
}
#selectedFilters ul li {
	display: inline-block;
	margin-right: 10px;
}
#selectedFilters a {
	position: relative;
	display: block;
	background: #ddd;
	color: #333;
	font-weight: 600;
	padding: 10px 10px 10px 36px;
	border-radius: 3px;
}
#selectedFilters a.all {
	background: #fff;
}
#selectedFilters a:hover {
	background: #111;
	color: #fff;
}
#selectedFilters a::before {
	position: absolute;
	left: 12px;
	top: calc(50% - 8px);
	display: block;
	content: '';
	width: 16px;
	height: 16px;
	background-image: url("../images/icons/cross.svg");
	background-size: 16px 16px;
	filter: brightness(0.2);
	transition: filter 0.3s cubic-bezier(0.190, 1.000, 0.220, 1.000);
}
	#selectedFilters a:hover::before {
		filter: brightness(1);
	}
	
	
/* #Images
================================================== */

img.scale,
.insetL img,
.insetR img,
#blog img {
	max-width: 100%;
	height: auto;
	display: block;
	margin-bottom: 20px;
}
	#blog img,
	.insetL,
	.insetR {
		max-width: calc(50% - 40px);
		height: auto;
		display: block;
	}
.insetL {
	float: left;
	margin: 0 2rem 2rem 0;
}
#blog img,
.insetR {
	float: right;
	margin: 0 0 2rem 2rem;
}
.insetIcon {
	display: inline-block;
	width: 24px;
	height: 24px;
	margin: 0 10px 0 0;
	transform: translateY(1px)
}
h1 .insetIcon,
h2 .insetIcon {
	width: 32px;
	height: 32px;
	transform: translateY(3px)
}
.center img {
	margin-left: auto;
	margin-right: auto;
}
figure {
	position: relative;
	text-align: center;
}


/* #Buttons
================================================== */

.button, input[type="submit"], input[type="button"], .ms-options-wrap button {
	font-family: 'Montserrat', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	background: #0a4693;
	border: none;
	color: #fff;
	display: inline-block;
	text-decoration: none;
	cursor: pointer;
	margin: 0 0 10px;
	padding: 1rem;
	transition: background 0.2s ease-out, color 0.2s ease-out, border 0.2s ease-out;
	-webkit-appearance: none;
	box-sizing: border-box;
	border-radius: 3px;
	text-align: center;
}
form .button, form input[type="submit"], form input[type="button"], form .ms-options-wrap button {
	margin-top: 0;
}
.button.alt, input[type="submit"].alt, input[type="button"].alt {
	background: #899593;
	color: #fff;
}
.button.vis, input[type="submit"].vis, input[type="button"].vis {
	background: #c0d5ff;
    color: #0a4693;
}
.button.bright, input[type="submit"].bright, input[type="button"].bright {
	background: #f60;
	color: #fff;
}
.button.full-width, input[type="submit"].full-width, input[type="button"].full-width {
	width: 100%;
	box-sizing: border-box;
}
.button.remove {
	display: block;
	width: 34px;
	height: 34px;
	line-height: 0;
	padding: 0;
	background-image: url("../images/icons/cross.svg");
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: 20px 20px;
}
.button:hover, input[type="submit"]:hover, input[type="button"]:hover {
	color: #fff;
	background-color: #111111;
	border: none;
}

.matchLabel {
	margin-left: 30% !important;
}

/* #Forms
================================================== */

form {
	margin-bottom: 30px;
}
form.withLabels {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	margin-left: 10px;
	margin-right: 10px;
}
form.withLabels div {
	width: calc(50% - 20px);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

legend {
	display: block;
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 1.2;
	color: #00094d;
	margin: 0 1rem 1.5rem;
	padding-bottom: 0.5em;
	border-bottom: 1px solid #cfdedd;
	box-sizing: border-box;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
	font-family: 'Noto Sans', sans-serif;
	font-size: 1rem;
	line-height: 1;
	border: 1px solid rgba(0,0,0,0.2);
	padding: 0.75rem;
	outline: none;
	margin: 0;
	width: 68%;
	display: block;
	margin-bottom: 20px;
	-webkit-appearance: none;
	box-sizing: border-box;
	border-radius: 3px
}

::-webkit-input-placeholder {
	color: #777;
}
::-moz-placeholder {
	color: #777;
}
:-ms-input-placeholder {
	color: #777;
}
:-moz-placeholder {
	color: #777;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
	border: 1px solid #4189A6;
	color: #444;
	-moz-box-shadow: 0 0 3px rgba(0,0,0,.2);
	-webkit-box-shadow: 0 0 3px rgba(0,0,0,.2);
	box-shadow: 0 0 3px rgba(0,0,0,.2);
}
input.charCount {
	background: none;
	border: none;
	padding: 0;
	color: #0a4693;
	margin: -12px 0 20px;
	font-size: 0.9rem;
}
textarea {
	min-height: 100px;
	padding: 10px;
}
textarea.enquiry {
	min-height: 151px;
}

fieldset {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
label {
	display: block;
	width: 30%;
	line-height: 1.375;
	font-weight: 600;
	padding-top: 3px;
	margin: 0 0 10px;
	color: #0a4693;
}
	label.forCheck {
		width: 100%;
		padding-top: 0;
	}

input.full-width, textarea.full-width {
	width: 100% !important;
}

select.full-width, label.full-width {
	width: 100% !important;
}

select {
	background: #fff url('../images/icons/arrow-down.svg') calc(100% - 10px) center no-repeat;
	background-size: 16px 8px;
	padding: 0.9375rem 1.375rem 0.9375rem 0.9375rem;
	overflow:hidden; 
    white-space:nowrap; 
    text-overflow:ellipsis;
}

input[type="checkbox"], input[type="radio"] {
	display: inline;
	vertical-align: middle;
	margin: 0;
	margin-bottom: 2px;
	margin-right: 10px;
}

input.qty {
	width: 50px;
	text-align: center;
}

span.field-validation-error {
	color: #c00;
	display: inline-block;
	margin: 0 0 20px 30%;
}

div.error input, div.error select, div.error textarea,
input.input-validation-error, textarea.input-validation-error {
	border: 1px solid #e50004;
	background: #ffe6e6 !important;
	color: #e50004;
	margin: 0 0 20px 0 !important;
}

select.input-validation-error {
	background: #ffe6e6 url('../images/icons/arrow-down.svg') calc(100% - 10px) center no-repeat;
	background-size: 16px 8px;
	padding-right: 1.2em;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

div.codes {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
}
div.codes input {
	margin-bottom: 10px;
}
div.codes input:first-child {
	width: 75%;
	border-right: none;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
div.codes input:nth-child(2) {
	width: 25%;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	font-size: 2rem;
	padding: 5px 0;
}

/* Contour form fixes */
	.umbraco-forms-form {
	clear: both;
}

.radiobuttonlist {
	display: block;
	float: left;
	margin-bottom: 10px;
}

.checkboxlist {
	display: inline-block;
}

	.checkboxlist input,
	.radiobuttonlist input {
		display: inline-block;
		margin-right: 10px;
		clear: left;
		vertical-align: middle;
		transform: translateY(-2px);
	}

.umbraco-forms-label {
	display: inline-block;
	padding: 0 1% 0 0;
}

.umbraco-forms-page .checkboxlist label,
.umbraco-forms-page .radiobuttonlist label {
	float: none;
	display: inline-block;
	clear: right;
	width: auto;
	padding: 0
}

.umbraco-forms-field {
	clear: both;
	padding-top: 10px;
}

.dataconsent .umbraco-forms-field-wrapper input[type="checkbox"] {
	float: left;
	margin-right: 10px;
	position: relative;
	top: 10px;
}

.umbraco-forms-field-wrapper label {
	width: auto;
}

.help-block {
	padding: 10px 15px;
	border: 1px solid #eee;
	background: #f9f9f9;
	display: block;
	margin: 0 0 20px!important;
}

/* #Tables
================================================== */

/* info grid */

table.infogrid {
	margin-top: 30px;
	margin-bottom: 30px;
}
table.infogrid input, table.infogrid .button {
	margin-bottom: 0;
}
table.infogrid.summary {
	border-top: 1px solid #ddd;
}
.infogrid th, .infogrid td {
	padding: 10px;
	font-size: 0.9em;
	vertical-align: top;
}

.infogrid th {
	background: #050607;
	border-right: 1px solid #444;
	color: #fff;
	text-align: left;
}
	.infogrid th.right {
		text-align: right !important;
	}
	.infogrid th.quantityCol,
	.infogrid th.removeCol,
	.infogrid th.center {
		text-align: center !important;
	}
	.infogrid th.quantityCol {
		width: 50px;
	}
	.infogrid th.removeCol {
		width: 34px;
	}
.infogrid td {
	background: #fff;
	border-bottom: 1px solid #ddd;
	border-right: 1px solid #ddd;
}
	.infogrid td:first-child {
		border-left: 1px solid #ddd;
	}
	.infogrid td:last-child {
		border-right: 1px solid #ddd;
	}
	.infogrid td.empty {
		border: none !important;
		background: #fff !important;
	}
	.infogrid tr.expired td,
	.infogrid tr.redeemed td {
		background-color: #eee;
		text-decoration: line-through;
		color: #900;
	}
	.infogrid tr.redeemed td {
		color: #888;
	}
	.infogrid tr.sub td {
		background: #fff;
		border-bottom: 2px solid #0a4693;
		border-right: none;
		font-weight: 600;
		vertical-align: middle;
	}
	.infogrid tr.sub:not(.message) td {
		font-size: 1em;
	}
	.infogrid tr.sub td:first-child {
		border-left: none;
	}
	.infogrid tr.sub.empty td {
		border-bottom: none;
	}
	.infogrid tr.sub td.total {
		font-size: 1.25rem;
		color: #fe0004
	}
.infogrid img {
	height: 30px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
}
.infogrid input[type] {
	margin: 0 auto;
	padding: 7px 5px;
}
.infogrid .button {
	padding: 9px;
}

/* side th */

.infogrid.side th {
	background: #fff;
	border-right: 1px solid #bfcecd;
	border-bottom: 1px solid #d6e7cf;
	color: #004621;
	text-align: left;
	padding: 10px;
}
.infogrid.side td {
	background: #fff;
	border-bottom: 1px solid #d6e7cf;
	padding: 10px;
}
	.infogrid.side tr:first-child th,
	.infogrid.side tr:first-child td {
		border-left: none;
	}
	.infogrid.side td:last-child {
		border-right: none;
	}
	.infogrid.side tr:last-child td,
	.infogrid.side tr:last-child th {
		border-bottom: none;
	}


/* #Misc
================================================== */

.twoCol {
	column-count: 2;
	column-gap: 2em;
}

.animateIn {
    transform: translateY(0);
    opacity: 1;
}
.animateOut {
    transform: translateY(40px);
    opacity: 1;
}
@keyframes fadeIn {
	0% {opacity:0;}
	25% {opacity:0;}
	100% {opacity:1;}
}
.m-0 {
	margin: 0 !important;
}
.mb-0 {
	margin-bottom: 0 !important;
}
.mb-5 {
    margin-bottom: 5px !important;
}
.mb-10 {
	margin-bottom: 10px !important;
}
.mb-20 {
	margin-bottom: 20px !important;
}
.mb-25 {
	margin-bottom: 25px !important;
}
.mb-30 {
	margin-bottom: 30px !important;
}
.mb-40 {
	margin-bottom: 40px !important;
}
.mb-60 {
	margin-bottom: 60px !important;
}

.mt-0 {
	margin-top: 0 !important;
}
.mt-5 {
	margin-top: 5px !important;
}
.mt-10 {
	margin-top: 10px !important;
}
.mt-20 {
	margin-top: 20px !important;
}
.mt-30 {
	margin-top: 30px !important;
}
.mt-40 {
	margin-top: 40px !important;
}

.mr-10 {
	margin-right: 10px !important;
}
.mr-20 {
	margin-right: 20px !important;
}

.ml-10 {
	margin-left: 10px !important;
}
.ml-20 {
	margin-left: 20px !important;
}

.m-0 {
	margin: 0 !important;
}

.flo-l {
	float: left !important;
}
.flo-r {
	float: right !important;
}

.center {
	text-align: center;
}
.left {
	text-align: left;
}
.right {
    text-align: right;
}
.infogrid td.mob-only,
.mob-only, .mob-only-p, .mob-only-all, .tab-only, .hidden {
	display: none !important;
}

.divider {
	margin: 0 10px 0 12px;
	color: #999
}
.dueDate {
	color: #0a4693;
}
.red {
	color: #fe0004 !important;
}


::selection {
	background: #4189A6; /* Safari */
	color: #fff;
}
::-moz-selection {
	background: #4189A6; /* Firefox */
	color: #fff;
}

/*  Cookie law  */

#cookie-law {
    width: 100%;
    background: #000; 
    margin: 0;
	padding: 20px 0;
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 2000;
}
 
#cookie-law p { 
    padding: 0 30px 0 0; 
    font-size: 15px; 
    color: #fff; 
    margin: 0;
}

#cookie-law a { 
	color: #fff;
	text-decoration: underline;
    border-bottom: none;
}

#cookie-law a.close-cookie-banner { 
	position: absolute;
	right: 10px;
	top: 50%;
	margin-top: -10px;
	display: block;
	width: 24px;
	height: 24px;
	opacity: 0.6;
}
	#cookie-law a.close-cookie-banner:hover { 
		opacity: 1;
		transform: rotate(90deg);
	}
a.close-cookie-banner:before,
a.close-cookie-banner:after {
  position: absolute;
  left: 11px;
  content: " ";
  display: block;
  height: 24px;
  width: 2px;
  background-color: #fff;
}
a.close-cookie-banner:before {
  transform: rotate(45deg);
}
a.close-cookie-banner:after {
  transform: rotate(-45deg);
}

.vAlign {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}