@font-face {
  font-family: 'Monaspace-Argon';
  font-weight: 400;
  src: url('https://cdn.jsdelivr.net/gh/githubnext/monaspace@v1.200/fonts/webfonts/MonaspaceArgon-Regular.woff');
}

*, *:before, *:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;

  --color-white: #FFFFFF;
  --color-grey-15: #EBEBEB;
  --color-black: #000000;
  --nav-height: 55px;
}

body {
  padding: 0;
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
}

nav {
  color: var(--color-black);
  position: fixed;
  z-index: 5;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 1rem;
  width: 100%;
  height: var(--nav-height);
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-grey-15);
}

.nav-toggler {
  border: solid 1px var(--color-black);
  border-radius: 4px;
  width: 3rem;
  height: 2.5rem;
  cursor: pointer;
  background: transparent;
}

.nav-toggler-icon {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  vertical-align: middle;
  content: "";
  background: 50%/100% 100% no-repeat;
  background-image: none;
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='%232E2E32' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-collapse {
  display: none;
  flex-direction: column;
  flex: 1;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-grey-15);
  box-shadow: 0 50px 50px rgba(0, 0, 0, 0.15);
  margin: 0 -1rem;
  padding-bottom: 0.5rem;
}

.nav-container {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  gap: 1rem;
  align-items: center;
}

.nav-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  gap: 1rem;
  color: var(--color-black);
  white-space: nowrap;
  padding: 1rem 1rem;
  min-width: 90vw;
}

.nav-logo {
  margin-right: 1rem;
  min-width: auto;
  padding: 0.5rem 0.7rem;
}

.nav-logo img {
  max-height: 40px;
}

.nav-title {
  font-size: 1.5rem;
  margin-left: 10px;
}

.nav-title::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 30px;
  margin-top: 2px;
  margin-left: -11px;
  background-color: var(--color-black);
}

.api-content {
  margin-top: var(--nav-height);
}

.menu-content .operation-type {
  margin-top: 0.4rem;
}

@media (min-width: 769px) {
  .nav-toggler {
    display: none;
  }

  .nav-collapse {
    display: flex;
    flex-direction: row;
    border-bottom: none;
    box-shadow: none;
    margin: 0 auto;
    padding-bottom: 0;
  }

  .nav-container + .nav-container {
    justify-content: end;
  }

  .nav-link {
    min-width: auto;
    padding: 0.5rem 0.7rem;
  }

  .nav-logo {
    margin-right: 3.2rem;
  }
}
