@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Merriweather:300,400,700,900");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,500,600,700,800");
@import url("https://fonts.googleapis.com/css?family=Rubik:300,400,500,600,700,800,900");
:root {
  font-size: 16px;
  /* primary palatte */
  /* secondary */
  /* rich accent */
  /* vibrant accent */
  --pitt-royal: #003594;
  --black: black;
  --muted-violet: #7c6992;
  --neon-yellow: #ede939;
  --pitt-gold: #ffb81c;
  --white: white;
  --plum: #7e5475;
  --sky-blue: #71c5e8;
  --dark-blue: #141b4d;
  --charcoal: #75787b;
  --deep-teal: #008264;
  --light-orange: #e87722;
  --medium-blue: #00205b;
  --gray: #97999b;
  --orange: #dc582a;
  --light-green: #a4d65e;
  --dark-gold: #b58500;
  --light-gray: #c8c9c7;
  --deep-blue: #0081a6;
  --cream: #dbc8b6;
  /* gray */
  /* red */
  /* green */
  /* blue */
  /* yellow - brown*/
  /* purple */
  --gray-050: #eee;
  --red-050: #fee;
  --green-050: #efe;
  --blue-050: #eff9ff;
  --yellow-050: #ffe;
  --purple-050: #ffeef9;
  --gray-100: #ddd;
  --red-100: #fcc;
  --green-100: #cfc;
  --blue-100: #cfdcff;
  --yellow-100: #ff9;
  --purple-100: #f9cdff;
  --gray-200: #ccc;
  --red-200: #f99;
  --green-200: #9f9;
  --blue-200: #9fabff;
  --yellow-200: #ff7;
  --purple-200: #f899ff;
  --gray-300: #aaa;
  --red-300: #f66;
  --green-300: #5d5;
  --blue-300: #6669ff;
  --yellow-300: #ff6;
  --purple-300: #ef60ff;
  --gray-400: #888;
  --red-400: #f33;
  --green-400: #2d2;
  --blue-400: #3335ff;
  --yellow-400: #ff2;
  --purple-400: #ea22ff;
  --gray-500: #666;
  --red-500: #f00;
  --green-500: #0a0;
  --blue-500: #0000ff;
  --yellow-500: #ee0;
  --purple-500: #ee00ee;
  --gray-600: #444;
  --red-600: #c00;
  --green-600: #090;
  --blue-600: #0000cc;
  --yellow-600: #ec0;
  --purple-600: #bb00bb;
  --gray-700: #333;
  --red-700: #900;
  --green-700: #070;
  --blue-700: #000099;
  --yellow-700: #db0;
  --purple-700: #880088;
  --gray-800: #222;
  --red-800: #700;
  --green-800: #050;
  --blue-800: #000077;
  --yellow-800: #a80;
  --purple-800: #550055;
  --gray-900: #111;
  --red-900: #500;
  --green-900: #030;
  --blue-900: #000055;
  --yellow-900: #650;
  --purple-900: #330033;
  /* shadows */
  --normal-shadow: 2px 2px 3px #0005;
  --active-shadow: 1px 1px 3px #0003;
  --inner-shadow: inset 0 0 8px 3px #0001;
  /* font stacks */
  --font-size: 12px;
  --line-height: 1.4;
  --default-font: Rubik, Helvetica, Arial, sans-serif;
  --masthead-font: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --primary-heading-font: Merriweather, Cambria, Times, "Times New Roman", serif;
  --secondary-heading-font: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --monospace-font: Menlo, Monaco, Consolas, "Courier New" ,monospace;
  --accounting-font: "Oxygen Mono", Courier, monospace;
  /* active element cue */
  --active-element-cue-color: var(--light-orange);
}

/*======================================================================*\
|*  RESET
\*======================================================================*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

*:focus-visible {
  outline: 1px solid var(--active-element-cue-color);
  outline-offset: 2px;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  line-break: after-white-space;
}

:where([draggable="true"]) {
  -webkit-user-drag: element;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* Prevent adjustments of font size after orientation changes in iOS. */
}

/* text - typography */
a:where([href]) {
  display: inline flow-root;
  /* Make outline look right for complex links */
}
a:where([href]):not([class]) {
  color: inherit;
}
a:where([href]) img,
a:where([href]) picture {
  border: none;
}

abbr {
  border: reset;
  -webkit-text-decoration: reset;
          text-decoration: reset;
}
abbr [title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: 600;
}

u {
  text-decoration: underline;
}

code,
kbd,
samp {
  font-family: var(--monospace-font);
  font-size: 1em;
}

small {
  font-size: 0.75em;
}

/* lists */
dl,
ol:where([class]),
ul:where([class]),
menu:where([class]) {
  margin: unset;
  padding: unset;
  list-style: none;
}

dl dt {
  font-weight: 500;
  font-family: var(--secondary-heading-font);
  color: var(--black);
}
dl dt::after {
  content: ":";
}
dl dd {
  padding: 0 0 0 2ch;
  margin: 0 0 1.25ex 0;
  font-weight: 400;
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
}

/* forms */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 1em;
  margin: 0;
}

input:not([type=button], [type=reset], [type=submit]),
textarea {
  border: 1px solid var(--charcoal);
  border-radius: 3px;
}

textarea {
  white-space: revert;
}

/* tables */
table {
  border-collapse: collapse;
}
table td,
table th {
  padding: 0.5em;
  text-align: left;
  vertical-align: top;
}

/* other elements */
hr {
  height: 0px;
  border-top: 2px solid var(--charcoal);
}

img,
picture {
  max-width: 100%;
}

/*======================================================================*\
|*  LAYOUT
\*======================================================================*/
html {
  background: url(../images/background.jpg);
  background-size: cover;
  background-attachment: fixed;
  height: 100%;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  min-height: 100%;
  max-width: 1920px;
  background-color: white;
  color: var(--gray-600);
  overflow-y: scroll;
  font-size: var(--font-size);
  line-height: var(--line-height);
  box-shadow: 2px 0px 12px 8px #0009, -2px 0px 12px 8px #0004;
}
@media only screen and (min-width: 40em) {
  body {
    --font-size: 16px;
  }
}
@media only screen and (min-width: 55em) {
  body {
    --font-size: 17px;
  }
}
@media only screen and (min-width: 70em) {
  body {
    --font-size: 18px;
  }
}
body.liquid {
  margin: 0;
  max-width: none;
}
body.medium {
  max-width: 1440px;
}
body.narrow {
  max-width: 960px;
}

