/**
 * normalize sizing
 */

*,
*::before,
*::after {
  box-sizing: border-box;
}


/**
 * Bind Fonts
 * dont add fonts that are not embeted into dompdf -> this will unvalidate zugpferd pdf
 */

@font-face {
    font-family: "Barcode";
    src: url(../fonts/3OF9_NEW.TTF) format("truetype");
}


/**
 * Main color settings
 */

:root {

  --scheme-color-neutral-borders : #ccc;
  --scheme-color-overall-background-color : white;
  --scheme-color-highlight-background-color : #eee;

  --main-font-color: #000;
  --scheme-color-dark-borders : var(--main-font-color);


  --text-link-color: blue;

  --error-font-color: #e52421;
  --success-font-color: #32db01;

}