/* --------- COLOR SCHEME --------- */
/* ----- OPAQUE COLOR SCHEME ------ */
/* ---------- GREY SCALE ---------- */
/* ------ OPAQUE GREY SCALE ------- */
.content {
  background-color: #fafafa !important;
}

.hide {
  max-height: 0 !important;
  padding: 0 !important;
}

.options-container {
  max-height: 500px;
  overflow-y: hidden;
  transition: all 0.5s ease;
}

/*-------------------------------- Page Title ----------------------------------------*/
.title-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.title-container h2 {
  font-weight: 200;
  margin: 0;
}

/*-------------------------------- Page Step Instruction  ----------------------------------------*/
.page-instruction {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
  background: #eeeeee;
}
.page-instruction h1 {
  font-weight: 200;
  color: #4a4a4a;
  font-size: 20px;
}

/*-------------------------------- Select Perspective ( step 1 ) ----------------------------------------*/
#footer {
  display: none !important;
}

.options-container .menu-option {
  background-color: white;
}
.options-container .menu-option .icon {
  height: 64px;
  width: 64px;
  color: #294661;
  fill: #294661;
  padding-bottom: 10px;
  /* this is some hacky bullshit I did to make the svg match the sizing with the material icon */
}
.options-container .menu-option .material-icons {
  font-size: 73px;
  /* this is some hacky bullshit I did to make the img match the sizing with the material icon */
  color: #3d3d3d;
}
.options-container .menu-option .option-label h1 {
  color: #3d3d3d;
  margin-top: 15px;
}
.options-container .menu-option .option-label h2 {
  font-weight: 200;
  margin: 0;
  font-size: 18px;
}

/*-------------------------------- Priority List ( step 2 ) ----------------------------------------*/
.options-container {
  font-weight: 200;
  color: #294661;
  background-color: #eeeeee;
}
.options-container .priority-container {
  cursor: pointer;
  /* new priority form start */
  /* new priority form end */
}
.options-container .priority-container .add-priority-button:hover p {
  color: #294661;
}
.options-container .priority-container .add-priority-button:hover .add-button {
  color: #294661;
  transform: rotate(180deg);
}
.options-container .priority-container .add-priority-button.hide {
  max-height: 0;
  padding: 0;
}
.options-container .priority-container .add-priority-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-height: 500px;
  overflow-y: hidden;
  transition: all 0.5s ease;
}
.options-container .priority-container .add-priority-button .add-button {
  color: #3BAB7E;
  transform: rotate(0deg);
  transition: all 0.1s ease;
}
.options-container .priority-container .add-priority-button p {
  color: #3BAB7E;
  padding-left: 20px;
  font-weight: 200;
}
.options-container .priority-container .priority-input {
  transition: all 5s ease;
  max-height: 200px;
  overflow-y: hidden;
}
.options-container .priority-container .priority-input #priority-name-input {
  max-width: 445px;
  max-height: 50px;
  width: 42vw;
  padding: 10px 5px;
  font-size: 15px;
  background-color: transparent;
  border: none;
  outline: none;
  border-bottom: 1px solid black;
  font-weight: 200;
}
.options-container .priority-container .priority-input input#priority-name-input:focus {
  border-bottom: 1px solid #3BAB7E;
}
.options-container .priority-container .priority-input .button {
  padding: 10px 15px;
  margin: 10px 0;
}
.options-container .priority-container .priority-input.hide {
  max-height: 0;
  padding: 0;
  overflow-y: hidden;
}
.options-container .priority-container ul.priority-list {
  list-style: none;
  padding: 0;
}
.options-container .priority-container ul.priority-list li.priority-item {
  padding: 15px 200px 15px 5px;
  /*background-color: red;*/
  border-bottom: 1px solid #ccc;
}
.options-container .priority-container ul.priority-list li.priority-item:hover {
  color: #3BAB7E;
}

/*-------------------------------- Input Metric Name ( step 3 ) ----------------------------------------*/
.options-container.metric .input-wrapper .metric-input-container input.metric-name {
  width: 42vw;
  padding: 10px 0;
  font-size: 18px;
  background-color: transparent;
  border: none;
  outline: none;
  border-bottom: 1px solid #ccc;
  font-weight: 200;
  transition: all 0.2s ease;
}
.options-container.metric .input-wrapper .metric-input-container input.metric-name:focus {
  border-bottom: 1px solid #3BAB7E;
  color: #3BAB7E;
}
.options-container.metric .input-wrapper .input-error p {
  text-align: center;
  color: red;
  margin-top: 5px;
}
.options-container.metric .input-wrapper .button {
  padding: 10px 30px;
  margin-top: 10px;
}

