metric-definition .message {
  font-size: 20px;
  color: #A8AFB9;
  width: 50%;
  margin: auto;
}

metric-definition .metricType {
  border-left: 1px solid lightgray;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

  metric-definition .metricType figcaption {
      font-size: 1.5em;
  }

  metric-definition .metricType img {
      width: 50px;
  }

metric-definition .nonModuleContainer {
  overflow-x: hidden; 
  overflow-y: auto; 
  height: 100%; 
  flex: 1; 
  display: flex; 
  flex-direction: column;
}

.nonModuleContainerBody {
  display: flex; 
  justify-content: space-evenly; 
  flex: 1; 
  margin-top: 70px;
}

.formulaArea {
  border: 1px solid gray;
  font-size: 20px;
  font-weight: 600;
  height: 220px;
  overflow: auto;
  padding: 30px 10px 10px 20px;
  width: 400px;
  resize: none;
  outline: none;
  box-sizing: border-box;
}

  .formulaArea.invalidFormula {
      border: 1px solid red;
  }

.invalidFormulaMessage {
  color: red;
  display: block;
  text-align: left;
  padding-top: 4px;
}

.formulaOptions ul li {
  font-size: 1.2em;
  cursor: pointer;
  list-style-type: none;
}

.metricDefinition.Modal {
  z-index: 200;
  display: block;
}

.metricDefinition.SlideTypeContainer {
  display: flex;
  flex-flow: column;
  height: 80%;
  width: 40%;
  margin-top: 60px;
  padding: 16px;
  border: none;
}

.filterValueAddBtnHolder {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  height: 26px;
  cursor: pointer;
  height: 26px;
  border: 1px solid #0078AC;
  border-radius: 4px;
  margin: 4px;
  padding: 0px 4px;
}
.filterValueAddBtnHolder:hover {
  font-weight: bold;
}
.filterValueAddBtnHolder:focus {
  outline: none;
}
.filterValueAddBtn {
  color: #0078AC;
  font-size: 24px;
}
.filterValueAddBtnLabel {
  font-size: 12px;
  color: #A8AFB9;
  margin-left: 4px;
}

.filterValuesArea {
  border: 1px solid #A8AFB9;
  padding: 8px;
}

.filterValueContent {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  border-bottom: 1px solid #A8AFB9;
  padding-bottom: 8px;
  margin-bottom: 8px;
}

.filterValueContent .removeFilterContent {
  margin: auto 0;
}

.filterValueSetupContent {
  display: inline-flex;
  align-items: center;
  margin: auto 0;
}

.filterValueSetupContent.row {
  flex-direction: row;
}

.filterValueSetupContent .additionalFilterValue {
  margin-right: 4px;
}

.filterValueSetupContent.column {
  flex-direction: column;
}

.filterValueSetupContent.start {
  align-items: flex-start;
}

.filterValueSetupContent.centerHorizontally {
  margin: auto;
}

.filterValueSetupContent.leftMargin40 {
  margin-left: 40px;
}

.filterValueSetupContent.leftMargin64 {
  margin-left: 64px;
}

.filterValueSetupContent.fullWidth {
  width: 100%;
}

.filterValueSetupContent.row.endAlign {
  align-self: flex-end;
}

/* pipeline-filter-value .filterValueSetupContent.fullWidth {
  width: calc(100% - 64px);
  margin-left: 40px;
} */

.filterValueSetupContent.partialWidth {
  width: calc(100% - 64px);
}

.sgDeleteBtn.componentFilter {
  height: 24px;
  width: 24px;
  margin-top: 8px;
}

.typeSelect {
  margin-top: 8px;
}

  .typeSelect input {
    height: 24px;
    padding-left: 4px;
  }

.customCheckboxLabel {
  margin-right: 4px;
}

.customCheckboxLabel.true {
  color: #3D9349;
}

.customCheckboxLabel.false {
  color: #BD2026;
}

.evalFieldSelect {
  max-width: 200px;
  margin-left: 4px;
  height: 24px;
}

.evalFieldComparison {
  height: 24px;
  margin-left: 4px;
}

.componentDetailsFieldDetails {
  margin-left: 16px;
  white-space: normal;
}
