html, body, input, textarea, select, button, a, .text 
{
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	font-size: 13px;
	font-weight: 350; /* normal */
	color: #1b1b1b;
	//height: 100%;
}

body
{
	display: -ms-flexbox;
	display: flex;
	-ms-flex-flow: column;
	flex-flow: column;
	background-color: #dedee1;
	text-align: left;
	width: 100%;
	min-height: 100%;
	padding: 0;
	margin: 0;
	text-rendering: optimizelegibility;
	//overflow-wrap: break-word;
	//word-wrap: break-word;
	//word-break: break-word;
}

.formbody
{
	//background-color: #EDF2F9;
	background-color: #FFFFFF;
}

.section-bg {
	background: rgba(255, 255, 255, 0) linear-gradient(to bottom, transparent 10%, rgba(255, 255, 255, 0.1) 40%, rgba(255, 255, 255, 0.5) 75%, rgba(238, 242, 250, 0.7) 100%) repeat scroll 0 0;
}

P
{
	padding:0; margin: 7px 0px 7px 0px;
}

UL
{
	padding: 0px 0px 0px 15px; margin: 0px 0px 0px 0px;
}

UL LI
{
	padding: 0; margin: 0;
}

UL LI UL
{
	padding: 0px 0px 0px 16px; margin: 0px 0px 0px 0px;
}

UL LI UL LI
{
	list-style-type: disc; padding: 0; margin: 0;
}

a
{
	font-family: inherit;
	font-weight: normal;
	text-decoration: none;
	color: #0099FF;
}

a:hover 
{
	text-decoration: underline;
}

hr
{
	width: 100%;
	margin: 4px 0px;
	border: 0;
	border-top: 1px solid #a1a1a1;
}

