/* Baerwinkels: Fonts & Logo (Farben siehe css/themes/baerwinkels.css) */

body,
input,
textarea,
select {
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
}

h1, h2,
.cssButton {
  font-family: 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800;
}

h1, h2 {
  text-transform: uppercase;
}

/* Logo hat anderes Seitenverhaeltnis als das Nova-Logo */
.col_logo img {
  height: auto;
}
@media only screen and (min-width: 600px) {
  .col_logo { width: auto; }
  .col_logo img { width: 300px; }
}

/* Aktiver Hauptmenuepunkt wie Hover: dunkel mit oranger Schrift */
.menu_items .active1 > a,
.menu_items .activeparent1 > a,
.menu_items .active1 > .nolink,
.menu_items .activeparent1 > .nolink {
  background: var(--categoriesitems_level1_bg_hover);
}

/* Checkout-Header so breit wie der (volle) Inhalt */
.layout_header_checkout_inner {
  max-width: 1440px;
}

/* Checkout-Stepper: Schritte gleichmaessig ueber die volle Breite */
@media only screen and (min-width: 985px) {
  ul#checkoutnavigation li { flex: 1; }
}

/* Checkout-Logo */
@media only screen and (min-width: 600px) {
  .col_logo_checkout { width: 300px; height: auto; }
}

/* UVP & Bestandsampel (Detailseite und Listing) */
.bw_uvp {
  margin: 10px 0 0 0;
}
.bw_uvp_tax {
  font-size: 0.85em;
  color: #666;
}
.bw_stock {
  margin: 15px 0;
}
.lb_uvp,
.lb_stock,
.lr_uvp,
.lr_stock {
  font-size: 12px;
  margin: 5px 0;
}
.bw_stock i {
  color: #ddd;
  margin: 0 2px 0 0;
}
.bw_stock i.red { color: #cc0000; }
.bw_stock i.yellow { color: #f0ad4e; }
.bw_stock i.green { color: #2e9e44; }

/* B2B-Hinweise */
.bw_b2b_note {
  font-size: 12px;
  text-align: center;
  color: #666;
  background: #f2f2f2;
  padding: 10px 15px;
}
.bw_b2b_note_footer {
  color: #ff9934;
  text-align: center;
  font-size: 12px;
  margin: 30px 0 0 0;
}

/* Linke Kategorie-Box ohne Abstand oben kleben lassen (Nova: 70px) */
.box_sub_categories {
  top: 0;
}
.admin_mode .box_sub_categories {
  top: 36px; /* unter der modified-Adminleiste */
}

/* Logo in der linken Kategorie-Box, nur wenn sie sticky ist (javascript/extra/bw_sticky_logo.js.php) */
.bw_sticky_logo {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.bw_sticky_logo img {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
}
.box_sub_categories.bw_stuck .bw_sticky_logo {
  max-height: 100px;
  padding: 20px 0 0 0;
  opacity: 1;
}
