/* -----------------------------------------------------------------------------
 *
 * Interaction Consortium Frontend Framework
 * http://www.interaction.net.au
 *
 * MAIN STYLESHEET
 *
 * -----------------------------------------------------------------------------
 */
:root {
  --black: #000;
}

/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */
/*
Document
========
*/
/**
Use a better box model (opinionated).
*/
*,
::before,
::after {
  box-sizing: border-box;
}

/**
Use a more readable tab size (opinionated).
*/
html {
  -moz-tab-size: 4;
  tab-size: 4;
}

/**
1. Correct the line height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
*/
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/*
Sections
========
*/
/**
Remove the margin in all browsers.
*/
body {
  margin: 0;
}

/**
Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
*/
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
}

/*
Grouping content
================
*/
/**
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
}

/*
Text-level semantics
====================
*/
/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr[title] {
  text-decoration: underline dotted;
}

/**
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}

/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
remove margin on text elements
*/
p,
h6,
h5,
h4,
h3,
h2,
h1 {
  margin: 0;
}

/**
Remove spacing on dl elements
*/
dl {
  margin: 0;
}

dd {
  margin-inline-start: 0;
}

/*
Figure
============
*/
/**
Remove spacing on figure elements
*/
figure {
  margin: 0;
}

/*
Tabular data
============
*/
/**
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
}

/*
Forms
=====
*/
/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
Remove the inheritance of text transform in Edge and Firefox.
1. Remove the inheritance of text transform in Firefox.
*/
button,
select {
  /* 1 */
  text-transform: none;
}

/**
Correct the inability to style clickable types in iOS and Safari.
*/
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
Remove the inner border and padding in Firefox.
*/
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
Restore the focus styles unset by the previous rule.
*/
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/
:-moz-ui-invalid {
  box-shadow: none;
}

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/
legend {
  padding: 0;
}

/**
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Interactive
===========
*/
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}

/*
Buttons
============
*/
/**
Reset styling of buttons
*/
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

@keyframes modal-fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modal-fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.has-dialog {
  height: 100vh;
  overflow: hidden;
}

.dialog-hidden {
  display: none !important;
}

.dialog-backdrop {
  position: fixed;
  z-index: -10;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  overflow: hidden;
  outline: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.8);
}
.dialog-backdrop.active {
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  animation: modal-fadein 0.35s ease-in-out forwards;
}
.dialog-backdrop.modal-fadeout {
  opacity: 1;
  animation: modal-fadeout 0.5s ease-in-out forwards;
}

.dialog-modal {
  min-height: 100vh;
  position: relative;
}

.dialog-inner {
  width: auto;
  max-width: 100rem;
  min-height: 100vh;
  margin: auto;
  padding: 1rem 1rem 2rem 1rem;
  display: flex;
  align-items: center;
  position: relative;
}

.dialog-content {
  padding: 2.5rem;
  background-color: white;
  position: relative;
  z-index: 1;
  flex: 0 0 100%;
}

.dialog-close {
  background-color: transparent;
  position: absolute;
  z-index: 2;
  top: 0.5rem;
  right: 0.5rem;
}
.dialog-close .icon {
  font-size: 0.875rem;
}

.dialog-close-overlay {
  position: fixed;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  text-indent: 10000px;
  border: none;
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0.2);
  cursor: default;
}
.dialog-close-overlay:hover {
  opacity: 1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.svg--green-100 {
  color: #cceddf;
}

.svg--green-500 {
  color: #4aa78f;
}

.svg--red-500 {
  color: #e06d80;
}

.svg--yellow-500 {
  color: #ffd500;
}

.svg--black {
  color: var(--black);
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

body {
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.4;
}

h1 {
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: 300;
  font-size: 2.25rem;
  writing-mode: vertical-lr;
  transform: rotate(-180deg);
  margin: 0;
}

.h1__logomark svg {
  width: 2.25rem;
}

h2 {
  font-size: 3rem;
  font-weight: 300;
  margin: 0;
}

h3,
h4 {
  font-size: 1.5rem;
  font-weight: 300;
  margin: 0;
}
h3 + *,
h4 + * {
  margin-top: 2.5rem;
}

p + * {
  margin-top: 1em;
}

.balance {
  font-weight: 600;
}

.balance--green-500 {
  color: #4aa78f;
}

.balance--red-500 {
  color: #e06d80;
}

#site-body {
  background-color: #fffff4;
  display: flex;
  color: var(--black);
}

#site-header {
  width: 7.5rem;
  border-right: solid var(--black) 1px;
  padding: 2.5rem 2rem;
  min-height: 100vh;
}
#site-header a {
  text-decoration: none;
}

.main-content {
  flex-grow: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#site-main {
  flex: 1;
}

.site-main--container {
  padding: 2.5rem 2rem;
}

.dashboard-section {
  padding: 2.5rem 2rem;
  border-bottom: solid var(--black) 1px;
}

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

svg {
  fill: currentColor;
  transition: all 0.5s ease-out;
}

.dashboard-header {
  display: flex;
  align-items: center;
  padding-bottom: 2.5rem;
  border-bottom: solid 1px var(--black);
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 2.5rem;
}

.dashboard-header__project-div, .dashboard-header__heading {
  width: 72.7272727273%;
  padding-right: 0.75rem;
}

.dashboard-header--block {
  display: block;
}

.dashboard-header__project-details {
  width: 28.1818181818%;
  padding-left: 0.75rem;
}

