#form
{
	    font-family: "Inter",sans-serif; max-width: 860px;
    margin: 0 auto;
    width: 100%;
}

#form form
{
	    background: #eee;
    padding: 2rem;
    border-radius: 6px;
}

/* Stilisiert alle Eingabefelder und Textbereiche */
#form .wpcf7-form-control {
    border: 1px solid #cccccc; /* Rahmenfarbe */
    padding: 10px; /* Innenabstand */
    font-size: 16px; /* Schriftgröße */
    border-radius: 5px; /* Abgerundete Ecken */ width: 100%;
}

/* Ändert den Hintergrund und die Textfarbe beim Fokussieren */
#form .wpcf7-form-control:focus {
    background-color: #f0f0f0; /* Hintergrundfarbe beim Fokussieren */
    border-color: #666666; /* Rahmenfarbe beim Fokussieren */
}

/* Stilisiert das Senden-Button */
#form .wpcf7-submit {
    background-color: #3aa935; /* Hintergrundfarbe */
    color: white; /* Textfarbe */
    padding: 10px 20px; /* Innenabstand */
    border: none; /* Kein Rahmen */
    border-radius: 5px; /* Abgerundete Ecken */
    cursor: pointer; /* Cursor-Stil */
    font-size: 16px; /* Schriftgröße */
}

/* Ändert den Stil des Senden-Buttons beim Überfahren mit der Maus */
#form .wpcf7-submit:hover {
    background-color: #e61d72; /* Dunklere Hintergrundfarbe beim Hover */
}

/* Stilisiert die Validierungsnachrichten */
#form .wpcf7-not-valid-tip {
    color: red; /* Textfarbe */
    font-size: 14px; /* Schriftgröße */
    margin-top: 5px; /* Abstand nach oben */
}

/* Stilisiert die Antwortnachrichten (Erfolg/Fehler) */
#form .wpcf7-response-output {
    margin-top: 20px; /* Abstand nach oben */
    font-size: 16px; /* Schriftgröße */
    padding: 10px; /* Innenabstand */
    border-radius: 5px; /* Abgerundete Ecken */
}

/* Erfolgsmeldungen */
#form .wpcf7-mail-sent-ok {
    border: 1px solid #398f14; /* Rahmenfarbe */
    background-color: #d4edda; /* Hintergrundfarbe */
    color: #155724; /* Textfarbe */
}

/* Fehlermeldungen */
#form .wpcf7-mail-sent-ng {
    border: 1px solid #f44336; /* Rahmenfarbe */
    background-color: #ffd2d2; /* Hintergrundfarbe */
    color: #d8000c; /* Textfarbe */
}

#form .wpcf7-form-control-wrap {
    position: relative;
    display: block;
}

#form .imgwrapper
{
	    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}


#form .imgwrapper .imgbox
{
width: 14%;
       height: 150px;
    margin: 10px;
}

#form .imgwrapper .imgbox img
{
	    height: 100px;
    width: 100%;
    object-fit: cover;
}

label.headliner
{
	   font-size: 1.6rem;
    text-align: center;
    font-weight: 300;
    margin-top: 1rem;
    margin-bottom: 2rem;
    color: #e61d72;     
	display: block;
}

#form  .imgwrapper .wpcf7-form-control
{
	border: 0;
    padding: 0;text-align: center;
    font-size: 1rem;
    font-weight: bold;
}

#form  .imgwrapper .wpcf7-list-item {
  display: block;
    margin: 0;
}
#form  .imgwrapper .wpcf7-list-item input[type="checkbox" i] 
{
	width: 21px;
    height: 21px;
    display: block;
    text-align: center;
    margin: 0 auto;
    margin-top: 1rem;
}

#form .imgwrapper .imgbox img.icon {
    height: auto;
    width: auto;
    object-fit: cover;
    margin: 0 auto;
    display: block;
}

#form .uacf7-step.step-content button.uacf7-prev, 
#form .uacf7-step.step-content button.uacf7-next
{
	    background-color: #3aa935;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

#form .uacf7-step.step-content button.uacf7-prev:hover, 
#form .uacf7-step.step-content button.uacf7-next:hover
{
	    background-color: #e61d72;
}

@media(max-width:890px)
{
	#form .imgwrapper .imgbox {
    width: 25%;
    height: 150px;
    margin: 10px;
}
	
	#form .imgwrapper {
   
    flex-wrap: wrap;
}
.steps-form .steps-row {
    display: inline-block;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: space-between;
}
}

	
	@media(max-width:590px)
{
	#form .imgwrapper .imgbox {
    width: 41%;
    height: 150px;
    margin: 10px;
}}