/*

colors
------
gold		- 251,176,64 #fbb040
warm pink 	- 239,215,212 #efd7d4
sea grey	- 51,62,72 #323e48

secondary
warm grey	- 217,212,200 #d9d4ce
raspberry	- 185,46,91 #b92e5b
aqua		- 175,234,220 
pale blue	- 206,217,228 #ced9e4

fonts
-----

font-family: upgrade,sans-serif;
font-weight: 500;
font-style: normal;

font-family: upgrade,sans-serif;
font-weight: 300;
font-style: normal;


/* #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, body {
	height: 100%;
}

body {
	font-family: upgrade,sans-serif;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.6;
	color: #fff;
	-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
	-webkit-text-size-adjust: 100%;
	overflow-y: scroll;
	background: #323e48;
}
	body.bg {
		background: url("/images/bg-avatars.svg") center repeat;
		background-size: cover;
		background-attachment: fixed;
	}


/* #Typography
================================================== */
	
h1, h2, h3, h4, h5, h6 {
	font-family: upgrade,sans-serif;
	font-weight: 500;
	color: #fbb040;
	margin-bottom: 20px;
}
h1, h2, h3 {
	margin-bottom: 1.1rem;
	line-height: 1.2;
}
h1 {
	font-size: 2.8em;
}
h2 {
	font-size: 2.2em;
}
h3 {
	font-size: 1.8em;
}
h4 {
	font-size: 1.2em;
}
h5 {
	font-size: 1.8em;
}
h6 {
	font-size: 1.2em;
}

p {
	margin: 0 0 20px 0;
}
p.icon {
	border-bottom: none;
}
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 0.5s cubic-bezier(0.190, 1.000, 0.220, 1.000);
}
	p.icon > a {
		text-decoration: none !important;
		border: none;
		padding: 0;
		background: none !important;
	}
	p.icon.left a::after {
		display: none;
	}
	p.icon a::after, p.icon.left a::before {
		background: url('../images/icons/arrow-right.svg');
		background-size: 10px 16px;
	}
	p.icon a:hover::after, p.icon.left a:hover::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.error,
p.success {
	font-size: 1.125em;
	color: #fff;
	background: #b92e5b url(/images/icons/cross.svg) 15px 50% no-repeat;
	background-size: 20px;
	padding: 10px 20px 10px 48px;
	border-radius: 0.8em;
}
p.success {
	background: #2FBA3D url(/images/icons/tick.svg) 15px 50% no-repeat;
	background-size: 20px;
}
p.lead {
	font-size: 1.125em;
}
p.subtext {
	font-size: 0.9em;
}
em {
	font-style: italic;
}
strong {
	font-weight: 500;
}
small {
	font-size: 0.8em;
}


hr {
	display: block;
	border: solid #fbb040;
	border-width: 0 0 1px;
	clear: both;
	padding-top: 20px;
	margin: 0 10px 35px;
	height: 0;
}

.column hr, .columns hr {
	margin-left: 0;
	margin-right: 0;
}


/* #Links
================================================== */

a {
	color: #fbb040;
	text-decoration: none;
	outline: 0;
	transition: background 0.3s cubic-bezier(0.190, 1.000, 0.220, 1.000), color 0.3s cubic-bezier(0.190, 1.000, 0.220, 1.000);
	cursor: pointer;
}
a:focus,
a:hover {
	color: #fff;
	text-decoration: none;
}

/* #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;
}

/* question list */

.qlist {
	list-style: none;
	margin: 0 0 1em;
	padding: 0;
	overflow: auto;
}
.qlist li{
	color: #fbb040;
	display: block;
	position: relative;
	float: left;
	width: 100%;
	border-bottom: 1px solid rgba(206,217,228,0.3);
	margin-bottom: 0;
}
.qlist li input[type=radio]{
	position: absolute;
	top: 50%;
	visibility: hidden;
}
.qlist li label{
	display: block;
	position: relative;
	z-index: 2;
	font-size: 1.2em;
	padding: 1em 1em 1em 3em;
	margin: 0;
	height: 30px;
	line-height: 30px;
	cursor: pointer;
	transition: color 0.4s cubic-bezier(0.190, 1.000, 0.220, 1.000);
}
.qlist li:hover label{
	color: #efd7d4;
}
.qlist li .check{
	display: block;
	position: absolute;
	border: 5px solid #fbb040;
	border-radius: 100%;
	height: 25px;
	width: 25px;
	top: 50%;
	left: 10px;
	margin-top: -17px;
	z-index: 1;
	transition: border-color 0.25s linear;
}

.qlist li:hover .check {
	border: 5px solid #efd7d4;
}