body > header,
body > footer {
  flex: none;
}

body > main {
  flex: 1 0 auto;
  padding: 20px 2vw;
  background-color: var(--white);
}

/*======================================================================*\
|*  UTILITY CLASSES
\*======================================================================*/
.no-wrap {
  white-space: nowrap;
}

.keep-whitespace {
  white-space: pre-line;
}

/*=== buttons - or button-like - elements ===*/
a.button,
button,
input[type=button],
input[type=reset],
input[type=submit] {
  --button-height: 35px;
  --button-width: max-content;
  --button-block-padding: 0.25em;
  --button-inline-padding: 0.75em;
  --button-text-color: var(--gray-600);
  --button-border-color: var(--gray-600);
  --button-background-color: var(--gray-050);
  --button-active-background-color: var(--gray-200);
  --button-border-size: 2px;
  --button-border-radius: 5px;
  --button-font: var(--secondary-heading-font);
  --normal-shadow: 2px 3px 5px #0007;
  --active-shadow: 1px 2px 4px #0005;
  --inner-shadow: inset 0 0 8px 3px #0002;
  position: relative;
  display: inline-block;
  height: var(--button-height);
  width: var(--button-width);
  line-height: calc(var(--button-height) - 2 * (var(--button-block-padding) + var(--button-border-size)));
  font-family: var(--button-font);
  color: var(--button-text-color);
  border: var(--button-border-size) outset var(--button-border-color);
  border-radius: var(--button-border-radius);
  background-color: var(--button-background-color);
  margin: 0 0.5em 0.5em 0;
  padding: var(--button-block-padding) var(--button-inline-padding);
  box-shadow: var(--normal-shadow), var(--inner-shadow);
  cursor: pointer;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: box-shadow 200ms ease;
}
a.button:is(a):not([href]),
button:is(a):not([href]),
input[type=button]:is(a):not([href]),
input[type=reset]:is(a):not([href]),
input[type=submit]:is(a):not([href]) {
  color: var(--black);
  border: var(--button-border-size) inset var(--gray-400);
  box-shadow: inset var(--active-shadow);
}
a.button:is(a):not([href]):hover,
button:is(a):not([href]):hover,
input[type=button]:is(a):not([href]):hover,
input[type=reset]:is(a):not([href]):hover,
input[type=submit]:is(a):not([href]):hover {
  box-shadow: revert;
}
a.button:is(a):not([href]):active,
button:is(a):not([href]):active,
input[type=button]:is(a):not([href]):active,
input[type=reset]:is(a):not([href]):active,
input[type=submit]:is(a):not([href]):active {
  box-shadow: inset var(--normal-shadow);
}
a.button:hover:not([disabled]),
button:hover:not([disabled]),
input[type=button]:hover:not([disabled]),
input[type=reset]:hover:not([disabled]),
input[type=submit]:hover:not([disabled]) {
  box-shadow: var(--normal-shadow);
}
a.button:active:not([disabled]),
button:active:not([disabled]),
input[type=button]:active:not([disabled]),
input[type=reset]:active:not([disabled]),
input[type=submit]:active:not([disabled]) {
  box-shadow: var(--active-shadow);
  background-color: var(--button-active-background-color);
}
a.button.green:not([disabled]),
button.green:not([disabled]),
input[type=button].green:not([disabled]),
input[type=reset].green:not([disabled]),
input[type=submit].green:not([disabled]) {
  --button-text-color: var(--green-800);
  --button-border-color: var(--green-800);
  --button-background-color: var(--green-100);
  --button-active-background-color: var(--green-300);
}
a.button.purple:not([disabled]),
button.purple:not([disabled]),
input[type=button].purple:not([disabled]),
input[type=reset].purple:not([disabled]),
input[type=submit].purple:not([disabled]) {
  --button-text-color: var(--purple-800);
  --button-border-color: var(--purple-800);
  --button-background-color: var(--purple-100);
  --button-active-background-color: var(--purple-300);
}
a.button.yellow:not([disabled]),
button.yellow:not([disabled]),
input[type=button].yellow:not([disabled]),
input[type=reset].yellow:not([disabled]),
input[type=submit].yellow:not([disabled]) {
  --button-text-color: var(--yellow-900);
  --button-border-color: var(--yellow-700);
  --button-background-color: var(--yellow-050);
  --button-active-background-color: var(--yellow-300);
}
a.button.blue:not([disabled]),
button.blue:not([disabled]),
input[type=button].blue:not([disabled]),
input[type=reset].blue:not([disabled]),
input[type=submit].blue:not([disabled]) {
  --button-text-color: var(--blue-800);
  --button-border-color: var(--blue-800);
  --button-background-color: var(--blue-100);
  --button-active-background-color: var(--blue-300);
}
a.button.red:not([disabled]),
button.red:not([disabled]),
input[type=button].red:not([disabled]),
input[type=reset].red:not([disabled]),
input[type=submit].red:not([disabled]) {
  --button-text-color: var(--red-700);
  --button-border-color: var(--red-700);
  --button-background-color: var(--red-050);
  --button-active-background-color: var(--red-300);
}
a.button[disabled],
button[disabled],
input[type=button][disabled],
input[type=reset][disabled],
input[type=submit][disabled] {
  --button-text-color: var(--black);
  --button-background-color: var(--gray-200);
  cursor: not-allowed;
  text-decoration: line-through;
  -webkit-text-decoration-color: var(--red-600);
          text-decoration-color: var(--red-600);
  box-shadow: var(--normal-shadow);
}
a.button.icon, a.button.icon-text, a.button.text-icon,
button.icon,
button.icon-text,
button.text-icon,
input[type=button].icon,
input[type=button].icon-text,
input[type=button].text-icon,
input[type=reset].icon,
input[type=reset].icon-text,
input[type=reset].text-icon,
input[type=submit].icon,
input[type=submit].icon-text,
input[type=submit].text-icon {
  --icon-image: url(../images/icons/small-n-flat/layers.png);
  --icon-size: calc(var(--button-height) * 0.9);
  --badge-image: none;
  --badge-size: 20px;
  --badge-position: bottom right;
  background-image: var(--icon-image);
  background-size: var(--icon-size);
  background-repeat: no-repeat;
}
a.button.icon::before, a.button.icon-text::before, a.button.text-icon::before,
button.icon::before,
button.icon-text::before,
button.text-icon::before,
input[type=button].icon::before,
input[type=button].icon-text::before,
input[type=button].text-icon::before,
input[type=reset].icon::before,
input[type=reset].icon-text::before,
input[type=reset].text-icon::before,
input[type=submit].icon::before,
input[type=submit].icon-text::before,
input[type=submit].text-icon::before {
  content: "";
  position: absolute;
  background-image: var(--badge-image);
  background-size: var(--badge-size);
  background-position: var(--badge-position);
  background-repeat: no-repeat;
}
a.button.icon.login, a.button.icon-text.login, a.button.text-icon.login,
button.icon.login,
button.icon-text.login,
button.text-icon.login,
input[type=button].icon.login,
input[type=button].icon-text.login,
input[type=button].text-icon.login,
input[type=reset].icon.login,
input[type=reset].icon-text.login,
input[type=reset].text-icon.login,
input[type=submit].icon.login,
input[type=submit].icon-text.login,
input[type=submit].text-icon.login {
  --icon-image: url(../images/icons/silk/door_in.png);
}
a.button.icon.logout, a.button.icon-text.logout, a.button.text-icon.logout,
button.icon.logout,
button.icon-text.logout,
button.text-icon.logout,
input[type=button].icon.logout,
input[type=button].icon-text.logout,
input[type=button].text-icon.logout,
input[type=reset].icon.logout,
input[type=reset].icon-text.logout,
input[type=reset].text-icon.logout,
input[type=submit].icon.logout,
input[type=submit].icon-text.logout,
input[type=submit].text-icon.logout {
  --icon-image: url(../images/icons/silk/door_out.png);
}
a.button.icon.create, a.button.icon-text.create, a.button.text-icon.create,
button.icon.create,
button.icon-text.create,
button.text-icon.create,
input[type=button].icon.create,
input[type=button].icon-text.create,
input[type=button].text-icon.create,
input[type=reset].icon.create,
input[type=reset].icon-text.create,
input[type=reset].text-icon.create,
input[type=submit].icon.create,
input[type=submit].icon-text.create,
input[type=submit].text-icon.create {
  --icon-image: url(../images/icons/small-n-flat/sign-add.png);
}
a.button.icon.create-badge, a.button.icon-text.create-badge, a.button.text-icon.create-badge,
button.icon.create-badge,
button.icon-text.create-badge,
button.text-icon.create-badge,
input[type=button].icon.create-badge,
input[type=button].icon-text.create-badge,
input[type=button].text-icon.create-badge,
input[type=reset].icon.create-badge,
input[type=reset].icon-text.create-badge,
input[type=reset].text-icon.create-badge,
input[type=submit].icon.create-badge,
input[type=submit].icon-text.create-badge,
input[type=submit].text-icon.create-badge {
  --badge-image: url(../images/icons/small-n-flat/sign-add.png);
}
a.button.icon.delete, a.button.icon-text.delete, a.button.text-icon.delete,
button.icon.delete,
button.icon-text.delete,
button.text-icon.delete,
input[type=button].icon.delete,
input[type=button].icon-text.delete,
input[type=button].text-icon.delete,
input[type=reset].icon.delete,
input[type=reset].icon-text.delete,
input[type=reset].text-icon.delete,
input[type=submit].icon.delete,
input[type=submit].icon-text.delete,
input[type=submit].text-icon.delete {
  --icon-image: url(../images/icons/small-n-flat/sign-error.png);
}
a.button.icon.delete-badge, a.button.icon-text.delete-badge, a.button.text-icon.delete-badge,
button.icon.delete-badge,
button.icon-text.delete-badge,
button.text-icon.delete-badge,
input[type=button].icon.delete-badge,
input[type=button].icon-text.delete-badge,
input[type=button].text-icon.delete-badge,
input[type=reset].icon.delete-badge,
input[type=reset].icon-text.delete-badge,
input[type=reset].text-icon.delete-badge,
input[type=submit].icon.delete-badge,
input[type=submit].icon-text.delete-badge,
input[type=submit].text-icon.delete-badge {
  --badge-image: url(../images/icons/small-n-flat/sign-error.png);
}
a.button.icon.edit, a.button.icon-text.edit, a.button.text-icon.edit,
button.icon.edit,
button.icon-text.edit,
button.text-icon.edit,
input[type=button].icon.edit,
input[type=button].icon-text.edit,
input[type=button].text-icon.edit,
input[type=reset].icon.edit,
input[type=reset].icon-text.edit,
input[type=reset].text-icon.edit,
input[type=submit].icon.edit,
input[type=submit].icon-text.edit,
input[type=submit].text-icon.edit {
  --icon-image: url(../images/icons/small-n-flat/pencil.png);
}
a.button.icon.edit-badge, a.button.icon-text.edit-badge, a.button.text-icon.edit-badge,
button.icon.edit-badge,
button.icon-text.edit-badge,
button.text-icon.edit-badge,
input[type=button].icon.edit-badge,
input[type=button].icon-text.edit-badge,
input[type=button].text-icon.edit-badge,
input[type=reset].icon.edit-badge,
input[type=reset].icon-text.edit-badge,
input[type=reset].text-icon.edit-badge,
input[type=submit].icon.edit-badge,
input[type=submit].icon-text.edit-badge,
input[type=submit].text-icon.edit-badge {
  --badge-size: 25px;
  --badge-image: url(../images/icons/small-n-flat/pencil.png);
}
a.button.icon.go, a.button.icon-text.go, a.button.text-icon.go,
button.icon.go,
button.icon-text.go,
button.text-icon.go,
input[type=button].icon.go,
input[type=button].icon-text.go,
input[type=button].text-icon.go,
input[type=reset].icon.go,
input[type=reset].icon-text.go,
input[type=reset].text-icon.go,
input[type=submit].icon.go,
input[type=submit].icon-text.go,
input[type=submit].text-icon.go {
  --icon-image: url(../images/icons/small-n-flat/sign-right.png);
}
a.button.icon.go-badge, a.button.icon-text.go-badge, a.button.text-icon.go-badge,
button.icon.go-badge,
button.icon-text.go-badge,
button.text-icon.go-badge,
input[type=button].icon.go-badge,
input[type=button].icon-text.go-badge,
input[type=button].text-icon.go-badge,
input[type=reset].icon.go-badge,
input[type=reset].icon-text.go-badge,
input[type=reset].text-icon.go-badge,
input[type=submit].icon.go-badge,
input[type=submit].icon-text.go-badge,
input[type=submit].text-icon.go-badge {
  --badge-position: left center;
  --badge-image: url(../images/icons/small-n-flat/sign-right.png);
}
a.button.icon.search, a.button.icon-text.search, a.button.text-icon.search,
button.icon.search,
button.icon-text.search,
button.text-icon.search,
input[type=button].icon.search,
input[type=button].icon-text.search,
input[type=button].text-icon.search,
input[type=reset].icon.search,
input[type=reset].icon-text.search,
input[type=reset].text-icon.search,
input[type=submit].icon.search,
input[type=submit].icon-text.search,
input[type=submit].text-icon.search {
  --badge-size: 20px;
  --icon-image: url(../images/icons/small-n-flat/search-alt.png);
}
a.button.icon.search-badge, a.button.icon-text.search-badge, a.button.text-icon.search-badge,
button.icon.search-badge,
button.icon-text.search-badge,
button.text-icon.search-badge,
input[type=button].icon.search-badge,
input[type=button].icon-text.search-badge,
input[type=button].text-icon.search-badge,
input[type=reset].icon.search-badge,
input[type=reset].icon-text.search-badge,
input[type=reset].text-icon.search-badge,
input[type=submit].icon.search-badge,
input[type=submit].icon-text.search-badge,
input[type=submit].text-icon.search-badge {
  --badge-image: url(../images/icons/small-n-flat/search-alt.png);
  --badge-size: 20px;
}
a.button.notification-badge[data-notification-badge],
button.notification-badge[data-notification-badge],
input[type=button].notification-badge[data-notification-badge],
input[type=reset].notification-badge[data-notification-badge],
input[type=submit].notification-badge[data-notification-badge] {
  padding-inline: var(--button-inline-padding) calc(var(--button-inline-padding) * 1.3);
}
a.button.notification-badge[data-notification-badge]::before,
button.notification-badge[data-notification-badge]::before,
input[type=button].notification-badge[data-notification-badge]::before,
input[type=reset].notification-badge[data-notification-badge]::before,
input[type=submit].notification-badge[data-notification-badge]::before {
  content: attr(data-notification-badge);
  position: absolute;
  display: block;
  line-height: 1.1;
  height: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  inset: auto -5px -5px auto;
  font-family: var(--default-font);
  font-size: 0.7rem;
  color: var(--pitt-gold);
  background-color: var(--pitt-royal);
  border-radius: 40px;
  padding: 2px 4px;
  transform: none;
}
a.button.notification-badge[data-notification-badge]:hover::before, a.button.notification-badge[data-notification-badge]:focus::before,
button.notification-badge[data-notification-badge]:hover::before,
button.notification-badge[data-notification-badge]:focus::before,
input[type=button].notification-badge[data-notification-badge]:hover::before,
input[type=button].notification-badge[data-notification-badge]:focus::before,
input[type=reset].notification-badge[data-notification-badge]:hover::before,
input[type=reset].notification-badge[data-notification-badge]:focus::before,
input[type=submit].notification-badge[data-notification-badge]:hover::before,
input[type=submit].notification-badge[data-notification-badge]:focus::before {
  opacity: 0.5;
}
a.button.icon,
button.icon,
input[type=button].icon,
input[type=reset].icon,
input[type=submit].icon {
  --button-width: var(--button-height);
  --button-inline-padding: var(--button-block-padding);
  --badge-size: 15px;
  --icon-size: contain;
  display: inline-flex;
  color: transparent !important;
  overflow: hidden;
  white-space: nowrap;
  background-position: center center;
}
a.button.icon::before,
button.icon::before,
input[type=button].icon::before,
input[type=reset].icon::before,
input[type=submit].icon::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
a.button.icon.disabled, a.button.icon[disabled],
button.icon.disabled,
button.icon[disabled],
input[type=button].icon.disabled,
input[type=button].icon[disabled],
input[type=reset].icon.disabled,
input[type=reset].icon[disabled],
input[type=submit].icon.disabled,
input[type=submit].icon[disabled] {
  text-decoration: none;
  background-image: url(../images/icons/small-n-flat/sign-ban-alt.png), var(--icon-image);
  background-size: calc(var(--button-height) * 0.5), var(--icon-size);
  background-position: bottom left, center;
}
a.button.icon.notification-badge[data-notification-badge]::before,
button.icon.notification-badge[data-notification-badge]::before,
input[type=button].icon.notification-badge[data-notification-badge]::before,
input[type=reset].icon.notification-badge[data-notification-badge]::before,
input[type=submit].icon.notification-badge[data-notification-badge]::before {
  inset: auto 0 0 auto;
}
a.button.icon-text,
button.icon-text,
input[type=button].icon-text,
input[type=reset].icon-text,
input[type=submit].icon-text {
  background-position: top left calc(var(--button-inline-padding) * 0.5);
  padding-inline: calc(var(--button-inline-padding) * 0.5 + var(--button-height)) var(--button-inline-padding);
}
a.button.icon-text.notification-badge[data-notification-badge],
button.icon-text.notification-badge[data-notification-badge],
input[type=button].icon-text.notification-badge[data-notification-badge],
input[type=reset].icon-text.notification-badge[data-notification-badge],
input[type=submit].icon-text.notification-badge[data-notification-badge] {
  padding-inline: calc(var(--button-inline-padding) * 0.5 + var(--button-height)) calc(var(--button-inline-padding) * 1.3);
}
a.button.icon-text::before,
button.icon-text::before,
input[type=button].icon-text::before,
input[type=reset].icon-text::before,
input[type=submit].icon-text::before {
  width: calc(var(--button-inline-padding) * 0.3 + var(--button-height));
  height: calc(var(--button-height) - 2 * var(--button-border-size));
  left: calc(var(--button-inline-padding) * 0.2);
  top: 0;
  background-size: var(--badge-size);
  background-position: var(--badge-position);
}
a.button.text-icon,
button.text-icon,
input[type=button].text-icon,
input[type=reset].text-icon,
input[type=submit].text-icon {
  background-position: top right calc(var(--button-inline-padding) * 0.5);
  padding-inline: var(--button-inline-padding) calc(var(--button-inline-padding) * 0.5 + var(--button-height));
}
a.button.text-icon.notification-badge[data-notification-badge],
button.text-icon.notification-badge[data-notification-badge],
input[type=button].text-icon.notification-badge[data-notification-badge],
input[type=reset].text-icon.notification-badge[data-notification-badge],
input[type=submit].text-icon.notification-badge[data-notification-badge] {
  padding-inline: calc(var(--button-inline-padding) * 1.3) calc(var(--button-inline-padding) * 0.5 + var(--button-height));
}
a.button::before,
button::before,
input[type=button]::before,
input[type=reset]::before,
input[type=submit]::before {
  width: calc(var(--button-inline-padding) * 0.3 + var(--button-height));
  height: calc(var(--button-height) - 2 * var(--button-border-size));
  right: calc(var(--button-inline-padding) * 0.2);
  top: 0;
  background-size: var(--badge-size);
  background-position: var(--badge-position);
}

