
/**
  UI.Layout CSS
*************************************/
.stretch {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Can be changed by hand ;)*/
  overflow: auto;
}

.ui-splitbar{
  display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;      /* TWEENER - IE 10 */
  display: -webkit-flex;     /* NEW - Chrome */
  display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-justify-content: center;
  justify-content: center;

  background-color: #ffffff;
  right: auto;
  position: absolute;
  z-index: 1010;
}

.ui-layout-row > .ui-splitbar{
  height: 8px; width: 100%;
  cursor: row-resize;
  text-align: center;
  justify-content: center;
  align-items: center;
    overflow-y: hidden;
}
.ui-layout-column > .ui-splitbar{
  width: 8px; height: 100%;
  cursor: col-resize;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.ui-layout-column > .ui-splitbar > a,
.ui-layout-row > .ui-splitbar > a {
  color: #fff;
  cursor: pointer;
  font-size: 9px;
    }

        .ui-layout-column > .ui-splitbar > a:nth-child(2) {
            margin-top: 0.35rem;
        }

        .ui-layout-row > .ui-splitbar > a:nth-child(2) {
            margin-left: 0.35rem;
}
/* Allow disabling of icons */
.no-toggle .ui-splitbar-icon {
    display: none;
}

@media only screen and (max-device-width: 480px) {
    .no-mobile-toggle .ui-splitbar-icon {
        display: none;
    }
}

@media print {
    .ui-splitbar {
        display: none;
    }

    .stretch {
        position: relative;
    }
        /* The last item can take up any amount of space. */
        .stretch.ui-layout-container:last-child {
            position: static;
            overflow: visible;
        }
}

/* Make sure hidden elements are in fact not rendered. */
.ui-layout-hidden {
    display: none;
}
