﻿/* line 9, angular-flex-splitter.scss */
.flexbox-active {
  -moz-user-select: -moz-none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 13, angular-flex-splitter.scss */
.flexbox-content {
  width: 100%;
  height: 100%;
  position: absolute;
}
/* line 21, angular-flex-splitter.scss */
.flexbox-content > div {
  overflow: auto;
}

/* line 27, angular-flex-splitter.scss */
.flexbox {
  display: -webkit-box;
  display: -moz-box;
  display: -o-flexbox;
  display: -webkit-flex;
  display: flex;
}
/* line 28, angular-flex-splitter.scss */
.flexbox > * {
  -webkit-transition: width 0.5s, height 0.5s;
  -moz-transition: width 0.5s, height 0.5s;
  -o-transition: width 0.5s, height 0.5s;
  transition: width 0.5s, height 0.5s;
}
/* line 33, angular-flex-splitter.scss */
.flexbox.column {
  -webkit-box-orient: vertica;
  -moz-box-orient: vertica;
  -ms-box-orient: vertica;
  box-orient: vertica;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
/* line 37, angular-flex-splitter.scss */
.flexbox .ghost {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 99;
}
/* line 42, angular-flex-splitter.scss */
.flexbox .ghost.active {
  background-color: #efdeef;
}
/* line 46, angular-flex-splitter.scss */
.flexbox [splitter] {
  box-shadow: #bcbcbc 0px 0px 2px 1px inset;
  position: relative;
  overflow: initial;
}
/* line 53, angular-flex-splitter.scss */
.flexbox [splitter=left], .flexbox [splitter=right] {
  width: 5px;
  height: auto;
  background: #efefef;
  cursor: col-resize;
}
/* line 60, angular-flex-splitter.scss */
.flexbox [splitter=up], .flexbox [splitter=down] {
  width: auto;
  height: 5px;
  background: #efefef;
  cursor: row-resize;
}
/* line 67, angular-flex-splitter.scss */
.flexbox [splitter][fixed=fixed] {
  cursor: default;
}
/* line 71, angular-flex-splitter.scss */
.flexbox .flex {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  position: relative;
}
