$zIndexHeader: 1000;

:local {
  .default {
    z-index: $zIndexHeader;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    height: 56px;
    right: 0px;
    left: 0px;
    transition: left 0.5s;
    display: flex;
    align-items: center;
    padding: 0 20px 0 20px;
    @media print {
      display: none;
    }
  }

  .open {
    left: 225px;
  }

  .icon {
    cursor: pointer;
  }

  .fixed {
    position: fixed;
  }

  .static {
    position: absolute;
  }
}