.qlist li .check::before {
	display: block;
	position: absolute;
	content: '';
	border-radius: 100%;
	height: 15px;
	width: 15px;
	top: 5px;
	left: 5px;
	margin: auto;
	transition: background 0.25s linear;
}

.qlist input[type=radio]:checked ~ .check {
	border: 5px solid #fff;
}

.qlist input[type=radio]:checked ~ .check::before{
	background: #fff;
}

.qlist input[type=radio]:checked ~ label{
	color: #fff;
}

/* linklist */

ul.linklist {
	padding: 0;
	list-style: none;
	margin: 0 0 20px;
	padding-left: 32px;
}
ul.linklist li::before {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	float: left;
	margin-top: 3px;
	margin-left: -32px;
	background-size: cover;
}
	ul.linklist li.download::before {
		background: url('../images/icons/download.svg');
	}
	ul.linklist li.email::before {
		background: url('../images/icons/email.svg');
	}
	ul.linklist li.tel::before {
		background: url('../images/icons/tel.svg');
	}
ul.linklist.inline li::before {
	display: inline-block;
	float: none;
	transform: translateY(3px);
	margin-right: 8px;
}
	
	
/* #Images
================================================== */

img.scale {
	max-width: 100%;
	height: auto;
	display: block;
	margin-bottom: 20px;
}

.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: upgrade,sans-serif;
	font-size: 1.1em;
	font-weight: 500;
	line-height: 1.35;
	text-align: center;
	background: #fbb040;
	border: 2px solid #fbb040;
	color: #323e48;
	display: inline-block;
	text-decoration: none;
	cursor: pointer;
	padding: 0.7em 1.2em;
	transition: background-color 0.2s ease-out, color 0.2s ease-out, border 0.2s ease-out;
	-webkit-appearance: none;
	box-sizing: border-box;
	border-radius: 0.8em
}
.button.outlined, input[type="submit"].outlined, input[type="button"].outlined {
	background: transparent;
	color: #fbb040;
}
.button.full-width, input[type="submit"].full-width, input[type="button"].full-width {
	width: 100%;
	box-sizing: border-box;
}
.button.active {
	color: #323e48;
	background-color: #ffb040;
	border: 2px solid #ffb040;
}
.button:focus, input[type="submit"]:focus, input[type="button"]:focus,
.button:hover, input[type="submit"]:hover, input[type="button"]:hover {
	color: #323e48;
	background-color: #ced9e4 !important;
	border: 2px solid #ced9e4;
}
button:disabled,
input[type="submit"]:disabled,
button:disabled:hover,
input[type="submit"]:disabled:hover {
	background-color: #727e88 !important;
	border: 2px solid #727e88 !important;
	cursor: auto;
}
#next {
	background: #fbb040 url(/images/icons/arrow-right-gr.svg) 50% 50% no-repeat;
	background-size: 12px 20px;
}
#prev {
	background: #fbb040 url(/images/icons/arrow-left-gr.svg) 50% 50% no-repeat;
	background-size: 12px 20px;
}
#next:disabled,
#prev:disabled  {
	background-color: #727e88;
}


/* #Forms
================================================== */

form {
	margin-bottom: 1.5em;
}

form * {
	font-family: upgrade,sans-serif;
}

fieldset {
	margin-bottom: 1em;
}

legend {
	display: block;
	font-size: 1.5rem;
	line-height: 1.2;
	color: #fff;
	margin: 0 0 0.8em;
	box-sizing: border-box;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
	font-size: 1.1em;
	font-weight: 300;
	line-height: 1.35;
	background: transparent;
	color: #fbb040;
	border: 2px solid #fbb040;
	padding: 0.7em;
	outline: none;
	margin: 0;
	width: 100%;
	display: block;
	margin-bottom: 1.2em;
	-webkit-appearance: none;
	float: left;
	box-sizing: border-box;
	border-radius: 0.8em;
}

::-webkit-input-placeholder {
	color: #849bae;
}
::-moz-placeholder {
	color: #849bae;
}
:-ms-input-placeholder {
	color: #849bae;
}
:-moz-placeholder {
	color: #849bae;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
	border: 2px solid #ced9e4;
	color: #ced9e4;
	-moz-box-shadow: 0 0 3px rgba(0,0,0,.3);
	-webkit-box-shadow: 0 0 3px rgba(0,0,0,.3);
	box-shadow: 0 0 3px rgba(0,0,0,.3);
}
select:focus {
	color: #fbb040;
}
option:checked {
	background: #fbb040;
	color: #323e48;
}

