:root {
	--color2: #F5FBFC;
	--color3: #F5F5F5;
	--color4: #D9D9D9;
	--color5: #BFBFBF;
	--color6: #888888;
	--color7: #4D616D;
	--color8: #404040;
	--color21: #03488E;
	--color22: #08A3C8;
	--color23: #BBDDFF;
	--color24: #CDECF4;
	--color101: #8FB03A;
	--color102: #D66526;
	--color103: #303478;
	--color104: #861E66;
	--color105: #B01B7C;
	--color106: #D3140F;
}

a img {
	border: none;
}

select, input[type='text'], input[type='password'], input[type='color'],
	input[type='number'], input[type='file'] {
	min-width: 20px;
	overflow: hidden;
	background: #FFFFFF;
	border: 1px solid var(--color4);
	font-size: 13px;
	outline: 0;
	border-radius: 4px;
}

input[type='text'], input[type='password'], input[type='color'], input[type='number']
	{
	height: 26px;
	padding-left: 7px;
}

input[type='radio'] {
	margin-left: 2px;
}

input[type='radio'] + label { 
	margin-right: 18px;
} 

select {
	height: 30px;
	box-sizing: border-box;
	padding-left: 4px;
}

textarea {
	min-width: 50px;
	background: #FFFFFF;
	border: 1px solid var(--color4);
	border-radius: 4px;
	padding-left: 7px;
	font-family: 'Arial';
	margin-left: 6px;
}

input[type=checkbox] {
	-ms-transform: scale(1.5);
	-moz-transform: scale(1.5);
	-webkit-transform: scale(1.5);
	-o-transform: scale(1.5);
	transform: scale(1.5);
	padding: 10px;
	margin-right: 10px;
	margin-left: 10px;
	margin-top: 4px;
	margin-bottom: 4px;
	display: inline;
}

.checkboxtext {
	font-size: 110%;
	display: inline;
}

.criteria select {
	width: 167px;
	margin-top: 4px;
}

.criteria input[type='text'], input[type='color'], input[type='number']
	{
	width: 156px;
}

input[type='file'] {
	margin-top: 10px;
}

input[type='submit']:hover, a:hover.prettyButton2 {
	text-decoration: underline;
}

input[type='submit'].disabledButton, input[type='submit'].disabledButton:hover
	{
	background-color: var(--color3);
	color: var(--color6);
	text-decoration: none;
	cursor: not-allowed;
}

legend {
	padding-left: 8px;
	padding-right: 8px;
	display: block;
	color: var(--color21);
}

.textUppercase {
	text-transform: uppercase;
}

/*  defines the set of levels for message level gravity */
.info, .debug, .warn, .error, .fatal, .trace, .all {
	background-color: var(--color3);
	border-left: 3px solid;
	padding-left: 10px;
	padding-top: 8px;
	padding-bottom: 8px;
	padding-right: 10px;
	margin-bottom: 10px;
	display: block;
	text-align: left;
	white-space: pre-wrap;
}

/**
 * The <code>INFO</code> level designates informational messages
 * highlighting overall progress of the application.
 */
.info {
	color: #1A8A55;
	border-color: #1A8A55;
}

/** The <code>DEBUG</code> level designates informational events of lower importance. */
.debug {
	color: #4A4646;
	border-color: var(--color8);
}

/**
 * The <code>WARN</code> level designates potentially harmful situations.
 */
.warn {
	color: #FF8600;
	border-color: #FF8600;
}

/**
 * The <code>ERROR</code> level designates error events which may or not
 * be fatal to the application.
 */
.error {
	color: var(--color106);
	border-color: var(--color106);
}

.fatal {
	color: #FF0000;
	border-color: #FF0000;
}

/** The <code>TRACE</code> level designates informational events of very low importance. */
.trace {
	color: var(--color8);
	border-color: var(--color8);
}

/** The <code>ALL</code> is used to turn on all logging. */
.all {
	color: navy;
	border-color: navy;
}

.required {
	color: #FF7F00;
	font-size: 20px;
	margin-right: 2px;
	margin-left: 2px;
}

.requiredField {
	border: 1px solid #FF7F00 !important;
	background-color: rgba(255, 127, 0, 0.03) !important;
}

.notRequiredField {
	border: 1px solid var(--color4);
	background-color: #FFFFFF;
}

#usercontact {
	font-size: smaller;
	text-align: left;
}

#usercontact, #contactMenu {
	padding-left: 0px;
	padding-right: 0px;
	min-width: 280px;
}

.contactPanel {
	cursor: pointer;
	color: #FFFFFF;
	width: 100%;
	min-height: 67px;
	vertical-align: middle;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-around;
}

.contactPictureDiv {
	overflow: hidden;
	border-radius: 50%/50%;
	-webkit-border-radius: 50%/50%;
	-moz-border-radius: 50%/50%;
	width: 38px;
	height: 46px;
	margin-left: 8px;
	background-repeat: no-repeat; 
	background-position: center center;
	background-size: cover;
	background-clip: border-box;
	background-color: var(--color2);
}

#usercontact input {
	font-size: smaller;
}

#contactMenu, #usercontact:hover {
	background-color: var(--color21);
}

#contactMenu, #fullcontact {
	text-align: center;
}

#fullcontact {
	padding-right: 40px;
	padding-left: 40px;
	padding-top: 30px;
	padding-bottom: 30px;
	border: 1px solid var(--color22);
	margin-top: 30px;
	margin-bottom: 30px;
	border-radius: 5px 5px 5px 5px;
}

.contactInput {
	font-weight: normal;
	color: var(--color3);
	padding-left: 8px;
	text-align: left;
	text-transform: capitalize;
}

a .contactInput {
	text-decoration: none;
}

#fullcontact .contactInput {
	font-weight: normal;
	color: var(--color21);
}

.right {
	float: right;
}

.left {
	float: left;
}

.clear {
	clear: both;
}

fieldset {
	display: inline-block;
	margin-top: 12px;
	margin-bottom: 12px;
	margin-right: 12px;
	border-radius: 5px;
}

.formlabel {
	text-align: left;
	padding-right: 4px;
	padding-top: 7px;
	vertical-align: middle;
	color: var(--color6);
}

.formlabel::first-letter {
	text-transform: uppercase;
}

.formlabelTco {
	text-align: left;
	font-weight: bold;
	padding-top: 7px;
	vertical-align: middle;
	color: var(--color6);
}

.formvalue {
	padding-left: 8px;
	padding-top: 7px;
	text-align: left;
	vertical-align: middle;
}

.formvaluetco {
	padding-top: 7px;
	text-align: left;
	vertical-align: middle;
}

.col1 {
	float: left;
	margin: 0px 2px 0px 0px;
	width: 100px;
	text-align: left;
	font-size: smaller;
}

.col2 {
	display: block;
	float: left;
	margin: 0px;
	font-size: smaller;
}

.container {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: flex-start;
	vertical-align: middle;
	text-align: center;
	width: 100%;
	overflow: hidden;
}

.container>* {
	padding-top: 6px;
}

#featuresearch {
	margin-left: 6px;
	display: flex;
	flex-wrap: nowrap;
}

#featuresearch input {
	background-color: var(--color24);
	color: var(--color7);
	height: 22px;
	width: 100px;
}

#featurelist {
	color: var(--color4);
}

#featuresearchicon {
	height: 22px;
	margin-left: 3px;
}

a {
	color: var(--color8);
}

