@charset "utf-8";
@import url('/assets/css/style.css');
@import url('/assets/css/navi.css');
@import url('/assets/css/form.css');
@import url('/assets/css/button.css');
@import url('/assets/css/lightcase.css');
@import url('/assets/fontawesome/css/all.min.css');
@import url('/assets/css/coco.min.css');

/* Hier @font-face - Schriften einfügen */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url(/assets/fonts/Roboto400.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url(/assets/fonts/Roboto500.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url(/assets/fonts/Roboto700.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Grundeinstellungen */
*														{ margin: 0; padding: 0; }
body								        { font-size: 16px; background: #000000 url(/assets/img/site/site-bg.png) top repeat-x; font-family: 'Roboto', sans-serif; }
header											{ width: 100%; }
nav													{ width: 100%; }
main												{ width: 100%; }
footer											{ width: 100%; }

/* Farben global */


/* Abstände und Flexboxen */
.bbx												{ box-sizing: border-box; }
.centered										{ margin: 0 auto 1.000rem; }
.center											{ text-align: center; }
.flex												{ display: flex; flex-wrap: wrap; align-items: start; }
.flexalign									{ display: flex; flex-wrap: wrap; align-content: center; }
.flexstart									{ display: flex; flex-wrap: wrap; align-content: flex-start; }
.flexspace									{ display: flex; flex-wrap: wrap; justify-content: space-between; }
.flexaround									{ display: flex; flex-wrap: wrap; justify-content: space-around; }
.flexend										{ display: flex; flex-wrap: wrap; justify-content: flex-end; }
.flexcc											{ display: flex; flex-wrap: wrap; align-content: center; justify-content: center; }
.hrleer											{ clear: both; width: 100%; border: none; color: transparent; margin-bottom: 0; }