main {
  background: #f8f8f8;
}

#header {
  .header-top {
    background: var(--primary-color);
    height: 52px;

    .content-width {
      height: unset;
    }

    .hello-msg,
    .nav-tag {
      display: none;
    }

    a {
      font-weight: normal;
      text-decoration: none;
    }

    li {

      &.nav_list_hover,
      &:hover {
        background: var(--theme-color);
      }

      &::after {
        display: none;
      }
    }

    .header-top-right {
      font-size: 14px;
    }
  }

  .search-box {
    width: 480px;
    height: 40px;
  }

  .header-main {
    justify-content: space-between;
    min-height: 120px;
  }

}