@charset "UTF-8";
/* GENERAL STYLING (tags) */
html {
  /* local colors - overridable with alternate styles */
  --active-color: var(--primaryColor);
  --active-color-rgb: var(--primaryColorRGB);
  --active-text: var(--primaryText);
  --active-text-rgb: var(--primaryTextRGB);
  --accent-color: var(--secondaryColor);
  --accent-color-rgb: var(--secondaryColorRGB);
  --accent-text: var(--secondaryText);
  --accent-text-rgb: var(--secondaryTextRGB);
  --text-color: var(--textColor);
  --text-color-rgb: var(--textColorRGB);
  --background-color: var(--backgroundColor);
  --background-color-rgb: var(--backgroundColorRGB);
  --stroke-color: RGBA( var(--text-color-rgb), .25);
  --placeholder-color: RGBA( var(--text-color-rgb), .33);
  --muted-color: RGBA( var(--text-color-rgb), .07);
  --headline-color: var(--headlineColor);
}

body {
  font-family: var(--textFont);
  font-size: var(--textSize);
  line-height: var(--lineHeight);
  color: var(--text-color);
  background-color: var(--background-color);
  margin: calc( var(--whiteSpace) *2);
}

/* alternate styles */
.standard {
  --active-color: var(--primaryColor);
  --active-color-rgb: var(--primaryColorRGB);
  --active-text: var(--primaryText);
  --active-text-rgb: var(--primaryTextRGB);
  --accent-color: var(--secondaryColor);
  --accent-color-rgb: var(--secondaryColorRGB);
  --accent-text: var(--secondaryText);
  --accent-text-rgb: var(--secondaryTextRGB);
  --text-color: var(--textColor);
  --text-color-rgb: var(--textColorRGB);
  --background-color: var(--backgroundColor);
  --background-color-rgb: var(--backgroundColorRGB);
  --stroke-color: rgba( var(--text-color-rgb), .25);
  --placeholder-color: rgba( var(--text-color-rgb), .33);
  --muted-color: rgba( var(--text-color-rgb), .07);
  --headline-color: var(--headlineColor);
}

.standard-secondary {
  --active-color: var(--secondaryColor);
  --active-color-rgb: var(--secondaryColorRGB);
  --active-text: var(--secondaryText);
  --active-text-rgb: var(--secondaryTextRGB);
  --accent-color: var(--primaryColor);
  --accent-color-rgb: var(--primaryColorRGB);
  --accent-text: var(--primaryText);
  --accent-text-rgb: var(--primaryTextRGB);
  --text-color: var(--textColor);
  --text-color-rgb: var(--textColorRGB);
  --background-color: var(--backgroundColor);
  --background-color-rgb: var(--backgroundColorRGB);
  --stroke-color: rgba( var(--text-color-rgb), .25);
  --placeholder-color: rgba( var(--text-color-rgb), .33);
  --muted-color: rgba( var(--text-color-rgb), .07);
  --headline-color: var(--headlineColor);
}

.primary {
  --active-color: var(--primaryText);
  --active-color-rgb: var(--primaryTextRGB);
  --active-text: var(--primaryColor);
  --active-text-rgb: var(--primaryColorRGB);
  --accent-color: var(--secondaryColor);
  --accent-color-rgb: var(--secondaryColorRGB);
  --accent-text: var(--secondaryText);
  --accent-text-rgb: var(--secondaryTextRGB);
  --text-color: var(--primaryText);
  --text-color-rgb: var(--primaryTextRGB);
  --background-color: var(--primaryColor);
  --background-color-rgb: var(--primaryColorRGB);
  --stroke-color: rgba( var(--text-color-rgb), .25);
  --placeholder-color: rgba( var(--text-color-rgb), .33);
  --muted-color: rgba( var(--text-color-rgb), .07);
  --headline-color: var(--primaryText);
  /*
  button:not(:disabled):hover {
    background-color: var(--active-muted-color);
    border-color: var(--active-muted-color);
  }
  */
}

