html {
    font-size: 0.8vw;
} 

    article {
      max-width: 960px;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
      padding: 40px;
    }

    script.show-script {
      display: block;
      max-width: 720px;
      background-color: floralwhite;
      font-family: "Lucida Console", Monaco, "Courier New", Courier, monospace;
      font-size: 12px;
      margin-left: -40px;
      white-space: pre;
    }

    article div {
      margin-bottom: 25px;
    }

.th {
	background-color : gray;
	z-index:-1
}	

.dropdown-item:hover {
	background-color:grey;
}

.check_field_var {
	margin:4px; 
	padding:4px; 
	background-color:#4c81b1; 
	font-weight:normal;
	border-radius: 4px; 
	border: 1px solid #ccc;
}

.check_field_function {
	margin:4px; 
	padding:4px; 
	background-color:grey; 
	font-weight:normal;
	border-radius: 4px; 
	border: 1px solid #ccc;
}

/*********************************/
/* Flex-Height Div / section     */
/*********************************/
.fill-height-or-more {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
} 

.fill-height-or-more > div {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

/*********************************/
/* Loader  style in MyLabLink  */
/*********************************/
.loader {
	border: 10px solid #a4bfd8;
	border-radius: 50%;
	border-top: 10px solid orange;
	width: 60px;
	height: 60px;
	-webkit-animation: spin 2s linear infinite; /* Safari */
	animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/*********************************/
/* Footer  style in MyLabLink  */
/*********************************/
.footer {
	padding: 20px;
	text-align: center;
	background: #ddd;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); 
	border-radius: 5px;
}

/*********************************/
/* Progress  style in MyLabLink  */
/*********************************/
.progress-container {
	margin-top:0px;
	width: 100%;
	height: 60px;
	background: #ccc;
}

.progress-bar {
	margin-top:0px;
	height: 20px;
	background: #4caf50;
	width: 0%;
	border-style: solid;
	border-width: 1px;
}

/*************************************************************************/
/* Sticky Button style für Top Button und Statistikanzeige in MyLabLink  */
/*************************************************************************/
/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
	z-index:1;
	position: fixed;
	top: 0;
	width: 100%;
}

.td_sticky {
	background-color: #ffffff;
	position: -webkit-sticky; 
	position: sticky; 
	left: 0; 
	z-index: 0;
}


/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .content {
	padding-top: 60px;
}

#topBtn {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 99;
	font-size: 1.0vw;
	border: none;
	outline: none;
	background-color: orange;
	background-color: orange;
	opacity:0.7;
	color: black;
	cursor: pointer;
	padding: 15px;
	border-radius: 50%;
}

#topBtn:hover {
	background-color: #555;
	opacity:0.7;
}

#abfragendragBtn {
	-webkit-user-drag: element;
	display: none;
	position: fixed;
	top: 100px;
	right: 30px;
	z-index: 99;
	font-size: 1.0vw;
	border: none;
	outline: none;
	background-color: orange;
	opacity:0.9;
	color: black;
	cursor: pointer;
	padding: 15px;
	border-radius: 5px;
}

#ToolBoxBtn,#DataToolBoxBtn {
	-webkit-user-drag: element;
	display: block;
	position: fixed;
	top: 100px;
	right: 30px;
	z-index: 99;

	border: none;
	outline: none;
	background-color: grey;
	opacity:0.9;
	color: black;
	cursor: pointer;
	padding: 15px;
	border-radius: 5px;
}

#statusBtn {
	display: none;
	position: fixed;
	bottom: 20px;
	left: 30px;
	z-index: 99;
	font-size: 1.0vw;
	border: none;
	outline: none;
	background-color: orange;
	background-color: orange;
	opacity:0.7;
	color: black;
	cursor: pointer;
	padding: 15px;
	border-radius: 10%;
}

#statusBtn:hover {
	background-color: #555;
	opacity:0.7;
}

label {
    position:relative;   
    cursor:pointer;
    border-radius: var(--border_round);
	margin:2px 2px 2px 2px;
}

label [type="radio"] {
	margin:1px;
	padding:0px;
    display:inline-block;
	position:absolute;
	top : 5px;
	left : 5px;
    border-radius: var(--border_round);
}

[type="radio"] + span {
	margin:1px;
	background:#a4bfd8;
    display:inline-block;
    border-radius: var(--border_round);
    padding: 5px 5px 5px 23px;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

[type="radio"][disabled] + span {
    background:var(--highlight_textcolor);
}
[type="radio"]:checked + span {
    background:var(--highlight_textcolor);
    display:inline-block;  
	color:white;
}

/* Checkbox Design */

label [type="checkbox"] {
	margin:1px;
	padding:0px;
    display:inline-block;
	position:absolute;
	top : 5px;
	left : 5px;
	background-color:red;
    border-radius: var(--border_round);
}

[type="checkbox"] + span {
	margin:1px;
	background:var(--hintergrund_hellgrau);
    display:inline-block;
    border-radius: var(--border_round);
    padding: 5px 5px 5px 23px;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

[type="checkbox"][disabled] + span {
    background:var(--highlight_textcolor);
}

[type="checkbox"]:checked + span {
    background:var(--hintergrund_free);
    display:inline-block;   
	color:white;
}
[type="checkbox"]:checked + span:after {
   color:red;
}

:hover +span {
     background:var(--highlight_textcolor);
}

button.btn_ml {
	margin:1px;	
	background:#a4bfd8;
    display:inline-block;
    border-radius: var(--border_round);
    padding: 5px 5px 5px 5px;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

button.btn_ml:hover {
    background:var(--highlight_textcolor);
}

button.btn_ml:active {
    background:var(--highlight_textcolor);
}

button.btn_ml_save {
	margin:0px 0px 0px 0px;	
	background:green;
    display:inline-block;
    border-radius: var(--border_round);
    padding: 5px 5px 5px 5px;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

button.btn_ml_save:hover {
    background:var(--highlight_textcolor);
}

button.btn_ml_save:active {
    background:var(--highlight_textcolor);
}


/*********************************************************/
/* ContextMenü und Hilfe 					  MyLabLink  */
/*********************************************************/
#cntnr,#charts_menu,#stats_menu,#mydash_menu,#sum_menu{
	display:none;
	position:absolute;
	border:1px solid #B2B2B2;
	width:200px;      
	background-color: lightgrey; 
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);  
	border-radius : var(--border_round);
	z-index: 9999;
}

#context_items{
	list-style:none;
	background-color: lightgrey; 
	margin:0px;
	margin-top:4px;
	padding-left:10px;
	padding-right:10px;
	padding-bottom:3px;
	font-size:17px;
	color: #333333;
}

#context_items :hover{
	color: white;
	background:orange;
	border-radius:2px;
}

.select_options :hover{
    color:black;
	background-color:yellow;
}

.btn_ia {
	background-color:#4c81b1;
	width:22.25%;
}

@import "bootstrap"; 

$theme-colors: (
  "primary": #ff0000,
  "danger": #ff3333,
  "dark": #ccc
);


