/**
 * CSS for PBI drupal 10.
 *
 * Only applies to frontpage and webform-pages.
 * Loaded via CiviCRM's Custom CSS URL.
 */

/*
 * No druplicon in sidebar.
 */
body.path-frontpage,
body.path-webform,
body.page-node-type-webform {
  background-image: none;
}


/*
 * Inputs
 */
body.path-frontpage [type="color"], [type="date"], [type="datetime-local"], [type="email"], [type="file"], [type="month"], [type="number"], [type="password"], [type="search"], [type="tel"], [type="text"], [type="time"], [type="url"], [type="week"], textarea,
body.path-webform [type="color"], [type="date"], [type="datetime-local"], [type="email"], [type="file"], [type="month"], [type="number"], [type="password"], [type="search"], [type="tel"], [type="text"], [type="time"], [type="url"], [type="week"], textarea {
  width: 100%;
}


/*
 * Footer: color + fonts
 */
body.path-frontpage .site-footer .site-footer__inner .text-content,
body.path-webform .site-footer .site-footer__inner .text-content {
  color: var(--color--white);
  font-family: var(--font-sans);
}
body.path-frontpage .site-footer .site-footer__inner a,
body.path-webform .site-footer .site-footer__inner a {
  color: var(--color--white);
}

/*
 * Workaround Startseite "Sie haben noch keinen Inhalt für die Startseite erstellt." verbergen
 */
.path-frontpage .view-id-frontpage {
  display: none;
}