.secondary {
  --active-color: var(--secondaryText);
  --active-color-rgb: var(--secondaryTextRGB);
  --active-text: var(--secondaryColor);
  --active-text-rgb: var(--secondaryColorRGB);
  --accent-color: var(--primaryColor);
  --accent-color-rgb: var(--primaryColorRGB);
  --accent-text: var(--primaryText);
  --accent-text-rgb: var(--primaryTextRGB);
  --text-color: var(--secondaryText);
  --text-color-rgb: var(--secondaryTextRGB);
  --background-color: var(--secondaryColor);
  --background-color-rgb: var(--secondaryColorRGB);
  --stroke-color: rgba( var(--text-color-rgb), .25);
  --placeholder-color: rgba( var(--text-color-rgb), .33);
  --muted-color: rgba( var(--text-color-rgb), .07);
  --headline-color: var(--secondaryText);
  /*
  button:not(:disabled):hover {
    background-color: var(--active-muted-color);
    border-color: var(--active-muted-color);
  }
  */
}

.inverse {
  --active-color: var(--primaryColor);
  --active-color-rgb: var(--primaryColorRGB);
  --active-text: var(--primaryText);
  --active-text-rgb: var(--primaryTextRGB);
  --accent-color: var(--secondaryColor);
  --accent-color-rgb: var(--secondaryColorRGB);
  --accent-text: var(--secondaryText);
  --accent-text-rgb: var(--secondaryTextRGB);
  --text-color: var(--backgroundColor);
  --text-color-rgb: var(--backgroundColorRGB);
  --background-color: var(--textColor);
  --background-color-rgb: var(--textColorRGB);
  --stroke-color: rgba( var(--text-color-rgb), .25);
  --placeholder-color: rgba( var(--text-color-rgb), .33);
  --muted-color: rgba( var(--text-color-rgb), .07);
  --headline-color: var(--backgroundColor);
}

.inverse-secondary {
  --active-color: var(--secondaryColor);
  --active-color-rgb: var(--secondaryColorRGB);
  --active-text: var(--secondaryText);
  --active-text-rgb: var(--secondaryTextRGB);
  --accent-color: var(--primaryColor);
  --accent-color-rgb: var(--primaryColorRGB);
  --accent-text: var(--primaryText);
  --accent-text-rgb: var(--primaryTextRGB);
  --text-color: var(--backgroundColor);
  --text-color-rgb: var(--backgroundColorRGB);
  --background-color: var(--textColor);
  --background-color-rgb: var(--textColorRGB);
  --stroke-color: rgba( var(--text-color-rgb), .25);
  --placeholder-color: rgba( var(--text-color-rgb), .33);
  --muted-color: rgba( var(--text-color-rgb), .07);
  --headline-color: var(--backgroundColor);
}

.gradient {
  --active-color: var(--gradientText);
  --active-color-rgb: var(--gradientTextRGB);
  --active-text: var(--gradientColor);
  --active-text-rgb: var(--gradientColorRGB);
  --accent-color: var(--gradientColor);
  --accent-color-rgb: var(--gradientColorRGB);
  --accent-text: var(--gradientText);
  --accent-text-rgb: var(--gradientTextRGB);
  --text-color: var(--gradientText);
  --text-color-rgb: var(--gradientTextRGB);
  --background-color: var(--gradientColor);
  --background-color-rgb: var(--gradientColorRGB);
  --stroke-color: rgba( var(--text-color-rgb), .25);
  --placeholder-color: rgba( var(--text-color-rgb), .33);
  --muted-color: rgba( var(--text-color-rgb), .07);
  --headline-color: var(--gradientText);
  background-image: linear-gradient(to right top, RGBA(var(--textColorRGB), 0.33), transparent, RGBA(var(--backgroundColorRGB), 0.33)), linear-gradient(to right bottom, var(--primaryColor), var(--secondaryColor));
  background-size: 110% 110%, 110% 110%;
  background-repeat: no-repeat;
  background-position: center center;
  /*
  button:not(:disabled):hover {
    background-color: var(--active-muted-color);
    border-color: var(--active-muted-color);
  }
  */
}

.shade {
  background-image: linear-gradient(RGBA(var(--text-color-rgb), 0.05), RGBA(var(--text-color-rgb), 0.05));
}

