/* 
	HINWEIS-BOX
*/

.anfrage-info-box {
	display: none;
	background-color: var(--primary-color-07);
	margin-bottom: 5rem;
	padding: 2rem;
	box-sizing: border-box;
	border: 2px solid #ed1c24;
}
.bhe-state-editing .anfrage-info-box {
	display: block;
}
.anfrage-info-box h4,
.anfrage-info-box p,
.anfrage-info-box li {
	font-family:'Courier', serif;
	color: #ed1c24;
}


.el-step-anfrage.no-mail-field-included form {
	background-color: var(--alert-color-red);
}

/*
	FIELDS
*/

.bh-fieldblock {
	margin-bottom: 3rem;
}
.bh-fieldblock > .bhContainer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	width: calc(100% + 2rem);
	margin-left: -1rem;
	margin-top: -1rem;
	margin-bottom: 3em;
}
.bh-fieldblock-label {
	width: 100%;
	margin-bottom: 2rem;	
}
.el-step-anfrage-item:not(.bh-field-dsgvo) {
	margin: 1rem;
}
.bh-fieldblock-dsgvo {
	margin-bottom: 3rem
}
#Page .el-step-anfrage .data-needed input,
#Page .el-step-anfrage .fieldtype-checkbox.data-needed .checkbox-icon,
#Page .el-step-anfrage .data-needed select,
#Page .el-step-anfrage .data-needed textarea,
#Page .el-step-anfrage .data-needed .checkboxgroup-item-icon {
	border: 2px solid var(--template-color-red);
	background-color: var(--template-color-red-10);
}
#Page .el-step-anfrage .data-available input,
#Page .el-step-anfrage .data-available select,
#Page .el-step-anfrage .data-available textarea {
	border: 2px solid var(--template-color-green);
	background-color: var(--template-color-green-10);
}
#Page .el-step-anfrage .fieldtype-checkbox.data-available input[type="checkbox"]:checked .checkbox-icon,
#Page .el-step-anfrage .data-available .checkboxgroup-checkitem[data-checked="1"] .checkboxgroup-item-icon {
	border: 2px solid var(--template-color-green);
}

/* Multiple Select */

#Page .el-step-anfrage-item select[multiple] {
	max-height: 5.1rem;
	padding-top: 1.2rem;
	padding-bottom: 1.2rem;
	transition: ease-in-out max-height 0.3s, ease-in-out padding 0.3s;
}
#Page .el-step-anfrage-item select[multiple]:focus {
	max-height: 12rem;
	height: 12rem;
	padding-top: 1.2rem;
	padding-bottom: 1.2rem;
}

.field-size-100 {
	width: 100%;
}
.field-size-75 {
	width: calc(75% - 2rem);
}
.field-size-50 {
	width: calc(50% - 2rem);
}
.field-size-33 {
	width: calc((100% / 3) - 2rem);
}
.field-size-25 {
	width: calc(25% - 2rem);
}
.el-step-anfrage-item.fieldtype-headline {
	width: 100%;
}
body:not(.bhe-state-editing) .el-step-anfrage-item.fieldtype-spacer.bhElement {
	min-height: 0;
	margin: 0;
}
.field-spacer.spacer-height-xs {
	height: 0;
}
.field-spacer.spacer-height-s {
	height: 2rem;
}
.field-spacer.spacer-height-m {
	height: 4rem;
}
.field-spacer.spacer-height-l {
	height: 6rem;
}
.el-step-anfrage-item h3,
.el-step-anfrage-item h5 {
	margin-bottom: 0px;
}

/*
	HARDCODED FIELDS IN FORM
*/

