body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #000000;
}

header {
  max-width: 800px;
  margin: 20px auto;
  padding: 10px 20px;    
  background-color: #ffffff;
  color: #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 45px;
  cursor: pointer;
}

.progress-bar {
  width: 60%;
  height: 20px;
  background-color: #f0f0f0;
  border-radius: 10px;
  position: relative;
}

.container {
  max-width: 800px;
  margin: 20px auto;
  padding: 0 20px;
}

h1 {
    font-size: 22px;
    color: black;
    width: 100%;
}

h1 {
  font-size: 24px;
  color: black;
}

h1 span {
    color: #86868b;
}

#BoxStep1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#BoxStep5 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

#ModelList {
	display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

form {
}

.formelementmarke {
    width: 45%;
    height: 150px;
}

.formelement {
	margin-bottom: 1.2em;
	box-sizing: border-box;
	position: relative;
    align-items: center;
	display: flex;
}

.formelement input[type="radio"] {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	box-sizing: border-box;
	cursor: pointer;
	appareance: none;
	margin: 0;
	padding: 0;
}

.formelementlabel {
	display: flex;
	align-content: center;
	justify-content: center;
    align-items: center;
	width: 100%;
	height: 100%;
	text-align: center;
	box-sizing: border-box;
	background-color: #FFF;
	cursor: pointer;
	border: 2px solid #707070;
    border-radius: 5px;
	outline: none;
	margin-top: 2px;
	margin-bottom: 2px;
}

.formelementlabel label {
	width: 100%;
	padding: 8px 0px;
	cursor: pointer;
	line-height: 1.3;
    font-weight: bold;
    font-size: 16px;
	display: flex;
	flex-grow: 0;
	justify-content: center;
	align-items: center;
}

.formelementlabel label img {
	width: 45%;
}

.labeltext {
    margin-top: 20px;
    margin-bottom: 20px;
}

.labelmarke {
	height: 100%;
}

.labelmarke img {
	max-height: 75%;
}

.labelmodell {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 15px
}

.labelmodell img {
   
}

.labelmodell span {
    width: 40%;
}

.ModelDescription {
	color: red;
}

.labelbold {
	font-weight: bold;
	margin-top: 1.5em;
}


input[type="radio"]:hover + .formelementlabel {
    border: 2px solid #0071e3;
}

input[type="radio"]:checked + .formelementlabel {
    border: 2px solid #0071e3;

}

input[type="radio"]:focus + .formelementlabel {
    border: 2px solid #0071e3;
}

input, textarea {
    width: 100%;
    padding: 8px;
    margin-top: 10px;
    font-family: Arial, sans-serif;
	font-weight: 400;
	font-size: 16px;}
}

form input[type="text"], form input[type="email"], form input[type="date"] {
	width: 100%;
	padding: 8px;
	margin-top: 10px;
	height: 32px;
	box-sizing: border-box
}


.infobox {
    background-color: #EEF2F7;
    border-radius: 5px;
    padding: 20px 35px 20px 20px;
    position: relative;    
}

.infobox p {
    padding-right: 40px;
    line-height: 1.3;
    font-size: 14px;
    margin: 0;
}

.infosymbol {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
}


.tooltip [data-tip] {
	position:relative; 
	cursor:help; 
}

.tooltip [data-tip]:before {
	content:'';
	display:none; 
	border-top-color:transparent; 
	border-right-color:transparent;
	border-bottom-color:transparent;
	border-left-color:transparent;
	position:absolute;
	top:-7px;
	left:3px;
	z-index:8; 
	font-size:0; 
	line-height:0;
	width:0; 
	height:0; 
}
.tooltip [data-tip]:hover:before, .tooltip [data-tip]:hover:after {
	display:block;
}

.tip-above[data-tip]:after {
	top: -108px;
	left: -101px; 
	height: auto;
	width: 300px;
}

.tip-below[data-tip]:after {
	top: 22px; 
	left: -101px;
	height: auto;
	width: 210px;
}

.tip-below[data-tip]:before {
	border-top-color:transparent;
	border-right-color:transparent;
	border-bottom-color:transparent;
	border-left-color:transparent;
	top:13px;
	left:5px;
}

.icon-question-sign:before {
	content: "\f05a"; 
	font-family: FontAwesome;
	font-style: normal;
	color: #636363
}

.tooltip [data-tip]:after {
	display:none;
	content:attr(data-tip);
	position:absolute;
	top:-35px;
	left:-0px; 
	padding:5px 8px;
	background:#FEF1B6;
	color:#000;
	border-left: 3px solid #E1C542;
	z-index:9; font-size: .9em;
	line-height:18px;
	white-space:normal;
	word-wrap:normal; 
	text-align:center; 
	text-decoration:none;
}


.button {
	display: flex;
	margin-top: 20px;
	margin-bottom: 19px;
	padding-left: 15px;
	padding-right: 15px;
    border-radius: 5px;
	color: #0071e3;
	font-size: 1em;
	background-color: #FFFFFF;
	border: 2px solid #0071e3;
	box-sizing: border-box;
	align-self: flex-end;
	justify-content: center;
	align-items: center;
	flex-grow: 0;
	height: 42px;
	width: 100%;
	cursor: pointer;
}

.button:hover {
	box-shadow: 3px 4px 6px 0 rgba(0,0,0,.2);
	background-color: #edf2f8;
	color: #0071e3
}

.fortschrittsanzeige {
  width: 200px;
  border-radius: 5px;
  display: flex;
}

.schritte {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.schritt {
  width: 12px; /* Anpassbare Größe */
  height: 12px; /* Anpassbare Größe */
  border-radius: 50%;
  background-color: #ccc;
  margin: 0 auto 0 5px;
  transition: background-color 0.2s ease-in-out;
}

.schritt.aktiv {
  background-color: #D31126;
}

.balken {
  height: 100%;
  background-color: #D31126;
  width: 0; /* Anpassbare Größe */
  border-radius: 5px;
  margin-right: 0;
  box-sizing: content-box;
}

.FbMaster:empty {
	display: none;
}

.FbMaster {
	width: 100%;
	background-color: #D31126;
	color: #FFF;
	margin-top: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 10px;
	padding-right: 10px;
	border-left: #940B1A 3px solid;
	margin-top: 18px;
}

.FbMaster p::before {
  content: '\26A0'; /* Unicode für das Ausrufezeichen */
  color: #FFF;
  padding-right: 5px;
 }