/* BizCheck Header Styles */
.bizcheck-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  padding: 20px 40px;
  color: #212126;
  background-color: #ffffff;
  box-shadow: 0 8px 8px 0 rgb(0 0 0 / 5%);
}
.bizcheck-header-inner {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}
.bizcheck-logo {
  max-width: 280px;
}
.bizcheck-logo > img {
  width: 100%;
}
.bizcheck-header-nav {
  display: flex;
  flex-shrink: 0;
  gap: 8px;
  justify-content: flex-end;
  font-size: 16px;
  font-weight: 700;
}
.bizcheck-header-nav-login {
  display: none;
  align-items: center;
  justify-content: center;
}
.bizcheck-header-nav-login::after {
  display: block;
  width: 4px;
  height: 40px;
  margin: 0 16px 0 24px;
  content: "";
  background-color: #e5e5e5;
}
.bizcheck-header-nav-login > a {
  color: #212126;
}
.bizcheck-header .bizcheck-header-document-request,
.bizcheck-header .bizcheck-header-contact {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  padding: 12px 0;
  color: #ffffff;
  border-radius: 200px;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}
.bizcheck-header-document-request {
  background-color: #e26319;
  border: 2px solid #e26319;
}
.bizcheck-header-document-request:hover {
  color: #e26319;
  text-decoration: none;
  background-color: #ffffff;
}
.bizcheck-header-contact {
  background-color: #198bd2;
  border: 2px solid #198bd2;
}
.bizcheck-header-contact:hover {
  color: #198bd2;
  text-decoration: none;
  background-color: #ffffff;
}
.bizcheck-header-wrap-tel {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-end;
  margin-left: 16px;
}
.bizcheck-header .bizcheck-header-tel {
  font-size: 24px;
  color: #212126;
}
.bizcheck-header-phone-number {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
.bizcheck-header-phone-number:hover {
  text-decoration: none;
}
.bizcheck-header-phone-icon {
  width: 24px;
  height: 24px;
}
.bizcheck-header-hours {
  font-size: 12px;
  font-weight: 400;
}

@media screen and (width <= 960px) {
  .bizcheck-header {
    padding: 16px 24px;
  }
  .bizcheck-header-inner {
    gap: 12px;
  }
  .bizcheck-logo {
    max-width: 200px;
  }
  .bizcheck-header-nav {
    gap: 4px;
    font-size: 14px;
  }
  .bizcheck-header-nav-login::after {
    width: 2px;
    height: 32px;
    margin: 0 12px 0 16px;
  }
  .bizcheck-header .bizcheck-header-document-request,
  .bizcheck-header .bizcheck-header-contact {
    width: 160px;
    padding: 10px 0;
    font-size: 14px;
  }
  .bizcheck-header-wrap-tel {
    display: none;
  }
}
@media screen and (width <= 670px) {
  .bizcheck-header-nav-item:nth-child(n + 2) {
    display: none;
  }
  .bizcheck-header-nav-login::after {
    display: none;
  }
  .bizcheck-header-nav-login > a {
    padding-left: 0;
    font-weight: 400;
  }
  .bizcheck-logo > img {
    width: 164px;
  }
  .bizcheck-header {
    padding: 20px 20px 18px;
  }
}
