.eoWebFormWrapper .submitWrapper > *,
.eoWebFormManager .deleteMode,
.eoWebFormManager .currentGroupFields .selectableEntry > .selectEntry,
.noSelect {
    -webkit-touch-callout:			none;
    -webkit-user-select:			none;
    -khtml-user-select:				none;
    -moz-user-select:				none;
    -ms-user-select:				none;
    user-select:					none;
}

.eoWebFormWrapperWrapper {
	z-index: 100;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.75);
	transition: opacity 1s ease-in-out;
	opacity: 1;
	pointer-events: auto;
}
.eoWebFormWrapperWrapper.hidden {
	opacity: 0;
	pointer-events: none;
}
.eoWebFormWrapper { /* around the Container */
	transition: right 0.72s ease-in-out;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: stretch;
	align-content: center;
	width: 1200px;
	max-width: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	pointer-events: auto;
}
.eoWebFormWrapperWrapper.hidden > .eoWebFormWrapper,
.eoWebFormWrapperWrapper > .eoWebFormWrapper.hidden {
	right: -100vw;
	pointer-events: none;
}
.eoWebFormWrapper * {
	box-sizing: border-box;
	font-family: 'Open Sans', Tahoma, sans-serif;
	font-size: 16px;
}
.eoWebFormWrapper a {
	color: #eee;
}
.eoWebFormWrapper > * {
	background-color: rgba(235, 235, 235, 0.9);
}
.eoWebFormContainer:empty {
	display: none !important;
}
.eoWebFormContainer:not(.eoWebFormManager) { /* for Planer Forms */
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 20px 0 20px 40px;
}
.eoWebFormContainer:not(.eoWebFormManager) > div {
	margin-right: 40px;
}
.eoWebFormWrapper > .eoWebFormTitle {
	padding: 20px 40px 40px 40px;
	font-size: 1.75em;
}
.eoWebFormWrapper > .eoWebFormIntro {
	padding: 0 40px 20px 40px;
}
.eoWebFormWrapper .submitWrapper {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}
.eoWebFormWrapper .submitWrapper .submitButtonContainer {
	display: flex;
	align-items: stretch;
}
.eoWebFormWrapper .submitButtonContainer .loadingAnimationContainer {
	margin: 10px 0 20px 0;
	perspective: 60px;
	position: relative;
}
.eoWebFormWrapper .submitButtonContainer .loadingAnimationContainer > img {
	transition: transform 0.32s linear;
	position: absolute;
	top: 0px;
	left: -30px;
	width: 50px;
	height: 50px;
}
.eoWebFormWrapper .webFormButton,
.eoWebFormWrapper .submitWebForm,
.eoWebFormWrapper .backToPlanning {
	margin: 10px 40px 20px 40px;
	color: #fff;
	background-color: #444;
	border: 2px solid rgb(100, 131, 20);
	padding: 15px 30px;
	cursor: pointer;
	outline: none;
}
.submitWrapper .sendingNotAllowed {
	pointer-events: none;
	opacity: 0.25;
}
.eoWebFormWrapper:not(.ignoreDefaults) .webFormButton:hover,
.eoWebFormWrapper:not(.ignoreDefaults) .submitWebForm:hover,
.eoWebFormWrapper:not(.ignoreDefaults) .backToPlanning:hover {
	color: rgb(192, 230, 96);
}
.eoWebFormWrapper:not(.ignoreDefaults) .webFormButton:active,
.eoWebFormWrapper:not(.ignoreDefaults) .submitWebForm:active,
.eoWebFormWrapper:not(.ignoreDefaults) .backToPlanning:active {
	color: rgb(192, 230, 96);
	background-color: #363636;
}

.eoWebFormManager {
	position: relative;
	display: flex;
	justify-content: space-between;
	min-width: 1000px;
}
.eoWebFormManager > * {
	width: 49%;
	width: calc(50% - 10px);
}

.select-eoWebFormGroup {
	margin-bottom: 5px;
}

.eoWebFormManager .currentGroupFields {
	background-color: rgba(0, 0, 0, 0.05);
	height: 200px;
	overflow-x: hidden;
	overflow-y: scroll;
}