a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a:active {
	text-decoration: underline;
}

a span, a:visited span {
	text-decoration: none;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	color: var(--color8);
	font-size: 15px;
	font-weight: normal;
	margin: 0px;
	padding: 0px;
	background-color: #EFF5FB;
}

@media screen and (max-width: 480px) {
	body {
		font-size: 11px;
	}
}

@media screen and (max-width: 640px) {
	body {
		font-size: 12px;
	}
}

@media screen and (max-width: 768px) {
	body {
		font-size: 13px;
	}
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
	body {
		font-size: 14px;
	}
	#chartContainer {
		min-width: 200px;
		top: 600px;
	}
}

#chart {
	min-width: 300px;
	top: 280px;
}

table {
	font-size: small;
}

tr {
	vertical-align: top;
}

::-ms-check {
	border-radius: 4px;
	border: double 0px var(--color4);
	color: #FFFFFF;
	background: var(--color21);
	padding: 3px;
}

#global {
	width: 100%;
	height: 100%;
}

#blazon {
	background-color: #FFFFFF;
	padding-right: 0px;
	min-width: 196px;
	display: flex;
	flex-direction: column;
	height: 100%;
}

#logo {
	padding-left: 10px;
	padding-bottom: 0px;
	padding-top: 0px;
	width: 160px;
}

#logo img {
	width: 132px;
	max-height: 36px;
	margin-top: 3px;
}

#sublogo {
	display: inline-block;
	text-align: left;
	bottom: 0px;
}

#slogan a {
	text-decoration: none;
}

.userFlag {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	margin-left: 8px;
}

.currentUser {
	color: var(--color22);
}

#navigation {
	width: 10%;
	float: left;
	margin-top: 220px;
}

#navigation ul, #navigation ul li {
	margin: 0px;
	padding: 0px;
	margin-top: 10px;
	list-style: none;
}

#navigation a {
	text-decoration: none;
}

.flashback {
	background-color: var(--color22);
}

#maincontent {
	margin-top: 0px;
	margin-bottom: 8px;
	padding-top: 4px;
	min-height: 350px;
	text-align: center;
	width: 100%;
	height: 100%;
}

#centeredcontent {
	display: inline-block;
	text-align: left;
	max-width: 1580px;
	height: 100%;
	min-width: 400px;
	padding-left: 20px;
}

#maincontent p, #maincontent li {
	line-height: 1.5;
}

.sectioninfo {
	background-color: #F0F0F0;
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
}

#imgSectionInfo {
	height: 60px;
	width: 60px;
	display: inline-block;
}

.sectioninfohome {
	width: 100%;
	height: 140px;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	background-color: #F0F0F0;
	background-position: 0% 57%;
	background-size: cover;
	background-repeat: repeat-x;
	background-image: url("../images/landscape/FRONTPAGE_BG.jpg");
}

.sectionInfoOverlay {
	width: 100%;
	height: 140px;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	background-position: 0% 48%;
	background-size: cover;
	background-repeat: repeat-x;
	background-image: url("../images/landscape/FRONTPAGE_FG.png");
}

.sectionInfoOverlay:hover {
	animation-name: MOVE-BG;
	animation-duration: 30s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

.sectionDescription {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 50%;
	min-width: 54%;
	text-align: center;
	vertical-align: middle;
	margin-top: 8px;
	margin-bottom: 8px;
}

.sectionDescriptionHome {
	height: 140px;
	min-width: 30%;
	width: 100%;
	padding-left: 45px;
	border-radius: 0px 0px 0px 0px;
	background: linear-gradient(to right, #F2F2F2, 38%, transparent);
	overflow: hidden;
	display: flex;
	align-items: center;
}

.sectionDescriptionHomeOut {
	height: 140px;
	width: 12%;
	border-radius: 0px 0px 0px 0px;
	background: linear-gradient(to left, #F2F2F2, 42%, transparent);
	overflow: hidden;
}

.infotitle {
	font-weight: normal;
	font-size: 20px;
	width: 100%;
	text-transform: uppercase;
}

.infoSubtitle {
	display: block;
	font-size: 15px;
	margin-top: 3px;
	margin-bottom: 3px;
}

.titleNormal {
	font-weight: normal;
}

.titleBig {
	font-weight: normal;
	font-size: 16px;
}

.infotitle, .titleNormal, .titleBig {
	color: var(--color21);
}

.titleDark {
	color: var(--color21);
	font-weight: normal;
	font-size: 16px;
}

#footer {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 16px;
	padding-top: 16px;
	padding-bottom: 12px;
	padding-left: 10px;
	color: #FFFFFF;
	background-color: var(--color7);
}

#gdpr {
	align-self: flex-end;
}

#company {
	text-align: center;
}

.documentLegals {
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	vertical-align: bottom;
	margin-top: 25px;
	min-width: 100px;
}

.documentLegal {
	margin: 0px 20px;
	font-weight: lighter;
	font-size: 9px;
	color: var(--color4);
	min-height: 40px;
}

.documentLegal svg {
	height: 24px;
}

a.footerLink {
	color: var(--color4);
}

#appVersion {
	padding: 0px;
	margin-bottom: 6px;
	text-align: left;
	color: darker;
	font-size: smaller;
	font-weight: lighter;
	color: var(--color6);
}

.actionIcon, .actionIconLarge {
	border: 0px;
	margin-bottom: -5px;
	text-decoration: none;
	vertical-align: middle;
}

.actionIcon {
	max-height: 30px;
	max-width: 30px;
	padding-top: 3px;
	padding-bottom: 3px;
}

.actionIcon:hover {
	text-decoration: none;
}

.actionIconLarge {
	width: 50px;
}

.actionIconInBut {
	height: 26px;
	max-width: 26px;
	border: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-right: 3px;
	margin-bottom: -9px;
	text-decoration: none;
	vertical-align: baseline;
}

.actionIconInBut:hover {
	text-decoration: none;
}

.sectionBlock {
	text-align: left;
	background-color: #FFFFFF;
	width: 606px;
	margin-top: 10px;
	margin-right: 10px;
	padding: 10px;
	border-radius: 5px 5px 5px 5px;
}

.activityBlock {
	position: relative;
	width: 700px;
	text-align: left;
	background-color: #FFFFFF;
	margin-bottom: 18px;
	margin-left: 0px;
	margin-right: 18px;
	float: left;
	border-radius: 12px 0px 0px 12px;
	box-shadow: 2px 2px 16px #c0c0c0;
	-moz-box-shadow: 2px 2px 16px #c0c0c0;
	-webkit-box-shadow: 2px 2px 16px #c0c0c0;
}

.activityThemeBox {
	width: 170px;
	height: 170px;
	border-radius: 12px 0px 0px 12px;
	float: left;
	display: inline;
	margin-right: 22px;
}

.activityThemeBox:hover {
	cursor: pointer;
}

.activityIconBox {
	overflow: hidden;
	float: left;
	display: inline;
	margin-left: 110px;
	margin-top: 18px;
	margin-right: 8px;
	border-radius: 1px;
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	position: relative;
	top: 0px;
	left: -0px;
}

.activityIconBox, .activityIconBox img {
	height: 60px;
	width: 60px;
}

.activityDateBox {
	position: absolute;
	top: 2px;
	right: 0px;
	padding: 3px;
	color: var(--color21);
	font-size: 10px;
}

.activityTextBox {
	padding-top: 14px;
	padding-left: 16px;
	padding-right: 16px;
	padding-bottom: 0px;
}