::selection {
  background: RGBA(var(--active-color-rgb), 0.33);
}

.standard.muted, .standard-secondary.muted, .inverse.muted, .inverse-secondary.muted, .gradient.muted {
  background-color: var(--muted-color);
}

h1 {
  font-size: calc( var(--textSize) * var(--headlineSizeMultiplier));
}

h2 {
  font-size: calc( var(--textSize) * var(--headlineSizeMultiplier) * .75);
}

h3 {
  font-size: calc( var(--textSize) * var(--headlineSizeMultiplier) * .67);
}

h1, h2, h3 {
  font-family: var(--headlineFont);
  font-weight: var(--headlineWeight);
  color: var(--headline-color);
  margin-top: 1em;
}

h2 {
  margin-top: 3rem;
}

h4 {
  text-transform: uppercase;
  color: var(--headline-color);
}

blockquote, figure, table, ul, ol {
  margin: 0;
}

p {
  margin: 1em 0;
}

p + figure, blockquote + figure {
  margin-top: 2em;
}

img {
  max-width: 100%;
  border-radius: var(--borderRadius);
}

a {
  color: var(--active-color);
}

hr {
  height: 1px;
  width: 100%;
  border: none;
  border-bottom: var(--strokeWidthThin) solid var(--stroke-color);
  margin: var(--lineHeight) 0;
}

blockquote {
  position: relative;
  padding-left: var(--whiteSpace);
}

blockquote:before {
  content: var(--quoteSign);
  font-family: var(--headlineFont);
  color: var(--placeholder-color);
  font-size: 3em;
  font-style: normal;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

blockquote cite {
  display: block;
  text-align: right;
  font-size: var(--smallTextSize);
}

blockquote cite:before {
  content: '— ';
}

small, figcaption, .small-text {
  font-size: var(--smallTextSize);
  line-height: var(--textSize);
}

i[class*="fa-"], .icon {
  font-size: var(--iconSize);
}

.disabled {
  filter: grayscale(1);
  opacity: .33;
}

label:not(.placeholder) {
  font-size: var(--smallTextSize);
  line-height: var(--textSize);
  text-transform: uppercase;
}

.icon {
  display: inline-block;
  vertical-align: middle;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

.columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: calc( var(--whiteSpace) * 2);
}

.columns .columns {
  grid-gap: var(--whiteSpace);
}

.flexbox {
  display: flex;
  justify-content: space-between;
}

.flexbox.flexbox-fill > * {
  flex-grow: 1;
}

.navigation {
  display: block;
  margin: calc( var(--lineHeight) /-2) 0;
  padding: 0;
  list-style: none;
}

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

.navigation a {
  display: block;
  position: relative;
  text-decoration: none;
  padding: 0 var(--whiteSpace);
  line-height: calc( var(--lineHeight) * 3);
  color: var(--active-color);
}

.navigation > li {
  display: inline-block;
  position: relative;
}

.navigation > li:before, .navigation > li:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all var(--subtleTransitionSettings);
}

.navigation > li:before {
  border-radius: var(--borderRadius);
  background-color: RGBA(var(--text-color-rgb), 0.1);
  opacity: 0;
}

.navigation > li:after {
  display: none;
}

.navigation > li:hover:before {
  opacity: 1;
}

.navigation > li > ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: max-content;
  min-width: 100%;
  z-index: 999;
  border: var(--strokeWidthThin) solid var(--stroke-color);
  visibility: hidden;
  border-radius: var(--borderRadius);
  background-color: var(--background-color);
  transition: all var(--subtleTransitionSettings);
  opacity: 0;
}

.navigation > li > ul li {
  display: block;
  border-bottom: var(--strokeWidthThin) solid var(--stroke-color);
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: all var(--subtleTransitionSettings);
}

.navigation > li > ul li:last-child {
  border-bottom: none;
}

.navigation > li > ul li a {
  width: 100%;
  box-sizing: border-box;
  line-height: calc( var(--lineHeight) * 2);
}