.eoWebFormManager .currentGroupFields .selectableEntries {
	display: table;
}
.eoWebFormManager .currentGroupFields .selectableEntry {
	display: table-row;
	position: relative;
	margin-bottom: 2px;
	padding: 4px;
}
.eoWebFormManager .currentGroupFields .selectableEntry > * {
	display: table-cell;
	vertical-align: top;
	padding: 2px 4px;
}
.eoWebFormManager .currentGroupFields .selectableEntry > .selectEntry {
	display: table-cell;
	padding-right: 5px;
	text-align: right;
}
.eoWebFormManager .currentGroupFields .selectableEntry > .labelMargin {
	padding-top: 5px;
}
.eoWebFormManager .currentGroupFields .selectableEntry > .selectEntry > div {
	display: inline-block;
	padding-left: 6px;
	padding-right: 6px;
	border: 1px dotted rgba(0, 0, 0, 0.3);
	background-color: rgba(192, 230, 96, 0.15);
	font-size: 1.25em;
	font-weight: bold;
	cursor: pointer;
}
.eoWebFormManager .currentGroupFields .selectableEntry > .selectEntry > div:hover {
	background-color: rgba(192, 230, 96, 0.35);
	border-style: solid;
}
.eoWebFormManager .currentGroupFields .selectableEntry > .selectEntry > div:active {
	background-color: rgba(192, 230, 96, 0.55);
	border-style: solid;
	border-color: rgba(0, 0, 0, 0.65);
}
.eoWebFormManager .currentGroupFields .selectableEntry > *:not(:first-child) {
	pointer-events: none;
}
.eoWebFormManager .currentGroupFields .selectableEntry > *:nth-child(3) {
	vertical-align: middle;
}
.eoWebFormManager .entryControlSpacer {
	width: 4px;
}
.eoWebFormManager .entryControlButton {
	vertical-align: middle;
	border: 1px dotted rgba(0, 0, 0, 0.25);
	cursor: pointer;
	background-color: rgba(192, 230, 96, 0.15);
	text-align: center;
	width: 25px;
}
.eoWebFormManager .entryControlButton > div {
	padding: 0 4px;
	text-align: center;
}
.eoWebFormManager .entryControlButton.entryMoveUp > div,
.eoWebFormManager .entryControlButton.entryMoveDown > div {
	color: rgb(100, 131, 20);
}
.eoWebFormManager .entryControlButton.entryRemove > div {
	font-size: 1.2em;
	color: #e44;
	font-weight: bold;
}
.eoWebFormManager .entryControlButton:hover {
	background-color: rgba(192, 230, 96, 0.35);
	border-style: solid;
}
.eoWebFormManager .entryControlButton:active {
	background-color: rgba(192, 230, 96, 0.55);
	border-style: solid;
	border-color: rgba(0, 0, 0, 0.65);
}
.eoWebFormManager .eoWebBoxLabel {
	text-align: center;
	font-size: 1.5em;
	margin-bottom: 8px;
}
.eoWebFormManager > .deleteMode {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: initial;
	pointer-events: none;
	display: flex;
	justify-content: center;
}
.eoWebFormManager > .deleteMode > div {
	pointer-events: auto;
	cursor: pointer;
	padding: 4px 6px;
	background-color: rgba(0, 0, 0, 0.75);
	color: #fff;
	border: 1px dotted rgba(192, 230, 96, 0.55);
}
/*.eoWebFormManager .deleteMode > div:hover {
	background-color: rgba(100, 131, 20, 0.75);
	border-style: solid;
}*/
.eoWebFormManager > .deleteMode > div:active {
	background-color: rgba(100, 131, 20, 0.75);
	border-style: solid;
}
.eoWebFormManager > .deleteMode > div.active {
	background-color: #e22;
	border: 1px solid rgba(160, 40, 20, 0.55);
}
.eoWebFormManager > .deleteMode > div:before {
	margin-right: 6px;
	font-size: 1.6em;
	line-height: 0;
	position: relative;
	top: 1px;
	font-weight: bold;
	content: "\25cb";
}
.eoWebFormManager > .deleteMode > div.active:before {
	content: "\25cf";
}