textarea {
	min-height: 190px;
	padding: 10px;
}

label {
	display: block;
	padding-top: 3px;
	margin: 0 0 10px;
	color: #fbb040;
}
	label.forCheck {
		width: 100%;
		padding-top: 0;
		margin: 0 0 20px;
	}

input.full-width, textarea.full-width {
	width: 100% !important;
}

select.full-width, label.full-width {
	width: 100% !important;
}

select {
	background: url('../images/icons/arrow-down.svg') calc(100% - 10px) center no-repeat;
	background-size: 16px 10px;
}
optgroup {
	background: #222e38;
	color: #fff;
}
option {
	background: #323e48;
	color: #fbb040;
	font-weight: 300;
}

input[type="checkbox"], input[type="radio"] {
	display: inline;
	vertical-align: middle;
	margin: 0;
	margin-right: 10px;
}

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, select.input-validation-error, textarea.input-validation-error {
	border: 2px solid #b92e5b;
	color: #b92e5b;
	margin: 0 0 20px 0;
}

select.input-validation-error {
	background: url('../images/icons/arrow-down-error.svg') calc(100% - 10px) center no-repeat;
	background-size: 16px 10px;
}

/* radio stuff - keyboard NOT WORKING */

/*.rHolder {
	color: #fbb040;
	display: block;
	position: relative;
	float: left;
	width: 100%;
	border-bottom: 1px solid rgba(206,217,228,0.3);
	
}

.rHolder input[type=radio] {
	position: absolute;
	top: 50%;
	visibility: hidden;
}
.rHolder input[type=radio] + label {
	position: relative;
	cursor: pointer;
	padding: 1.5em 1.5em 1.6em 3.5em;
	margin: 0;
}
.rHolder input[type=radio] + label::before {
	content: "";
	display: block;
	position: absolute;
	border: 5px solid #fbb040;
	border-radius: 100%;
	height: 25px;
	width: 25px;
	top: 24px;
	left: 10px;
	z-index: 5;
	transition: border .25s linear;
	-webkit-transition: border .25s linear;
}
.rHolder input[type=radio] + label::after {
	content: "";
	position: absolute;
	left: 20px;
	top: 34px;
	border-radius: 50%;
	width: 15px;
	height: 15px;
}
.rHolder input[type=radio]:checked + label::after {
  background: #fbb040;
}
@media screen and (-ms-high-contrast: active) {
  .rHolder input[type=radio]:checked + label::after {
    background: WindowText;
  }
}

.rHolder input[type=radio]:focus + label::before {
	border: 5px solid #ced9e4;
}*/


/* #Misc
================================================== */

.highlight {
	color: #fbb040;
}

/* progress bar */

.meterHolder {
	/*width: 80%;*/
}

.meter {
	box-sizing: content-box;
	width: 100%;
	height: 30px; /* Can be anything */
	position: relative;
	background: rgba(0,0,0,0.3);
	border-radius: 25px;
	padding: 10px;
	margin-right: 30px;
}
.meter span {
	display: block;
	float: left;
	height: 100%;
	border-radius: 0;
	background-color: #fbb040;
	position: relative;
	overflow: hidden;
}
	.meter span:first-child {
		border-radius: 20px 0 0 20px;
	}
.meter > span:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-image: linear-gradient(
	-45deg,
	rgba(51,62,72,0.1) 25%,
	transparent 25%,
	transparent 50%,
	rgba(51,62,72,0.1) 50%,
	rgba(51,62,72,0.1) 75%,
	transparent 75%,
	transparent
	);
	z-index: 1;
	background-size: 20px 20px;
	animation: move 5s linear infinite;
	overflow: hidden;
}
.meter span.grey {
	background-color: #ced9e4;
}

.animate > span:after {
	display: none;
}

@keyframes move {
	0% {
		background-position: 0 0;
	}
	100% {
		background-position: 50px 50px;
	}
}

.nostripes > span > span,
.nostripes > span::after {
	background-image: none;
}


.twoCol {
	column-count: 2;
	column-gap: 1.5em;
}

.animateIn {
    transform: translateY(0);
    opacity: 1.0;
}
.animateOut {
    transform: translateY(50px);
    opacity: 0;
}
@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;
}

.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;
}

.mob-only, .mob-only-p, .mob-only-all, .tab-only, .hidden {
	display: none !important;
}

.divider {
	margin: 0 10px 0 12px;
	color: #999
}

::selection {
	background: #efd7d4; /* Safari */
	color: #323e48;
}
::-moz-selection {
	background: #efd7d4; /* Firefox */
	color: #323e48;
}

/*  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(calc(-50% - 54px));
}