/* --------- COLOR SCHEME --------- */
/* ----- OPAQUE COLOR SCHEME ------ */
/* ---------- GREY SCALE ---------- */
/* ------ OPAQUE GREY SCALE ------- */
html, body {
  overflow-x: hidden;
}

#content {
  min-height: 100vh;
  display: flex;
  flex-flow: column;
  padding: 0;
}
#content #edit-input {
  position: absolute;
  z-index: 1000;
  background: white;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-family: "Roboto", open-sans;
  font-size: 16px;
  color: #4a4a4a;
}
#content #lcap-explorer {
  flex: 1 0 auto;
  background-color: #eeeeee;
  display: flex;
  position: relative;
}
#content #lcap-explorer #loading {
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 100%;
  background-color: #eeeeee;
}
#content #lcap-explorer #loading h1 {
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #4a4a4a;
  font-size: 48px;
  margin: 0;
}
#content #lcap-explorer #sidebar {
  width: 20vw;
  display: inline-block;
  position: relative;
  min-width: 450px;
  height: 100%;
  padding: 0 10px;
  max-width: 100vw;
  transition: all 0.2s ease;
  overflow: hidden;
  opacity: 1;
  z-index: 10;
}
#content #lcap-explorer #sidebar .selection:nth-child(1) {
  padding-top: 10px;
}
#content #lcap-explorer #sidebar .selection {
  padding: 0 10px 10px 10px;
}
#content #lcap-explorer #sidebar .selection h1.title {
  margin: 0;
  margin-top: 5px;
  font-size: 18px;
  font-weight: 100;
  color: #4a4a4a;
  text-transform: uppercase;
  text-align: center;
}
#content #lcap-explorer #sidebar .selection .perspective-wrapper {
  display: flex;
  justify-content: space-between;
}
#content #lcap-explorer #sidebar .selection .perspective-wrapper .perspective {
  padding: 30px;
  flex: 1 1 0;
}
#content #lcap-explorer #sidebar .selection .perspective-wrapper .perspective img.icon {
  height: 64px;
  width: 64px;
  color: #294661;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: 10px;
  /* this is some hacky bullshit I did to make the svg match the sizing with the material icon */
}
#content #lcap-explorer #sidebar .selection .perspective-wrapper .perspective .material-icons {
  font-size: 73px;
  /* this is some hacky bullshit I did to make the img match the sizing with the material icon too */
  color: #3d3d3d;
}
#content #lcap-explorer #sidebar .selection .perspective-wrapper .perspective .label-wrapper h1 {
  color: #3d3d3d;
  margin-top: 15px;
  margin: 0;
  font-weight: 400;
}
#content #lcap-explorer #sidebar .selection .perspective-wrapper .perspective .label-wrapper h2 {
  font-weight: 200;
  margin: 0;
  font-size: 18px;
  color: #294661;
}
#content #lcap-explorer #sidebar .selection .priority, #content #lcap-explorer #sidebar .selection .metric {
  background-color: white;
  margin: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#content #lcap-explorer #sidebar .selection .priority .edit-container, #content #lcap-explorer #sidebar .selection .metric .edit-container {
  padding: 10px 10px 10px 0;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  display: flex;
  align-self: stretch;
  align-items: center;
  justify-content: center;
}
#content #lcap-explorer #sidebar .selection .priority .edit-container i, #content #lcap-explorer #sidebar .selection .metric .edit-container i {
  border-left: 1px solid #4a4a4a;
  font-size: 18px;
  color: #4a4a4a;
  padding-left: 10px;
}
#content #lcap-explorer #sidebar .selection .priority h1, #content #lcap-explorer #sidebar .selection .metric h1 {
  padding: 10px;
  font-weight: 400;
  font-size: 16px;
  margin: 0;
}
#content #lcap-explorer #sidebar .selection .clickable {
  background-color: white;
  margin: 15px 10px 0px 10px;
  transition: all 0.2s ease;
  cursor: pointer;
  border-radius: 3px;
  border: 1px solid #ccc;
}
#content #lcap-explorer #sidebar .selection .clickable h1 {
  flex: 1 1 0;
}
#content #lcap-explorer #sidebar .selection .clickable:hover {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
#content #lcap-explorer #sidebar .selection .clickable:active {
  box-shadow: none;
}
#content #lcap-explorer #main.no-metric {
  pointer-events: none;
}
#content #lcap-explorer #main.no-metric *:not(.pre-metric) {
  opacity: 0;
}
#content #lcap-explorer #main.no-metric .pre-metric {
  opacity: 1;
}
#content #lcap-explorer #sidebar.closed {
  max-width: 0;
  min-width: 0;
  opacity: 0;
  padding: 0;
}
#content #lcap-explorer #sidebar.solid {
  background-color: #eee;
}
#content #lcap-explorer #main.transparent {
  opacity: 0.4;
}
#content #lcap-explorer #main {
  width: 80vw;
  max-width: calc(100vw - 450px);
  position: relative;
  height: 100%;
  padding: 48px 30px 10px 0;
  background-color: inherit;
  pointer-events: all;
  display: inline-block;
}
#content #lcap-explorer #main:not(.open) * {
  opacity: 0;
  pointer-events: none;
}
#content #lcap-explorer #main textarea {
  outline: none;
  border: none;
  background-color: transparent;
  font-family: "Roboto", open-sans;
  overflow: auto;
}
#content #lcap-explorer #main textarea:focus {
  outline: none;
}
#content #lcap-explorer #main textarea.h1 {
  font-size: 24px;
  color: #4a4a4a;
  font-weight: 300;
}
#content #lcap-explorer #main textarea.p {
  font-size: 18px;
  color: #4a4a4a;
  font-weight: 300;
}
#content #lcap-explorer #main .buttons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 15px -5px 0 -5px;
}
#content #lcap-explorer #main .buttons .button {
  background-color: #294661;
  padding: 8px 16px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 100;
  left: 0;
  transform: none;
  margin: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#content #lcap-explorer #main .buttons .button p {
  font-size: 12px;
  text-transform: uppercase;
  color: white;
}
#content #lcap-explorer #main .buttons .button i {
  font-size: 18px;
  margin-right: 5px;
}
#content #lcap-explorer #main .buttons .button.green {
  background-color: #3BAB7E;
}
#content #lcap-explorer #main .buttons .button.red {
  background-color: #ff6820;
  margin-left: auto;
}
#content #lcap-explorer #main h4.info {
  font-size: 14px;
  margin-top: 5px;
  font-weight: 300;
  text-align: center;
  color: #3BAB7E;
}
#content #lcap-explorer #main > *:not(.pre-metric) {
  opacity: 1;
  transition: all 0.2s ease;
}
#content #lcap-explorer #main > .pre-metric {
  opacity: 0;
  transition: all 0.2s ease;
}
#content #lcap-explorer #main h1, #content #lcap-explorer #main p {
  color: #4a4a4a;
}
#content #lcap-explorer #main h1 {
  font-weight: 100;
  font-size: 24px;
}
#content #lcap-explorer #main p {
  font-size: 18px;
}
#content #lcap-explorer #main .secondary-button:hover {
  box-shadow: none;
}
#content #lcap-explorer #main .secondary-button:hover p {
  left: 0;
}
#content #lcap-explorer #main .secondary-button:hover i {
  right: 0;
}
#content #lcap-explorer #main .secondary-button.contingency:not(.visible) {
  left: -20px;
  pointer-events: none;
  opacity: 0;
}
#content #lcap-explorer #main .secondary-button.contingency {
  background-color: #3BAB7E;
  color: white;
  transition: all 0.2s ease;
  left: 10px;
  position: relative;
  pointer-events: auto;
  opacity: 1;
}
#content #lcap-explorer #main .secondary-button.contingency > p, #content #lcap-explorer #main .secondary-button.contingency > i {
  color: white;
}
#content #lcap-explorer #main .secondary-button {
  cursor: pointer;
  margin: 20px 0;
  background-color: transparent;
  border: 1px solid #3BAB7E;
  border-radius: 50px;
  padding: 10px 30px 7px 30px;
  display: inline-flex;
  align-items: center;
  background-color: inherit;
}
#content #lcap-explorer #main .secondary-button p {
  z-index: 1;
  left: 15px;
  transition: all 0.2s ease;
  padding-bottom: 3px;
}
#content #lcap-explorer #main .secondary-button i {
  right: 15px;
  transition: all 0.2s ease;
}
#content #lcap-explorer #main .secondary-button > * {
  color: #3BAB7E;
  padding: 0;
  position: relative;
  background-color: inherit;
}
#content #lcap-explorer #main #chart {
  margin-top: 30px;
}
#content #lcap-explorer #main #chart .filter-wrapper {
  display: flex;
  flex-direction: column;
  flex: 0 1 200px;
}
#content #lcap-explorer #main #chart .filter-wrapper h1 {
  font-size: 12px;
  padding: 5px 10px 8px 10px;
  background-color: #fafafa;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  margin: 0 0 -3px 0;
  border: 1px solid #ccc;
  text-transform: uppercase;
}
#content #lcap-explorer #main #chart .filter-wrapper select {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  padding: 10px;
  border: 1px solid #ccc;
}
#content #lcap-explorer #main #chart .chart-controller-container {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 35px 10px 13px 10px;
  margin-bottom: -3px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  background-color: #fafafa;
  border: 1px solid #ccc;
  position: relative;
  overflow: hidden;
}
#content #lcap-explorer #main #chart .chart-controller-container::before {
  content: "Coeus LCAP Viewer";
  position: absolute;
  top: 0;
  font-size: 10px;
  right: 0;
  left: 0;
  padding: 5px;
  background-color: #eee;
  color: #3d3d3d;
}
#content #lcap-explorer #main #chart .chart-controller-container .selector-wrapper {
  flex: 0 1 200px;
  display: flex;
  flex-direction: column;
}
#content #lcap-explorer #main #chart .chart-controller-container .selector-wrapper h1 {
  margin: 0 0 5px 10px;
  font-size: 12px;
  text-transform: uppercase;
}
#content #lcap-explorer #main #chart .chart-controller-container .selector-wrapper select {
  border-radius: 3px;
  padding: 10px;
  border: 1px solid #ccc;
  width: 200px;
}
#content #lcap-explorer #main #chart .chart-controller-container .selector-wrapper select option {
  text-overflow: ellipsis;
}
#content #lcap-explorer #main #chart .chart-container {
  border: 1px solid #ccc;
  background-color: white;
  border-radius: 3px;
  padding: 30px;
  overflow-x: auto;
}
#content #lcap-explorer #main #chart circle.point {
  transition: all 0.2s ease;
  cursor: pointer;
}
#content #footer {
  position: relative;
}

