#noteContainer {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.2);
}
#noteContainer.show {
  display: block;
}
#noteContainer #sql_error {
  white-space: pre;
}
#noteContainer #notePage {
  width: 80%;
  height: 80%;
  position: relative;
  background-color: aliceblue;
  border: 1px solid midnightblue;
  border-radius: 1em;
  padding: 7px;
  margin: auto;
  top: 8%;
}
#noteContainer #noteTitle {
  font-family: "Book Antiqua", serif;
  margin-bottom: 2px;
  margin-block-start: 0;
  margin-block-end: 0;
  font-size: 1.5em;
}
#noteContainer #noteTitle a {
  text-decoration: none;
  color: inherit;
}
#noteContainer p {
  margin: 0;
}

#info dt {
  width: 50%;
}
#info dd {
  width: 45%;
}
#info dd.list {
  width: 100%;
}

dt#clientEmailLabel {
  width: unset;
}

#clientEditor div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
}
#clientEditor label, #clientEditor input, #clientEditor select {
  min-height: 40px;
  max-width: 80vw;
  box-sizing: border-box;
}
#clientEditor label {
  width: 25%;
  padding: 11px 0;
  line-height: 18px;
}
#clientEditor h3 {
  margin-block-start: 10px;
}

#nav {
  font-size: 0.9em;
  margin-block-end: 1em;
}

#errorBox {
  width: 100%;
  border: 2px solid #500000;
  border-radius: 1em;
  background-color: rgba(255, 0, 0, 0.9);
  color: aliceblue;
  padding: 3px 8px;
  margin: 10px;
  font-size: 0.9em;
}
#errorBox.notice {
  background-color: rgba(255, 255, 0, 0.6);
  border-color: goldenrod;
  color: black;
}
#errorBox a, #errorBox a:visited, #errorBox a:active, #errorBox a:hover {
  color: aliceblue;
  font-weight: bolder;
}