/*=== tables ===*/
table.data tr th:first-child {
  font-weight: 600;
}
table.data tr th:first-child::after {
  content: ":";
}
table.data:not(:first-child) {
  margin-top: 1rem;
}
@media only screen and (max-width: 39.999em) {
  table.data {
    display: block;
  }
  table.data tr {
    display: block;
    margin-top: 0.75rem;
  }
  table.data td, table.data th {
    display: block;
  }
}
@media only screen and (min-width: 40em) {
  table.data tr th + td,
table.data tr td + td {
    padding: 0.75ex 0 0 1rem;
  }
}

table.data-list {
  width: 100%;
  margin-bottom: 1.5rem;
  border-collapse: collapse;
}
table.data-list:not(:first-child) {
  margin-top: 1rem;
}
table.data-list th {
  font-weight: 600;
}
table.data-list th,
table.data-list td {
  padding: 0.25rem 0.5rem;
}
table.data-list thead {
  background-color: var(--pitt-gold);
}
table.data-list tbody tr + tr {
  border-top: 1px solid var(--gray-600);
}
table.data-list tbody tr:nth-child(even) {
  background-color: var(--yellow-050);
}
@media (hover: hover) {
  table.data-list tbody tr:not(.empty-data-message):hover {
    background-color: var(--blue-050);
  }
}
table.data-list thead,
table.data-list tbody,
table.data-list tfoot {
  border: 1px solid var(--gray-600);
}
table.data-list tr.empty-data-message th, table.data-list tr.empty-data-message td {
  background-color: var(--gray-100);
  color: var(--black);
  text-align: center;
  padding-block: 2em;
}
@media only screen and (max-width: 54.999em) {
  table.data-list.scroll, table.data-list.collapse {
    display: block;
    width: -moz-fit-content;
    width: -webkit-fit-content;
    width: fit-content;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
  }
  table.data-list.scroll col.hide-on-tablet,
table.data-list.scroll colgroup.hide-on-tablet, table.data-list.collapse col.hide-on-tablet,
table.data-list.collapse colgroup.hide-on-tablet {
    visibility: collapse;
  }
}
@media only screen and (max-width: 39.999em) {
  table.data-list.scroll col.hide-on-mobile,
table.data-list.scroll colgroup.hide-on-mobile, table.data-list.collapse col.hide-on-mobile,
table.data-list.collapse colgroup.hide-on-mobile {
    visibility: collapse;
  }
  table.data-list:not(.scroll, .collapse) {
    display: block;
    width: 100%;
  }
  table.data-list:not(.scroll, .collapse) thead {
    display: none;
  }
  table.data-list:not(.scroll, .collapse) tbody {
    display: block;
    width: 100%;
  }
  table.data-list:not(.scroll, .collapse) tbody tr {
    border: 1px solid var(--gray-600);
    box-shadow: var(--normal-shadow);
  }
  table.data-list:not(.scroll, .collapse) tbody tr + tr {
    margin-top: 5px;
  }
  table.data-list:not(.scroll, .collapse) tbody tr th:not([aria-label]):first-child,
table.data-list:not(.scroll, .collapse) tbody tr td:not([aria-label]):first-child {
    font-size: 1.2em;
  }
  table.data-list:not(.scroll, .collapse) tbody tr th[aria-label]::before,
table.data-list:not(.scroll, .collapse) tbody tr td[aria-label]::before {
    content: attr(aria-label) ":";
    font-weight: 600;
    margin-right: 1ch;
  }
  table.data-list:not(.scroll, .collapse) thead,
table.data-list:not(.scroll, .collapse) tbody,
table.data-list:not(.scroll, .collapse) tfoot {
    border: none;
  }
  table.data-list:not(.scroll, .collapse) tr, table.data-list:not(.scroll, .collapse) th, table.data-list:not(.scroll, .collapse) td {
    display: block;
  }
}