.navigation > li > ul li:first-child {
  border-radius: calc( var(--borderRadius) - var(--strokeWidthThin)) calc( var(--borderRadius) - var(--strokeWidthThin)) 0 0;
}

.navigation > li > ul li:last-child {
  border-radius: 0 0 calc( var(--borderRadius) - var(--strokeWidthThin)) calc( var(--borderRadius) - var(--strokeWidthThin));
}

.navigation > li > ul li:hover {
  background-color: RGBA(var(--text-color-rgb), 0.1);
}

.navigation > li:hover ul {
  visibility: visible;
  z-index: 999;
  opacity: 1;
}

.navigation > li:hover ul li {
  max-height: calc( var(--lineHeight) * 3);
  opacity: 1;
  visibility: visible;
}

.navigation > li.active > a {
  color: var(--text-color);
}

.navigation > li.active:after {
  bottom: 0;
  top: auto;
  height: var(--strokeWidthThick);
  background-color: var(--text-color);
  opacity: 1;
  display: block;
}

.navigation.vertical li {
  border-bottom: var(--strokeWidthThin) solid var(--stroke-color);
}

.navigation.vertical li:last-child {
  border-bottom: none;
}

.navigation.vertical .more-items-icon {
  position: absolute;
  top: 50%;
  margin-top: calc( var(--iconSize) /-2);
  right: var(--whiteSpace);
}

.navigation.vertical > li {
  display: block;
}

.navigation.vertical > li.active:after {
  top: var(--borderRadius);
  left: 0;
  bottom: var(--borderRadius);
  right: auto;
  width: var(--strokeWidthThick);
  background-color: var(--active-color);
  height: auto;
}

.navigation.vertical > li > ul {
  top: 0;
  left: 100%;
  min-width: min-content;
}

.menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu li {
  margin: 0;
}

.menu a {
  display: block;
  text-decoration: none;
  padding: calc( var(--lineHeight)/4) 0;
  transition: all var(--subtleTransitionSettings);
}

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

.menu li.active a {
  color: inherit;
}

.padding-box {
  padding: var(--whiteSpace);
  box-sizing: border-box;
}

.box {
  border: var(--strokeWidthThin) solid var(--stroke-color);
  border-radius: var(--borderRadius);
  padding: var(--whiteSpace);
  box-sizing: border-box;
  color: var(--text-color);
  background-color: var(--background-color);
  transition: all var(--subtleTransitionSettings);
}

.box.muted, .box.muted-secondary, .box.inverse, .box.inverse-secondary, .box.primary, .box.secondary, .box.gradient {
  border-width: 0;
}

.box > *:first-child {
  margin-top: 0;
}

.box > *:last-child {
  margin-bottom: 0;
}

.avatar {
  width: 4em;
  height: 4em;
  display: inline-block;
  border-radius: 50%;
  background-position: center center;
  background-size: cover;
  position: relative;
  vertical-align: middle;
}

.avatar .badge {
  border-radius: calc( var(--lineHeight) / 2);
  line-height: var(--lineHeight);
  font-size: var(--smallTextSize);
  padding: 0 calc( var(--lineHeight) / 4);
  position: absolute;
  background-color: var(--background-color);
  color: var(--text-color);
}

.avatar .badge.icon-only {
  font-size: var(--iconSize);
  width: var(--lineHeight);
  height: var(--lineHeight);
  text-align: center;
  border-radius: 50%;
  padding: var(--strokeWidthThin);
}

.avatar .badge.top-right {
  top: 0;
  right: 0;
  transform: translate(25%, -25%);
}

.avatar .badge.bottom-right {
  bottom: 0;
  right: 0;
  transform: translate(25%, 25%);
}

.avatar .badge-top-right {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}

.avatar.small {
  width: 2em;
  height: 2em;
}

button, .button, input[type=button], input[type=submit] {
  font: inherit;
  display: inline-block;
  background-color: var(--active-color);
  color: var(--active-text);
  border: var(--strokeWidthThin) solid transparent;
  height: calc( var(--lineHeight) * 2);
  line-height: calc( var(--lineHeight) * 2 - var(--strokeWidthThin) * 2);
  padding: 0 var(--whiteSpace);
  box-sizing: border-box;
  border-radius: var(--borderRadius);
  vertical-align: middle;
  cursor: pointer;
  transition: all var(--subtleTransitionSettings);
  outline: none;
  white-space: nowrap;
  text-decoration: none;
}

