.header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 60px;
  background-color: white;
  color: black;
  z-index: 1;
  box-shadow:
    rgba(0, 0, 0, 0.12) 4px -1px 3px,
    rgba(0, 0, 0, 0.24) 0px 1px 2px;
  position: relative;
  z-index: 998;
  .header__left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;

    .header-logo {
      align-self: center;
    }
    #header-region-container {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 16px;
    }
  }

  .header__right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;

    #header-actions-region-container {
      display: flex;
      flex-direction: row;
      align-items: center;
    }
  }
}