table.accounting {
  display: block;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}
table.accounting thead, table.accounting tbody, table.accounting tfoot {
  border: 1px solid #222;
}
table.accounting tbody tr:hover, table.accounting tfoot tr:hover {
  background-color: var(--gray-050);
}
table.accounting tbody tr.subtotal:hover, table.accounting tfoot tr.subtotal:hover {
  background-color: var(--yellow-050);
}
table.accounting tbody tr.total:hover, table.accounting tfoot tr.total:hover {
  background-color: var(--green-050);
}
table.accounting tr.subtotal {
  border-top: 2px solid #222;
  font-weight: bold !important;
}
table.accounting tr.total {
  border-top: 5px double #222;
  font-weight: bold !important;
}
table.accounting tbody th.dollars, table.accounting tbody td.dollars, table.accounting tfoot th.dollars, table.accounting tfoot td.dollars {
  font-family: var(--accounting-font);
}
table.accounting tbody th.dollars:after, table.accounting tbody td.dollars:after, table.accounting tfoot th.dollars:after, table.accounting tfoot td.dollars:after {
  content: " ";
}
table.accounting tbody th.dollars.zero:after, table.accounting tbody td.dollars.zero:after, table.accounting tfoot th.dollars.zero:after, table.accounting tfoot td.dollars.zero:after {
  content: "⸺   ";
}
table.accounting tbody th.dollars.negative::after, table.accounting tbody td.dollars.negative::after, table.accounting tfoot th.dollars.negative::after, table.accounting tfoot td.dollars.negative::after {
  content: "";
}
table.accounting tbody tr:first-child th.dollars::before, table.accounting tbody tr:first-child td.dollars::before,
table.accounting tbody tr.dollar-signs th.dollars::before,
table.accounting tbody tr.dollar-signs td.dollars::before,
table.accounting tbody tr.subtotal th.dollars::before,
table.accounting tbody tr.subtotal td.dollars::before,
table.accounting tbody tr.total th.dollars::before,
table.accounting tbody tr.total td.dollars::before, table.accounting tfoot tr:first-child th.dollars::before, table.accounting tfoot tr:first-child td.dollars::before,
table.accounting tfoot tr.dollar-signs th.dollars::before,
table.accounting tfoot tr.dollar-signs td.dollars::before,
table.accounting tfoot tr.subtotal th.dollars::before,
table.accounting tfoot tr.subtotal td.dollars::before,
table.accounting tfoot tr.total th.dollars::before,
table.accounting tfoot tr.total td.dollars::before {
  position: absolute;
  left: 0;
  height: 100%;
  content: "$";
}
table.accounting tbody th.dollars, table.accounting tbody td.dollars, table.accounting tfoot th.dollars, table.accounting tfoot td.dollars {
  position: relative;
  text-align: right;
  padding: 6px 12px 6px 2em;
}