.activityBlock a.perfLink {
	text-decoration: none;
}

.activityBlock a.perfLink:hover {
	text-decoration: underline;
}

.activityTextActionLink {
	position: absolute;
	bottom: 5px;
	right: 10px;
}

.activityTextActionLink a {
	text-decoration: none;
}

.activityTextActionLink a:hover {
	text-decoration: none;
}

.tabAction {
	text-decoration: none;
	padding-right: 4px;
}

.loginForm {
	background-color: #FFFFFF;
	color: var(--color8);
	padding-top: 0px;
	padding-bottom: 4px;
	padding-left: 10px;
	padding-right: 10px;
	margin-top: 14px;
	margin-bottom: 14px;
	max-width: 680px;
	border-radius: 12px 0px 0px 12px;
}

.loginForm span .tablerow {
	color: var(--color8);
}

.container, .navimenu li, .languageSelect {
	background-color: var(--color22);
}

.navimenu li {
	padding: 0px 0px 0px 10px;
	text-transform: uppercase;
}

.navimenu ul li ul li {
	display: inherit;
}

.navimenu li a {
	display: inline;
}

.navimenu a.on {
	color: #FFFFFF;
	text-decoration: underline;
}

.navimenu a.off {
	color: #FFFFFF;
	text-decoration: none;
}

.navimenu ul {
	position: absolute;
}

.navimenu li:hover ul {
	/* when hovering over the menu links, the submenus are replaced */
	left: auto;
	margin-left: -30px;
}

.navimenu li ul a:hover {
	text-decoration: underline;
}

.submenu li, .subsubmenu li {
	padding-top: 12px;
	padding-right: 18px;
	padding-bottom: 6px;
	text-transform: initial;
	text-align: left;
}

.menu_horizontal {
	/* menu links are horizontal */
	display: inline-block;
}

.menu_vertical {
	display: block;
	border-top: 1px solid #FFFFFF;
	min-width: 140px;
}

.subsubmenu, .submenu {
	display: none;
	z-index: -10;
}

li {
	list-style-type: none;
}

li:hover ul.submenu, li li:hover ul.subsubmenu {
	display: block;
	text-align: left;
}

li:first-child {
	border-top: 0 none;
}

.submenu a, .subsubmenu a {
	color: #000000;
	white-space: nowrap;
}

.submenu ul {
	list-style: none;
	display: none;
}

.list-inline {
	width: 1000px;
}

#mainnavigation {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-around;
	align-items: center;
}

#globalnavigation {
	min-width: 250px;
	margin: 0 auto;
	font-weight: lighter;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: flex-start;
}

#globalnavigation ul {
	list-style: none;
	z-index: 2;
	padding-left: 0px;
}

#globalnavigation ul li ul {
	padding-left: 22px;
}

#globalnavigation ul li ul a {
	text-transform: none;
	padding: 0px 0px 0px 0px;
}

#globalnavigation ul li a {
	padding: 0px 0px 0px 0px;
}

#globalnavigation ul li ul li ul {
	margin-left: -32px;
}

#globalnavigation ul li ul li ul a {
	text-transform: none;
	padding: 0px 0px 0px 0px;
}

.adminSubmenu {
	display: none;
	text-align: center;
	min-width: 174px;
	z-index: 100;
	position: fixed;
	top: 80px;
	left: 0px;
	margin-left: 24px;
	background: transparent;
}

.adminSubmenu a {
	margin-top: -1px;
	margin-bottom: 0px;
}

#contactMenu {
	display: none;
	z-index: 10;
	/* 	position: relative; */
	/* 	top: 88px; */
	/* 	right: 0px; */
	padding-top: 16px;
	padding-bottom: 18px;
}

#iconLang {
	position: absolute;
	top: 10px;
}

#languageMenu {
	float: right;
	padding-right: 2px;
	z-index: 299;
}

#languageMenu a {
	color: #FFFFFF;
	text-decoration: none;
	min-width: 40px;
	display: inline-block;
	padding-left: 2px;
	padding-right: 2px;
}

.languageSelect {
	display: none;
	position: fixed;
	z-index: 100;
	padding: 8px;
	min-width: 35px;
	padding-top: 2px;
	text-align: left;
	margin-left: -70px;
}

#divMenuContact {
	float: right;
	width: 250px;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-right: 250px;
	background-attachment: fixed;
}

#adminMenu {
	padding-right: 6px;
}

#adminMenu a {
	text-decoration: none;
}

#adminMenu ul, .submenu {
	list-style: none;
	display: none;
}

#adminMenu ul li {
	list-style: none;
	margin-right: 4px;
	padding-right: 24px;
	padding-top: 12px;
	padding-bottom: 12px;
}

#shortcuts {
	text-align: center;
	background-color: #FFFFFF;
}

#shortcuts ul li {
	color: var(--color22);
	text-align: left;
}

#shortcuts ul li a {
	text-decoration: none;
	color: var(--color22);
}

.excelButton {
	background-image: url("../images/excel-icon.png");
	background-repeat: no-repeat;
	background-position: 3px center;
	background-size: contain;
	width: auto;
	height: auto;
	margin: 0;
	padding: 0;
}

a:hover.prettyButton {
	text-decoration: none;
	background-color: var(--color24);
}

input[type='submit'], input[type='reset'], input[type='button'] {
	background-color: var(--color21);
	color: #FFFFFF;
	min-width: 78px;
	cursor: pointer;
	vertical-align: middle;
}

input[type='submit'], input[type='reset'], input[type='button'],
	.prettyButton, .prettyButton2, .prettyButton3, .prettyButton4, .dangerousButton {
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	padding-right: 10px;
	margin-top: 6px;
	margin-bottom: 6px;
	margin-left: 5px;
	margin-right: 5px;
	text-decoration: none;
	text-align: center;
	text-transform: none;
	border-radius: 3px;
	border: none;
	font-weight: normal;
	min-width: 78px;
	display: inline-block;
}

a.prettyButton, a.prettyButton2, a.prettyButton3, a.prettyButton4, a.dangerousButton {
	margin-top: 5px;
	margin-bottom: 5px;
	padding-top: 8px;
	padding-bottom: 10px;
}

a.prettyButton img, a.prettyButton2 img, a.prettyButton3 img, a.prettyButton4 img, a.dangerousButton img {
	max-height: 23px;
}	

.prettyButton {
	background-color: transparent;
	color: var(--color22);
	border: 2px solid var(--color22);
}

.prettyButton2 {
	background-color: var(--color21);
	color: #FFFFFF;
}

.prettyButton3 {
	background-color: var(--color22);
	color: #FFFFFF;
}

.prettyButton4 {
	color: var(--color8);
	border: 2px solid var(--color8);
	background-color: rgba(198, 231, 228, 0.2);
}

.dangerousButton {
	background-color: var(--color106);
	color: #FFFFFF;
}

.prettyButton::first-letter, .prettyButton2::first-letter,
	.prettyButton3::first-letter, .prettyButton4::first-letter, .dangerousButton::first-letter {
	text-transform: capitalize;
}

.specialButton {
	background-color: var(--color22);
	color: #FFFFFF;
	height: 20px;
	min-width: 40px;
	margin-top: 2px;
	margin-bottom: 2px;
	margin-right: 4px;
	padding-top: 6px;
	padding-bottom: 0px;
	border-radius: 3px;
	text-decoration: none;
	text-align: center;
	font-weight: normal;
	font-size: 11px;
	display: inline-block;
	vertical-align: middle;
}

