/**
* FONT
*/
@font-face {
  font-family: "Relative";
  src: url('fonts/Relative-Book-subset.ttf');
}

@font-face {
  font-family: "Relative";
  font-weight: bold;
  src: url('fonts/Relative-Bold.otf');
}

html {
	box-sizing: border-box;
	overflow: -moz-scrollbars-vertical;
	overflow-y: scroll;
}

body {
  font-family: "Relative", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.swagger-ui {
  font-family: "Relative", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.swagger-ui .info .title {
  font-family: "Relative", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.swagger-ui .info li, .swagger-ui .info p, .swagger-ui .info table {
  font-family: "Relative", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.swagger-ui .info a {
  font-family: "Relative", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;	
}

.swagger-ui .opblock-tag {
  font-family: "Relative", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;	
}

.swagger-ui .opblock .opblock-summary-method {
  font-family: "Relative", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;	
}

.swagger-ui .opblock .opblock-section-header h4 {
  font-family: "Relative", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;	
}

.swagger-ui .btn {
  font-family: "Relative", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;	
}

.swagger-ui .opblock-description-wrapper p {
  font-family: "Relative", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;	
}

.swagger-ui .tab li {
  font-family: "Relative", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;	
}

.swagger-ui .response-col_status {
  font-family: "Relative", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;	
}

.swagger-ui .response-col_links {
  font-family: "Relative", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;	
} 

.swagger-ui table thead tr td, .swagger-ui table thead tr th {
  font-family: "Relative", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;	
}

.swagger-ui .model-title {
  font-family: "Relative", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;	
}

.swagger-ui section.models h4 span {
  font-family: "Relative", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;	
}

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

body {
	margin: 0;
	background: #f3f3f4;
}

/* Style the header with a grey background and some padding */
.header {
  overflow: hidden;
  background-color: #000000;
  padding: 5px;
}

/* Style the header links */
.header a {
  float: left;
  color: #00AEC7;
  text-align: center;
  padding: 10px;
  text-decoration: none;
  font-size: 18px; 
  line-height: 25px;
  border-radius: 4px;
}

/* Style the header links */
.header img {
	height: 40px;
}

/* Style the logo link (notice that we set the same value of line-height and font-size to prevent the header to increase when the font gets bigger */
.header a.logo {
  font-size: 25px;
  font-weight: bold;
}

.swagger-ui .info a {
	color: #00AEC7;
}

/* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */ 
@media screen and (max-width: 500px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
  }
}