.dialog-filter-body {
  display: flex;
  flex-flow: column;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: transparent;
}

.dialog-filter-keywords-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.dialog-filter-keywords {
  width: 100%;
  margin-left: 2px;
  margin-right: 2px;
  border: 1px solid #000;
  border-radius: 4px;
}

.dialog-filter-shops,.dialog-filter-categories {
  width: 100%;
  flex: 1;
  overflow: hidden;
  min-height: 0;
  display: flex;
  flex-flow: row;
}

.dialog-filter-shop-header,.dialog-filter-categories-header {
  width: 100%;
  display: flex;
  flex-flow: row;
	border-bottom: 2px solid #000000;
}

.dialog-filter-categories-heading {
  width: 50%;
  text-align: center;
  border-left: 1px solid black;
  border-right: 1px solid black;
}

.dialog-filter-shop-heading {
  width: 50%;
  text-align: center;
  border-left: 1px solid black;
  border-right: 1px solid black;
  background-color: #C2D4C8;
}

.dialog-filter-categories-list {
  width: 50%;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
}

.dialog-filter-shop-list {
  width: 50%;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: #C2D4C8;
}

.dialog-filter-categories-item {
  display: table;
  margin: 5 auto;
}

.dialog-filter-categories-item[contenteditable]:focus {
  outline: 0px solid transparent;
  background: #dddddd;
  padding: 6px;
}

.dialog-filter-shop-item {
  display: table;
  margin: 5 auto;
  background-color: #C2D4C8;
}

.dialog-filter-shop-item svg {
  min-width: 100px;
  max-width: 100px;
  max-height: 40px;
}

.dialog-filter-shop-item img {
  min-width: 100px;
  max-width: 100px;
  max-height: 40px;
}

.dialog-filter-shop-item .saved-image:hover {
  cursor: pointer;
}

.dialog-filter-categories-item:hover {
  cursor: pointer;
}

.tab:hover {
  cursor: pointer;
}

.tab {
  display: inline-block;
  background-color: grey;
  padding: 0.75rem;
  color: #fff;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.tab.selected {
  background-color: black;
}

.tab-header {
  width: 100%;
}

.tab-body {
  width: 100%;
  flex: 1;
  display: flex;
  flex-flow: column;
  min-height: 0;
  overflow: hidden;
}

.tab-panel {
  overflow: hidden;
  min-height: 0;
  display: flex;
  flex-flow: column;
  border-top: 2px solid black;
  width: 100%;
  height: 100%;
}

.tab-panel.hidden {
  display:none;
}
