:root {
  --sw-background-color: #000000;
  --sw-medium-background-color: #121212;
  --sw-light-background-color: #242424;
  --sw-lighter-background-color: #363636;
  --sw-font-color: #ffffff;
  --sw-light-font-color: #cccccc;
  --sw-font-color-error: #a94442;
  --sw-font-family: Consolas, monaco, monospace;
  --sw-font-size: 62.5%;
}

html, body {
  width: 100%;
  height: 100%;
  background-color: var(--sw-background-color);
  color: var(--sw-font-color);
}

html {
  font-size: var(--sw-font-size);
}

* {
  box-sizing: border-box;
  font-family: var(--sw-font-family);
}

body.loading {
  background-image: url(../../images/loader.gif);
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

simple-layout {
  display: block;
  height: 100%;
}
simple-layout > div {
  height: 100%;
}
simple-layout sw-infos-button {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 1001;
}
simple-layout sw-credits {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1000;
  width: 100vw;
}

controller-layout {
  display: block;
  min-height: 100vh;
}
controller-layout > div {
  padding: 20px;
  display: flex;
  justify-content: space-evenly;
}
controller-layout sc-slider {
  width: 50%;
  height: 70%;
}
controller-layout header {
  display: block;
  height: 38px;
  line-height: 38px;
  background-color: var(--sw-medium-background-color);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px solid var(--sw-lighter-background-color);
}
controller-layout header h1 {
  font-size: 12px;
  margin: 0;
  padding-left: 20px;
}

/*# sourceMappingURL=app.css.map */
