/* DEFAULT STYLES */
div, table, td, p{	
	font-family: 'Open Sans', sans-serif;
	font-size: 10pt;
}

h1{
	font-family: 'Open Sans', sans-serif;
	font-size: 20pt;
	font-weight: normal;
	margin: 0px;
	padding: 0px;
	font-style: italic;
	color: #555;
}

h2{
	font-family: 'Open Sans', sans-serif;
	font-size: 14pt;
	font-weight: normal;
	margin: 0px;
	margin-bottom: 4px;
	padding: 0px;
	text-shadow: 1px 1px 0px #FFF;
}

#debug{
	position: absolute;
	top: 0px;
	left: 0px;
	padding: 10px;
	background-color: #FFF;
	border: 1px solid #DDD;
	z-index: 99999;
}

div.spacer{
	margin: 0;
	padding: 0;
	border-top: 1px solid #EFEFEF;
	border-bottom: 1px solid #AAA;
	margin-bottom: 4px;
}
/* END DEFAULT STYLES */

img.icon{
	max-width: 16px;
	max-height: 16px;
	vertical-align: middle;
}


/* FLOATING, FORM & INPUT ELEMENTS */
.flex-container {
  display: flex;
  flex-wrap: nowrap;
}

.flex-container > .flex-box {
 
}

.margin-left{
	margin-left: 10px;
}

.margin-right{
	margin-right: 10px;
}

input.default_input_big{
	border: 1px solid #CCC;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	font-size: 12pt;
	padding: 5px 10px;
	width: 70%;
	margin-bottom: 10px;
}
input.default_input_big:focus{
	border-color: #1A73E8;
	box-shadow: 0px 1px 3px #999;
}
.stretch{
	width: 100%;
}

div.nb_form_title{
	font-size: 10pt;
	color: #333;
	margin-bottom: 3px;
}

div.nb_form_content{
	font-size: 10pt;
	margin-bottom: 8px;
}

input.nb_input, select.nb_input, textarea.nb_input{
	border: 1px solid #AAA;
	font-family: Tahoma, Verdana, Arial, sans-serif;
	padding: 4px 7px;
	font-size: 10pt;
	margin: 0;
}

input.nb_input.big, select.nb_input.big, textarea.nb_input.big{
	font-size: 14pt;
	margin: 0;
}

input.nb_input:focus, textarea.nb_input:focus{
	border: 1px solid #388FE0;
	border-left: 4px solid #388FE0;
}

div.btn_menu{
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0px;
	height: 30px;
	background-color: #EEE;
	border-top: 1px solid #638BA0;
}

div.button{
	height: 30px;
	line-height: 30px;
	display: inline-block;
	cursor: pointer;
	padding: 0px 10px;
}

div.button img{
	max-height: 16px;
	max-width: 16px;
	vertical-align: middle;
}

div.button:hover{
	background-color: #DDD;
}

div.button:active{
	background-color: #999;
}

div.btn_menu_kontextMenue{
	position: absolute;
	bottom: 0;
	width: 150px;
	height: auto;
	border: 1px solid red;
	z-index: 999;
}

div.nb_float_left{
	float: left;
	padding: 0px;
	margin-right: 20px;
}
/* END FLOATING, FORM & INPUT ELEMENTS */




/* TABLES */
table.nb_table{
	background-color: #FFF;
	border-collapse: collapse;
	border: 1px solid #b5c6d0;
}