.specialButton::first-letter {
	text-transform: capitalize;
}

.buttonGroup {
	width: 100%;
	display: flex;
	align-items: baseline;
	flex-flow: nowrap;
	justify-content: flex-start;
	margin-top: 6px;
}

li.ui-menu-item {
	color: var(--color22);
}

.ui-state-hover, .ui-state-active {
	color: var(--color22);
}

.cuteBorder {
	border-style: dotted;
	border-width: 1px;
	border-color: #CECECE;
	padding-left: 12px;
	padding-right: 12px;
	padding-top: 8px;
	padding-bottom: 8px;
	margin-left: 0px;
	margin-right: 6px;
	margin-top: 4px;
	margin-bottom: 4px;
	border-radius: 5px;
}

.script {
	background-color:  var(--color24);
	border-radius: 5px;
	padding: 8px;
	white-space: pre; 
	display: block; 
	unicode-bidi: embed;
}

.filledCircle, .emptyCircle {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	margin-left: 4px;
	margin-bottom: -2px;
	margin-top: 4px;
	display: inline-block;
	border: 1px solid var(--color22);
}

.borderCircle {
	width: 32px;
	height: 32px;
	max-height: 32px;
    max-width: 32px;
	border-radius: 50%;
	border: 1px solid var(--color6);
}

.borderCircle img {
	height: 30px;
	width: 30px;
	max-height: 30px;
	max-width: 30px;
}

.pager {
	width: 55px;
}

.pagerMaxResult {
	float: right;
	margin-top: -45px;
	margin-right: 54px;
}

.bookTh {
	font-weight: bold;
}

.airytable tr td {
	height: 30px;
}

.footnoteIndex {
	font-size: 8px;
	margin-left: 4px;
	margin-top: -4px;
}

.footnote {
	display: block;
	font-size: smaller;
	margin-top: 6px;
}

.pagination span.resfound, .module span.resfound {
	margin-left: 25px;
	font-weight: bold;
}

.module {
	display: block;
	height: 22px;
	line-height: 21px;
	padding-top: 3px;
	font-size: x-small;
	font-weight: normal;
	margin-left: 20px;
}

.hourglass {
	display: none;
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(255, 255, 255, 0.8) url('../images/waitIcon.gif') 50%
		50% no-repeat;
}

/* Anytime the body has the loading class 'actionInProgress', our
								   modal element will be visible */
body.actionInProgress .hourglass {
	display: block;
}

.criteria {
	width: 100%;
}

.criteria td {
	padding-left: 10px;
	vertical-align: middle;
}

.flexer, .progress-indicator {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}

.no-flexer, .progress-indicator.stacked {
	display: block;
}

.no-flexer-element {
	-ms-flex: 0;
	-webkit-flex: 0;
	-moz-flex: 0;
	flex: 0;
}

.flexer-element, .progress-indicator>li {
	-ms-flex: 1;
	-webkit-flex: 1;
	-moz-flex: 1;
	flex: 1;
}

.progress-indicator {
	margin: 0 0 16px;
	padding: 0;
	font-size: 80%;
	text-transform: uppercase;
}

.progress-indicator>li {
	list-style: none;
	text-align: center;
	width: auto;
	padding: 0;
	margin: 0;
	position: relative;
	text-overflow: ellipsis;
	color: #BBBBBB;
	display: block;
}

.progress-indicator>li:hover {
	color: #6F6F6F;
}

.progress-indicator>li.completed, .progress-indicator>li.completed .bubble
	{
	color: #65D074;
}

.progress-indicator>li .bubble {
	border-radius: 1000px;
	width: 20px;
	height: 20px;
	background-color: #BBBBBB;
	display: block;
	margin: 0 auto 8px;
	border-bottom: 1px solid #888888;
}

.progress-indicator>li .bubble:after, .progress-indicator>li .bubble:before
	{
	display: block;
	position: absolute;
	top: 9px;
	width: 100%;
	height: 3px;
	content: '';
	background-color: #BBBBBB;
}

.progress-indicator>li.completed, .progress-indicator>li.completed .bubble
	{
	color: var(--color22);
}

.progress-indicator>li.current, .progress-indicator>li.current .bubble {
	color: var(--color22);
}

.progress-indicator>li .bubble:after, .progress-indicator>li .bubble:before
	{
	display: block;
	position: absolute;
	top: 9px;
	width: 100%;
	height: 3px;
	content: '';
	background-color: #BBBBBB;
}

.progress-indicator>li .bubble {
	border-radius: 1000px;
	width: 20px;
	height: 20px;
	background-color: #BBBBBB;
	display: block;
	margin: 0 auto 8px;
	border-bottom: 1px solid #888888;
}

.progress-indicator>li.completed .bubble, .progress-indicator>li.completed .bubble:after,
	.progress-indicator>li.completed .bubble:before {
	background-color: #044798;
	border-color: #03336D;
}

.progress-indicator>li.current .bubble, .progress-indicator>li.current .bubble:after,
	.progress-indicator>li.current .bubble:before {
	background-color: var(--color22);
	border-color: #03336D;
}

.progress-indicator>li .bubble:before {
	left: 0;
}

.progress-indicator>li .bubble:after {
	right: 0;
}

.progress-indicator>li:first-child .bubble:after, .progress-indicator>li:first-child .bubble:before
	{
	width: 50%;
	margin-left: 50%;
}

.progress-indicator>li:last-child .bubble:after, .progress-indicator>li:last-child .bubble:before
	{
	width: 50%;
	margin-right: 50%;
}

.progress-indicator>li.active, .progress-indicator>li.active .bubble {
	color: #337AB7;
}

.progress-indicator>li.active .bubble, .progress-indicator>li.active .bubble:after,
	.progress-indicator>li.active .bubble:before {
	background-color: #337AB7;
	border-color: #122A3F;
}

.progress-indicator>li a:hover .bubble, .progress-indicator>li a:hover .bubble:after,
	.progress-indicator>li a:hover .bubble:before {
	background-color: #5671d0;
	border-color: #1F306E;
}

.progress-indicator>li a:hover .bubble {
	color: #F5EF42;
}

.progress-indicator>li.danger .bubble, .progress-indicator>li.danger .bubble:after,
	.progress-indicator>li.danger .bubble:before {
	background-color: #5671d0;
	border-color: #440605;
}

.progress-indicator>li.danger .bubble {
	color: var(--color106);
}

.progress-indicator>li.warning .bubble, .progress-indicator>li.warning .bubble:after,
	.progress-indicator>li.warning .bubble:before {
	background-color: #5671d0;
	border-color: #5A4304;
}

.progress-indicator>li.warning .bubble {
	color: #FF8600;
}

.progress-indicator>li.info .bubble, .progress-indicator>li.info .bubble:after,
	.progress-indicator>li.info .bubble:before {
	background-color: #5671d0;
	border-color: #25135d;
}

.progress-indicator>li.info .bubble {
	color: #03FC66;
}

.progress-indicator.stacked>li {
	text-indent: -10px;
	text-align: center;
	display: block;
}

.progress-indicator.stacked>li .bubble:after, .progress-indicator.stacked>li .bubble:before
	{
	left: 50%;
	margin-left: -1.5px;
	width: 3px;
	height: 100%;
}

