<!--

.filter {
	width: auto;
	border: 0px solid green;
  	margin-left: 1em;
}

/* .filter tr {
	font-size: 0.9em;
} */

.filter td {
	background-color: transparent;
	border: 0px solid pink;
	padding-right: 1em;
}

.filter label {
  	color: var(--color);
	text-align: left;
	background-color: transparent;
  	border: 0px solid pink;
  	padding-right: 0em;
	margin-left: 1em;
}


.filter input, .filter select, .filter textarea {
	/* width: 100%; */
	padding: 6px 8px;
	margin: 0px 0px;
	font-size: 0.8em;						/* Font size */
	display: inline-block;
	border: 1px solid #ccc;				/* color border */
	background-color: #eee;		/* color backg */
	border-radius: 4px;						/* Radius */
	box-sizing: border-box;
}




.data_table 
{
	border: 0px solid red;
    margin-top: 1.0em;
    font-size: 1.0em;
	color: #333333;	
}



.data_table div.table {
	display: table;
    border-collapse: collapse;
    /* width: 100%; */
}

.data_table div.row {
	display: table-row;
}
/* 
.data_table div.row:nth-child(odd) {
	background-color: #E2E2E2;
}

.data_table div.odd {
	display: table-row;
	background: #fafafa;
}	

.data_table div.even {
	display: table-row;
	background: #E2E2E2;
} */	

.data_table div.th { 
	display: table-row;
	font-style: italic;
	height: 40px;
	font-size: 1.2em;
	
}

.data_table div.row:hover {
    background-color: var(--color-tr-ho);
}

.data_table div.cell { 
	display: table-cell;
	color: var(--color-td);
	white-space: nowrap;
    border-top: 1px solid gray;
    padding: 0.5em;
	 /* min-width: 3.3em;        min width müssen wir für die erste Spalte angeben.*/
}


.data_table div.cell_h { 
	display: table-cell;
	color: var(--color-td);
	white-space: nowrap;
    padding: 0.5em;
	 /*min-width: 3.3em;         min width müssen wir für die erste Spalte angeben.*/
}

.data_table div.cell a {
	color: gray;
}
.data_table div.cell a:hover {
	color: #333;
}



.edit_mask
{
	width: 50em;
	border: 0px solid red;
    font-size: 1.0em;
	padding: 20px;
}

.edit_mask p
{
	font-size:1.4em;
	color:black;
	margin-left:1em;
	margin-bottom:1em;
}

.xedit_mask label
{
	width: 20em;
	color: green;
}

/* Style inputs with type="text", select elements and textareas */
edit_mask input[type=text], select, textarea {
	width: 100%; /* Full width */
	padding: 12px; /* Some padding */ 
	border: 1px solid #ccc; /* Gray border */
	border-radius: 4px; /* Rounded borders */
	box-sizing: border-box; /* Make sure that padding and width stays in place */
	margin-top: 6px; /* Add a top margin */
	margin-bottom: 16px; /* Bottom margin */
	resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

edit_mask input[type=text], textarea {
	height: 100px;
}	
.edit_mask button
{
	margin-top: 1em;
}


.alert {
	padding: 20px;
	background-color: #f44336;
	color: white;
	font-size: 1.3em;
	margin: 20px;
	border: 1px solid #fff; /* Gray border */
	border-radius: 6px; /* Rounded borders */
	box-sizing: border-box; /* Make sure that padding and width stays in place */
}

.closebtn {
	margin-left: 15px;
	color: white;
	font-weight: bold;
	float: right;
	font-size: 22px;
	line-height: 20px;
	cursor: pointer;
	transition: 0.3s;
}

.closebtn:hover {
	color: black;
}





.decision 
{
	/* over all container */
	float: left;
	background: white;
	color: gray;
	
	border: 1px solid gray;
	-webkit-border-radius:	06px;
	-moz-border-radius:		06px;
	border-radius:				06px;	

	/* Abstand zum nächsten ... */
	margin: 1.5em;
	
}

.decision div.content
{
	/* font-size: 1.0em; */
	border: 0px solid black; 
	padding: 1em;
	
	border-radius : 6px 6px 0px 0px;
	/* background: pink; */
	/* min-height: 4em; */
}

.decision p {
	font-size: 1.2em;
	color: gray;
}




.button_decision_l {
	background: white;
	border-top: 1px solid gray;
	border-right: 1px solid gray;
	color: green;
	padding: 10px 22px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 1.3em;
	-webkit-border-radius:	0px 0px 0px 6px;
	-moz-border-radius:		0px 0px 0px 6px;
	border-radius : 0px 0px 0px 6px;
	transition-duration: 0.4s;
	width: 50%;
	text-orientation: center;
}


.button_decision_r {
	background: white;
	border-top: 1px solid gray;
	color: red;
	padding: 10px 22px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 1.3em;
	border-radius : 0px 0px 6px 0px;
	transition-duration: 0.4s;
	width: 50%;
	text-orientation: center;
}
  
.button_decision_l:hover {
	/* background-color: var(--button-bg-mover);
	color: var(--button-color-hover); */
	background-color: green;
	color: white;
}
  
.button_decision_r:hover {
	/* background-color: var(--button-bg-mover);
	color: var(--button-color-hover); */
	background-color: red;
	color: white;
}

  

-->