/*

Kirby Starterkit

Author: Bastian Allgeier / Sascha Lack
URL:    http://getkirby.com
Email:  support@getkirby.com

*/
:root {
  --color-main: #0092FF;
  --color-bg: #f7f8fa;
  --color-menu-bg: #EEF0F2;
  --color-font: #222;
  --color-special-info: #0092FF;
  --color-special-infobg: rgba(0, 146, 255, 0.1);
  --color-special-warning: #f1bd00;
  --color-special-warningbg: rgba(241, 189, 0, 0.1);
  --color-special-example: #757577;
  --color-special-examplebg: rgba(117, 117, 119, 0.1);
}

/* Formular
-------------------------------------------------- */
@font-face {
  font-family: 'Formular';
  src: url("../fonts/Brownfox - Formular.otf") format("opentype"), url("../fonts/Brownfox - Formular Mono.otf") format("opentype"), url("../fonts/Brownfox - Formular Medium.otf") format("opentype"), url("../fonts/Brownfox - Formular Medium Italic.otf") format("opentype"), url("../fonts/Brownfox - Formular Light.otf") format("opentype"), url("../fonts/Brownfox - Formular Light Italic.otf") format("opentype"), url("../fonts/Brownfox - Formular Italic.otf") format("opentype"), url("../fonts/Brownfox - Formular ExtraLight.otf") format("opentype"), url("../fonts/Brownfox - Formular ExtraLight Italic.otf") format("opentype"), url("../fonts/Brownfox - Formular Bold.otf") format("opentype"), url("../fonts/Brownfox - Formular Bold Italic.otf") format("opentype"), url("../fonts/Brownfox - Formular Black.otf") format("opentype"), url("../fonts/Brownfox - Formular Black Italic.otf") format("opentype");
}

/* Reset
-------------------------------------------------- */
*, *:before, *:after {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, main, nav, section, summary {
  display: block;
}

/* Pix
-------------------------------------------------- */
img {
  display: block;
  max-width: 100%;
}

/* Links
-------------------------------------------------- */
a {
  color: #000;
  text-decoration: none;
  -webkit-transition: color .3s, background .3s, border .3s;
  transition: color .3s, background .3s, border .3s;
}

a:hover {
  color: var(--color-main);
}

/* Clearfix
-------------------------------------------------- */
/* Site
-------------------------------------------------- */
html {
  height: 101%;
  font-family: "Formular", sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  background-color: var(--color-bg);
}

body {
  margin: 0 auto;
  font-size: 1.25em;
  line-height: 1.5em;
  max-width: 50em;
  color: var(--color-font);
}

.wrapper {
  padding: 4vw;
}

/* Header
-------------------------------------------------- */
.header {
  border-bottom: 2px solid #e8e8ec;
  padding-top: 6vw;
  background-color: white;
}

.logo {
  display: block;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
          flex: 0 1 auto;
}

.logo img {
  width: 2em;
}

/* Navigation
-------------------------------------------------- */
.menu a {
  display: block;
  color: #222;
}

.menu a:hover {
  color: var(--color-main);
  text-decoration: none;
}

.menu .active {
  color: var(--color-main);
}

.menu li {
  list-style: none;
}

.menu > li {
  position: relative;
}

.menu > li > a {
  padding: .35em 0;
  border-top: 1px solid #ddd;
  font-weight: 400;
  font-size: 12px;
  line-height: normal;
  text-transform: uppercase;
}

.submenu {
  position: absolute;
  z-index: 1;
  display: none;
  left: 1em;
}

.submenu:before {
  position: absolute;
  z-index: -1;
  content: '';
  top: -.5em;
  left: 0;
  border-top: .5em solid transparent;
  border-bottom: .5em solid transparent;
  border-left: .5em solid #222;
}

.submenu li {
  border-bottom: 1px solid #444;
}

.submenu a {
  padding: .5em 1.5em;
  font-size: .9em;
  font-weight: 300;
  color: #fff;
  background: #222;
  white-space: nowrap;
}

.submenu a:hover {
  background: #333;
  color: #fff;
}

.page_nav {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 2vw 6vw;
}

@media screen and (min-width: 40em) {
  body {
    padding: 3em;
  }
  .page_nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    width: 100%;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
            flex: 0 1 auto;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
    box-sizing: content-box;
    padding: 0;
    padding-left: 6vw;
  }
  .menu {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
            order: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
            flex: 1 1 auto;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
  }
  .menu > li {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
            flex: 0 1 auto;
    padding: 0 1vw;
  }
  .menu > li > a {
    padding: 0 1vw;
    border: 0;
  }
  .menu > li:hover .submenu {
    display: block;
  }
}