.dataSet {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
.dataSet .dataChunk {
  width: 95%;
  padding: 0 4px;
}

.client {
  border: midnightblue 1px solid;
  border-radius: 1em;
  margin-top: 1em;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.client.unsaved {
  background: linear-gradient(to top, transparent, #daa520);
  background-size: 100% 50px;
  background-repeat: no-repeat;
}
.client.unsaved.needsNote {
  background: linear-gradient(to top, aliceblue, transparent), linear-gradient(to right, #daa520, palevioletred);
  background-size: 100% 50px;
  background-repeat: no-repeat;
}
.client.needsNote {
  background: linear-gradient(to top, transparent, palevioletred);
  background-size: 100% 50px;
  background-repeat: no-repeat;
}
.client .topRow {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.client h3 {
  width: 40%;
  display: inline-block;
}
.client .minifiedData {
  width: 50%;
  display: inline-block;
  transition: top 550ms, opacity 799ms;
  transition-delay: 450ms, 201ms;
  position: relative;
  top: 0;
  opacity: 100%;
}
.client .minifiedData.collapsed {
  top: 5px;
  opacity: 0;
}
.client .minifiedData:before {
  content: "";
  float: right;
  width: 7em;
  height: 1.2em;
  top: 0;
  right: 0;
  display: block;
}
.client .category {
  flex-basis: 45%;
  min-width: 325px;
  flex-grow: 1;
}
.client .category dd {
  word-break: break-word;
}
.client .category.meetings {
  position: relative;
  grid-area: notes;
}
.client .category.meetings .btns {
  left: 155px;
  top: 13px;
  right: unset;
}
.client .category .dataChunk:nth-child(even) {
  background-color: #99BBFF;
}
.client .category .dataChunk:nth-child(even).needsNote {
  background: linear-gradient(to right, #99BBFF, palevioletred);
}
.client .category .dataChunk:nth-child(even).uncertainIntro {
  background: linear-gradient(to right, #99BBFF, mediumpurple);
}
.client .category .dataChunk:nth-child(odd) {
  background-color: #88A8E8;
}
.client .category .dataChunk:nth-child(odd).needsNote {
  background: linear-gradient(to right, #88A8E8, palevioletred);
}
.client .category .dataChunk:nth-child(odd).uncertainIntro {
  background: linear-gradient(to right, #88A8E8, mediumpurple);
}
.client .category .dataChunk:nth-child(odd).uncertainIntro dd:after {
  content: "???";
  font-weight: 800;
  margin-left: 10px;
}
.client .category.demographics {
  grid-area: demo;
}
.client .category.demographics dt {
  width: 30%;
}
.client .category.demographics dd {
  width: 65%;
}
.client .category.scheduling {
  grid-area: dates;
}
.client .category.scheduling dt {
  width: 45%;
}
.client .category.scheduling dd {
  width: 50%;
}
.client .category.clientDetails {
  grid-area: details;
}
.client .category.clientDetails dt {
  width: 35%;
}
.client .category.clientDetails dd {
  width: 60%;
}
.client .category ol {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 90%;
  overflow-x: auto;
  padding-inline-start: 0;
  background: linear-gradient(90deg, aliceblue, transparent), linear-gradient(270deg, aliceblue, transparent) 100% 0, radial-gradient(rgba(0, 0, 0, 0.2), transparent), radial-gradient(rgba(0, 0, 0, 0.2), transparent) 100% 0;
  background-size: 80% 100%, 80% 100%, 15px 100%, 15px 100%;
  background-attachment: local, local, scroll, scroll;
  background-repeat: no-repeat;
  background-color: aliceblue;
}
.client .category ol li {
  width: calc(50% - 25px);
  margin-left: 25px;
  margin-right: 5px;
  font-weight: 600;
}
.client .category ol div {
  margin-left: 50px;
  width: calc(50% - 50px);
  text-indent: -20px;
  padding-left: 20px;
}

.clientCollapse {
  width: 5em;
}

.icon {
  cursor: pointer;
}
.icon.factsInfoButton {
  margin-left: 5px;
}

.topicText {
  display: none;
}
.topicText h5 {
  margin-block-start: 0;
  margin-block-end: 0.5em;
}

.toast {
  position: fixed;
  top: 25%;
  left: 30%;
  width: 40%;
  background-color: #8b0000;
  border: 2px solid #600000;
  color: antiquewhite;
  font-weight: 800;
  padding: 15px;
  display: block;
  transition: opacity 1s;
  opacity: 0;
  z-index: 3;
  cursor: pointer;
}
.toast.show {
  opacity: 100%;
}

.hidden {
  display: none !important;
}

.dataBox {
  max-height: 100em;
  transition: max-height 1s;
}
.dataBox.collapsed {
  max-height: 0;
}

.maxifiedData {
  position: relative;
  display: grid;
  grid-template-areas: "demo dates" "details notes";
  grid-template-columns: 50% 50%;
  grid-template-rows: 300px 1fr;
}
@media screen and (max-width: 1000px) {
  .maxifiedData {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.popup {
  display: block;
  background-color: aliceblue;
  position: absolute;
  border: 2px solid midnightblue;
  z-index: 1;
  width: 350px;
  overflow: visible;
  padding: 5px;
  box-shadow: 8px 8px 5px rgba(0, 0, 0, 0.2);
}
.popup .topicText {
  display: block;
  max-height: 350px;
  overflow-y: auto;
}
.popup:before, .popup:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
}
.popup:before {
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  z-index: 2;
  top: 6px;
}
.popup:after {
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  z-index: 3;
  top: 8px;
}
.popup.left:before {
  border-right: 8px solid midnightblue;
  border-left: 0;
  left: -8px;
}
.popup.left:after {
  border-right: 6px solid aliceblue;
  border-left: 0;
  left: -6px;
}
.popup.right:before {
  border-left: 8px solid midnightblue;
  border-right: 0;
  right: -8px;
}
.popup.right:after {
  border-left: 6px solid aliceblue;
  border-right: 0;
  right: -6px;
}
.popup p {
  margin-block-start: 0;
  margin-block-end: 0.5em;
}

.unknown {
  font-weight: 100;
}

.noscroll {
  overflow-y: hidden;
  right: 8px;
  width: calc(80vw - 8px);
  position: relative;
}

.filteredOut {
  display: none;
}

.checklist {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
}

.checklist label, .checkline label {
  font-weight: normal;
}
.checklist label:after, .checkline label:after {
  content: "";
}

.footer {
  margin: 20px auto;
  text-align: center;
  font-size: 0.7em;
}

.loginContainer {
  display: flex;
  flex-direction: column;
  margin: auto;
  top: 30%;
  border: 1px solid midnightblue;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
  width: 60%;
  padding: 10px;
}
.loginContainer form {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.loginContainer label, .loginContainer input:not([type=checkbox]) {
  display: flex;
  flex-wrap: wrap;
  word-break: break-word;
  place-items: center;
  column-gap: 3px;
  width: 50%;
  max-width: 99%;
  height: auto;
  min-height: 40px;
}
.loginContainer label:after {
  position: relative;
  left: -3px;
}
.loginContainer div:not(.checkline):not(.loginInfo) {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.loginContainer .checkline input {
  width: 0.8em;
  height: 0.8em;
}
.loginContainer .checkline label {
  margin-left: 8px;
  width: unset;
  min-height: unset;
  font-size: 0.8em;
  display: inline;
}
.loginContainer input[type=submit] {
  display: block;
  margin: auto;
  border-radius: 20px;
}
.loginContainer input[type=submit]:hover {
  background-color: rgba(100, 100, 255, 0.1);
  border-color: goldenrod;
}
.loginContainer .loginInfo {
  font-size: 0.7em;
  margin-top: 15px;
  align-self: flex-end;
}

.terms h1, .terms h2 {
  margin-block-start: 25px;
}
.terms h3, .terms h4, .terms h5, .terms h6 {
  margin-block-start: 8px;
}
.terms p {
  margin-block-start: 0;
}
.terms tr td:first-child {
  width: 10%;
}

.sortButtons {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}
.sortButtons .sortChunk {
  position: relative;
}
.sortButtons .sortChunk label, .sortButtons .sortChunk input {
  display: inline-block;
}
.sortButtons .sortChunk #filterValue {
  margin-left: 5px;
  width: 100px;
}

.btns {
  position: absolute;
  right: 5px;
  top: 5px;
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  justify-content: flex-start;
  z-index: 1;
}
.btns button {
  margin-left: 2px;
}

.hotkey {
  text-decoration: underline;
}

body {
  width: 80vw;
  margin: auto;
  font-family: Merriweather, Arial, sans-serif;
  font-size: 1em;
  background: linear-gradient(to right, steelblue, aliceblue 10vw, aliceblue 90vw, steelblue 100%);
}

ul {
  margin-block-start: 0;
}

dl {
  margin-block-start: 0;
  margin-block-end: 0;
}

dt, dd {
  display: inline-block;
  vertical-align: middle;
}

dd {
  margin-inline-start: 5px;
  width: 65%;
}

dt {
  font-weight: 600;
  width: 30%;
}
dt:after {
  content: ":";
  position: relative;
}
dt.question:after {
  content: "";
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Book Antiqua", serif;
  margin-bottom: 2px;
  margin-block-start: 0;
  margin-block-end: 0;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  text-decoration: none;
  color: inherit;
}

h4, h5 {
  margin-block-start: 0.5em;
}

h1 {
  font-size: 2.2em;
  margin-block-start: 1.5em;
}

h2 {
  font-size: 1.8em;
}

h3 {
  font-size: 1.5em;
}

h4 {
  font-size: 1.3em;
}

h5 {
  font-size: 1.1em;
}

h6 {
  font-size: 1.3em;
  margin-block-end: 1em;
}

li.unsaved {
  background: linear-gradient(90deg, transparent, #daa520);
  background-size: 50% 100%;
  background-repeat: no-repeat;
}
li.unsaved.needsNote {
  background: linear-gradient(to right, aliceblue, transparent 50%, aliceblue 50%), linear-gradient(to bottom, palevioletred, #daa520);
  background-size: 100% 100%, 50% 100%;
  background-repeat: no-repeat;
}
li.needsNote {
  background: linear-gradient(to right, transparent, palevioletred);
  background-size: 50% 100%;
  background-repeat: no-repeat;
}

label, #compPracLabel {
  margin-right: 10px;
  font-weight: 600;
}
label:after, #compPracLabel:after {
  content: ":";
}

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