body {
  font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
}

.body-container {
  height: 100%;
  overflow: hidden;
  background-color: transparent;
}

.body-container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.body-container>.sidebar {
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
}

.body-container>.mainbody {
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
}

.body-container>.sidebar,
.body-container>.mainbody {
  padding: 10px;
  overflow: auto;
}

.resize-handle--x {
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  position: relative;
  box-sizing: border-box;
  width: 3px;
  height: 100%;
  border-left-width: 1px;
  border-left-style: solid;
  border-left-color: black;
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: black;
  cursor: ew-resize;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.resize-handle--x:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 100%;
  height: 18px;
  width: 2px;
  margin-top: -9px;
  border-left-color: black;
  border-left-width: 1px;
  border-left-style: solid;
}

.resize-handle--x:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 100%;
  height: 18px;
  width: 2px;
  margin-top: -9px;
  border-right-color: black;
  border-right-width: 1px;
  border-right-style: solid;
}



a {
  color: #00B7FF;
}

.db-elements {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0.15rem 0px;
  min-width: 0;
}

.db-elements>span {
  flex-grow: 1;
}

.tree {
  margin: 0;
  padding: 0;
  border-left: dotted 1px #aaa;
  margin-left: 13px;
}

.db-elements.selectable {
  cursor: pointer;
}

.db-elements.selectable:hover {
  background-color: #eef2f7;
}

.expand-collapse-button {
  border: 0;
  margin: 0;
  background-color: transparent;
  width: 24px;
  height: 24px;
  position: relative;
  display: inline-block;
}