.progress-indicator.stacked .stacked-text {
	position: relative;
	z-index: 10;
	top: 0;
	margin-left: 60% !important;
	width: 45% !important;
	display: inline-block;
	text-align: left;
	line-height: 19px;
}

.progress-indicator.stacked>li a {
	border: none;
}

.progress-indicator.stacked.nocenter>li .bubble {
	margin-left: 0;
	margin-right: 0;
}

.progress-indicator.stacked.nocenter>li .bubble:after,
	.progress-indicator.stacked.nocenter>li .bubble:before {
	left: 10px;
}

.progress-indicator.stacked.nocenter .stacked-text {
	width: auto !important;
	display: block;
	margin-left: 40px !important;
}

@media only screen and (max-width:400px) {
	.progress-indicator {
		font-size: 60%;
	}
}

select #typeDocument {
	width: 300px;
}

.red {
	color: #D76D41;
	line-height: 30px;
}

button.accordion {
	background-color: var(--color3);
	color: var(--color8);
	cursor: pointer;
	padding: 15px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 13px;
	transition: 0.4s;
	margin-top: 15px;
}

button.accordion.active, button.accordion:hover {
	background-color: var(--color4);
}

button.accordion:after {
	content: '\002B';
	color: #777777;
	font-weight: bold;
	float: right;
	margin-left: 5px;
}

button.accordion.active:after {
	content: "\2212";
}

div.panel {
	padding: 0 18px;
	background-color: #FFFFFF;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
}

.timeline * {
	box-sizing: border-box;
}

.timeline {
	width: 100%;
	max-width: 800px;
	background: #fff;
	padding: 100px 50px;
	position: relative;
	box-shadow: 0.5rem 0.5rem 2rem 0 rgba(0, 0, 0, 0.2);
}

.timeline:before {
	content: '';
	position: absolute;
	top: 0px;
	left: calc(33% + 15px);
	bottom: 0px;
	width: 4px;
	background: var(--color4);
}

.timeline:after {
	content: "";
	display: table;
	clear: both;
}

.entry {
	clear: both;
	text-align: left;
	position: relative;
}

.entry .title {
	margin-bottom: 8px;
	float: left;
	width: 33%;
	padding-right: 30px;
	text-align: right;
	position: relative;
}

.entry .title:before {
	content: '';
	position: absolute;
	width: 8px;
	height: 8px;
	border: 4px solid #2F9CDD;
	background-color: #FFFFFF;
	border-radius: 100%;
	top: 15%;
	right: -8px;
	z-index: 99;
}

.entry .title h3 {
	margin: 0;
	font-size: 120%;
}

.entry .title p {
	margin: 0;
	font-size: 100%;
}

.entry .body {
	margin: 0 0 30px;
	float: right;
	width: 66%;
	padding-left: 30px;
}

.historyTitle {
	color: #2f9cdd;
	line-height: 22px;
	margin-top: 0;
	font-weight: 600;
}

.historyTitle::first-letter {
	text-transform: capitalize;
}

.entry .body ul {
	padding-left: 0;
	list-style-type: none;
}

.entry .body ul li:before {
	content: "N°";
	margin-right: 8px;
}

input[type='range'] {
	-webkit-appearance: none;
	margin: 10px 0;
	width: 250px;
}

input[type='range']:focus {
	outline: none;
}

input[type='range']::-webkit-slider-runnable-track {
	width: 100%;
	height: 5px;
	cursor: pointer;
	box-shadow: 0px 0px 0px #000000;
	background: #2497E3;
	border-radius: 1px;
	border: 0px solid #000000;
}

input[type='range']::-webkit-slider-thumb {
	box-shadow: 0px 0px 0px #000000;
	border: 1px solid #2497E3;
	height: 18px;
	width: 18px;
	border-radius: 25px;
	background: var(--color22);
	cursor: pointer;
	-webkit-appearance: none;
	margin-top: -7px;
}

input[type='range']:focus::-webkit-slider-runnable-track {
	background: #2497E3;
}

input[type='range']::-moz-range-track {
	width: 100%;
	height: 5px;
	cursor: pointer;
	box-shadow: 0px 0px 0px #000000;
	background: #2497E3;
	border-radius: 1px;
	border: 0px solid #000000;
}

input[type='range']::-moz-range-thumb {
	box-shadow: 0px 0px 0px #000000;
	border: 1px solid #2497E3;
	height: 18px;
	width: 18px;
	border-radius: 25px;
	background: var(--color22);
	cursor: pointer;
}

input[type='range']::-ms-track {
	width: 100%;
	height: 5px;
	cursor: pointer;
	background: transparent;
}

input[type='range']::-ms-fill-lower {
	background: #2497E3;
	border: 0px solid #000000;
	border-radius: 2px;
	box-shadow: 0px 0px 0px #000000;
}

input[type='range']::-ms-fill-upper {
	background: #2497E3;
	border: 0px solid #000000;
	border-radius: 2px;
	box-shadow: 0px 0px 0px #000000;
}

input[type='range']::-ms-thumb {
	box-shadow: 0px 0px 0px #000000;
	border: 1px solid #2497E3;
	height: 18px;
	width: 18px;
	border-radius: 25px;
	background: var(--color22);
	cursor: pointer;
}

input[type='range']:focus::-ms-fill-lower {
	background: #2497E3;
}

input[type='range']:focus::-ms-fill-upper {
	background: #2497E3;
}

.displayTco {
	background-color: transparent;
	border: 0px solid;
}

.displayTco:focus {
	outline: none;
}

.tcolabel {
	text-align: left;
	padding-right: 8px;
	font-weight: bold;
	padding-top: 7px;
	vertical-align: middle;
	color: var(--color6);
}

.tcototal {
	text-align: left;
	font-weight: bold;
	padding-right: 8px;
	padding-top: 7px;
	vertical-align: middle;
	font-size: 145%;
	color: #0da6d2;
}

/* Début Chechbox en bouton slide */
.switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
}

.switch input {
	display: none;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
/* 	background-color: #CCCCCC; */
	-webkit-transition: .4s;
	transition: .4s;
}

.slider:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: #FFFFFF;
	-webkit-transition: .4s;
	transition: .4s;
}

input:checked+.slider {
	background-color: #2196F3;
}

input:focus+.slider {
	box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
	border-radius: 34px;
}

.slider.round:before {
	border-radius: 50%;
}

/* Fin Chechbox en bouton slide */
.fuel {
	color: #9C426A;
}

.fuel input[type='range']::-webkit-slider-runnable-track {
	background: #9C426A;
}

.fuel input[type='range']::-webkit-slider-thumb {
	border: 1px solid #9C426A;
	background: #9C426A;
}

.fuel input[type='range']:focus::-webkit-slider-runnable-track {
	background: #9C426A;
}

.fuel input[type='range']::-moz-range-track {
	background: #9C426A;
}

.fuel input[type='range']::-moz-range-thumb {
	border: 1px solid #9C426A;
	background: #9C426A;
}

.fuel input[type='range']::-ms-track {
	width: 100%;
	height: 5px;
	cursor: pointer;
	background: transparent;
}

.fuel input[type='range']::-ms-fill-lower {
	background: #9C426A;
}

.fuel input[type='range']::-ms-fill-upper {
	background: #9C426A;
}

.fuel input[type='range']::-ms-thumb {
	background: #9C426A;
}

.fuel input[type='range']:focus::-ms-fill-lower {
	background: #9C426A;
}