.dashboard-header__nav {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

.login {
  width: 30rem;
  margin-top: 7.5rem;
  margin-left: auto;
  margin-right: auto;
}

.login-form input {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.75rem;
  background-color: #fffff4;
  border: solid black 1px;
}

.date-range {
  position: fixed;
  top: 175px;
  right: 2rem;
  background-color: #fffff4;
  padding: 0.75rem;
  border: solid var(--black) 1px;
}
.date-range legend {
  padding-bottom: 0.875rem;
}

.date-range__options {
  margin-right: 0.25rem;
}

label + .date-range__options {
  margin-left: 1rem;
}

.project-details {
  width: 50%;
}

.project-details__row {
  display: flex;
}
.project-details__row + .project-details__row {
  margin-top: 0.6125rem;
}
.project-details__row dt {
  font-family: "IBM Plex Mono", "Courier New", "Courier", monospace;
  font-size: 0.75rem;
  width: 45%;
}
.project-details__row dd {
  width: 55%;
}

.project-details__nav {
  margin-top: 0.4375rem;
  display: inline-flex;
  flex-direction: column;
}
.project-details__nav a {
  margin: 0;
}

table {
  text-align: right;
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 2.5rem;
  table-layout: fixed;
}

th {
  font-family: "IBM Plex Mono", "Courier New", "Courier", monospace;
  font-size: 0.75rem;
  font-weight: 300;
  padding: 0.75rem;
}

td {
  padding: 1rem;
}

.td--text-left {
  text-align: left;
}

tr {
  border-bottom: solid #d1d1d1 1px;
}

.table__year {
  text-align: left;
}

.table--monthly th[scope=col]:last-of-type,
.table--monthly td:last-of-type {
  background-color: #cceddf;
}

.table-col--1\/8 {
  width: 12.5%;
}

.table-col--2\/8 {
  width: 25%;
}

.table-col--3\/8 {
  width: 37.5%;
}

.table-col--4\/8 {
  width: 50%;
}

.table-col--5\/8 {
  width: 62.5%;
}

.table-col--6\/8 {
  width: 75%;
}

.table--7-col th[scope=col] {
  width: 13.3333333333%;
}
.table--7-col th[scope=row] {
  width: 20%;
}

.table--13-col th[scope=col] {
  width: 7.4074074074%;
}
.table--13-col th[scope=row] {
  width: 11.1111111111%;
}

.table--16-col th[scope=col] {
  width: 6.0606060606%;
}
.table--16-col th[scope=row] {
  width: 9.0909090909%;
}

.table--28-col th[scope=col] {
  width: 3.5087719298%;
}
.table--28-col th[scope=row] {
  width: 5.2631578947%;
}

.key__item {
  display: inline-block;
}
.key__item + .key__item {
  margin-left: 2rem;
}
.key__item dt {
  display: inline-block;
}
.key__item dt + dd {
  margin-left: 0.25rem;
}
.key__item dd {
  display: inline-block;
}

.project-table {
  text-align: left;
}

.project-table__sync-data {
  margin-top: 2.5rem;
}

.sync-info {
  margin-top: 2.5rem;
}

.sync-info__list {
  display: flex;
}

.sync-info__heading {
  font-family: "IBM Plex Mono", "Courier New", "Courier", monospace;
  font-size: 0.75rem;
}
.sync-info__heading + * {
  margin-top: 0;
}

.sync-info__item + .sync-info__item {
  margin-left: 2rem;
}

.sync-info__term,
.sync-info__definition {
  display: inline;
}

.dashboard-section__heading {
  margin-top: 2.5rem;
}
.dashboard-section__heading + * {
  margin-top: 1rem;
}

.client-heading {
  font-size: 1.5rem;
}

.is-open svg {
  transform: rotate(90deg);
}

.ticket-life-cycle__item {
  display: flex;
  margin-bottom: 1rem;
}
.ticket-life-cycle__item dt {
  font-family: "IBM Plex Mono", "Courier New", "Courier", monospace;
  font-size: 0.75rem;
  margin-right: 2rem;
  width: 16.6666666667%;
}

.table-modal__open-button {
  padding: 0;
  font-weight: 300;
  text-decoration: underline;
}

.table-modal {
  position: relative;
  width: 80vw;
  max-width: 400px;
  margin-top: 33vh;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem;
  color: white;
  text-align: left;
  background-color: black;
}

.table-modal__heading {
  font-family: "IBM Plex Mono", "Courier New", "Courier", monospace;
  font-size: 0.75rem;
  font-weight: 300;
}

.table-modal__item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: solid #d1d1d1 1px;
}

.table-modal__dt {
  width: 50%;
  font-family: "IBM Plex Mono", "Courier New", "Courier", monospace;
  font-size: 0.75rem;
}

.table-modal__dd {
  width: 50%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.table-modal__close-button {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: white;
}

#site-footer {
  border-bottom: none;
  display: flex;
  justify-content: space-between;
}

.site-footer__header {
  font-size: 0.875rem;
  margin-bottom: 1em;
}

.site-footer__header-logomark {
  width: 1rem;
  vertical-align: middle;
  margin-right: 0.25rem;
}

.site-footer__address {
  font-style: inherit;
}

.btn {
  border: solid var(--black) 1px;
  padding: 0.25rem 0.5rem;
}
.btn:hover {
  background-color: var(--black);
  color: #fffff4;
}

.btn--w-full {
  width: 100%;
}

.btn--p-3 {
  padding: 0.75rem;
}

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