
.Window.Filter {
  border: 1px solid rgba(186, 186, 186, 0.6);
  border-radius: 2px;
  background-color: white;
}
.Window.Filter.Scrollable {
  height: 100%;
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
}
.Window.Filter.Scrollable .FilterHeader {
  padding: 4px;
  background-color: #42678e;
  color: white;
  min-height: 28px;
  height: 28px;
  max-height: 28px;
  position: sticky;
  top: 0;
}
.Window.Filter .Sections {
  display: grid;
  grid-template-columns: auto minmax(50%, 1fr);
  row-gap: 5px;
  scrollbar-color: rgba(186, 186, 186, 0.8) rgba(239, 237, 237, 0.8);
  scrollbar-width: thin;
}
.Window.Filter .Sections::-webkit-scrollbar {
  display: block;
}
.Window.Filter .Sections::-webkit-scrollbar-track {
  background-color: rgba(239, 237, 237, 0.8);
}
.Window.Filter .Sections::-webkit-scrollbar-thumb {
  background-color: rgba(186, 186, 186, 0.8);
  background-clip: content-box;
  border-left: solid transparent 1px;
  border-right: solid transparent 1px;
  border-radius: 2px;
}
.Window.Filter .Sections::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.Window.Filter .Sections .Title,
.Window.Filter .Sections .SingleLineFilter {
  grid-column: 1 / -1;
}
.Window.Filter .Sections .FilterHeader {
  padding: 4px;
  background-color: #42678e;
  color: white;
  min-height: 28px;
  height: 28px;
  max-height: 28px;
}
.Window.Filter .Sections .FilterHeader.Collapsable {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.Window.Filter .Sections .FilterHeader.Collapsable::after {
  font-family: 'IcoFont' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  /* Better Font Rendering =========== */
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}
.Window.Filter .Sections .FilterHeader.Collapsable::after {
  content: "\eab2";
}
.Window.Filter .Sections .FilterHeader.Collapsable::after {
  height: max-content;
}
.Window.Filter .Sections .FilterHeader.Collapsable.Collapsed::after {
  font-family: 'IcoFont' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  /* Better Font Rendering =========== */
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}
.Window.Filter .Sections .FilterHeader.Collapsable.Collapsed::after {
  content: "\eab9";
}
.Window.Filter .Sections .FilterLabel,
.Window.Filter .Sections .FilterValue,
.Window.Filter .Sections .SingleLineFilter {
  padding: 0 5px;
}
.Window.Filter .Sections .FilterLabel:last-of-type,
.Window.Filter .Sections .FilterValue:last-of-type,
.Window.Filter .Sections .SingleLineFilter:last-of-type {
  padding-bottom: 5px;
}
.Window.Filter .Sections .FilterLabel.Collapsed,
.Window.Filter .Sections .FilterValue.Collapsed,
.Window.Filter .Sections .SingleLineFilter.Collapsed {
  display: none;
}
.Window.Filter .Sections .FilterLabel {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.Window.Filter .Sections .FilterValue {
  min-width: 150px;
  max-width: 300px;
  display: flex;
  gap: 5px;
}
.Window.Filter .Sections .FilterValue .ComparePulldown + .select2 {
  width: 75px !important;
}
.Window.Filter .Sections .FilterValue .LongTextPreview {
  width: 100% !important;
}
.Window.Filter .Sections .FilterValue .HasErrors {
  background-color: #ef8372 !important;
}
.Window.Filter .Sections label:not(.CustomFileUpload) {
  margin-left: 5px;
}
.Window.Filter .Sections button {
  color: #0b335c;
  border-radius: 2px;
  background-color: rgba(170, 181, 200, 0.2);
  cursor: pointer;
  border: 1px solid rgba(186, 186, 186, 0.6);
  line-height: 13px;
  padding: 6px;
  min-width: 28px;
  height: 28px;
}
.Window.Filter .Sections select,
.Window.Filter .Sections input[type=text] {
  height: 28px;
}
.Window.Filter .Sections select,
.Window.Filter .Sections .select2,
.Window.Filter .Sections input[type=text],
.Window.Filter .Sections .AttributePickListField,
.Window.Filter .Sections .PickListField,
.Window.Filter .Sections .EntityField {
  width: 100%;
}
.Window.Filter .Sections fieldset {
  width: 100%;
  padding: 5px;
  border: 1px solid rgba(186, 186, 186, 0.6);
  border-radius: 2px;
}
.Window.Filter .Buttons {
  border-top: solid rgba(186, 186, 186, 0.6) 1px;
}