table.data-list tbody tr.deleted,
table.accounting tbody tr.deleted {
  color: var(--gray-300);
  text-decoration: line-through;
  -webkit-text-decoration-color: var(--red-300);
          text-decoration-color: var(--red-300);
}
table.data-list tbody tr.deleted:hover,
table.accounting tbody tr.deleted:hover {
  -webkit-text-decoration-color: var(--gray-800);
          text-decoration-color: var(--gray-800);
  background-color: var(--red-100);
  color: var(--gray-900);
}

/*=== forms ===*/
textarea {
  min-width: 75%;
}

.control-group {
  display: flex;
  flex-direction: column;
}
.control-group + .control-group {
  margin-top: 1.25rem;
}
.control-group.required label::after {
  content: "*";
  display: inline-block;
  color: var(--red-600);
  -webkit-padding-start: 0.25em;
          padding-inline-start: 0.25em;
}
.control-group .validation-error {
  font-size: 0.8em;
  color: var(--red-600);
}

.button-group {
  margin-top: 1em;
}

input:not([type=button], [type=color], [type=file], [type=image], [type=range], [type=reset], [type=submit]):focus-visible {
  outline: none;
  border-color: var(--active-element-cue-color);
  background-color: var(--yellow-050);
}

/*======================================================================*\
|*  TYPOGRAPHY
\*======================================================================*/
body {
  font-family: var(--default-font);
}