button.outline, .button.outline, input[type=button].outline, input[type=submit].outline {
  color: var(--active-color);
  border-color: RGBA(var(--active-color-rgb), 0.33);
  background: transparent;
}

button.ghost, .button.ghost, input[type=button].ghost, input[type=submit].ghost {
  color: var(--active-color);
  border-color: transparent;
  background: transparent;
}

button .icon, .button .icon, input[type=button] .icon, input[type=submit] .icon {
  margin-top: calc( ( var(--lineHeight) - var(--iconSize) ) / -2);
  margin-bottom: calc( ( var(--lineHeight) - var(--iconSize) ) / 2);
}

button.icon-only, .button.icon-only, input[type=button].icon-only, input[type=submit].icon-only {
  width: calc( var(--lineHeight) * 2);
  padding: 0;
  text-align: center;
}

button.icon-only .icon, .button.icon-only .icon, input[type=button].icon-only .icon, input[type=submit].icon-only .icon {
  font-size: calc( var(--iconSize) * 1.5);
  line-height: calc( var(--lineHeight) * 2 - var(--strokeWidthThin) * 2);
  vertical-align: baseline;
}

button.icon-only svg.icon, .button.icon-only svg.icon, input[type=button].icon-only svg.icon, input[type=submit].icon-only svg.icon {
  vertical-align: middle;
}

button.icon-left .icon:first-child, .button.icon-left .icon:first-child, input[type=button].icon-left .icon:first-child, input[type=submit].icon-left .icon:first-child {
  margin-left: calc( var(--whiteSpace) / -4);
  margin-right: calc( var(--whiteSpace) / 2);
}

button.icon-right .icon:last-child, .button.icon-right .icon:last-child, input[type=button].icon-right .icon:last-child, input[type=submit].icon-right .icon:last-child {
  margin-right: calc( var(--whiteSpace) / -4);
  margin-left: calc( var(--whiteSpace) / 2);
}

button.small, .button.small, input[type=button].small, input[type=submit].small {
  opacity: 1;
  height: calc( var(--lineHeight) * 1.25);
  line-height: calc( var(--lineHeight) * 1.25 - var(--strokeWidthThin) * 2);
  padding: 0 calc( var(--whiteSpace) / 2);
}

button.small.icon-only, .button.small.icon-only, input[type=button].small.icon-only, input[type=submit].small.icon-only {
  width: calc( var(--lineHeight) * 1.25);
  line-height: calc( var(--lineHeight) * 1.25 - var(--strokeWidthThin) * 2);
  padding: 0;
}

button.small.icon-only i[class^="fa"], button.small.icon-only .icon, .button.small.icon-only i[class^="fa"], .button.small.icon-only .icon, input[type=button].small.icon-only i[class^="fa"], input[type=button].small.icon-only .icon, input[type=submit].small.icon-only i[class^="fa"], input[type=submit].small.icon-only .icon {
  font-size: var(--iconSize);
  line-height: calc( var(--lineHeight) * 1.25);
}

button.large, .button.large, input[type=button].large, input[type=submit].large {
  line-height: 50px;
  height: 50px;
}

button:not(:disabled):hover, .button:not(:disabled):hover, input[type=button]:not(:disabled):hover, input[type=submit]:not(:disabled):hover {
  background-color: var(--text-color);
  border-color: var(--text-color);
  color: var(--background-color);
}

button.outline:not(:disabled):hover, button.ghost:not([disabled]):hover, .button.outline:not(:disabled):hover, .button.ghost:not([disabled]):hover, input[type=button].outline:not(:disabled):hover, input[type=button].ghost:not([disabled]):hover, input[type=submit].outline:not(:disabled):hover, input[type=submit].ghost:not([disabled]):hover {
  background-color: transparent;
  border-color: var(--text-color);
  color: var(--text-color);
}

