/* latin-ext */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url(./fonts/Manrope.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin-ext */
@font-face {
  font-family: 'Big Shoulders Display';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(./font/BigShouldersDisplay.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

body{
background:#E0E0E0;
padding:0px;
margin:0px;
} 

body, input, textarea {
	color: #202020;
  font-family: Manrope, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2em;
}

h1,h2,h3,h4,h5 {
	font-family: Big Shoulders Display, sans-serif;
}



#page,
#header,
#footer{
	margin:0px auto;
	max-width:960px;
	padding: 0px;
} 
#page{
	background-color: #ffffff;
}
#header{
	padding: 10px 10px 10px 10px;
	text-align: left;
	background-color: #4080ff;
	background-image: url("/Images/NBI-Home1.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
#content{
	padding: 10px;	
}
#content-messages{
	padding: 10px;	
}
#footer{
	padding: 20px 10px 10px 10px;
	text-align: center;
}
#copyright{
	font-size: 11px;
}
.welcome{
	font-size: 22px;
	line-height: 1.5;
	padding-top: 20px;
	padding-bottom: 20px;
}
.welcome p{
	font-size: 22px;
	line-height: 1.5;
}
.flags{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: start;
	padding-bottom: 20px;
}
.flags .flagouter{
	flex: 50px;
	text-align: center;
	max-width: 50px;
	height: 50px;
}
.flags .flagouter span.lang{
	font-size: 9px;
	text-align center;
	display: block;
}
.flags .flagouter input{
	text-align center;
	display: inline-block;
	border-color:Black;
	border-width:1px;
	border-style:Solid;
	height:24px;
	width:32px;
}
img.logo{
	max-width: 100%;
	width: 306px;
}
#welcomeform .onecol{
	padding-bottom: 10px;
}
#welcomeform .onecol.CountryMessage{
	padding-bottom: 10px;
}
#welcomeform .onecol.Privacy{
	padding-top: 20px;
	padding-bottom: 10px;
}

#welcomeform .twocol{
	display: flex;
	padding-bottom: 10px;
}
#welcomeform .twocol .col1{
	flex: 50%;
	max-width: 250px;
	text-align: right;
	padding-right: 10px;
}
#welcomeform .twocol .col2{
	flex: 50%;
}
#welcomeform .twocol .col2 input#Email{
	width: 100%;
	max-width: 300px
}
#welcomeform .twocol .col2 input#ProfileCode{
	width: 100%;
	max-width: 100px
}
input.empty,
.col2.empty,
.empty{
	border-color:red;
	border-width:1px;
	border-style:Solid;	
}
input.invalidoption,
.col2.invalidoption{
	border-color:red;
	border-width:2px;
	border-style:Solid;	
}
button {
	padding: 10px 30px 10px 30px;
	background-image: linear-gradient(90deg, #006efd 0%, #2628dd 100%);
	box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.25);
	border: 0px solid transparent !important;
	font-size: 15px;
	line-height: 1em;
	font-weight: 700;
	color: white;
	cursor: pointer;
	-webkit-transition: all 300ms ease 0ms;
    -moz-transition: all 300ms ease 0ms;
    -o-transition: all 300ms ease 0ms;
    transition: all 300ms ease 0ms;
}
button:hover{
	filter: brightness(120%);
}
button:disabled {
	background-image: linear-gradient(90deg, rgb(200, 240, 253) 0%, rgb(238, 240, 255) 100%);
	background-color: #ffffff;
	color: #808080;
	cursor: not-allowed !important;
}
button:disabled:hover{
	filter: none;
}
.buttons{
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}
.buttonsingle{
  padding-top: 20px;
  padding-bottom: 20px;	
}

.QuestionNumber{
	font-size: 22px;
	color: #202020;
	line-height: 25px;
	padding-bottom: 20px;
}
.Question{
	font-size: 22px;
	color: #202020;
	line-height: 25px;
}
.Options{
	font-size: 22px;
}

