*,
*:before,
*:after {
  box-sizing: inherit;
}
html {
  height: 100%;
  box-sizing: border-box;
  font-size: 16px;
  padding: 0;
  margin: 0;
  font-family: Roboto;
}
body {
  height: 100%;
  padding: 20px;
  margin: 0;
  background: #ecf0f1;
  display: flex;
  align-items: stretch;
}
a {
  color: inherit;
  text-decoration: inherit;
}
table {
  border-spacing: 0;
  display: block;
  overflow-x: auto;
  text-align: left;
  width: 100%;
}
td,
th {
  border-bottom: 0.1rem solid #e1e1e1;
  padding: 0.5rem 1rem;
}
.logo {
  width: 100%;
}
.container {
  width: 100%;
  max-width: 1084px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.sidebar {
  background: #000000;
  padding: 20px;
  flex: 0 0 auto;
  color: #bdc3c7;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 230px;
}
.sidebar hr {
  opacity: 0.3;
}
.sidebar .logout {
  color: #bdc3c7;
  font-weight: bold;
  text-decoration: none;
  margin-top: 5px;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.8em;
}
.sidebar .logout:hover {
  color: #ecf0f1;
}
.sidebar .title {
  font-weight: normal;
  margin: 10px auto 40px auto;
  text-decoration: none;
  color: #bdc3c7;
}
.container > .wrapper {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  border: 1px solid #bdc3c7;
}
.wrapper > .content {
  background: #ffffff;
  overflow-y: scroll;
  flex: 1 1 auto;
  padding: 20px;
}
.wrapper > .header {
  padding: 10px 20px;
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  background: #ecf0f1;
  border-bottom: 1px solid #bdc3c7;
}
.field {
  padding: 10px 0;
  margin-bottom: 10px;
  border-radius: 3px;
  text-align: center;
  width: 100%;
  font-size: 16px;
  transition: border 0.2s, background-color 0.2s;
  background-color: #ecf0f1;
  border: 1px solid #bdc3c7;
}
.button {
  display: block;
  width: 100%;
  line-height: 25px;
  padding: 12px 0;
  border: 1px solid #bdc3c7;
  margin-top: 10px;
  text-transform: uppercase;
}
.menu a {
  color: #bdc3c7;
  /*font-weight: bold;*/
  margin-top: 5px;
  font-size: 1em;
  padding: 10px 10px;
  background: rgba(255, 255, 255, 0.05);
  display: block;
  text-decoration: none;
  font-weight: 500;
}
.menu a:hover {
  background: rgba(255, 255, 255, 0.2);
}
.menu a.active {
  color: #ecf0f1;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 700;
}
.is-boxed {
  align-items: center;
}
.is-boxed .container {
  max-width: 450px;
  flex-grow: 0;
  overflow: hidden;
}
.border-b {
  border-bottom: 1px solid #eee;
}

.well {
  background: #eee;
  padding: 0.5rem;
  border: 1px solid #ccc;
}

.text-sm {
  font-size: small;
}
.text-xs {
  font-size: x-small;
}
.text-muted {
  color: #999;
}
.text-right {
  text-align: right;
}

.flex {
  display: flex;
}

.gap-1 {
  gap: 4px;
}

.gap-2 {
  gap: 8px;
}

.flex-grow {
  flex: 1;
}

.badge {
  --badge-bg: #bdc3c7;
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1;
  background-color: var(--badge-bg);
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
}

.badge-warning {
  --badge-bg: #e67e22;
}
.badge-danger {
  --badge-bg: #c0392b;
}
.badge-success {
  --badge-bg: #16a085;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}

.swagger-ui select {
  font-weight: 500 !important;
  padding: 10px 40px 11px 10px !important;
}

.swagger-ui .servers {
  margin-top: 10px !important;
}

.swagger-ui .servers-title {
  font-size: 15px !important;
}
.swagger-ui .model-title {
  font-size: 14px !important;
}

.swagger-ui .model {
  margin: 20px 20px !important;
}

.swagger-ui table.model tr.property-row td {
  padding-bottom: 5px !important;
}

.swagger-ui,
.swagger-ui select,
.swagger-ui .btn,
.swagger-ui .opblock-tag,
.swagger-ui button,
.swagger-ui input,
.swagger-ui optgroup,
.swagger-ui select,
.swagger-ui textarea,
.swagger-ui .opblock .opblock-summary-method,
.swagger-ui .opblock .opblock-summary-operation-id,
.swagger-ui .opblock .opblock-summary-path,
.swagger-ui .opblock .opblock-summary-path__deprecated,
.swagger-ui .opblock .opblock-summary-description,
.swagger-ui .model-box-control,
.swagger-ui .models-control,
.swagger-ui .opblock-summary-control,
.swagger-ui .model-title,
.swagger-ui .model {
  font-family: Roboto !important;
}