h1, h2, h3, .heading {
  font-family: var(--primary-heading-font);
  font-weight: 700;
}

h4, h5 {
  font-family: var(--secondary-heading-font);
  font-weight: 500;
}

h2, .red {
  color: var(--red-600);
}

.gray-text {
  color: var(--gray-200);
}

.red-text {
  color: var(--red-600);
}

.green-text {
  color: var(--green-600);
}

.blue-text {
  color: var(--blue-600);
}

.yellow-text {
  color: var(--yellow-600);
}

.purple-text {
  color: var(--purple-600);
}

/*======================================================================*\
|*  SKIP TO MAIN CONTENT LINK
\*======================================================================*/
#skip-to-X {
  display: flex;
  max-height: 0;
  background-color: var(--charcoal);
  transition-property: max-height;
  transition-duration: 333ms;
  color: var(--pitt-royal);
}
#skip-to-X a {
  display: inline-block;
  width: 50%;
  height: 100%;
  padding: 0 1.5rem;
  border-bottom: 0 solid var(--pitt-royal);
  border-bottom: 5px solid var(--charcoal-color);
}
#skip-to-X:focus-within {
  max-height: initial;
  outline: none;
}
#skip-to-X:focus-within a:focus {
  color: var(--active-element-cue-color);
  outline: none;
  border-bottom: 5px solid var(--active-element-cue-color);
}

