form {
	position: relative;
	padding: 5px;
	background-color: #fafafa;
	border: solid 1px #ddd;
	border-radius: 7px;
	display: flex;
  	flex-wrap: wrap;
  	width: 100%;
  	gab: 16px;
}


#LogFrm {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	border-radius: 5px;
	background-color: #f4f4f4;
	padding: 15px;
	margin: 0;
	border: none;
}

div.DelBtn_Div {
	position: absolute;
	z-index: 10;
	right: 2px;
	top: -9px;
}

#FormAufZu {
	font-size: 30px;
	margin-right: 5px;
	
}

#FormReset {
	font-size: 24px;
	color: #999;
	visibility: hidden;
}

#FormFelder {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	
}



div.vorLabel {
	width:32px;
	text-align: right;
	margin: 20px 12px 0 0;
}

label {
	display: block;
	width: 100%;
	height: 16px;
	line-height: 16px;
	font-size: 13px;
	font-family: sans-serif;
	color: #666;
}

label.large {
	font-size: 16px;
	font-weight: bold;
	color: #333;
}


input, file, textarea {
	font-family: "Open Sans", sans-serif;
	font-size: 16px;
	line-height: 1.4;	
	height: 29px;
	display: block;
	width: 100%;
	color: #001166;
	font-weight: 400;
	border: 1px solid #ccc;
	background-color: #fff;
	padding: 4px 3px 3px 3px;
	border-radius: 3px;
	box-shadow: 2px 2px 9px 0 #e9e9e9;
}
input[type="slider"] {outline-color: none;}


input.klein, file.klein, textarea.klein {
	font-family: "Open Sans", sans-serif;
	font-size: 14px;
	line-height: 1.4;	
	height: 18px;
	color: #001166;
	font-weight: 400;
	border: 1px solid #ccc;
	background-color: #fff;
	padding: 3px 2px 1px 2px;
	border-radius: 2px;
	box-shadow: 2px 2px 7px 0 #e9e9e9;
}

.FormFeld {
	position: relative;
	margin-bottom: 4px;
	text-align: left;
	flex-grow: 0;
	flex-shrink: 0;
  	padding: 0 4px 4px 4px;
}
div.Umbruch {
  flex-basis: 100%;
  height: 0;
}

div.FormGruppe {
	position: relative;
	display: flex;
}

div.DropTxt, div.InputDiv {
	position: relative;
	min-width: calc(100% - 36px);
	height: 29px;
	padding: 3px 2px 4px 5px;
	cursor: pointer;
	color: #000080;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 3px;
	overflow: hidden;
	box-shadow: 2px 2px 9px 0 #e9e9e9;
}

button.DropBtn {
	top: 4px;
	width: 36px;	
	height: 29px;
	font-size: 24px;
	padding: 2px;
	margin: -4px 2px 0 -4px;
	border-radius: 3px;
	box-shadow: 2px 2px 9px 0 #e1e1e1;
}

button.suchen_Btn {
	top:4px;
	width: 36px;	
	height: 29px;
	font-size: 14px;
	color: #777;
	padding: 2px;
	margin: -4px;
	border-radius: 3px;
	box-shadow: 2px 2px 9px 0 #e1e1e1;
}

button.dunkelblau {
	background-color: #49519B; 
	background: linear-gradient(to bottom, #00008B, #9295C6);

	
}

div.DropList {
	position: absolute;
	z-index:120;
	top: 43px;
	width: calc(100% - 10px);
	min-height: 12px;
	max-height: 300px;
	border: 1px solid #ddd;
	background-color: #fff;
	margin: 2px;
	border-radius: 4px;
	display: none;
	overflow-x:hidden;
	overflow-y:auto;
	cursor: pointer;
	box-shadow: 5px 5px 20px 0 #e9e9e9;
}

div.DropItemGrp {
	display: flex;
	gap:5px;
}


div.DropItem {
	padding: 2px;
	max-width: 250px;
	white-space: nowrap;
	background-color: #fafafa;
	border-bottom: 1px solid #eee;
	flex-grow:1;
	cursor: pointer;
}
div.DropItem:hover {
	background-color: #fff;
}

div.DropItemGrp div.edit {
	color: #999;
	font-size: 16px;
}
div.DropItemGrp div.edit:hover {color: red;}


a.InputReset {
	font-size: 24px;
	font-weight: normal;
	color: #aaa;
	text-decoration: none;
	right: 10px;
}

fieldset {
	position: relative;
	border: none;

}

fieldset.BtnGrp {
	margin-top: 7px;
	height: 32px;
	display: flex;
	justify-content: right;
	font-size: 20px;
	padding: 0;
	gap: 5px;
}

#FilterInfo {display: none;}


/* ----------------- Checkbox ------------------ */

input[type="checkbox"] {display: none;}

.checkbox-label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.eigeneCheckbox {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 1px solid #333;
    background-color: #fff;
    border-radius: 4px;
    position: relative;
    margin-right: 8px;
    white-space:nowrap;
}

.eigeneCheckbox::after {
    content: "";
    position: absolute;
    top: -1px;
    left: 6px;
    width: 7px;
    height: 13px;
    border: solid #00aa00;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
    display: none;
}

input[type="checkbox"]:checked + .eigeneCheckbox::after {
    display: block;
}

span.CheckLabel {
	font-size: 18px;
	color: #000080;
	margin-top: 1px;
}


/* -------------------------------------- Schiberegler (Slider) --------------------------------------- */

.slider {
    -webkit-appearance: none;
	float: left;   
    width: calc(100% - 40px);
    height: 19px;
    margin: 5px 0 0 0;
    background: #ddd;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}
.slider:hover {opacity: 1;}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 28px;
    background: #fff;
    cursor: pointer;
    border-bottom: 1px solid #aaa;
}

.slider::-moz-range-thumb {
    width: 14px;
    height: 28px;
    background: #fff;
    cursor: pointer;
    border-bottom: 1px solid #aaa;
}

div.slidervalue {
	float: left;
	width: 40px;
	height: 23px;
	padding-top: 2px;
	margin-top: 3px;
	font-family: "Open Sans", sans-serif;
	line-height: 1;
	text-align: center;
	border: 1px solid #aaa;
	background-color: #fff;
}


/* ---------------- Farbwähler --------------------------*/
input.FarbSelect {
	width:100%;
	height: 28px;
	padding: 1px;
	border: 1px solid #fff;
}