.fuel input[type='range']:focus::-ms-fill-upper {
	background: #9C426A;
}

.toll {
	color: #B9C52A;
}

.toll {
	color: #B9C52A;
}

.toll input[type='range']::-webkit-slider-runnable-track {
	background: #B9C52A;
}

.toll input[type='range']::-webkit-slider-thumb {
	border: 1px solid #B9C52A;
	background: #B9C52A;
}

.toll input[type='range']:focus::-webkit-slider-runnable-track {
	background: #B9C52A;
}

.toll input[type='range']::-moz-range-track {
	background: #B9C52A;
}

.toll input[type='range']::-moz-range-thumb {
	border: 1px solid #B9C52A;
	background: #B9C52A;
}

.toll input[type='range']::-ms-track {
	width: 100%;
	height: 5px;
	cursor: pointer;
	background: transparent;
}

.toll input[type='range']::-ms-fill-lower {
	background: #B9C52A;
}

.toll input[type='range']::-ms-fill-upper {
	background: #B9C52A;
}

.toll input[type='range']::-ms-thumb {
	background: #B9C52A;
}

.toll input[type='range']:focus::-ms-fill-lower {
	background: #B9C52A;
}

.toll input[type='range']:focus::-ms-fill-upper {
	background: #B9C52A;
}

.insurance {
	color: #BD3923;
}

.insurance {
	color: #BD3923;
}

.insurance input[type='range']::-webkit-slider-runnable-track {
	background: #BD3923;
}

.insurance input[type='range']::-webkit-slider-thumb {
	border: 1px solid #BD3923;
	background: #BD3923;
}

.insurance input[type='range']:focus::-webkit-slider-runnable-track {
	background: #BD3923;
}

.insurance input[type='range']::-moz-range-track {
	background: #BD3923;
}

.insurance input[type='range']::-moz-range-thumb {
	border: 1px solid #BD3923;
	background: #BD3923;
}

.insurance input[type='range']::-ms-track {
	width: 100%;
	height: 5px;
	cursor: pointer;
	background: transparent;
}

.insurance input[type='range']::-ms-fill-lower {
	background: #BD3923;
}

.insurance input[type='range']::-ms-fill-upper {
	background: #BD3923;
}

.insurance input[type='range']::-ms-thumb {
	background: #BD3923;
}

.insurance input[type='range']:focus::-ms-fill-lower {
	background: #BD3923;
}

.insurance input[type='range']:focus::-ms-fill-upper {
	background: #BD3923;
}

.rh {
	color: #E2D50B;
}

.rh input[type='range']::-webkit-slider-runnable-track {
	background: #E2D50B;
}

.rh input[type='range']::-webkit-slider-thumb {
	border: 1px solid #E2D50B;
	background: #E2D50B;
}

.rh input[type='range']:focus::-webkit-slider-runnable-track {
	background: #E2D50B;
}

.rh input[type='range']::-moz-range-track {
	background: #E2D50B;
}

.rh input[type='range']::-moz-range-thumb {
	border: 1px solid #E2D50B;
	background: #E2D50B;
}

.rh input[type='range']::-ms-track {
	width: 100%;
	height: 5px;
	cursor: pointer;
	background: transparent;
}

.rh input[type='range']::-ms-fill-lower {
	background: #E2D50B;
}

.rh input[type='range']::-ms-fill-upper {
	background: #E2D50B;
}

.rh input[type='range']::-ms-thumb {
	background: #E2D50B;
}

.rh input[type='range']:focus::-ms-fill-lower {
	background: #E2D50B;
}

.rh input[type='range']:focus::-ms-fill-upper {
	background: #E2D50B;
}

.maintenance {
	color: #601515;
}

.maintenance input[type='range']::-webkit-slider-runnable-track {
	background: #601515;
}

.maintenance input[type='range']::-webkit-slider-thumb {
	border: 1px solid #601515;
	background: #601515;
}

.maintenance input[type='range']:focus::-webkit-slider-runnable-track {
	background: #601515;
}

.maintenance input[type='range']::-moz-range-track {
	background: #601515;
}

.maintenance input[type='range']::-moz-range-thumb {
	border: 1px solid #601515;
	background: #601515;
}

.maintenance input[type='range']::-ms-track {
	width: 100%;
	height: 5px;
	cursor: pointer;
	background: transparent;
}

.maintenance input[type='range']::-ms-fill-lower {
	background: #601515;
}

.maintenance input[type='range']::-ms-fill-upper {
	background: #601515;
}

.maintenance input[type='range']::-ms-thumb {
	background: #601515;
}

.maintenance input[type='range']:focus::-ms-fill-lower {
	background: #601515;
}

.maintenance input[type='range']:focus::-ms-fill-upper {
	background: #601515;
}

.othercost {
	color: #6B2875;
}

.othercost input[type='range']::-webkit-slider-runnable-track {
	background: #6B2875;
}

.othercost input[type='range']::-webkit-slider-thumb {
	border: 1px solid #6B2875;
	background: #6B2875;
}

.othercost input[type='range']:focus::-webkit-slider-runnable-track {
	background: #6B2875;
}

.othercost input[type='range']::-moz-range-track {
	background: #6B2875;
}

.othercost input[type='range']::-moz-range-thumb {
	border: 1px solid #6B2875;
	background: #6B2875;
}

.othercost input[type='range']::-ms-track {
	width: 100%;
	height: 5px;
	cursor: pointer;
	background: transparent;
}

.othercost input[type='range']::-ms-fill-lower {
	background: #6B2875;
}

.othercost input[type='range']::-ms-fill-upper {
	background: #6B2875;
}

.othercost input[type='range']::-ms-thumb {
	background: #6B2875;
}

.othercost input[type='range']:focus::-ms-fill-lower {
	background: #6B2875;
}

.othercost input[type='range']:focus::-ms-fill-upper {
	background: #6B2875;
}

.truck {
	color: #329EA3;
}

.truck input[type='range']::-webkit-slider-runnable-track {
	background: #329EA3;
}

.truck input[type='range']::-webkit-slider-thumb {
	border: 1px solid #329EA3;
	background: #329EA3;
}

.truck input[type='range']:focus::-webkit-slider-runnable-track {
	background: #329EA3;
}

.truck input[type='range']::-moz-range-track {
	background: #329EA3;
}

.truck input[type='range']::-moz-range-thumb {
	border: 1px solid #329EA3;
	background: #329EA3;
}

.truck input[type='range']::-ms-track {
	width: 100%;
	height: 5px;
	cursor: pointer;
	background: transparent;
}

.truck input[type='range']::-ms-fill-lower {
	background: #329EA3;
}

.truck input[type='range']::-ms-fill-upper {
	background: #329EA3;
}

.truck input[type='range']::-ms-thumb {
	background: #329EA3;
}

.truck input[type='range']:focus::-ms-fill-lower {
	background: #329EA3;
}

.truck input[type='range']:focus::-ms-fill-upper {
	background: #329EA3;
}

.numeric, .numeric1Dec, .numeric2Dec {
	width: 30%;
}

.inputTco {
	width: 50%;
}

.emptySelectOption {
	color: var(--color6);
}

.nodecoration {
	text-decoration: none;
}

.table {
	display: table;
	width: 100%;
	font-size: small;
}

.tablerow {
	display: table-row;
}

.tablecellleft, .tablecellright, .tablehead {
	display: table-cell;
	height: 20px;
	vertical-align: middle;
	white-space: nowrap;
}