button[disabled], button.disabled, .button[disabled], .button.disabled, input[type=button][disabled], input[type=button].disabled, input[type=submit][disabled], input[type=submit].disabled {
  opacity: .33;
  cursor: not-allowed;
}

input, .input {
  font: inherit;
  color: inherit;
  background-color: transparent;
  height: calc( var(--lineHeight) * 2);
  padding: 0 calc( var(--lineHeight) / 2);
  border-radius: var(--borderRadius);
  border: var(--strokeWidthThin) solid var(--stroke-color);
  outline: none;
  box-sizing: border-box;
  transition: all var(--subtleTransitionSettings);
}

input::placeholder, .input::placeholder {
  color: var(--placeholder-color);
}

input:focus, .input:focus {
  border-color: var(--active-color);
}

input:disabled, input.disabled, .input:disabled, .input.disabled {
  background-color: var(--muted-color);
  cursor: not-allowed;
}

textarea {
  font: inherit;
  color: inherit;
  background-color: transparent;
  padding: calc( var(--lineHeight) / 2);
  border-radius: var(--borderRadius);
  border: var(--strokeWidthThin) solid var(--stroke-color);
  outline: none;
  box-sizing: border-box;
  transition: all var(--subtleTransitionSettings);
  width: 100%;
  min-height: 5em;
}

textarea::placeholder {
  color: var(--placeholder-color);
}

textarea:focus {
  border-color: var(--active-color);
}

.smart-placeholder {
  display: block;
  height: calc( var(--lineHeight) * 2.5);
  position: relative;
}

.smart-placeholder input {
  width: 100%;
  height: calc( var(--lineHeight) * 2.5);
  margin: 0;
  padding-top: calc( var(--lineHeight) / 2);
}

.smart-placeholder input::placeholder {
  opacity: 0;
}

.smart-placeholder input:focus + .placeholder, .smart-placeholder input:not(:placeholder-shown) + .placeholder {
  color: var(--text-color);
  font-size: var(--smallTextSize);
  top: 0;
  margin-top: calc( var(--lineHeight) / 8);
}

.smart-placeholder .placeholder {
  display: block;
  position: absolute;
  width: calc( 100% - var(--lineHeight));
  top: 50%;
  margin-top: calc( var(--lineHeight) / -2);
  left: calc( var(--whiteSpace) / 2);
  transition: all var(--subtleTransitionSettings);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
}

.placeholder {
  color: var(--placeholder-color);
}

.dropdown {
  position: relative;
  outline: none;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
}

.dropdown select {
  -webkit-appearance: none;
  appearance: none;
  background: none;
  color: inherit;
  font: inherit;
  border-radius: var(--borderRadius);
  border: var(--strokeWidthThin) solid var(--stroke-color);
  padding: 0 calc( var(--whiteSpace) / 2);
  padding-right: calc( var(--whiteSpace) * 2);
  height: calc( var(--lineHeight) * 2);
  width: 100%;
  box-sizing: border-box;
  outline: none;
  cursor: pointer;
}

.dropdown .dropdown-icon {
  position: absolute;
  cursor: pointer;
  pointer-events: none;
  right: 0;
  top: var(--strokeWidthThin);
  line-height: calc( var(--lineHeight) * 2);
  padding-right: calc( var(--whiteSpace) / 1.5);
}

.dropdown.large select {
  height: calc( var(--lineHeight) * 2.5);
}

.dropdown.large .dropdown-icon {
  line-height: calc( var(--lineHeight) * 2.5);
}

.dropdown select:disabled {
  color: var(--placeholder-color);
  background-color: var(--muted-color);
  cursor: not-allowed;
}

.dropdown select:disabled + .dropdown-icon {
  color: var(--placeholder-color);
  cursor: not-allowed;
}

.dropdown:hover select:not(:disabled) {
  border-color: var(--active-color);
}

.dropdown:hover select:not(:disabled) + .dropdown-icon {
  color: var(--active-color);
}

.push-up {
  margin-top: 2rem;
}

.push-down {
  margin-bottom: 2rem;
}
