body {
  margin: 0;
  padding: 0;
}

.site-header-spacer {
  height: 60px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 60px;
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
}

.site-header-inner {
  max-width: 1080px;
  height: 60px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
}

.site-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin-right: 46px;
  text-decoration: none;
}

.site-logo img {
  display: block;
  width: auto;
  height: 30px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.site-nav a {
  color: #707070;
  text-decoration: none;
  font-size: 16px;
  line-height: 60px;
  font-weight: 400;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #000000;
}

.site-menu-toggle {
  display: none;
  width: 24px;
  height: 18px;
  margin-left: auto;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.site-menu-toggle span {
  display: block;
  height: 2px;
  margin-bottom: 6px;
  background: #707070;
}

.site-menu-toggle span:last-child {
  margin-bottom: 0;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 999;
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
}

.mobile-nav a {
  display: block;
  padding: 15px 30px;
  color: #555555;
  border-bottom: 1px solid #eeeeee;
  text-decoration: none;
  font-size: 15px;
}

.mobile-nav.is-open {
  display: block;
}

.tool-page {
  padding: 24px;
}

.tool-footer {
  margin-top: 28px;
  background: #282828;
  color: #8e8e8e;
}

.tool-footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 30px 15px;
  display: flex;
  justify-content: flex-start;
  font-size: 13px;
}

.tool-footer-menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.tool-footer a {
  color: #8e8e8e;
  text-decoration: none;
  margin-right: 28px;
}

.tool-footer a:hover {
  color: #ffffff;
}

.tool-footer-copyright {
  color: #8e8e8e;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .site-logo img {
    height: 16px;
  }

  .site-nav {
    display: none;
  }

  .site-menu-toggle {
    display: block;
  }

  .tool-page {
    padding: 18px 14px 24px;
  }

  .tool-footer-inner {
    display: block;
  }

  .tool-footer-menu {
    display: block;
  }

  .tool-footer a,
  .tool-footer-copyright {
    display: block;
    margin: 0;
    padding: 8px 0;
  }
}