.tablehead {
	padding: 4px 8px 4px 8px;
	white-space: nowrap;
	font-weight: normal;
	color: var(--color8);
}

.tablecellleft {
	text-align: right;
	padding-top: 1px;
	padding-right: 4px;
	padding-bottom: 1px;
	padding-left: 6px;
}

.tablecellright {
	text-align: left;
	padding-right: 12px;
	padding-left: 6px;
	padding-top: 3px;
	padding-bottom: 3px;
}

.tableheading {
	display: table-header-group;
}

.tableFoot {
	background-color: var(--color3);
	display: table-footer-group;
	font-weight: normal;
}

.tableBody {
	display: table-row-group;
}

.tablerow a {
	text-decoration: none;
}

.tablehead a {
	text-decoration: none;
}

.areaFlag {
	width: 24px;
	margin-left: 0px;
	margin-right: 0px;
	margin-bottom: -6px;
	margin-top: 6px;
}

::placeholder {
	opacity: 0.44;
}

:-ms-input-placeholder {
	opacity: 0.44;
}

::-ms-input-placeholder {
	opacity: 0.44;
}

.tableStyle th {
	font-weight: normal;
}

.tableStyle tr {
	vertical-align: middle;
	height: 36px;
}

#requestList {
	margin-top: 50px;
	text-align: left;
	min-width: 700px;
}

.gmapStyle {
	width: 100%;
	height: 100%;
	position: absolute;
}

#gmapWrapper {
	width: 100%;
	height: 100%;
	position: relative;
}

.planTripCriteria {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 90;
	padding: 10px;
	background-color: rgba(255, 255, 255, 0.8);
	border: 2px solid rgba(8, 163, 200, 0.8);
	min-width: 220px;
	min-height: 162px;
}

.partnerStationCriteria {
	position: absolute;
	top: 10px;
	right: 20px;
	z-index: 90;
	padding: 10px;
	background-color: rgba(255, 255, 255, 0.8);
	border: 2px solid rgba(8, 163, 200, 0.8);
	width: 320px;
	min-height: 162px;
}

.partnerStationCriteria form span label {
	padding-left: 8px;
	display: inline-block;
}

.company, .manager {
	display: inline;
	margin: 0 auto;
}

.company tr, .manager tr {
	text-align: left;
	vertical-align: middle;
}

.company input, .manager input, .company select, .manager select {
	width: 300px;
}

.sideToSide {
	float: left;
	width: 650px;
	text-align: center;
}

.contactpersondiv {
	float: right;
	width: 650px;
}

input[type="submit"].buttonToLink {
	background: none;
	border: none;
	background-image: none;
	background-color: transparent;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	color: var(--color8);
	font-weight: normal;
	text-decoration: none;
	cursor: pointer;
	padding: 0px;
	min-width: 10px;
	height: 26px;
	display: inline-block;
	margin: -12px 0px 0px 0px;
}

.row {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
}

.column {
	display: flex;
	flex-direction: column;
	flex-basis: 100%;
	flex: 1;
}

h1, h2, h3, h4, h5, h6 {
	text-align: left;
	margin-left: 0px;
}

h3 {
	color: var(--color21);
	margin-top: 14px;
	margin-bottom: 14px;
	font-weight: lighter;
}

h3::first-letter, h4::first-letter {
	text-transform: capitalize;
}

h4 {
	color: var(--color21);
	margin-top: 6px;
	margin-bottom: 8px;
}

.vspacer, .vspacer2 {
	padding-bottom: 12px;
	display: block;
}

.vspacer {
	padding-top: 10px;
}

.vspacer2 {
	padding-top: 20px;
}

.statusPoint {
	display: inline-block;
	height: 20px;
	min-width: 20px;
	padding: 2px;
	border-radius: 14px;
}

.statusLabel {
	color: #FFFFFF;
	padding-top: 4px;
	padding-bottom: 4px;
	padding-left: 6px;
	padding-right: 6px;
	display: block;
	text-transform: uppercase;
	max-width: 118px;
	text-align: center;
	border-radius: 3px;
	font-weight: lighter;
	font-size: smaller;
}

.statusMessage {
	padding-inline-start: 0px;
	padding-left: 0px;
	margin-left: auto;
	margin-right: auto;
	width: fit-content;
}

.personName {
	font-weight: normal;
	font-family: cursive;
	font-size: medium;
}

.datatable {
	background: #FFFFFF;
	border-collapse: collapse;
	margin-top: 18px;
	width: 100%;
}

.datatable th, header, .tableheading {
	color: var(--color8);
	padding: 10px 12px 10px 0px;
	border-bottom: 1px solid var(--color5);
	border-top: 1px solid var(--color5);
	font-weight: normal;
	background-color: #FCFAFA;
	border-bottom-width: 1px;
}

.datatable a {
	text-decoration: none;
}

.datatable th a {
	text-decoration: none;
	font-weight: bold;
	color: var(--color8);
	white-space: nowrap;
}

.datatable th a::first-letter {
	text-transform: capitalize;
}

.datatable tr, .tablerow {
	border-bottom: 1px solid var(--color5);
	padding: 2px 12px 2px 12px;
}

.datatable tr.odd, .tablerow.odd {
	background: var(--color3);
	margin: 0;
	min-height: 32px;
	vertical-align: middle;
}

.datatable tr.even, .tablerow.even {
	background: #FFFFFF;
	margin: 0;
	min-height: 32px;
	vertical-align: middle;
}

.datatable tr.statusHot, .statusHot {
	color: var(--color106);
	margin: 0;
	min-height: 28px;
	vertical-align: middle;
}

.datatable tr.statusWarm, .statusWarm {
	color: #7A2704;
	margin: 0;
	min-height: 28px;
	vertical-align: middle;
}

.datatable tr.statusCold, .statusCold {
	color: var(--color22);
	margin: 0;
	min-height: 28px;
	vertical-align: middle;
}

.datatable tbody tr:hover td {
	background-color: var(--color2);
	text-decoration: blink;
}

.pagination {
	display: block;
	text-align: center;
	height: 22px;
	line-height: 21px;
	clear: both;
	padding-top: 3px;
	font-size: x-small;
	font-weight: normal;
}

.pagination a:link, .pagination a:visited {
	padding: 7px;
	padding-top: 2px;
	padding-bottom: 2px;
	border: 1px solid var(--color3);
	margin-left: 10px;
	text-decoration: none;
	background-color: var(--color3);
	color: var(--color22);
	width: 22px;
	font-weight: normal;
}

.pagination a:hover {
	background-color: var(--color24);
	border: 1px solid var(--color23);
	color: var(--color22);
}

.pagination .tnt-link-active {
	padding: 7px;
	padding-top: 2px;
	padding-bottom: 2px;
	border: 1px solid var(--color23);
	margin-left: 10px;
	text-decoration: none;
	background-color: var(--color24);
	color: var(--color22);
	cursor: default;
}

.pagination .tnt-pagination-disabled {
	padding: 7px;
	padding-top: 2px;
	padding-bottom: 2px;
	border: 1px solid var(--color3);
	margin-left: 10px;
	text-decoration: none;
	background-color: var(--color3);
	color: var(--color4);
	cursor: default;
}

input.disabled {
	position: relative;
	color: grey;
	opacity: 0.5 !important;
	cursor: not-allowed;
}

input.disabled:after {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: ' ';
}

