/*!
 * azui 0.0.10
 * https://github.com/elgs/azui#readme
 * @author Qian Chen
 * MIT License
 * Copyright (c) 2019 Qian Chen
 */
.azui {
  font-size: 13px;
  font-family: -apple-system, BlinkMacSystemFont, "San Francisco", "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif; }
  .azui *,
  .azui *::before,
  .azui *::after {
    box-sizing: border-box; }

.azui.azResizable > .handle {
  background-color: #E8E8E8;
  box-sizing: border-box;
  position: absolute !important;
  display: flex;
  justify-content: center;
  align-items: center; }
  .azui.azResizable > .handle.active {
    background-color: #d4d4d4; }
  .azui.azResizable > .handle > div.collapseButton {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer; }
    .azui.azResizable > .handle > div.collapseButton.active svg {
      fill: #A4D666 !important; }
    .azui.azResizable > .handle > div.collapseButton.collapseButtonH {
      width: 30px; }
      .azui.azResizable > .handle > div.collapseButton.collapseButtonH > span.collapseIcon {
        height: 4px;
        display: flex;
        justify-content: center;
        align-items: center; }
        .azui.azResizable > .handle > div.collapseButton.collapseButtonH > span.collapseIcon > svg {
          fill: #E8E8E8;
          width: 8px;
          height: 4px;
          display: block; }
    .azui.azResizable > .handle > div.collapseButton.collapseButtonV {
      height: 30px; }
      .azui.azResizable > .handle > div.collapseButton.collapseButtonV > span.collapseIcon {
        width: 4px;
        display: flex;
        justify-content: center;
        align-items: center; }
        .azui.azResizable > .handle > div.collapseButton.collapseButtonV > span.collapseIcon > svg {
          fill: #E8E8E8;
          width: 4px;
          height: 8px;
          display: block; }

.azui {
  font-size: 13px;
  font-family: -apple-system, BlinkMacSystemFont, "San Francisco", "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif; }
  .azui *,
  .azui *::before,
  .azui *::after {
    box-sizing: border-box; }

.azui.azLayout {
  display: grid;
  grid-template-areas: "n n n" "w c e" "s s s";
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto 1fr auto;
  position: relative; }
  .azui.azLayout > .azLayoutArea {
    overflow: hidden;
    box-sizing: border-box; }
    .azui.azLayout > .azLayoutArea > div {
      width: 100%;
      height: 100%; }
    .azui.azLayout > .azLayoutArea.azLayoutAreaNorth {
      grid-area: n;
      padding-bottom: 4px; }
    .azui.azLayout > .azLayoutArea.azLayoutAreaEast {
      grid-area: e;
      padding-left: 4px; }
    .azui.azLayout > .azLayoutArea.azLayoutAreaSouth {
      grid-area: s;
      padding-top: 4px; }
    .azui.azLayout > .azLayoutArea.azLayoutAreaWest {
      grid-area: w;
      padding-right: 4px; }
    .azui.azLayout > .azLayoutArea.azLayoutAreaCenter {
      position: relative;
      grid-area: c; }


/*# sourceMappingURL=azui.layout.0.0.10.css.map*/