﻿*:not(i) {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

p, span, button {
  font-weight: 400;
}
p.light, span.light, button.light, a.light {
  font-weight: 300;
}
p.medium, span.medium, button.medium, a.medium {
  font-weight: 500;
}
p.bold, span.bold, button.bold, a.bold {
  font-weight: 700;
}
p.black, span.black, button.black, a.black {
  font-weight: 900;
}
p.smaller, span.smaller, button.smaller, a.smaller {
  font-size: 12px;
}
p.small, span.small, button.small, a.small {
  font-size: 14px;
}
p.regular, span.regular, button.regular, a.regular {
  font-size: 16px;
}
p.large, span.large, button.large, a.large {
  font-size: 20px;
}
p.larger, span.larger, button.larger, a.larger {
  font-size: 24px;
}
p.xlarge, span.xlarge, button.xlarge, a.xlarge {
  font-size: 32px;
}
p.xxlarge, span.xxlarge, button.xxlarge, a.xxlarge {
  font-size: 36px;
}
p.xxxlarge, span.xxxlarge, button.xxxlarge, a.xxxlarge {
  font-size: 48px;
}
p.ucase, span.ucase, button.ucase, a.ucase {
  text-transform: uppercase;
}

ul.no-style {
  list-style: none;
  margin: 0;
  padding: 0;

  li {
    display: inline;
  }
}

html {
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

body {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  background-color: transparent;
}

.main-container {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  flex: 1 1 auto;
  align-items: stretch;
  min-height: 0;
  height: 100%;
}

.topbar {
  flex: 0 0 auto;
  display: flex;
  height: 60px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  background-color: var(--mainNavigationBackgroundColor);
  color: var(--mainNavigationColor);
}

.topbar > *:not(:last-child) {
  margin-right: 20px;
}

.topbar > .app-logo {
  flex: 0 0 auto;
  display: flex;
  align-self: center;
}

.topbar > .app-logo > img {
  max-height: 60px;
}

.topbar > .brand-logo {
  flex: 0 0 auto;
  max-height: 60px;
  align-self: center;
}

.topbar > .app-header {
  flex: 0 0 auto;
  align-self: center;
  font-weight: 400;
  font-size: 20px;
  color: var(--mainNavigationHeaderTextColor);
}

.topbar > .actions {
  flex: 0 0 auto;
  margin-left: auto;
  align-self: center;
}

.topbar > .actions > *:not(:last-child) {
  margin-right: 10px;
}

.main-content {
  flex: 1 1 auto;
  display: flex;
  overflow: auto;
}

.hidden {
  display: none !important;
}