.Options div{
	line-height: 25px;
	margin: 10px 10px 0px 0px;
	border-color:#e0e0e0;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	border-width: 3px;
	border-style:solid;
	cursor:default;
	padding: 10px;
}
.Options div.Selected{
	display: flex;
	border-color:#e0e0e0;
	cursor:default;
	animation: fade-in 300ms;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.Options div.Option{
	border-color: green;
	cursor:pointer;
	-webkit-transition: all 300ms ease 0ms;
    -moz-transition: all 300ms ease 0ms;
    -o-transition: all 300ms ease 0ms;
    transition: all 300ms ease 0ms;
}

.Options div span.OptionValue{
	font-size: 25px;
	font-weight: bold;
	color: green;
	padding: 0px 20px 0px 20px;
	-webkit-transition: all 300ms ease 0ms;
    -moz-transition: all 300ms ease 0ms;
    -o-transition: all 300ms ease 0ms;
    transition: all 300ms ease 0ms;
}

.Options .dim8 div.box{
	margin: 5px 0px 5px 0px;
	border: none;
	padding: 0px;
	display: flex;
}
.Options .dim8 label{
	width: calc(100% - 80px);
	cursor:pointer;
	border-color:#e0e0e0;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	border-width: 3px;
	border-style:solid;
	padding: 10px 20px 10px 20px;
	display: inline-block;
	-webkit-transition: all 300ms ease 0ms;
    -moz-transition: all 300ms ease 0ms;
    -o-transition: all 300ms ease 0ms;
    transition: all 300ms ease 0ms;
}
.Options .dim8 input[type="radio"]:checked+label{
	border-color: green;
	-webkit-transition: all 300ms ease 0ms;
    -moz-transition: all 300ms ease 0ms;
    -o-transition: all 300ms ease 0ms;
    transition: all 300ms ease 0ms;
}


.progress_bar{
	width: 100%;
	height: 20px;
	position: relative;
	margin: 0px 0px 20px 0px;
	text-align: center;
	border-radius: 20px;
 	border: 1px solid #808080;
	padding: 0px;
	display: inline-block;
}
.progress_bar p {
    text-align: center;
    z-index: 1;
	position: relative;
	font-weight: 700;
	margin: 0px;
	padding: 0px;
	line-height: 20px;
}
.progress_bar .bar {
	height: 20px;
	border-radius: 20px;
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    background: #B0FFB0;
    z-index: 0;
}

.failed{
	color: #FF0000;
  font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.625;
}
.message{
	color: #000000;
  font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.625;
}
.messages{
	color: #000000;
  font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.625;
	margin: 10px 0px 10px 0px;
}
.messages .failed{
	padding: 20px;
	color: #000000;
	background-color: #FF0000;
}
.key_failed{
	background-color: #FF0000;
}
.messages .warning{
	padding: 20px;
	color: #000000;
	background-color: #FF8000;
}
.key_warning{
	background-color: #FF8000;
}
.messages .success{
	padding: 20px;
	color: #000000;
	background-color: #00FF00;
}
.key_success{
	background-color: #00FF00;
}
.messages .message{
	padding: 20px;
	color: #000000;
	background-color: #E0E0E0;
}

.link-button{
		background: none;
		background-repeat:no-repeat;
		color: #202020;
		font-size: 16px;
		line-height: 25px;
		margin: 10px 10px 0px 0px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	border-width: 3px;
	border-style:solid;
	cursor:pointer;
	border-color: #808080;
	display: inline;
	padding: 2px 10px 2px 10px;
}
.button{
		background: none;
		background-repeat:no-repeat;
		color: #202020;
		font-size: 16px;
		line-height: 25px;
		margin: 10px 10px 0px 0px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	border-width: 3px;
	border-style:solid;
	cursor:pointer;
}
.pdf{
		background-image:url('/Images/Button-pdf.png');
		background-position: left; 
		padding: 2px 10px 2px 35px;
		border-color: #808080;
}
.confirm{
		background-image:url('/Images/Button-tick.png');
		background-position: right; 
		padding: 2px 35px 2px 10px;
		border-color: #00FF00;
}
.submit{
		background-image:url('/Images/Button-next.png');
		background-position: right; 
		padding: 2px 35px 2px 10px;
		border-color: #00FF00;
}
.next{
		background-image:url('/Images/Button-next.png');
		background-position: right; 
		padding: 2px 35px 2px 10px;
		border-color: #00FF00;
}
.back{
		background-image:url('/Images/Button-back.png');
		background-position: left; 
		padding: 2px 10px 2px 35px;
		border-color: #FF8000;
}
.cancel{
		background-image:url('/Images/Button-cancel.png');
		background-position: left; 
		padding: 2px 10px 2px 35px;
		border-color: #FF0000;
}

h1{
	color: #001E3C;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.625;
}
h2{
	color: #001E3C;  font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.625;
}
h3{
	color: #001E3C;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.625;
}
p{
	color: #202020;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.625;
}
strong{
	font-weight: 700;
}
.surveyques{
	display: block;
	padding: 0 0 0 0;
	margin: 0px auto;
	clear: both;
}
.form{
	position: relative;
	display: block;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	clear: both;
}
.surveyques ul {
	list-style: none;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}
.warnmessage
	{
  background-color : #FFa0a0;
	font-size: 18px;
	font-weight: 300;
	line-height: 20px;
	text-align: center;
	padding: 20px 0px 20px 0px;
	}	
.surveyques ul li {
	position: relative;
	display: block;
	font-size: 13px;
	font-weight: 400;
  letter-spacing: 0;
	color: #404080;
  background-color : #FFFFFF;
	line-height: 1.2em;
	padding: 10px 5px 20px 5px;
	margin: 0 0 0 0;
	border-bottom: solid 1px #202060;
}
.surveyques ul .HeaderText {
	font-weight: 400;
	color: #404040;
}
.surveyques ul .HeaderText ul{
  list-style-position: inside;
  list-style-type: disc;
	padding: 0px;
	margin: 0px;
}
.surveyques ul .HeaderText ol{
  list-style: inside decimal none;
	font-size: 13px;
	font-weight: 400;
	padding: 0px;
	margin: 0px;
}
.surveyques ul .HeaderText ul li,
.surveyques ul .HeaderText ol li{
  display: list-item;
  border: none;
	color: #404040;
	font-weight: 400;
	margin: 0px 0px 0px 20px;
	padding: 0px 0px 0px 20px;
}

.surveyques ul li .Question,
.surveyques ul li .fullwidth,
.surveyques ul li .fullwidthorderradio,
.surveyques ul li .type4othertext,
.surveyques ul li .type4checkbox{
	position: relative;
	width: 100%;
	display: inline-block;
	margin: 0px 0px 5px 0px;
}
.surveyques ul li .fullwidth.noresponse{
	margin: 10px 0px 5px 0px;
}
.surveyques ul li .Question{
	margin: 0px 0px 10px 0px;
	color: #404040;
	font-size: 14px;
	font-weight: 700;
}
.surveyques ul li .Question .gdpr{
	font-size: 11px;
	font-weight: 300;
	line-height: 1.2em;
}
.surveyques ul li .fullwidth input[type='radio']{
	margin: 0px;
	position: absolute;
	left: 5px;
	top: calc( 50% - 5px );
}
.surveyques ul li .dropdownright{
  float: right;
	display: inline-block;
}
.surveyques ul li .dropdown{
  width: 100%;
	display: inline-block;
	margin: 0px 0px 0px 0px;
}
.surveyques ul li .type4othertext{
	margin: 10px 0px 0px 0px;
	padding: 0px;
}
.surveyques ul li .type4checkbox{
	margin: 10px 0px 0px 0px;
	padding: 0px;
}
.clearboth{
  clear: both;
}
.surveyques ul li textarea{
  width: 100%;
	border: solid 2px #d1d3d4;
	display: inline-block;
	padding: 0px;
	margin: 10px 0px 0px 0px;
}
.surveyques ul li.submit{
  width: 900px;
	font-size: 18px;
	font-weight: 300;
	line-height: 20px;
	display: inline-block;
	text-align: right;
	height: 20px;
	padding: 10px 10px 10px 10px;
	margin: 10px 0px 0px 0px;
	background-color: #FFFFFF;
	border-bottom: none;
}

.surveyques ul li.headlevel2 > .fullwidth,
.surveyques ul li.headlevel2 > .dropdown,
.surveyques ul li.headlevel2 > .type4othertext,
.surveyques ul li.headlevel2 > .type4checkbox{ 
	display: inline-block;
	padding: 0px 0px 0px 30px;
	width: calc( 100% - 30px );
}

.surveyques ul li.SurveyQues .sixthwidth{ 
	display: inline-block;
	vertical-align: top;
	padding: 0px 0px 0px 0px;
	text-align: center;
	width: 16%;
	height: 60px;
	position: relative;
}

.surveyques ul li.SurveyQues .sixthwidthright{ 
	display: inline-block;
	vertical-align: top;
	padding: 0px 0px 0px 0px;
	text-align: center;
	width: 16%;
	height: 60px;
	position: relative;
}

.surveyques ul li.SurveyQues .sixthwidth input[type="radio"],
.surveyques ul li.SurveyQues .sixthwidthright input[type="radio"]{
	display: inline-block;
	cursor: pointer;
	position: absolute;
	width: 100%;
	top: 0px;
	left: 0px;

}
.surveyques ul li.SurveyQues .sixthwidth label,
.surveyques ul li.SurveyQues .sixthwidthright label{
	display: inline-block;
	cursor: pointer;
	border: 2px solid transparent;
	padding: 20px 5px 5px 5px;
	width: calc( -14px + 100% );
}
.surveyques ul li.SurveyQues .fullwidth label{
	display: inline-block;
	cursor: pointer;
	border: 2px solid transparent;
	position: relative;
	width: calc( 100% - 29px );
	height: calc( 100% - 14px );
	padding: 5px 5px 5px 20px;
}

.surveyques ul li.SurveyQues  input[type="radio"]:checked + label{
	border: 2px solid #80C080;
	background-color:rgba(200, 255, 200, 0.8);
	border-radius:10px;
	font-weight: 700;
}




.surveyques ul li.SurveyQues .orderradio{ 
	display: inline-block;
	padding: 0px 0px 0px 0px;
	text-align: center;
	width: 20px;
}
.surveyques ul li.SurveyQues .orderradio input{ 
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
.surveyques ul li.SurveyQues .orderradiotext{ 
	display: inline-block;
	padding: 0px 0px 0px 0px;
	width: 800px;
}


.surveyques ul li.alt0
	{
  background-color : #E0E0FF;
	}		
.surveyques ul li.alt1
	{
  background-color : #FFFFFF;
	}		

.surveyques ul li.altred
	{
  background-color : #FFa0a0;
	}		

.surveyques ul li.altgrey
	{
  background-color : #404040;
	}		
.surveyques ul li.group1 {
	border-bottom: none;
	padding-bottom: 0px;
}
