<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
	--THEME-BCK-COLOR: #ff7171;
	--THEME-COLOR: black;
	--NAV-COLOR: white;
	--LIGHT-GREY: #d8d8d8;
	--LIGHTER-GREY: #e9ecef;
	--THEME-LIGHT-BCK-COLOR: #ff252b;
	--THEME-DARK-BCK-COLOR: #b90005;
}

html,
body,
#root {
	min-height: 100vh;
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	-webkit-flex-direction: column;
	margin: 0;
	padding: 0;
}

body {
	background-color: white!important;
}

header
{
	position:absolute;
	top:0;
	width:100%;
}

footer {
	/*position: absolute;
	bottom: 0;
	width: 100%;*/
	padding: 1rem!important;
}

/*.container {
	max-width: 1020px!important;
}*/

a {
	color: var(--THEME-BCK-COLOR);
}
a:hover {
	color: var(--THEME-DARK-BCK-COLOR);
}
.app-header {
	background-color: var(--THEME-BCK-COLOR);
	border-bottom-color: var(--THEME-BCK-COLOR);
	color: var(--NAV-COLOR);
	height: auto;
	padding-top: 1rem;
	padding-bottom: 1rem;
	font-size: 16px;
}

.app-footer {
	background-color: white;
}

.app-header .nav-link {
	color: var(--NAV-COLOR);
	outline-style: none;
}

	.app-header .nav-link:hover {
		color: var(--NAV-COLOR)
	}

.nav-item {
	border-bottom: 2px solid var(--THEME-BCK-COLOR);
}

	.nav-item:hover {
		border-bottom: 2px solid white;
	}

.nav .nav-item {
	margin-left: 1rem;
}

.sidebar-menu {
	margin-top: .5rem;
	border-left: 2px solid white;
}

/*.sidebar-menu:hover {
	border-left: 2px solid rgb(230, 230, 230);
}*/


.sidebar-menu .list-group-item {
	background-color: inherit;
	padding: 0px;
	border:none;
}

.sidebar-menu a {
	margin: 0px;
	padding:.5rem;
	display: block;
	width: 100%;
	height: 100%;
	color: black;
	outline-style: none;
	text-decoration: none;
}

.sidebar-menu a:hover {
	background-color: rgb(250, 250, 250);
	border-left: 2px solid var(--THEME-LIGHT-BCK-COLOR);
}

pre {
	border: 1px solid rgb(240, 240, 240);
	line-height: 1.4em;
	padding: 10px;
	overflow: auto;
	border-radius: 3px;
	background-color: rgb(250, 250, 250);
	color: #393939;
	margin: 2em 0;
}

p code, td code {
	border-radius: 3px;
	border: 1px solid rgb(240, 240, 240);
	background-color: rgb(250, 250, 250);
	display: inline-block;
	padding-left: 3px;
	padding-right: 3px;
}

code{
	color:inherit;
}

.in-content-list {
	list-style-type: lower-latin;
	margin-left: 0;
	padding-left: 1rem;
}

.in-content-list a {
	text-decoration: none;
	outline-style: none;
	color: black;
}

.in-content-list a:hover {
	color: rgb(150, 150, 150);
	text-decoration: underline;
}

.parameters-table {
	width: 100%;
	overflow: auto;
	display: block;
	margin: 15px 0;
	border-spacing: 0;
	border-collapse: collapse;
}

.parameters-table thead {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	vertical-align: baseline;
}

.parameters-table tbody {
	vertical-align: middle;
	border-color: inherit;
}

.parameters-table tr {
	border-top: 1px solid #ccc;
	background-color: #fff;
	vertical-align: inherit;
}

.parameters-table th {
	border: 1px solid #ddd;
	padding: 6px 13px;
	text-align: center;
}

.parameters-table td {
	border: 1px solid #ddd;
	padding: 6px 13px;
}

.parameters-table tbody tr:hover {
	background-color: rgb(250, 250, 250);
}

.tab-content{
	border:none;
}

.tab-content .tab-pane{
	padding:0px;
}

.tab-content .tab-pane pre {
	margin-top: 0.25rem;
}

.nav-tabs {
	border: none;
}

.nav-tabs li{
	padding-left:.25rem;
}

.nav-tabs li a.active {
	display:none;
}

.nav-tabs li a {
	text-decoration:none;
}

table thead tr th:last-child{
	width:60%
}

.todo {
	background-color: yellow;
}

th.description{
	min-width: 400px;
}

.w-10{
	width: 10%;
}
.w-20 {
	width: 20%;
}
.w-40 {
	width: 40%;
}

.operation-title, .response-title {
	display: flex;
	align-items: center;
}

.operation-title .badge, .response-title .badge {
	margin-left: 1rem;
}</pre></body></html>