﻿.condition-editor {
  border: 1px solid silver;
  width: 410px;
  height: 230px;
}
.condition-editor > .tabs > div {
  display: inline-block;
  cursor: pointer;
  border: 1px solid silver;
  border-top: 0;
  border-left: 0;
  background: white;
  padding: 2px 5px;
}
.condition-editor > .tabs > div.selected {
  font-weight: bold;
}
.condition-editor > .simple-mode {
  padding: 5px;
}
.condition-editor > .simple-mode > .fields > .field {
  white-space: nowrap;
}
.condition-editor > .simple-mode > .fields > .field > div {
  display: inline-block;
}
.condition-editor > .simple-mode > .fields > .field > .remove {
  cursor: pointer;
}
.condition-editor > .simple-mode > .fields > .field > .remove:before {
  content: '[x]';
}
.condition-editor > .simple-mode > .fields > .field > .input {
  min-width: 200px;
}
.condition-editor > .simple-mode > .new-field {
  width: 200px;
}
.condition-editor > .simple-mode-disabled {
  text-align: center;
  font-size: 150%;
  color: gray;
  padding: 80px 50px;
}
.condition-editor > .advanced-mode {
  padding: 5px;
  width: 400px;
  height: 200px;
}