/* Remove Arrows/Spinners*/
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button
{
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
input[type=number]
{
	-moz-appearance: textfield;
}

.disabled
{
	background-color: #D0DEF0 !important;
}

.error
{
	background-color: #ffbdc0 !important;
}

.error[type=checkbox], .error[type=radio]
{
	accent-color: #ffbdc0;
	outline: 2px solid #ff7d83;
}

label
{
	white-space: nowrap;
	max-width: 380px;
	overflow: hidden;
	text-overflow: ellipsis; 
}

.inputfield, input[type=text], input[type=number], input[type=password], textarea, select
{
	min-height: 24px;
	border: 1px solid #a9a9a9;
	border-bottom: 2px solid #005ca9;
	background-color: #FFFFFF;
	padding: 2px 2px 2px 4px;
	margin: 1px 0px;
	box-sizing: border-box;
	/*-webkit-appearance: none;*/
}

.inputfield:focus, input[type=text]:focus, input[type=number]:focus, input[type=password]:focus, textarea:focus, select:focus
{
	background-color: #FFFF64 !important;
	outline: 0;
}

input[type=submit], input[type=button], input[type=reset], button
{
	min-height: 22px;
	border: 1px solid #005bac;
	border-bottom: .2rem solid #005ca9;
	background-color: #005bac !important;
	color: #FFFFFF;
	margin: 3px 5px 3px 0px;
	padding: 3px 4px;
	display:inline-block;
	cursor:pointer;
	font-family: inherit;
	text-decoration: none;
	/*-webkit-appearance: none;*/
}

input[type=submit]:hover, input[type=button]:hover, input[type=reset]:hover, button:hover
{
	background-color: #014480 !important;
	text-decoration: none;
	/*-webkit-appearance: none;*/
}

select
{
	min-height: 24px;
	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALCAYAAACprHcmAAAAB3RJTUUH5AIODR8uwkpHZQAAAAlwSFlzAAAHRAAAB0QBKlH81AAAAARnQU1BAACxjwv8YQUAAABhSURBVHjaY2AYXMDd3X0ekPqPjqHiqKC6ulrQwcFhB7JCEB8kjqG4ubmZoaKiQl5BQeE5SCGIBvFB4higoaGBoampiSEjIyOIk5PzG4gG8UHiWBVDMWNkZGQpiIaJDTIAAHhVLzM4i7OKAAAAAElFTkSuQmCC');
	//background-image:  url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAASCAYAAAC0EpUuAAAAB3RJTUUH5AIZCjMOCJR1oAAAAAlwSFlzAAAOwwAADsMBx2+oZAAAAARnQU1BAACxjwv8YQUAAAB6SURBVHja7dRRCsAgCADQrtLxPJMEHcNjdJRu4OaHIGNN2/oYY4E/oo9AK9VaeUUgIic9kui9Pw4A+NEBSkQuIDWttTiac+ZSyiW4t82j0nQGKziN2kYLj/LhQR0BDwxP30IeOLVSkRve2lOBPfBDL+q9qHyuklgRam6cfnaMQKiXwQAAAABJRU5ErkJggg==');
	background-repeat: no-repeat;
	background-position: 100% 50%;
	border: 1px solid #a9a9a9;
	border-bottom: 2px solid #005ca9;
	background-color: #FFFFFF;
	-webkit-appearance: none;
	-webkit-border-radius: 0px;
	-moz-appearance: none;
	appearance: none;
	padding: 2px 12px 2px 4px;
}

/* pseudo-element for the dropdown arrow on IE */
select::-ms-expand
{
	display: none;
}

input:disabled, select:disabled, textarea:disabled, button:disabled
{
	filter: alpha(opacity=35);
	-moz-opacity: 0.35;
	opacity: 0.35;
}

.readonly
{
	background-color: #D0DEF0 !important;
}

.linkMainMenu
{
	font-size: 13px;
	font-weight: normal;
	text-decoration: none;
	color: #0099FF;
	text-align: center; 
	vertical-align: middle
}

.linkMainMenu:hover
{
	font-size: 13px;
	font-weight: normal;
	text-decoration: none;
}

.inputbox
{
	border-bottom: solid 1px #000000;
	float: left;
	font-weight: bold;
	vertical-align: bottom;
}

.headlinedot {
	box-sizing: border-box;
	height: 22px;
	width: 22px;
	background-color: rgb(3, 182, 117);
	border-radius: 50%;
	display: inline-block;
	color: #FFFFFF;
	padding-top: 0px;
	padding-left: 5px;
}

.headline
{
	font-size: 15px;
	font-weight: bold;
	color: #005ca9;
}

.infolink
{
	cursor: help;
	font-size: 11px;
	font-weight: normal;
	color: #005ca9;
	height: 18px; 
	vertical-align: bottom;
}

.textsmall
{
	font-size: 11px;
	font-weight: normal;
	color: #595959;
}

.row_active
{
	background-color: #D2E0F2;
}

.row_passive
{
	background-color: #e6e6e6;
}

.row_selected
{
	background-color: #FFFF64;
}

UL.biglist LI
{
	padding-bottom: 2px; padding-top: 2px; margin: 0px; width: auto; height: auto; 
}

.formheadline
{
	font-size: 15px;
	font-weight: bold;
}

.formtext 
{
	font-size: 11px;
	font-weight: normal;
}


/* Print Styles */
.printtext 
{
	font-size: 12px;
	font-weight: normal;
	color: #000000;
}

.printsmalltext 
{
	font-size: 10px;
	font-weight: normal;
	color: #000000;
}

.printmainheadline
{
	font-size: 20px;
	font-weight: bold;
	color: #000000;
}

.printgreyheadline
{
	font-size: 18px;
	font-weight: normal;
	color: #666666;
}

.printredheadline
{
	font-size: 16px;
	font-weight: bold;
	color: #FF0000;
}

.printblackheadline
{
	font-size: 16px;
	font-weight: bold;
	color: #000000;
}

.printheadline
{
	font-size: 13px;
	font-weight: bold;
	color: #000000;
}

.printvms
{
	font-size: 17px;
	color: #A5A6AD;
}
.printservicegesellschaft
{
	font-family: Times New Roman, sans-serif, Helvetica;
	font-size: 23px;
	color: #00A6EF;
}
.printvmsadresse
{
	font-family: Times New Roman, sans-serif, Helvetica;
	font-size: 13px;
	color: #A5A6AD;
}

.printtextschrift
{
	font-size: 12px;
	font-weight: normal;
	color: #000000;
}

.printpraemie
{
	background-color: #CCFFFF;
	font-size: 12px;
	font-weight: bold;
	color: #000000;
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	padding: 0;
}

/* Tables */

.pagecell
{
	display: table;
	vertical-align: top;
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	border: 0;
	padding: 0;
}

.pagetable
{
	width: 100%;
	margin: 0;
	border-collapse: collapse;
	border-spacing: 0;
	border: 0;
}

table.fliptable td
{
	display: table-cell;
}

table.cell
{
	align: left;
	vertical-align: top;
	border-collapse: collapse;
	border-spacing: 0;
	border: 0;
	padding: 0;
}


table.boxedcell
{
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	padding: 0;
}

table.boxedcell, td.boxedcell
{
	border: 2px solid black;
}

td.formlabelcell
{
	width: 120px;
	vertical-align: bottom;
	white-space: nowrap;
}

td.shorttext
{
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.layoutcell
{
	width: 100%;
	border-collapse: separate;
	border-spacing: 5px 1px;
	padding: 0;
}

.footercell
{
	margin-top: 6px;
	display: block;
	clear: both;
	width: 100%;
	text-align: right;
	white-space: nowrap;
	font-size: 10px;
}

.reduced
{
	font-size: 10px;
}

/* Tooltip */

.tooltip
{
	cursor: help;
	position: relative;
	display: inline-block;
	//border-bottom: 1px dotted black;
}

.tooltip .tooltiptext
{
	position: absolute;
	z-index: 100;
	visibility: hidden;
	width: 280px;
	background-color: #FFFFFF;
	color: #000000;
	text-align: left;
	border-radius: 0;
	border-color: #698EAF;
	border-style: solid;
	border-width: 1px;
	padding: 8px;
	bottom: 125%;
	left: 50%;
	margin-left: -70px;
	opacity: 0;
	transition: opacity 0.3s;
}

.tooltip .tooltiptext::after
{
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -7px;
	border-width: 7px;
	border-style: solid;
	border-color: #698EAF transparent transparent transparent;
}

.tooltip:hover .tooltiptext
{
	visibility: visible;
	opacity: 1;
}


/* E-Signature */

/*This is the div within which the signature canvas is fitted*/
#signature
{
	border: 2px dotted black;
	background-color: #ffffff;
	color: darkblue;
}

.signatureheader
{
	background-color: #FFFFFF;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 44px;
	z-index: 20;
	border-bottom: 1px solid #a6a6a6;
	padding: 0px 14px 0px 0px;
	line-height: 44px;
	vertical-align: middle;
}

.signaturecontent
{
	background-color: #EDF2F9; 
	position: fixed;
	top: 44px;
	bottom: 60px;
	left: 0;
	right: 0;
	z-index: 10;
	padding: 8px;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

.signatureoverlay
{
	display: none;
	background-color: #EDF2F9; 
	position: fixed;
	top: 44px;
	bottom: 61px;
	left: 0;
	right: 0;
	z-index: 12;
	padding: 0;
	//overflow: auto;
	//-webkit-overflow-scrolling: touch;
}

.signaturefooter
{
	background-color: #ffffff;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	height: 44px;
	z-index: 11;
	border-top: 1px solid grey;
	padding: 8px;
}

/* loading screen */
.loading-screen
{
  position: absolute;
  z-index: 10;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.65);
  display: none;
}

/* loading spinner */
.lds-dual-ring
{
  width: 80px;
  height: 80px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.lds-dual-ring:after
{
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: #fff transparent #fff transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring
{
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Google Maps correct button color */
#hcmsGeolocationChart button
{
  color: #333333;
  background-color: #FFFFFF !important;
}

/* Logo */
.logo
{
	height: 24px;
	margin: 0px 8px -2px 0px;
	vertical-align: bottom;
}

/* HomeBoxes 2022 */
.page-wrapper
{
 	position: relative;
 	margin: 0 auto;
	padding: 0px 0px 6px 0px;
	width: calc(100% - 2px);
 	max-width: 111rem;
	min-height: 100%;
 	background-color: #ffffff;
	border-bottom: 1px solid #cccccc;
	border-left: 1px solid #cccccc;
	border-right: 1px solid #cccccc;
}

.homecolumnLarge
{
	display: inline-block;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	width: calc(50% - 4px);
	vertical-align: top;
}

.homecolumnLargeSub
{
	display: inline-block;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	width: calc(50% - 2px);
	vertical-align: top;
}

.homecolumn
{
	display: inline-block;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	width: calc(25% - 4px);
	vertical-align: top;
}

.homebox
{
	display: inline-block;
	box-sizing: border-box;
	width: calc(100% - 20px);
	min-width: 340px;
	overflow: hidden;
	padding: 5px;
	margin: 10px;
	font-size: inherit;
	text-align: left;
	vertical-align: top;
	border: 1px solid #a1a1a1;
	border-top: .4rem solid #005ca9;
}

.nodesignbox
{
	display: inline-block;
	box-sizing: border-box;
	width: calc(100% - 20px);
	min-width: 340px;
	overflow: hidden;
	padding: 0px;
	margin: 10px;
	font-size: inherit;
	text-align: left;
	vertical-align: top;
}

.pagebox
{
	display: block;
	overflow: auto;
	padding: 5px;
	margin: 0px auto;
	font-size: inherit;
	text-align: left;
	vertical-align: top;
	border: 1px solid #a1a1a1;
	border-top: .4rem solid #005ca9;
}

.inblack
{
	color: #FFFFFF;
	// grün: background-color: #03b675;
	// background-color: #00335e;
	background-color: #0064b8;
}

.indarkblue
{
	color: #FFFFFF;
	background-color: #005ca9;
}

.ingrey
{
	color: #333333;
	background-color: #dedede;
}

.inblue
{
	color: #333333;
	background-color: #EDF2F9;
}

/* Arrows */
.arrow
{
  border: solid white;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}

.right
{
  transform: rotate(-45deg);
  -webkit-transform: translateX(-25%) translateY(-90%)  rotate(-45deg);
}

.left
{
  transform: rotate(135deg);
  -webkit-transform: translateX(25%) translateY(-90%)  rotate(135deg);
}

.up
{
  transform: rotate(-135deg);
  -webkit-transform: translateY(-75%) rotate(-135deg);
}

.down
{
  transform: rotate(45deg);
  -webkit-transform: translateY(-90%) rotate(45deg);
}

/* Mobile */
.nomobile
{
	display: inline-block;
}

/* Reduce to 3 homecolumns */
@media only screen and (max-width: 1480px)
{
	.homecolumnLarge
 	{
		width: calc(66.6% - 4px);
	}

	.homecolumnLargeSub
 	{
		width: calc(50% - 2px);
	}

	.homecolumn
 	{
		width: calc(33.3% - 4px);
	}	
}

/* Reduce to 2 homecolumns */
@media only screen and (max-width: 1060px)
{
	.homecolumnLarge
 	{
		width: calc(100% - 4px);
	}

	.homecolumnLargeSub
 	{
		width: calc(50% - 2px);
	}

	.homecolumn
 	{
		width: calc(50% - 6px);
	}	
}

/* Reduce to 1 homecolumn and transform */
@media only screen and (max-width: 760px)
{
	.inputfield, input[type=text], input[type=number], input[type=password], textarea, select
	{
		max-width: 380px;
	}

	.formtext
	{
		font-size:13px;
	}

	table.fliptable td
	{
		display: block;
	}

	table.nofliptable td
	{
		display: table-cell;
	}

	select.nofliptable, textarea.nofliptable, input.nofliptable
	{
		max-width: 130px;
	}

	td.formlabelcell
	{
		width: 160px;
	}

	.homecolumnLarge
 	{
		width: 100%;
	}

	.homecolumnLargeSub
 	{
		width: 100%;
	}

	.homecolumn
 	{
		width: 100%;
	}

	.homebox
	{
		width: calc(100% - 20px);
	}

	.nomobile
	{
		display: none;
	}
}

/* for small screens */
@media only screen and (max-width: 460px)
{
	.inputfield, input[type=text], input[type=number], input[type=password], textarea, select
	{
		max-width: 280px;
	}

	.formlabelcell
	{
		display: inline-block;
		width: 120px;
	}

	.nomobile
	{
		display: none;
	}
}