/* Headings
-------------------------------------------------- */
h1 {
  font-size: 2em;
  line-height: 1.25em;
  font-weight: 400;
  margin-bottom: .5em;
}

h2 {
  font-size: 2em;
  line-height: 1.25em;
  font-weight: 300;
  margin-bottom: .5em;
  color: var(--color-main);
  color: white;
  background-color: var(--color-main);
  padding: 0 10px;
}

h3 {
  font-size: 1.4em;
  line-height: 1.5em;
  font-weight: 400;
  margin-bottom: .5em;
  color: var(--color-main);
  border-bottom: 2px solid;
}

h4, h5 {
  font-size: 1.125em;
  font-weight: 600;
  line-height: 1.5em;
  margin-bottom: .5em;
  color: var(--color-main);
  border-bottom: 1px dotted;
}

h5 {
  border-bottom: 0;
}

h1 a, h2 a, h3 a, h4 a, h5 a {
  color: inherit;
  border: 0 !important;
}

/* Main
-------------------------------------------------- */
.main {
  padding-bottom: 1.5em;
}

.main hr {
  margin: 3em 0;
  height: 2px;
  background: #ddd;
}

.main p,
.main figure,
.main ul,
.main ol {
  margin-bottom: 1.5em;
}

.main a {
  border-bottom: 2px solid #ddd;
}

.main a:hover {
  border-color: #222;
}

/* Text blocks */
.text ul,
.text ol {
  margin-left: 1em;
}

/* Project meta
-------------------------------------------------- */
.meta {
  margin-bottom: 1.5em;
}

.meta li {
  float: left;
  list-style: none;
  margin-right: 2em;
  color: var(--color-main);
}

.meta li b {
  font-weight: 400;
  color: #000;
  padding-right: .25em;
}

/* Project teaser
-------------------------------------------------- */
.teaser {
  list-style: none;
}

.teaser li {
  margin-bottom: 1.5em;
  list-style: none;
}

@media screen and (min-width: 50em) {
  .teaser li {
    float: left;
    width: 30%;
    margin-left: 5%;
  }
  .teaser li:first-child {
    margin-left: 0;
  }
}

/* Next/Prev nav
-------------------------------------------------- */
.nextprev {
  padding: 1em 0;
}

.nextprev a {
  border: 0;
}

.nextprev .prev {
  float: left;
}

.nextprev .next {
  float: right;
}

/* Footer
-------------------------------------------------- */
.footer {
  padding: 1em 0 6em;
  font-size: .8em;
}

.copyright {
  float: left;
}

.colophon {
  float: right;
}

.colophon a b {
  color: var(--color-main);
  padding-left: .25em;
}

.lazy-hidden {
  opacity: 0;
}

.lazy-loaded {
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  opacity: 1;
}

/*LAYOUT*/
html {
  font-size: 12px;
}

body {
  padding-bottom: 0;
}

.nav_index {
  margin-bottom: 4em;
}