.bh-fieldblock-template {
	width: calc(100% + 2rem);
	margin-left: -1rem;
	margin-bottom: 2rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

/*
	DATUMSFELD MIT ICON
*/

.el-step-anfrage-item.fieldtype-date input {
	padding-right: 3rem;
	position: relative;
}
.el-step-anfrage-item.fieldtype-date .bhElementInner:after {
	content: "\e9a8";
	font-family: 'bakehouse-iconset' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	letter-spacing: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: absolute;
	right: 1rem;
	top: 50%;
	width: 2.2rem;
	height: 2.2rem;
	font-size: 24px;
	line-height: 2.2rem;
	color: var(--primary-color-100);
	z-index: 1;
	pointer-events: none;
}

/*
	Special Checkbox
*/

.bh-field-checkbox {
	margin-bottom: 2rem;
}
.el-step-anfrage .fieldtype-checkbox .checkbox-icon,
.bh-field-checkbox .checkbox-icon {
    position: absolute;
	left: 0;
	width: 24px;
	height: 24px;
	top: 50%;
	transform: translateY(-50%);
	border: 2px solid var(--primary-color-100);
	box-sizing: border-box;
}

.el-step-anfrage .fieldtype-checkbox input[type="checkbox"],
.bh-field-checkbox input[type="checkbox"] {
	position: absolute;
	left: 0;
	width: 24px;
	height: 24px;
	opacity: 0;
}

.el-step-anfrage .fieldtype-checkbox .checkbox-label,
.bh-field-checkbox .checkbox-label {
	display: inline-block;
	cursor: pointer;
}
.el-step-anfrage .fieldtype-checkbox .checkitem,
.bh-field-checkbox .checkitem {
	display: block;
	position: relative;
    padding-left: 50px;
    cursor: pointer;
}
.el-step-anfrage .fieldtype-checkbox input[type="checkbox"]:checked + label .checkbox-icon,
.bh-field-checkbox input[type="checkbox"]:checked + label .checkbox-icon {
	background-color: var(--primary-color-100);
}
.el-step-anfrage .fieldtype-checkbox input[type="checkbox"]:focus + label .checkbox-icon,
.bh-field-checkbox input[type="checkbox"]:focus + label .checkbox-icon,
.el-step-anfrage .fieldtype-checkbox input[type="checkbox"]:focus-visible + label .checkbox-icon,
.bh-field-checkbox input[type="checkbox"]:focus-visible + label .checkbox-icon {
	outline: 2px solid var(--primary-color-100);
}
.el-step-anfrage .fieldtype-checkbox input[type="checkbox"]:focus-visible + label .checkbox-icon,
.bh-field-checkbox input[type="checkbox"]:focus-visible + label .checkbox-icon {
	outline-color: -webkit-focus-ring-color;
}


/*
	Checkbox Group
*/

.bh-field-checkboxgroup {
	margin-bottom: 2rem;
}
.el-step-anfrage .fieldtype-checkboxgroup .checkboxgroup-headline {
	display: block;
	margin-bottom: 1rem;
}
.el-step-anfrage .fieldtype-checkboxgroup .checkboxgroup-item-icon{
	position: absolute;
	left: 0;
	width: 24px;
	height: 24px;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 0;
	border: 2px solid var(--primary-color-100);
	box-sizing: border-box;
}
.el-step-anfrage .fieldtype-checkboxgroup .checkboxgroup-item-icon:focus {
	outline-offset: 2px;
	border-radius: 0;
}

.el-step-anfrage .fieldtype-checkboxgroup .checkboxgroup-item-label {
	display: inline-block;
	cursor: pointer;
}
.el-step-anfrage .fieldtype-checkboxgroup .checkboxgroup-checkitem {
	display: block;
	position: relative;
	padding-left: 50px;
	cursor: pointer;
	margin-bottom: 0.4rem;
}
.el-step-anfrage .fieldtype-checkboxgroup .checkboxgroup-checkitem[data-checked="1"]  .checkboxgroup-item-icon {
	background-color: var(--primary-color-100);
}
.el-step-anfrage .fieldtype-checkboxgroup .checkboxgroup-checkitem[data-checked="1"]  .checkboxgroup-item-icon:after {
	content: '\e911';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-family: 'bakehouse-iconset' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	letter-spacing: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: white;
	z-index: 1;
}
/* .el-step-anfrage .fieldtype-checkbox input[type="checkbox"]:focus + label .checkbox-icon,
.bh-field-checkbox input[type="checkbox"]:focus + label .checkbox-icon,
.el-step-anfrage .fieldtype-checkbox input[type="checkbox"]:focus-visible + label .checkbox-icon,
.bh-field-checkbox input[type="checkbox"]:focus-visible + label .checkbox-icon {
	outline: 2px solid var(--primary-color-100);
} */
/* .el-step-anfrage .fieldtype-checkbox input[type="checkbox"]:focus-visible + label .checkbox-icon {
	outline-color: -webkit-focus-ring-color;
} */

/* CHECKBOX DSGVO */

.bh-fieldblock-dsgvo .bh-field-dsgvo .checkitem,
.bh-fieldblock-dsgvo .bh-field-dsgvo .checkbox-label,
.bh-fieldblock-dsgvo .bh-field-dsgvo .checkbox-icon {
	cursor: initial;
}
.bh-fieldblock-dsgvo .bh-field-dsgvo .checkitem {
	padding-left: 0px;
}
.bh-fieldblock-dsgvo .bh-field-dsgvo .checkbox-icon {
	display: none;
}
/* DSGVO CHECKBOX HEADLINE */

.bh-field-dsgvo .checkbox-headline {
	font-size: 1.6rem;
	font-weight: 700;
}

/* 
	UPLOAD
*/

.el-step-anfrage .field-upload {
	position: relative;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	background: var(--root-color-07);
	border: 1px solid var(--root-color-15);
	border-radius: 2px;
	transition: ease-in all 0.3s 0.6s;
}
.el-step-anfrage .field-upload.file-selected {
	background: var(--template-color-green);
	transition: ease-out all 0.3s 0.2s;
}
.el-step-anfrage .field-upload.too-big {
	background: var(--template-color-red);
	transition: ease-out all 0.3s 0.2s;
}
.el-step-anfrage .field-upload input {
	display: none;
	width: 0px;
	font-size: 0.1px;
}
.el-step-anfrage .fieldtype-upload .field-upload-text {
	margin-bottom: 3px;
}
.el-step-anfrage .field-upload:not(.field-upload-multiple) label {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 24px;
	color: var(--primary-color-100);
	padding: 1.5rem 2rem;
	padding-right: 2.8rem;
	box-sizing: border-box;
	opacity: 1;
	pointer-events: all;
	cursor: pointer;
	transition: ease-out opacity 0.2s 0.3s, ease-out color 0.2s 0.3s;
}
.el-step-anfrage .field-upload.file-selected:not(.field-upload-multiple) label {
	opacity: 0;
	pointer-events: none;
	transition: ease-in opacity 0.2s 0.3s;
}
.el-step-anfrage .field-upload.too-big:not(.field-upload-multiple) label {
	color: white;
	transition: ease-in opacity 0.2s 0.3s, ease-out color 0.2s 0.3s;
}
.el-step-anfrage .field-upload-display {
	width: 100%;
	height: 100%;
	padding: 2rem;
	box-sizing: border-box;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.el-step-anfrage .file-upload-display-text-container {
	width: calc(100% - 8rem);
	height: auto;
}
.el-step-anfrage .field-upload .input-icon-clear {
	display: none;
	position: absolute;
	height: 100%;
	width: 8rem;
	right: 0px;
	top: 0px;
	
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 24px;
	color: white;
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transition: ease-in opacity 0.3s;
}
.el-step-anfrage .field-upload.file-selected .input-icon-clear {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	opacity: 1;
	pointer-events: all;
	transition: ease-out opacity 0.3s 0.6s;
}
.el-step-anfrage .file-upload-display-icon {
	display: block;
	height: 24px;
	width: 0px;
	color: #F7F7F7;
	font-size: 24px;
	overflow: hidden;
	transition: ease-in width 0.3s 0.5s;
}
.el-step-anfrage .field-upload.file-selected .file-upload-display-icon,
.el-step-anfrage .field-upload.too-big .file-upload-display-icon {
	width: calc(24px + 2rem);
	transition: ease-out width 0.3s 0.5s;
}
.el-step-anfrage .field-upload.too-big .file-upload-display-icon:before {
	content: "\e9a7";
}
.el-step-anfrage .file-upload-display-description {
	font-size: 1.5rem;
	line-height: 1.14;
	color: var(--root-color-100);
	opacity: 1;
	margin-bottom: 0.3rem;
	transition: ease-in all 0.3s 0.5s;
}
.el-step-anfrage .field-upload.file-selected .file-upload-display-description,
.el-step-anfrage .field-upload.too-big .file-upload-display-description {
	color: #F7F7F7;
	opacity: 0.5;
	transition: ease-out all 0.3s 0.5s;
}
.el-step-anfrage .file-upload-display-filename {
	font-size: 1.7rem;
	line-height: 1.25;
	color: #F7F7F7;
	max-height: 0px;
	overflow: hidden;
	transition: ease-in max-height 0.3s;
}
.el-step-anfrage .field-upload.file-selected .file-upload-display-filename,
.el-step-anfrage .field-upload.too-big .file-upload-display-filename {
	max-height: 5rem;
	transition: ease-in max-height 0.3s 0.3s;
}
/*
	MULTIPLE UPLOAD
*/
form .field-upload-text.field-upload-multiple-text {
	font-size: 1.25rem;
	color: var(--root-color-30);
}
form .field-upload-multiple-label {
	margin-bottom: 5px;
	font-size: 1.5rem;
}
.el-step-anfrage .field-upload.field-upload-multiple {
	position: relative;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.el-step-anfrage .field-upload.field-upload-multiple.has-advanced-upload {
  background-color: var(--root-color-07);
  outline: 2px dashed var(--primary-color-100);
  border-radius: 4px;
  min-height: 200px;
  outline-offset: -10px;
  padding: 20px;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  overflow: hidden;
  transition: ease-in background 0.3s, ease-in color 0.3s, ease-in outline 0.3s;
}
.el-step-anfrage .field-upload.field-upload-multiple.has-advanced-upload.too-big label {
	color: white;
}
.el-step-anfrage .field-upload.field-upload-multiple.has-advanced-upload.too-big {
	background: var(--template-color-red);
	outline: 2px dashed white;
}
.el-step-anfrage .field-upload.field-upload-multiple.has-advanced-upload.is-dragover {
	background: var(--primary-color-30);
	outline: 2px dashed white;
	color: white;
	transition: ease-out background 0.3s, ease-out color 0.3s, ease-out outline 0.3s;
}
.el-step-anfrage .field-upload.field-upload-multiple:not(.has-advanced-upload) label {
	display: none;
}
.el-step-anfrage .field-upload.box.has-advanced-upload .box__dragndrop {
  display: inline;
}
.el-step-anfrage .field-upload.field-upload-multiple.has-advanced-upload input {
	display: none;
}
.el-step-anfrage .field-upload .box__dragndrop {
	pointer-events: none;
}
.el-step-anfrage .field-upload.field-upload-multiple.has-advanced-upload label {
	text-align: center;
	color: var(--primary-color-100);
	font-size: 2rem;
}
.el-step-anfrage .field-upload.field-upload-multiple.has-advanced-upload label:hover {
	cursor: copy;
}
.el-step-anfrage .field-upload.field-upload-multiple.has-advanced-upload label p {
	margin: 0px !important;
}



.el-step-anfrage .hidden-submit {
	display: none;
}
.el-step-anfrage .template-button-primary {
	display: inline-block;
	cursor: pointer;
}

form .el-step-anfrage-item.field-with-tooltip label,
.el-step-anfrage-item.field-with-tooltip .field-upload-text {
    padding-right: 2rem;
}

.step-anfrage-step .anfrage-template-footnote {
	margin-bottom: 2rem;
}
/*------------------------*/
/*---- BACKEND DESIGN ----*/
/*------------------------*/

.bh-bemode .step-anfrage-buttons {
	display: none;
}

/* MISSING DEPENDENCY FIELD */

.bh-bemode .step-anfrage-step.dependency-field-missing {
	background-color: var(--template-color-red);
}

/*
	STEPS
*/

.bh-bemode .step-anfrage-step {
	background-color: white;
	padding: 2rem;
	margin-bottom: 2rem;
}
.bh-bemode .step-anfrage-step-display  {
	padding: 1rem 2rem;
	background-color: var(--primary-color-07);
	border: 2px solid #ed1c24;
	color: #ed1c24 !important;
	margin-bottom: 3rem;
}
.bh-bemode .step-anfrage-step-display {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.bh-bemode .step-anfrage-step-number {
	padding: 1rem;
	box-sizing: border-box;
	background-color: white;
	margin-right: 1rem;
}
.bh-bemode.bhe-state-editing .step-anfrage-step-name.bhe-state-property-empty {
	min-width: 20px;
	min-height: 20px;
	background: rgba(255,255,255,0.9);
}
.bh-bemode .step-anfrage-step-display h6 {
	margin-bottom: 0px;
}
.bh-bemode .bhElement.el-step-anfrage-container {
	margin-bottom: 4rem !important;
}
.bh-femode .dev-hide-frontend {
	display: none;
}

/*-------------------------*/
/*---- FRONTEND DESIGN ----*/
/*-------------------------*/

/* INIT */

/* RING */
.bh-femode .step-anfrage-loader {
	text-align: center;
	position: absolute;
	left: 50%;
	top: 0px;
	transform: translateX(-50%);
	pointer-events: none;
	transition: ease-in-out opacity 0.4s;
}
.bh-femode .step-anfrage-loader-ring {
  display: inline-block;
  width: 80px;
  height: 80px;
}
.bh-femode .step-anfrage-loader-ring:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid var(--primary-color-100);
  border-color: var(--primary-color-100) transparent var(--primary-color-100) transparent;
  animation: step-anfrage-loader-ring 1.2s linear infinite;
}
@keyframes step-anfrage-loader-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.bh-femode .el-step-anfrage.initialized .step-anfrage-loader  {
	opacity: 0;
}
.bh-femode .el-step-anfrage:not(.initialized) .step-anfrage-container  {
	opacity: 0;
}
.bh-femode .el-step-anfrage .step-anfrage-container  {
	transition: ease-in-out opacity 0.4s;
}
.bh-femode .el-step-anfrage.initialized .step-anfrage-container  {
	opacity: 1;
}

/* TABS */

.bh-femode .el-step-anfrage .step-anfrage-step {
	display: none;
}
.bh-femode .el-step-anfrage .step-anfrage-step.active {
	display: block;
}

/* TOGGLER */

.bh-femode .step-anfrage-display {
	width: 100%;
	height: auto;
	border-top: 1px solid var(--root-color-10);
	border-bottom: 1px solid var(--root-color-10);
	padding: 1.5rem 2rem 3rem;
	box-sizing: border-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	margin-bottom: 6rem;
}
.bh-femode .step-anfrage-display .step-toggler {
	position: relative;
	width: 3rem;
	height: 3rem;
	border-radius: 2px;
	font-weight: 600;
	border: 1px solid var(--root-color-15);
	color: var(--root-color-15);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.bh-femode .step-anfrage-display .step-toggler:not(:last-child) {
	margin-right: 4rem;
}
.bh-femode .step-anfrage-display .step-toggler:not(:last-child):after {
	content: '';
	position: absolute;
	width: 2rem;
	height: 1px;
	left: calc(100% + 1rem);
	top: 50%;
	background-color: var(--root-color-15);
}
.bh-femode .step-anfrage-display .step-toggler.active:after,
.bh-femode .step-anfrage-display .step-toggler.completed:after {
	background-color: var(--primary-color-100);
}
.bh-femode .step-anfrage-display .step-toggler.active {
	background-color: var(--primary-color-10);
	border: 1px solid var(--primary-color-100);
	color: var(--primary-color-100);
}
.bh-femode .step-anfrage-display .step-toggler.completed {
	background-color: var(--primary-color-100);
	border: 1px solid var(--primary-color-100);
	color: white;
}
.bh-femode .step-anfrage-display .step-anfrage-step-text {
	position: absolute;
	width: auto;
	top: calc(100% + 0.5rem);
	left: 50%;
	transform: translateX(-50%);
	font-size: 1.6rem;
	white-space: nowrap;
	color: var(--primary-color-100);
	font-weight: 600;
	opacity: 0;
	transition: ease-in opacity 0.3s;
}
.bh-femode .step-anfrage-display .step-toggler.active .step-anfrage-step-text {
	opacity: 1;
	transition: ease-out opacity 0.3s;
}
.bh-femode .step-anfrage-step-display {
	display: none;
}

/* BUTTONS */

.bh-femode .step-anfrage-buttons .bh-field,
.bh-femode .step-anfrage-final-buttons {
	width: 100%;
	height: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

/* ZAEHLER */
.el-step-anfrage .zaehler-template-hidden {
	display: none;
} 
.el-step-anfrage-item.fieldtype-zaehler {
	width: 100% !important;
}
.bh-fieldblock-zaehler {
	position: relative;
	width: 100%;
    margin-left: -1rem;
    margin-top: -1rem;
	height: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}
.bh-fieldblock-zaehler .bh-field {
	margin: 1rem;
	position: relative;
}
.bh-fieldblock-zaehler-remove {
	position: absolute;
	right: -1.5rem;
	bottom: 3rem;
	font-size: 2rem;
	cursor: pointer;
	display: none;
}
.el-step-anfrage .bh-fieldblock-zaehler-wrapper .bh-fieldblock-zaehler:last-child:not(:nth-child(2)) .bh-fieldblock-zaehler-remove {
	display: block;
}
.bh-fieldblock-zaehler .abmeldedatum-field input {
	padding-right: 3rem;
}
.bh-fieldblock-zaehler .abmeldedatum-field:after {
	content: "\e9a8";
	font-family: 'bakehouse-iconset' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	letter-spacing: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: absolute;
	right: 1rem;
	bottom: 1.5rem;
	width: 2.2rem;
	height: 2.2rem;
	font-size: 24px;
	line-height: 2.2rem;
	color: var(--primary-color-100);
	z-index: 1;
	pointer-events: none;
}
/*--------------------------------*/
/*---- FIELDS WITH CONDITIONS ----*/
/*--------------------------------*/

.bh-bemode #Page .el-step-anfrage .field-is-commander select,
.bh-bemode #Page .el-step-anfrage .field-is-commander .styling-anfrage-input-select {
	background-color: rgba(95, 183, 98, 0.1);
}
.bh-bemode #Page .el-step-anfrage .field-is-commandreceiver input,
.bh-bemode #Page .el-step-anfrage .field-is-commandreceiver select,
.bh-bemode #Page .el-step-anfrage .field-is-commandreceiver .styling-anfrage-input-select,
.bh-bemode #Page .el-step-anfrage .field-is-commandreceiver textarea {
	background-color: rgba(227, 66, 66, 0.1);
}
.bh-femode .field-is-commandreceiver {
	display: none;
}
.bh-femode .field-is-commandreceiver.show-field {
	display: block;
}

/*-----------------*/
/*---- SUMMARY ----*/
/*-----------------*/

.step-anfrage-summary-step {
	background: white;
	border-radius: 2px;
	box-shadow: 0px 20px 80px rgba(41, 41, 42, 0.12);
	margin-bottom: 3rem;
	padding: 1.5rem 3rem;
	box-sizing: border-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}
.step-anfrage-summary-step-title-wrapper {
	width: 30%;
	border-right: 1px solid var(--root-color-07);
	padding-right: 2rem;
	box-sizing: border-box;
}
.step-anfrage-summary-step-title {
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
}
.step-anfrage-summary-step-data-wrapper {
	width: 70%;
	padding-left: 1.5rem ;
	padding-left: clamp(1rem, 3vw, 3rem);
	box-sizing: border-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.step-anfrage-summary-row {
	width: calc(50% - 2rem);
	margin: 1rem;
}
.step-anfrage-summary-label {
	font-weight: 600;
	font-size: 1.4rem;
	line-height: 1.3;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--root-color-30);
}
.step-anfrage-summary-value {
	font-size: 1.8rem;
	line-height: 1.3;
	color: var(--root-color-100);
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
	white-space: pre-line;
}
.step-anfrage-summary-value ul {
	padding-left: 1.5rem;
	margin: 5px 0;
}

/* ZAEHLER */
.step-anfrage-summery-zaehler {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	padding: 0 0 1.5rem;
	margin-bottom: 1.5rem;
}
.step-anfrage-summery-zaehler:not(:last-child) {
	border-bottom: 1px solid var(--root-color-07);
}
.step-anfrage-summary-zaehler-title {
	width: 100%;
	font-size: 2rem;
	font-weight: 600;
}
@media only screen and (max-width:1000px) {
	.step-anfrage-summary-row {
		width: 100%;
	}
}
@media only screen and (max-width:960px) {
	h4.step-anfrage-summary-step-title {
		font-size: 2rem;
	}
	.step-anfrage-summary-step-title-wrapper {
		min-width: 25rem;
	}
}
@media only screen and (max-width:700px) {
	.field-size-75,
	.field-size-25,
	.field-size-33 {
		width: calc(50% - 2rem);
	}
	.step-anfrage-summary-step {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-flow: column nowrap;
		flex-flow: column nowrap;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
	}
	.step-anfrage-summary-step-title-wrapper,
	.step-anfrage-summary-step-data-wrapper {
		width: 100%;
	}
	.step-anfrage-summary-step-title-wrapper {
		border-right: none;
		margin-bottom: 1rem;
		border-bottom: 1px solid var(--root-color-10);
	}
	.step-anfrage-summary-step-data-wrapper {
		padding: 1rem 0 0;
	}
	.step-anfrage-summary-row {
		margin-bottom: 1rem 0;
	}

}
@media only screen and (max-width:450px) {
	.field-size-75,
	.field-size-50,
	.field-size-33,
	.field-size-25 {
		width: 100%;
	}
}