.help-pop-up {
  display: flex;
  flex-direction: column;
  position: fixed;
  background-color: white;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-height: 85vh;
  overflow: auto;
  padding: 50px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  border: 1px solid #ccc;
  background-color: #fafafa;
  z-index: 10;
}
.help-pop-up.dragover {
  outline: 1px dashed;
}
.help-pop-up .pop-up-exit {
  justify-content: flex-end;
  align-items: center;
  color: #3BAB7E;
  z-index: 100;
  max-width: 100px;
  position: absolute;
  right: 15px;
  top: 15px;
}
.help-pop-up .pop-up-exit i {
  cursor: pointer;
  padding: 5px;
}
.help-pop-up .pop-up-contents {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.help-pop-up .pop-up-contents p {
  flex: 1 1 0;
  cursor: default;
  line-height: 170%;
}
.help-pop-up .pop-up-contents .pop-up-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
  color: #3BAB7E;
}
.help-pop-up .pop-up-contents .pop-up-title p {
  font-size: 20px;
  cursor: default;
}
.help-pop-up .pop-up-contents .pop-up-title i {
  cursor: pointer;
}
.help-pop-up .pop-up-contents .button-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
}
.help-pop-up .pop-up-contents .button-wrapper input {
  display: none;
}
.help-pop-up .pop-up-contents .button-wrapper .or {
  padding-right: 20px;
}
.help-pop-up .pop-up-contents .button-wrapper .choose-file-button:hover {
  background-color: #2D8260;
  cursor: pointer;
}
.help-pop-up .pop-up-contents .button-wrapper .choose-file-button {
  padding: 10px 30px;
  background-color: #3BAB7E;
  border-radius: 5px;
  color: white;
}
.help-pop-up .file-drop-zone {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 100%;
  z-index: 10;
}
.help-pop-up .file-drop-zone #fileDragAndDrop {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
}
.help-pop-up .file-drop-zone.dragover {
  outline: 1px dashed;
  background-color: rgba(255, 255, 255, 0.5);
}

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