.eoWebFormContainer:not(.eoWebFormStyle-2) .formTable {
	width: 500px;
	max-width: 98%;
	margin-top: 20px;
	display: table;
}
.eoWebFormContainer:not(.eoWebFormStyle-2) .formTable > * {
	display: table-row;
}
.eoWebFormContainer:not(.eoWebFormStyle-2) .formTable > * > * {
	display: table-cell;
	padding: 2px 0;
}
.eoWebFormContainer:not(.eoWebFormStyle-2) .formTable > * > *:first-child {
	vertical-align: top;
	padding-top: 4px;
}
.eoWebFormContainer:not(.eoWebFormStyle-2) .formTable > * > *:not(:first-child) {
	width: 300px;
}
.eoWebFormContainer:not(.eoWebFormStyle-2) .flexTop {
	display: flex;
	align-items: flex-start;
	align-content: flex-start;
}
.eoWebFormContainer:not(.eoWebFormStyle-2) .flexMiddle {
	display: flex;
	align-items: center;
	align-content: center;
}
.eoWebFormContainer:not(.eoWebFormStyle-2) .flexBottom {
	display: flex;
	align-items: flex-end;
	align-content: flex-end;
}

.eoWebFormContainer.eoWebFormStyle-2 .formTable {
	width: 500px;
	max-width: 98%;
	margin-top: 20px;
}
.eoWebFormContainer.eoWebFormStyle-2 .formTable > * {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: flex-start;
	align-content: flex-start;
}
.eoWebFormContainer.eoWebFormStyle-2 .formTable > * > * {
	padding: 2px 0;
}
.eoWebFormContainer.eoWebFormStyle-2 .formTable > * > *:first-child {
	padding-top: 4px;
}
.eoWebFormContainer.eoWebFormStyle-2 .formTable > * > *:not(:first-child) {
	width: 300px;
}
.eoWebFormContainer.eoWebFormStyle-2 .formTable > .fillCurrentRow {
	/*margin-right: -130px;*/
}
.eoWebFormContainer.eoWebFormStyle-2 .formTable > * > *:empty {
	width: 0;
	max-width: 0;
}
.eoWebFormContainer.eoWebFormStyle-2 .flexTop {
	display: flex;
	align-items: flex-start;
	align-content: flex-start;
}
.eoWebFormContainer.eoWebFormStyle-2 .flexMiddle {
	display: flex;
	align-items: center;
	align-content: center;
}
.eoWebFormContainer.eoWebFormStyle-2 .flexBottom {
	display: flex;
	align-items: flex-end;
	align-content: flex-end;
}



.eoWebFormContainer input,
.eoWebFormContainer textarea,
.eoWebFormContainer option,
.eoWebFormContainer button,
.eoWebFormContainer input:focus,
.eoWebFormContainer textarea:focus,
.eoWebFormContainer option:focus,
.eoWebFormContainer button:focus,
.eoWebFormContainer input:active,
.eoWebFormContainer textarea:active,
.eoWebFormContainer option:active,
.eoWebFormContainer button:active {
	border-radius: 0 !important;
	border: 0px solid rgba(0, 0, 0, 0.5) !important;
	outline: none !important;
	background-color: #fff !important;
	color: #000 !important;
	box-shadow: none;
	padding: 3px 6px;
}
.eoWebFormContainer input[type="text"],
.eoWebFormContainer textarea {
	width: 100%;
}
.eoWebFormContainer input[type="checkbox"],
.eoWebFormContainer input[type="radio"] {
	height: 21px;
	width: 21px;
	min-height: 21px;
	min-width: 21px;
	margin: 0 3px 0 0;
}



.eoWebFormContainer .flexApart {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.eoWebFormContainer .checkboxText {
	position: relative;
	top: 2px;
	margin-left: 4px;
}
.eoWebFormContainer .labelMargin {
	padding-right: 20px;
}
.eoWebFormContainer .required,
.eoWebFormManager .required {
	font-weight: bold;
}
.eoWebFormContainer .required:after,
.eoWebFormManager .required:after {
	padding-left: 0.2em;
	content: "*";
}
.eoWebFormContainer .required:after {
	color: #000;
}
.eoWebFormManager .required:after {
	color: #fff;
}
.eoWebFormContainer .required .not-required,
.eoWebFormManager .required .not-required {
	font-weight: normal;
}
.eoWebFormContainer input[name="strasse"] {
	width: 70%;
	width: calc(100% - 80px);
}
.eoWebFormContainer input[name="hausnummer"] {
	width: 30%;
	width: 76px;
}
.eoWebFormContainer input[name="plz"] {
	width: 30%;
	width: 76px;
}
.eoWebFormContainer input[name="ort"] {
	width: 70%;
	width: calc(100% - 80px);
}
.eoWebFormContainer textarea[name="infotext"] {
	resize: none;
	min-height: initial;
	max-height: initial;
	height: 6em;
}
.eoWebFormContainer .marginTop {
	margin-top: 40px;
}