/*======================================================================*\
|*  PAGE HEADER
\*======================================================================*/
body > header {
  padding: 0 0.5rem;
  background-color: var(--pitt-royal);
  color: var(--white);
  display: grid;
  grid-template-columns: 190px 1fr;
  grid-template-areas: "pittbrand login" "environ login" "masthead masthead";
}
body > header #topbar {
  grid-area: pittbrand;
  padding: 0.5em 0;
}
body > header .environ {
  --line-height: 1.1;
  grid-area: environ;
  color: var(--red-300);
  white-space: nowrap;
  font-variant: small-caps;
  font-size: 1.25em;
  font-weight: 300;
}
body > header .links {
  display: none;
  justify-self: end;
  align-self: center;
}
body > header .links li {
  --line-height: 1.5;
  display: inline-block;
  font-family: var(--secondary-heading-font);
  text-transform: uppercase;
  padding: 0 0.5em;
  font-size: 0.8rem;
  vertical-align: middle;
}
body > header .links li + li {
  border-left: 1px solid var(--sky-blue);
}
body > header .links a:-webkit-any-link {
  color: var(--pitt-gold);
  text-transform: uppercase;
  text-decoration: none;
}
body > header .links a:-moz-any-link {
  color: var(--pitt-gold);
  text-transform: uppercase;
  text-decoration: none;
}
body > header .links a:any-link {
  color: var(--pitt-gold);
  text-transform: uppercase;
  text-decoration: none;
}
@media (hover: hover) {
  body > header .links a:-webkit-any-link:hover {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  body > header .links a:-moz-any-link:hover {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  body > header .links a:any-link:hover {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
}
body > header #masthead {
  grid-area: masthead;
}
body > header #masthead h1 {
  font-family: var(--masthead-font);
  font-size: 2em;
  padding: 0;
}
body > header #login-info-panel {
  grid-area: login;
  justify-self: end;
  align-self: center;
  text-align: center;
  font-size: 0.8rem;
}
body > header h1 {
  --line-height: 1.1em;
  color: white;
  font-size: 2rem;
}
@media screen and (min-width: 55em) {
  body > header {
    grid-template-columns: 190px 1fr 1fr;
    grid-template-areas: "pittbrand links links" "environ environ login" "masthead masthead masthead";
  }
}
@media screen and (min-width: 40em) {
  body > header {
    grid-template-columns: 200px auto 150px;
    grid-template-rows: auto;
    grid-template-areas: "pittbrand links links" "environ environ environ" "masthead masthead login";
  }
  body > header #environ {
    display: block;
    grid-area: environ;
    overflow: visible;
    max-height: 0;
    max-width: 0;
    position: relative;
    top: -45px;
    left: 210px;
  }
}
@media screen and (min-width: 40em) and (hover: hover) {
  body > header #environ:hover {
    opacity: 0.3;
  }
}
@media screen and (min-width: 40em) {
  body > header .links {
    display: block;
    grid-area: links;
  }
}
@media screen and (min-width: 40em) {
  body > header #login-info-panel {
    justify-self: center;
  }
}

body.no-login > header {
  grid-template-areas: "pittbrand ." "environ environ" "masthead masthead";
}
body.no-login > header #login-info-panel {
  grid-area: unset;
  display: none;
}
@media screen and (min-width: 40em) {
  body.no-login > header {
    grid-template-areas: "pittbrand links links" "environ environ environ" "masthead masthead masthead";
  }
}

/*======================================================================*\
|*  NAVIGATION
\*======================================================================*/
body > nav {
  --toggle-element-size: 30px;
  --expand-animation-time: 333ms;
  display: grid;
  grid-template-columns: calc(var(--toggle-element-size) * 4 / 3) 1fr;
  background-color: var(--pitt-royal);
  z-index: 100;
}
body > nav #nav-links-toggle {
  all: unset;
  position: relative;
  grid-column: 1/span 1;
  width: var(--toggle-element-size);
  height: var(--toggle-element-size);
  justify-self: center;
  align-self: flex-start;
  border: 2px solid var(--pitt-gold);
  border-radius: 4px;
  box-shadow: inset 0 0 calc(var(--toggle-element-size) * 1 / 4) var(--pitt-gold);
  transform: rotate(0deg);
  transition: transform var(--expand-animation-time) ease-in-out;
}
body > nav #nav-links-toggle:focus-visible {
  border-color: var(--active-element-cue-color);
  box-shadow: inset 0 0 calc(var(--toggle-element-size) * 1 / 4) 2px var(--active-element-cue-color);
}
body > nav #nav-links-toggle::before, body > nav #nav-links-toggle::after {
  content: "";
  position: absolute;
  transition: inset var(--expand-animation-time) ease-in-out, transform calc(var(--expand-animation-time) * 4 / 5) ease-in-out;
}
body > nav #nav-links-toggle::before {
  top: calc(var(--toggle-element-size) * 1 / 3);
  right: calc(var(--toggle-element-size) * 1 / 5);
  bottom: calc(var(--toggle-element-size) * 1 / 2);
  left: calc(var(--toggle-element-size) * 1 / 5);
  border-top: 2px solid var(--pitt-gold);
  border-bottom: 1px solid var(--pitt-gold);
}
body > nav #nav-links-toggle::after {
  top: calc(var(--toggle-element-size) * 1 / 2);
  right: calc(var(--toggle-element-size) * 1 / 5);
  bottom: calc(var(--toggle-element-size) * 1 / 3);
  left: calc(var(--toggle-element-size) * 1 / 5);
  border-top: 1px solid var(--pitt-gold);
  border-bottom: 2px solid var(--pitt-gold);
}
body > nav #nav-links-toggle:checked {
  transform: rotate(180deg);
}
body > nav #nav-links-toggle:checked::after {
  top: calc(var(--toggle-element-size) * 1 / 2 - 1px);
  right: calc(var(--toggle-element-size) * 1 / 5);
  bottom: calc(var(--toggle-element-size) * 1 / 2);
  left: calc(var(--toggle-element-size) * 1 / 5);
  transform: rotate(45deg);
}
body > nav #nav-links-toggle:checked::before {
  top: calc(var(--toggle-element-size) * 1 / 2 - 1px);
  right: calc(var(--toggle-element-size) * 1 / 5);
  bottom: calc(var(--toggle-element-size) * 1 / 2);
  left: calc(var(--toggle-element-size) * 1 / 5);
  transform: rotate(-45deg);
}
body > nav > ul {
  grid-column: 2/-1;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}