td.nb_table_header{
	
	border-bottom: 1px solid #b5c6d0;
	color: #111;
	font-size: 8pt;
	font-weight: bold;
	text-shadow: 1px 2px 3px #f2f6f8;
	padding: 4px 10px;
	
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f2f6f8+0,d8e1e7+50,b5c6d0+51,e0eff9+100;Grey+Gloss+%232 */
	background: #f2f6f8; /* Old browsers */
	background: -moz-linear-gradient(top,  #f2f6f8 0%, #d8e1e7 50%, #b5c6d0 51%, #e0eff9 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  #f2f6f8 0%,#d8e1e7 50%,#b5c6d0 51%,#e0eff9 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  #f2f6f8 0%,#d8e1e7 50%,#b5c6d0 51%,#e0eff9 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f6f8', endColorstr='#e0eff9',GradientType=0 ); /* IE6-9 */

}

td.nb_table_row{
	background-color: #FFF;
	padding: 4px 10px;
	vertical-align: top;
	cursor: default;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}

td.nb_table_row_2nd{
	background-color: #EFF5F7;
}

td.nb_table_row_active{
	background-color: #B8DAFC;
}



div.table{
	margin-left: auto;
	margin-right: auto;
	display: table;
	background-color: #FFF;
	width: 100%;
}

div.tr {
	display: table-row;
}

div.td {
	display: table-cell;
	vertical-align: middle;
}

div.th{
	display: table-cell;
	font-size: 10pt;
	font-weight: bold;
	color: #777;
	border-bottom: 1px solid #CCC;
}

div.th, div.td{
	padding: 5px 5px;
}

div.tr:nth-child(2n) {
	background: #F9F9F9;
}

div.tr:hover{
	background: #eaf3f7;
	-moz-transition: 0.3s;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.align_left{ text-align: left; }
.align_right{ text-align: right; }
/* END TABLES */




/* NB ALERT-WINDOW */
div.nb_alert_window{
	position: absolute;
	top: 100px;
	left:50%;
	margin-left:-250px;
	width: 460px;
	background-color: #FFF;
	border: 1px solid #999;
	box-shadow: 0px 0px 15px #DDD;
	-moz-box-shadow: 2px 2px 2px #CCC;
	-webkit-box-shadow: 2px 2px 2px #CCC;
	display: none;
	z-index: 610;
	padding: 20px;
}

div.nb_alert_title{
	font-size: 13pt;
	font-family: Tahoma, Verdana, Arial, sans-serif;
	margin-bottom: 15px;
}

div.nb_alert_content{
	font-size: 10pt;
	font-family: Tahoma, Verdana, Arial, sans-serif;
	margin-bottom: 15px;
}
/* END NB ALERT-WINDOW */


/* NB Window */
div.nb_window{
	width: 700px;
	position: fixed;
    left: 50%;
	top: 10%;
    margin-left: -50px;
	background-color: #A4C4D6;
	border: 1px solid #638BA0;
	box-shadow: 0px 0px 10px #999;
	-moz-box-shadow: 2px 2px 2px #CCC;
	-webkit-box-shadow: 2px 2px 2px #CCC;
	z-index: 1000;
	display: none;
}

div.nb_window_header{
	position: absolute;
	top: 0px;
	left: 17px;
	right: 0px;
	height: 30px;
	line-height: 30px;
	font-family: Arial;
}

div.nb_window_header_close{
	position: absolute;
	top: 0px;
	right: 5px;
	height: 20px;
	width: 35px;
	background-color: #D14040;
	color: #FFF;
	cursor: pointer;
	text-align: center;
	font-family: Verdana, Arial, sans-serif;
	font-weight: bold;
}

div.nb_window_header_close:hover{
	background-color: #C43838;
}

div.nb_window_content{
	position: absolute;
	top: 30px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	overflow-x: hidden;
	overflow-y: auto;
	background-color: #FFF;
	border: 1px solid #638BA0;
	padding: 10px;
}

div.nb_window_please_wait{
	text-align: center;
	position: absolute;
	top: 30px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	font-size: 14pt;
}



div.nb_window_please_wait_icon span{
  padding: 20px;
  font-size: 50px;
  color: #CCC;
  animation-name: spin;
  animation-duration: 1000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear; 
  /* transform: rotate(3deg); */
   /* transform: rotate(0.3rad);/ */
   /* transform: rotate(3grad); */ 
   /* transform: rotate(.03turn);  */
}

div.nb_window_please_wait_icon2 img{
  max-width: 200px;
  max-height: 200px;
  padding: 20px;
  animation-name: spin;
  animation-duration: 3000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear; 
  /* transform: rotate(3deg); */
   /* transform: rotate(0.3rad);/ */
   /* transform: rotate(3grad); */ 
   /* transform: rotate(.03turn);  */
}

@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}




div.ajaxSearchResults_Container_Relative{
	position: relative;
}

div.ajaxSearchResults{
	position: absolute;
	top: 0;
	left: 0;
	width: 300px;
	max-height: 200px;
	overflow-y: auto;
	background-color: #FFF;
	border: 1px solid #61A0C6;
	box-shadow: 0px 0px 4px #61A0C6;
	display: none;
}

div.listEntry{
	border-bottom: 1px solid #CCC;
	padding: 4px 7px;
}

div.listEntry:hover{
	cursor: pointer;
	background-color: #BED1DB
}
/* END NB Window */


/* LOADING ANIMATION */
/* HTML: <div class="loader"></div> */
.loading {
 
  width: 50px;
  --b: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #004080;
  -webkit-mask:
    repeating-conic-gradient(#0000 0deg,#000 1deg 70deg,#0000 71deg 90deg),
    radial-gradient(farthest-side,#0000 calc(100% - var(--b) - 1px),#000 calc(100% - var(--b)));
  -webkit-mask-composite: destination-in;
          mask-composite: intersect;
  animation: l5 1s infinite;
}
@keyframes l5 {to{transform: rotate(.5turn)}}
/* END LOADING ANIMATION */

/* LOADING ANIMATION */
/* HTML: <div class="loading_small"></div> */
.loading_small {
 display: inline-block;
  width: 24px;
  --b: 4px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #111;
  -webkit-mask:
    repeating-conic-gradient(#0000 0deg,#000 1deg 70deg,#0000 71deg 90deg),
    radial-gradient(farthest-side,#0000 calc(100% - var(--b) - 1px),#000 calc(100% - var(--b)));
  -webkit-mask-composite: destination-in;
          mask-composite: intersect;
  animation: l5 1s infinite;
  vertical-align: middle;
}
@keyframes l5 {to{transform: rotate(.5turn)}}
/* END LOADING ANIMATION */