html {
  box-sizing: border-box;
  overflow: -moz-scrollbars-vertical;
  overflow-y: scroll;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  margin: 0;
  background: #fafafa;
}

.wxid-toolbar {
  display: grid;
  grid-template-columns: minmax(168px, 200px) minmax(220px, 1fr) minmax(132px, auto);
  align-items: center;
  gap: 14px;
  width: calc(100% - 40px);
  max-width: 1420px;
  margin: 0 auto 24px;
  padding: 10px 20px 10px 10px;
  border-top: 1px solid rgba(59, 65, 81, 0.12);
  border-right: 0;
  border-bottom: 1px solid rgba(59, 65, 81, 0.3);
  border-left: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #3b4151;
  font-family: "Open Sans", sans-serif;
}

.wxid-toolbar__meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 168px;
}

.wxid-toolbar__label {
  font-size: 12px;
  font-weight: 700;
  font-family: "Titillium Web", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #3b4151;
}

.wxid-toolbar__hint {
  font-size: 12px;
  color: #6b7280;
}

.wxid-toolbar__field {
  flex: 1;
  min-width: 0;
}

.wxid-toolbar__field--auth {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 8px;
}

.wxid-toolbar__input,
.wxid-toolbar__select {
  width: 100%;
  height: 36px;
  margin: 0;
  padding: 0 12px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  background: #fff;
  font-family: "Source Code Pro", monospace;
  font-size: 13px;
  font-weight: 600;
  color: #3b4151;
}

.wxid-toolbar__select {
  appearance: auto;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}

.wxid-toolbar__input:focus,
.wxid-toolbar__select:focus {
  border-color: #61affe;
  outline: none;
  box-shadow: 0 0 0 1px rgba(97, 175, 254, 0.2);
}

.wxid-toolbar__input::placeholder {
  color: #9ca3af;
}

.wxid-toolbar__status {
  min-width: 132px;
  font-size: 12px;
  text-align: right;
  color: #6b7280;
  white-space: nowrap;
}

.swagger-ui .information-container + .wxid-toolbar {
  margin-top: 6px;
}

@media (max-width: 900px) {
  .wxid-toolbar {
    grid-template-columns: 1fr;
    width: calc(100% - 40px);
    max-width: none;
    padding: 12px 0;
    border-right: 0;
    border-left: 0;
  }

  .wxid-toolbar__meta,
  .wxid-toolbar__field,
  .wxid-toolbar__status {
    min-width: 0;
    width: 100%;
  }

  .wxid-toolbar__status {
    white-space: normal;
    text-align: left;
  }

  .wxid-toolbar__field--auth {
    grid-template-columns: 1fr;
  }
}
