.header-wrapper {
  height: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--theme-color);
  color: var(--theme-text-color);
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 999;
  border-bottom: 1px solid var(--palette-gray-80);
  .header-action {
    display: flex;
    align-items: center;
  }
  a {
    text-decoration: none !important;
    &:hover {
      color: var(--theme-text-color);
    }
  }

  .logo-title {
    font-weight: 600;
  }
  .header-box__btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 14px;
    width: 48px;
    height: 47px;
    background-color: var(--theme-color);
    color: var(--theme-text-color);
    border: none;
    &:visited {
      color: var(--theme-text-color);
    }

    &:hover {
      background-color: var(--color-secondary);
    }

    &:active {
      background-color: var(--color-secondary);
    }

    &:focus-within {
      background-color: var(--color-secondary);
    }

    &.disabled {
      color: var(--palette-gray-50) !important;
      background-color: var(--palette-gray-30) !important;
    }
  }
  .header-box {
    display: flex;
    align-items: center;
    .header-box__logo {
      display: flex;
      .header-logo {
        padding: 12px 16px;
        .header-logo__link {
          display: flex;
          flex-direction: row;
          align-items: flex-start;
          padding: 0px 16px 0px 0px;
          gap: 8px;
          height: 24px;
          background: var(--palette-gray-100);
          box-shadow: inset -2px 0px 0px #393939;
          .header-logo__icon {
            margin-right: 9.5px;
          }
        }
      }
    }
  }
  .header-box__btn-toggle {
    display: none;
  }
  .switcher-box__btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 14px;
    width: 48px;
    height: 47px;
    background-color: var(--theme-color);
    color: var(--color-white);
    border: none;
    &.header-box__btn-noti,
    &.header-box__btn-profile {
      height: 48px;
      border-bottom: 1px solid var(--theme-color);
      outline: none;
      border-left: 1px solid var(--palette-gray-80);
      border-right: 1px solid var(--palette-gray-80);
    }
    &:visited {
      color: var(--color-white);
    }

    &:hover {
      background-color: var(--color-secondary);
    }

    &:active,
    &:focus,
    &:focus-visible {
      outline: none;
      border-left: 1px solid var(--palette-gray-80);
      border-right: 1px solid var(--palette-gray-80);
    }

    &.disabled {
      color: var(--palette-gray-50) !important;
      background-color: var(--palette-gray-30) !important;
    }
    &.switcher-box__btn-close {
      border-left: 1px solid var(--palette-gray-80);
    }
  }
  .header-navbar {
    position: static;
  }
  @media (max-width: 992px) {
    .header-box__btn-toggle {
      display: flex;
    }
    .header-navbar {
      position: absolute;
      top: 48px;
      width: 100%;
    }
  }
}