.infoIcon {
	height: 22px;
	margin-left: 10px;
	margin-bottom: -5px;
}

.overText {
	position: relative;
	top: 0px;
	left: 0px;
	z-index: 50;
	background: rgba(0, 0, 0, 0.8);
	color: #FFFFFF;
	border-radius: 4px;
	border: 2px solid #2497E3;
	padding: 6px;
}

.newFeature {
	height: 16px;
	display: inline;
	margin-bottom: -3px;
}

.submenu li.navSeparator {
	border-top: 3px solid var(--color3);
}

.hoverlink {
	border-radius: 3px;
	font-weight: normal;
	cursor: pointer;
	text-decoration: none;
	padding: 10px;
	margin-top: 3px;
	margin-bottom: 3px;
}

.hoverlink:hover {
	background-color: var(--color21);
	color: #FFFFFF;
	text-decoration: none;
	margin-top: 3px;
	margin-bottom: 3px;
}

.finTx {
	background-color: rgba(195, 226, 234, 0.4);
	border: 0.5px solid var(--color23);
	color: var(--color7);
	margin-right: 6px;
}

.environmentId {
	position: absolute;
	left: 8px;
	top: 5px;
}

.switchEnvironmentId a {
	color: var(--color21);
}

.environmentId, .switchEnvironmentId {
	z-index: 120;
	font-size: 10px;
	min-width: 34px;
	white-space: nowrap;
	color: var(--color21);
	padding: 2px;
	border-radius: 3px;
	margin-bottom: 1px;
	text-align: center;
	text-decoration: none;
}

.infoText {
	color: var(--color6);
	font-size: smaller;
	margin-top: 12px;
	margin-left: 6px;
}

.undefined {
	color: var(--color23);
}
.priceOn .undefined {
	color: var(--color22);
}

.languageIconBox {
	z-index: 86;
	text-align: right;
}

.languageIcon {
	width: 22px;
	padding-left: 8px;
}

.topSeparator {
	border-top: 1px solid var(--color4);
	border-top-style: dotted;
}

.vertSeparator {
	border-left: 1px solid var(--color5);
	border-left-style: dotted;
}

.vert1 {
	border-left: 2px solid var(--color101);
	border-left-style: solid;
}

.vert2 {
	border-left: 2px solid var(--color102);
	border-left-style: solid;
}

.vert3 {
	border-left: 2px solid var(--color105);
	border-left-style: solid;
}

.vert4 {
	border-left: 2px solid #0096FF;
	border-left-style: solid;
}

.road {
	color: var(--color101);
}

.vat {
	color: var(--color102);
}

.ferry {
	color: var(--color103);
}

.diesel {
	color: var(--color104);
}

.productPrint {
	display: block;
	font-size: 8px;
	min-width: 70px;
	max-width: 140px;
}

/* https://stackoverflow.com/questions/21371594/display-div-or-span-over-image-on-hover */
.sensitiveItem {
	position: relative;
}

.hiddenOverlay {
	display: none;
	z-index: 30;
}

.sensitiveItem:hover .hiddenOverlay {
	min-width: 300px;
	min-height: 200px;
	background: #FFFFFF;
	position: absolute;
	top: 0px;
	left: 38px;
	display: inline-block;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 8px;
	border: 1px solid var(--color22);
	padding: 8px;
}

/* https://css-tricks.com/rotated-table-column-headers/ */
th.rotate {
	height: 140px;
	white-space: nowrap;
	vertical-align: middle;
}

th.rotate>div {
	transform: translate(8px, 56px) rotate(305deg);
	width: 30px;
}

th.rotate>div>span {
	border-bottom: 0px solid;
	font-weight: lighter;
	font-size: x-small;
}

.nbOfElts {
	font-size: 10px;
	padding-left: 10px;
	padding-right: 8px;
}

.conversation {
	padding-right: 4px;
	display: flex; 
	flex-direction: row; 
	justify-content: space-between;
}

.conversation:hover {
	background-color: var(--color3);
}

.unviewed {
	background-color: #E6F5F9;
}

.processed {
	background-color: #E6F9EB;
}

.line span {
	margin: 4px;
}

.titleLoopIndex {
	padding-left: 8px;
	font-size: x-small;
}

.tableActions {
	padding-left: 6px;
	min-width: 108px;
	white-space: nowrap;
	text-align: right;
}

.priceTag {
	color: #FFFFFF;
}

.priceOn {
	color: var(--color7);
}

.priceTag, .priceOn {
	padding: 10px;
	margin-top: 2px;
	margin-bottom: 2px;
	text-align: center;
	border-radius: 3px;
	border: none;
	background-color: var(--color4);
	font-size: smaller;
	text-decoration: none;
	display: inline-block;
}

.chocolateSquare {
	align-self: center;
	justify-content: space-around;
}

.menuChocolate {
	display: block;
}

.menuChocolate a {
	text-decoration: none;
}

.menuChocolate img {
	width: 36px;
	height: 36px;
	margin-bottom: -4px;
	margin-left: 2px;
}

#changeLanguage {
	font-size: smaller;
}

#changeLanguage img {
	width: 18px;
	height: 18px;
	margin-left: 2px;
	margin-bottom: -5px;
}

.bar {
	background-color: var(--color21);
	height: 16px;
	border-radius: 3px;
}

.bghighlight {
	color: var(--color103);
}

.highlightLabel {
	background-color: #F2F3FC;
	border-radius: 4px;
	overflow: hidden;
	padding: 4px;
}

.variables {
	display: flex; 
	flex-direction: column; 
	flex-wrap: nowrap; 
	border: 1px solid var(--color4); 
	border-radius: 4px; 
	padding: 7px;
}

.variables > div {
	display: flex; 
	flex-direction: row; 
	flex-wrap: nowrap; 
	justify-content: flex-start; 
	width: 100%; 
	padding-top: 6px;
}

.variables > div > span:first-of-type {	
	color: var(--color103);
}

.sticker {
	background-color: rgba(195, 226, 234, 0.4);
	border: 0.5px solid var(--color23);
	color: var(--color7);
	border-radius: 4px;
	font-weight: normal;
	text-decoration: none;
	padding: 5px;
	margin-right: 6px;
	margin-top: 3px;
	margin-bottom: 3px;
}

.stickerGroup {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	max-width: 540px;
}

.copypaste {
	border: 0px;
	margin-bottom: -5px;
	text-decoration: none;
	max-height: 30px;
	max-width: 30px;
}

.copypaste:hover {
	text-decoration: none;
}

.copypastetooltip {
	position: relative;
	display: inline-block;
}

.copypastetooltip .tooltiptext {
	visibility: hidden;
	min-width: 140px;
	background-color: var(--color7);
	color: #FFFFFF;
	text-align: center;
	border-radius: 4px;
	padding: 5px;
	position: absolute;
	z-index: 1;
	bottom: 150%;
	left: 50%;
	margin-left: -75px;
	opacity: 0;
	transition: opacity 0.3s;
}

.copypastetooltip .tooltiptext::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: var(--color7) transparent transparent transparent;
}

.copypastetooltip:hover .tooltiptext {
	visibility: visible;
	opacity: 1;
}

.comments {
	display: block; 
	max-width: 420px; 
	white-space: pre-wrap;
}

/* https://bugs.eclipse.org/bugs/show_bug.cgi?id=442852 */
@keyframes MOVE-BG {from { transform:translateX(0);  } to { transform: translateX(-187%);}};