@media screen and (min-width: 40em) {
  html {
    height: 100%;
  }
  body {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    height: 100%;
    max-width: 100%;
    min-height: 0;
    margin: 0;
    padding: 0;
  }
  header, footer {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .header {
    padding: 18px 4vw;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
    margin: 0;
  }
  .wrapper {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
            flex: 1 1 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
            flex-direction: row;
    height: 100%;
    min-height: 0;
    padding: 0px 4vw;
  }
  .wrapper .nav_index, .wrapper main {
    overflow: auto;
    padding-top: 2em;
  }
  .wrapper .nav_index {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
    padding-right: 1em;
    margin-bottom: 0;
    line-height: 1.5em;
  }
  .wrapper main {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
            flex: 1 1 auto;
    padding-left: 1em;
    padding-right: 1em;
    border-bottom: 0;
  }
  .footer {
    padding-bottom: 0;
  }
}

/*CONTENT*/
img {
  display: block;
  height: auto;
  width: auto;
  max-width: 100%;
  max-height: 500px;
  margin: 0 auto;
}

.logo {
  width: 216px;
  height: 36px;
  margin: 0 auto;
}

.logo img {
  width: 100%;
  height: 100%;
}

.main, .menu_doc {
  -webkit-overflow-scrolling: touch;
}

.main ul, .main ol, .menu_doc ul, .menu_doc ol {
  padding-left: 1.25em;
}

.menu_doc ul {
  display: none;
  padding-top: 0.4em;
  padding-bottom: 0.4em;
}

.menu_doc a.ancestor + ul, .menu_doc a.active + ul {
  display: block;
}

.menu_doc a.active {
  color: white;
  background-color: var(--color-main);
}

.menu_doc a.active + ul {
  background-color: var(--color-menu-bg);
}

.menu_doc, .menu_doc ul {
  list-style-type: none;
  padding-top: 0.4em;
}

.menu_doc a {
  display: block;
  color: #666;
  padding: 0 0.6em 0 0.3em;
  border-left: 0.3em solid transparent;
}

.menu_doc a:hover {
  border-left: 0.3em solid var(--color-main);
}

.language_select_wrapper {
  position: relative;
  z-index: 1;
}

.language_select_wrapper:before {
  content: '';
  position: absolute;
  top: 7px;
  left: 4px;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  background-image: url("../images/globe.svg");
  background-size: contain;
}

@media screen and (min-width: 40em) {
  .language_select_wrapper {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
            order: 2;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}

.language_select {
  -webkit-appearance: none;
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  padding: 10px 10px 12px;
  padding-left: 30px;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  cursor: pointer;
}

@media screen and (min-width: 40em) {
  .language_select {
    width: auto;
  }
}

.doc_content + .doc_content {
  margin-top: 3.5em;
}

.special {
  width: 100%;
  margin-bottom: 1.5em;
}

.special:last-child {
  margin-bottom: 0;
}

.special_warning, .special_info, .special_example {
  padding: 16px 25px 16px 20px;
  border-left: 5px solid;
}

.special_warning {
  background: var(--color-special-warningbg);
  border-color: var(--color-special-warning);
}

.special_info {
  background: var(--color-special-infobg);
  border-color: var(--color-special-info);
}

.special_example {
  background: var(--color-special-examplebg);
  border-color: var(--color-special-example);
}

.special p:last-child {
  margin-bottom: 0;
}

.special > .image_wrapper {
  padding-bottom: 20px;
}

.special img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  border: none;
}

@media screen and (min-width: 40em) {
  .special {
    display: table;
  }
  .special > .image_wrapper, .special > .text_wrapper {
    display: table-cell;
    vertical-align: top;
  }
  .special > .image_wrapper {
    width: 180px;
    padding-right: 20px;
    padding-bottom: 0;
  }
  .special_image > .image_wrapper {
    padding-bottom: 20px;
  }
  .special_image > .text_wrapper {
    display: table-row;
    text-align: justify;
  }
  .special_image > .text_wrapper p {
    margin: 0 auto;
  }
}

@media screen and (min-width: 60em) {
  .special > .image_wrapper {
    width: 280px;
  }
}

@media screen and (min-width: 80em) {
  .special_image > .text_wrapper p {
    width: 70%;
  }
}

.highlight {
  background-color: #c7d300;
}

img.lazy {
  display: none;
}

code {
  word-wrap: break-word;
}
/*# sourceMappingURL=style.css.map */