/*-------------------------------- Upload CSV Data ( step 4 ) ----------------------------------------*/
.options-container.upload.hide {
  overflow-y: hidden;
}

.options-container.upload {
  font-weight: 200;
  position: relative;
  z-index: 10000;
  overflow-y: visible;
}
.options-container.upload .file-drop-zone {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 280px;
  z-index: 2;
}
.options-container.upload .file-drop-zone label {
  position: absolute;
  height: 100%;
  width: 100%;
}
.options-container.upload .file-drop-zone.dragover {
  outline: 1px dashed;
  background-color: rgba(255, 255, 255, 0.5);
}
.options-container.upload .button-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
}
.options-container.upload .button-wrapper input {
  display: none;
}
.options-container.upload .button-wrapper .or {
  padding-right: 20px;
}
.options-container.upload .button-wrapper .choose-file-button:hover {
  background-color: #2D8260;
  cursor: pointer;
}
.options-container.upload .button-wrapper .choose-file-button {
  padding: 10px 30px;
  background-color: #3BAB7E;
  border-radius: 5px;
  color: white;
}

/*-------------------------------- Label-Chart Axes ( step 5 )----------------------------------------*/
.options-container .chart-container {
  /*background-color: red;*/
  width: 50%;
  display: flex;
  flex-direction: column;
}
.options-container .chart-container .form-wrapper form .form-row input {
  max-width: 445px;
  max-height: 50px;
  font-size: 15px;
  background-color: transparent;
  border: none;
  outline: none;
  border-bottom: 1px solid #cccccc;
  font-weight: 200;
}
.options-container .chart-container .form-wrapper form .form-row .input-error p {
  color: red;
  text-align: center;
  font-size: 14px !important;
}
.options-container .chart-container .form-wrapper form .inline-inputs {
  display: flex;
  justify-content: center;
  align-items: center;
}
.options-container .chart-container .form-wrapper form .form-row:nth-child(2) {
  display: flex;
  flex-direction: row;
  margin-top: 10px;
}
.options-container .chart-container .bar-graph-container {
  margin-top: 25px;
}
.options-container .chart-container .bar-graph-container .button {
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 10px;
  background-color: #3BAB7E;
}

/*-------------------------------- Label-Chart Axes ( step 5 )----------------------------------------*/
.options-container.view-chart-buttons.hide {
  overflow-y: hidden;
}

.options-container.view-chart-buttons {
  font-weight: 200;
  font-size: 24px;
  display: flex;
  align-items: center;
}
.options-container.view-chart-buttons .button {
  padding: 6px 12px;
  background-color: #3BAB7E;
  left: 0;
  transform: none;
  display: flex;
  margin: 0 5px;
}
.options-container.view-chart-buttons .button.transparent {
  background-color: transparent;
}
.options-container.view-chart-buttons .button.transparent a {
  color: #4a4a4a !important;
}
.options-container.view-chart-buttons .button a {
  font-size: 14px;
  font-weight: 300;
  color: white !important;
  text-transform: uppercase;
}
.options-container.view-chart-buttons .chart-link-container a:active {
  color: #cccccc;
}
.options-container.view-chart-buttons .chart-link-container a:visited {
  color: #cccccc;
}
.options-container.view-chart-buttons .chart-link-container a {
  color: #cccccc !important;
}
.options-container.view-chart-buttons .chart-link-container a:hover {
  color: #888888;
}

.chart-link {
  font-weight: 400;
}

.chart-link:visited {
  color: #cccccc;
}

/*-------------------------------- Stage Indication ----------------------------------------*/
.stage-indication-container {
  background-color: #fafafa;
  width: 100%;
  height: 175px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.stage-indication-container .stage-indication-wrapper {
  display: flex;
  flex-direction: row;
  margin-top: 30px;
  justify-content: space-between;
}
.stage-indication-container .stage-indication-wrapper .stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 45px;
  width: 45px;
  border-radius: 30px;
  transition: all 0.5s linear;
  margin: 0 15px;
  border: 2px solid #3BAB7E;
}
.stage-indication-container .stage-indication-wrapper .stage p {
  color: #3BAB7E;
  font-weight: 500;
  font-size: 16px;
  z-index: 1;
}
.stage-indication-container .stage-indication-wrapper .stage .connector {
  position: absolute;
  height: 2px;
  width: 0px;
  left: calc(100% + 2px);
  background-color: #3BAB7E;
  transition: all 0.5s ease;
}
.stage-indication-container .stage-indication-wrapper .stage .connector.active {
  width: 30px;
}
.stage-indication-container .stage-indication-wrapper .stage.active {
  background-color: #3BAB7E;
}
.stage-indication-container .stage-indication-wrapper .stage.active p {
  color: white;
}

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