/*
 Theme Name:        Divi Child by IT SOLUTIONS | Falk von Broen
 Theme URI:         https://www.elegantthemes.com/gallery/divi/
 Description:       Child Theme für das Wordpress Divi Theme mit Grundkonfiguration für Webseiten von IT SOLUTIONS | Falk von Broen
 Author:            IT SOLUTIONS | Falk von Broen
 Author URI:        https://it-fvb.de
 Template:          Divi
 Text Domain:       divi-child-itfvb
 Version:           1.6.0
 Requires at least: 6.0
 Tested up to:      6.8
 Requires PHP:      8.0
*/
 
 
/* Custom Styling
------------------------------------------------------- */

:root {
  --itfvb-font-awesome-version: "Font Awesome 7 Free";
  --itfvb-bg-color: #fff;
  --itfvb-color-light: #fff;
  --itfvb-bg-color-error: #f75050;
  --itfvb-border-radius-big: 20px;
  --itfvb-border-radius-small: 10px;
}

/**
 * Divi Kontaktformular Modul - Basis Styles / Fixe
 */
.et_pb_contact_form_container .et-pb-contact-message:not(:empty) { /* Kontainer der Meldungen vom Kontaktformular stylen */
  border-radius: var(--itfvb-border-radius-big);
  background-color: var(--itfvb-bg-color);
  padding: 20px;
  margin-bottom: 10px;
}
.et_pb_contact_form_container .et-pb-contact-message ul:is(:empty) { /* UL-Element innerhalb von Message ausblenden, wenn kein Inhalt */
  display: none;
}
.et_pb_contact_form_container .et-pb-contact-message ul:not(:empty) { /* Fehlermeldung von Kontaktformular stylen */
  border-radius: var(--itfvb-border-radius-small);
  padding: 10px 40px;
  background-color: var(--itfvb-bg-color-error);
  color: var(--itfvb-color-light);
}
.et_pb_contact_form_container .et-pb-contact-message p { /* Padding von Hauptnachricht aus Message entfernen */
  padding-bottom: 0;
}
.et_pb_contact_form_container .et_contact_bottom_container .et_pb_contact_field { /* Fix für Captcha Feld */
  background-color: var(--itfvb-bg-color);
  border-radius: var(--itfvb-border-radius-small);
  padding: 0 10px;
}
