/* custom.css */
#swagger-ui {
/*  display: flex;*/
}
.swagger-ui .info{
  margin: 0;
}
.sidebar.swagger-ui {
  width: 320px;
  background-color: #f4f4f4;
  padding: 8px;
/*  height: 100vh;*/
  overflow: auto;
}
.sidebar.swagger-ui ul {
  list-style-type: none;
  padding-left: 0;
}

.sidebar.swagger-ui a.tag-name {
  font-size: 1.1em;
  margin-top: 10px;
  display: block;
  text-decoration: none!important;
  text-decoration-line: none!important;
}

.swagger-content {
  flex-grow: 1;
  padding-left: 20px;
}
.sidebar.swagger-ui .opblock{
  margin-bottom: 3px;
}
.sidebar.swagger-ui .opblock-tag{
  padding: 5px;
}
.sidebar.swagger-ui .opblock .opblock-summary-method{
  padding: 3px 0;
}
.sidebar.swagger-ui .opblock .opblock-summary{
  padding: 1px;
}

.sidebar.swagger-ui .opblock .opblock-summary-description{
  margin-left: 3px;
}


/* Remove default bullets */
.sidebar.swagger-ui ul {
  list-style-type: none;
}

/* Style the caret/arrow */
.sidebar.swagger-ui .caret {
  cursor: pointer;
  user-select: none; /* Prevent text selection */
}

/* Create the caret/arrow with a unicode, and style it */
.sidebar.swagger-ui .caret::before {
  content: "\25B6";
  display: inline-block;
  margin-right: 6px;
  transition-duration: 200ms;
}

/* Rotate the caret/arrow icon when clicked on (using JavaScript) */
.sidebar.swagger-ui .caret-down::before {
  transform: rotate(90deg);
}

/* Hide the nested list */
.sidebar.swagger-ui .nested {
  display: none;
}

/* Show the nested list when the user clicks on the caret/arrow (with JavaScript) */
.sidebar.swagger-ui .active {
  display: block;
}


.sidebar.swagger-ui {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 260px;
  z-index: 100;
  transition: all 0.5s ease;
}
.sidebar.swagger-ui + .swagger-ui {
  position: relative;
  height: 100vh;
  left: 260px;
  width: calc(100% - 260px);
  transition: all 0.5s ease;
}


@media (min-width: 48em) {
  
}