body > nav > ul > li {
  --font-size: 1rem;
  --line-height: 1.4;
  margin: 0;
  height: 0;
  padding-inline: 0.7rem 0;
  padding-block: 0;
  overflow: hidden;
  color: var(--white);
  background-color: var(--pitt-royal);
  transition: padding-block var(--expand-animation-time) ease-in, height var(--expand-animation-time) ease-in;
  transform-origin: center;
}
body > nav > ul > li:focus-within {
  box-shadow: inset 0 0 5px 3px var(--active-element-cue-color);
}
body > nav > ul > li.current {
  height: auto;
  padding-block: 0.5rem;
  font-weight: bold;
  color: var(--pitt-royal);
  background-color: var(--pitt-gold);
}
body > nav > ul > li a {
  display: block;
  text-underline-offset: 1px;
}
body > nav > ul > li a:focus-visible {
  outline: none;
}
body > nav #nav-links-toggle:checked + ul > li,
body > nav #nav-links-toggle + ul:focus-within > li {
  height: auto;
  padding: 0.5rem 0 0.5rem 0.7rem;
}
body > nav #nav-links-toggle:checked + ul > li:hover:not(.current),
body > nav #nav-links-toggle + ul:focus-within > li:hover:not(.current) {
  color: var(--pitt-royal);
  background-color: var(--sky-blue);
}
@media screen and (min-width: 40em) {
  body > nav {
    --toggle-element-size: 10px;
    display: block;
  }
  body > nav #nav-links-toggle {
    display: none;
  }
  body > nav #nav-links-toggle:checked + ul > li, body > nav #nav-links-toggle + ul:focus-within > li {
    padding: 0;
  }
  body > nav > ul {
    margin: 0.5rem 0rem 0.5rem 0.5rem;
    flex-direction: row;
    gap: 0.25rem;
  }
  body > nav > ul li, body > nav > ul li.current {
    height: auto;
    padding: 0;
    font-weight: 500;
    border-radius: 3px;
  }
  body > nav > ul li:hover:not(.current), body > nav > ul li.current:hover:not(.current) {
    color: var(--pitt-royal);
    background-color: var(--sky-blue);
  }
  body > nav > ul li a, body > nav > ul li.current a {
    --line-height: 1;
    display: inline-block;
    padding: 0.75rem;
    font-size: 1rem;
  }
  body > nav > ul li.current {
    color: var(--pitt-royal);
    background-color: var(--pitt-gold);
  }
}

/*======================================================================*\
|*  FOOTER
\*======================================================================*/
body > footer {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "branding" "content" "links" "legal";
  padding: calc(25px + 1rem) 1rem 0.25rem 1rem;
  background: var(--gray-600) url("../images/footer-top.png") top left repeat-x;
  color: var(--white);
  align-items: baseline;
  align-items: first baseline;
  font-size: 0.8em;
}
body > footer a:-webkit-any-link {
  color: var(--pitt-gold);
}
body > footer a:-moz-any-link {
  color: var(--pitt-gold);
}
body > footer a:any-link {
  color: var(--pitt-gold);
}
body > footer #footer-branding {
  grid-area: branding;
  width: 100%;
  max-width: 275px;
}
body > footer #footer-links {
  grid-area: links;
  margin-top: 0.5rem;
  list-style: none;
}
body > footer #footer-links li + li {
  margin-top: 0.25em;
}
body > footer #footer-content {
  grid-area: content;
}
body > footer #footer-content > * {
  margin-top: 0.5rem;
}
body > footer #footer-copyright {
  grid-area: legal;
  color: white;
  font-size: 0.7rem;
}
body > footer #footer-copyright > * {
  margin-top: 0.5rem;
}
@media screen and (min-width: 40em) {
  body > footer {
    grid-template-columns: 1fr auto;
    gap: 1.5em;
    grid-template-areas: "branding branding " "content links" "legal legal";
  }
}

/*======================================================================*\
|*  MESSAGE BOXES
\*======================================================================*/
.status-messages {
  display: block;
  margin-bottom: 0.5em;
}
.status-messages.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0.5rem;
  z-index: 99999;
  text-align: right;
}
.status-messages.sticky .message-box {
  display: inline-block;
}

.message-box {
  --message-background-color: var(--gray-600);
  --message-border-color: var(--gray-200);
  --message-border-width: 10px;
  --message-inline-padding: 0.7rem;
  --message-block-padding: 0.7rem;
  --message-icon: url(../images/icons/small-n-flat/bubbles.png);
  --message-icon-size: calc(var(--font-size) * var(--line-height));
  --message-text-color: var(--gray-050);
  display: block;
  overflow: hidden;
  border: solid var(--message-border-color);
  border-width: 1px var(--message-border-width);
  border-radius: var(--message-border-width);
  padding: var(--message-block-padding) var(--message-inline-padding) var(--message-block-padding) calc(var(--message-inline-padding) * 1.5 + var(--message-icon-size));
  background: var(--message-background-color) var(--message-icon) no-repeat;
  background-repeat: no-repeat;
  background-size: var(--message-icon-size);
  background-position: calc(var(--message-inline-padding) * 0.75) var(--message-block-padding);
  font-family: var(--secondary-heading-font);
  font-weight: 500;
  color: var(--message-text-color);
}
.message-box + .message-box {
  margin-top: 0.5rem;
}
.message-box.inline {
  display: inline-block;
}
.message-box.error {
  --message-icon: url(../images/icons/small-n-flat/sign-error.png);
  --message-border-color: var(--red-300);
  --message-text-color: var(--red-700);
  --message-background-color: var(--red-050);
}
.message-box.warn {
  --message-icon: url(../images/icons/small-n-flat/sign-warning.png);
  --message-border-color: var(--yellow-500);
  --message-text-color: var(--yellow-900);
  --message-background-color: var(--yellow-100);
}
.message-box.info {
  --message-icon: url(../images/icons/small-n-flat/sign-info.png);
  --message-border-color: var(--blue-300);
  --message-text-color: var(--blue-600);
  --message-background-color: var(--blue-050);
}
.message-box.confirm {
  --message-icon: url(../images/icons/small-n-flat/sign-check.png);
  --message-border-color: var(--green-300);
  --message-text-color: var(--green-600);
  --message-background-color: var(--green-050);
}
.message-box.debug-info {
  --message-icon: none;
  --message-border-color: var(--purple-700);
  --message-text-color: var(--purple-900);
  --message-background-color: var(--purple-100);
}

/*======================================================================*\
|*  ERROR PAGE                                              stack trace
\*======================================================================*/
#stack-trace {
  border-width: 2px;
  padding: 9px 20px;
  border-radius: 6px;
  border-style: solid;
  border-color: var(--red-800);
  background-color: var(--red-050);
}
#stack-trace .stack-trace-exception {
  color: var(--black);
  font-size: 1.1em;
}
#stack-trace .stack-trace-exception .stack-trace-line {
  padding-left: 4em;
  color: var(--gray-700);
}

/*======================================================================*\
|*  SELECTION                                        pitt blue and gold
\*======================================================================*/
::-moz-selection {
  text-shadow: none;
  color: var(--pitt-gold);
  background: var(--pitt-royal);
}
::selection {
  text-shadow: none;
  color: var(--pitt-gold);
  background: var(--pitt-royal);
}