/* Resetting All Fonts */
#doc_body * {
	font-family: 'Montserrat', sans-serif;
}

/* Paragraph Style */
#doc_body p,
#doc_body dt,
#doc_body dd,
#doc_body li {
	line-height: 16.5pt;
}

/* Hyperlink Styles */
#doc_body a,
#doc_body a:link,
#doc_body a:active,
#doc_body a:hover,
#doc_body a:visited {
	color: #4183c4;
	text-decoration: none;
}

/* Heading Style */
#doc_body .header.title {
    font-size: 20pt;
    font-weight:  bold;
    line-height: 1.3;
    padding: 50px;
}

#doc_body h1,
#doc_body .h1 {
	font-size: 16pt!important;
}

#doc_body h2,
#doc_body .h2 {
	font-size: 14pt!important;
}

#doc_body h3,
#doc_body .h3 {
	font-size: 12pt!important;
}

#doc_body h4,
#doc_body h5,
#doc_body .h4,
#doc_body .h5 {
	font-size: 11pt!important;
}

#doc_body h5,
#doc_body .h5 {
	font-style: italic;
}

/* Heading Numbering */
body { counter-reset: h1; }
h1 { counter-reset: h2; }
h2 { counter-reset: h3; }
h3 { counter-reset: h4; }
h4 { counter-reset: h5; }
h5 { counter-reset: h6; }
h1:not(.no-num):before {
    content: counter(h1,decimal) "\002003";
    counter-increment: h1;
}
h2:not(.no-num):before {
    content: counter(h1,decimal) "." counter(h2,decimal)"\002003";
    counter-increment: h2;
}
h3:not(.no-num):before {
    content: counter(h1,decimal) "."counter(h2,decimal) "." counter(h3,decimal)"\002003";
    counter-increment: h3;
}
h4:not(.no-num):before {
    content: counter(h1,decimal) "."counter(h2,decimal) "." counter(h3,decimal) "." counter(h4,decimal)"\002003";
    counter-increment: h4;
}
h5:not(.no-num):before {
    content: counter(h1,decimal) "."counter(h2,decimal) "." counter(h3,decimal) "." counter(h4,decimal) "." counter(h5,decimal)"\002003";
    counter-increment: h5;
}
h6:not(.no-num):before {
    content: counter(h1,decimal) "."counter(h2,decimal) "." counter(h3,decimal) "." counter(h4,decimal) "." counter(h5,decimal) "." counter(h6,decimal)"\002003";
    counter-increment: h6;
}

/* List Style */
#doc_body ul {
    display: block;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
}

#doc_body ul li {
    list-style-type: disc;
}

/* Blockquote Style */
blockquote {
	font-style: italic;
	color: #696969;
	border-left: 5px solid #34cabb;
	padding-left: 10px;
	margin-left: 0;
	margin-top: 10px;
	margin-bottom: 10px;
}

blockquote b,
blockquote strong {
	font-weight: bold;
}

/* Definition List Style */
#doc_body dl dt {
	font-weight: bold;
	margin-top: 25px;
}

/* Figure Style */
#doc_body figure {
	page-break-before: avoid!important;
	page-break-inside: avoid!important;
}

#doc_body figure img {
    transition: width 1s;
}

#doc_body figure figcaption {
	font-weight: bold;
	margin-top: 15px;
}

/* pre, code */
pre {
	margin-top: 10px;
	margin-bottom: 10px;
	padding: 15px;
}

code {
	padding-left: 5px!important;
	padding-right: 5px!important;
}

pre code {
	padding-left: 0!important;
	font-family: Monospace!important;
}

pre code:not(span) {
	font-family: Monospace!important;
}

.token {
	font-family: Monospace!important;
}

pre,
code,
pre code {
	background: #f7f7f7;
	border-radius: 5px;
	white-space: pre-wrap;
	word-break: break-word;
}

dt code {
	font-weight: normal;
}

p code,
li code,
dt code,
dd code,
blockquote code {
	font-family: Monospace!important;
	font-weight: 100;
}

/* Syntax Highlight */
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
	color: slategray;
}

.token.punctuation {
	color: #999;
}

.namespace {
	/* opacity: .7; */
}

.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
	color: #905;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
	color: #690;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
	color: #a67f59;
}

.token.atrule,
.token.attr-value,
.token.keyword {
	color: #07a;
}

.token.function {
	color: #DD4A68;
}

.token.regex,
.token.important,
.token.variable {
	color: #e90;
}

.token.important,
.token.bold {
	font-weight: bold;
}

.token.italic {
	font-style: italic;
}

.token.entity {
    cursor: help;
}

/* Misc Styles */
.break-before {
	page-break-before: always;
}
.break-after {
	page-break-after: always;
}

/* WS URL Styles */
.GET {
	background-color: #4eb509!important;
}
.POST {
	background-color: #5e98cd!important;
}
.DELETE {
	background-color: #c0392b!important;
}
.PUT {
	background-color: #786b6d!important;
}
.PATCH {
	background-color: #fcba03!important;
}
.ws_api {
	border: 1px solid #ced4da;
	border-radius: 5px;
	background: #f7f7f7;
}
.ws_api table {
	border-spacing: 0px;
	margin: 0;
}
.ws_method {
	border-right: none;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	padding: 10px 15px;
	font-weight: bold;
	color: #fff;
}
.ws_url {
	padding-left: 1em;
	padding-right: 0.5em;
	word-break: break-word;
}
.badge {
	padding: 2px 5px;
	margin-left: 5px;
	font-weight: 100;
	font-size: 0.8em;
	border-width: 1px;
	border-style: solid;
	border-radius: 5px;
}


/* Tocify and Right Sidebar */
.ui.right.sidebar {
    width: auto;
}

.tocify-header {
	margin: 0 0 .5em;
    font-size: 1em;
}

.tocify-header>.tocify-item {
	border-top: 0.5px solid rgba(0,0,0,0.2);
	padding: 5px;
}

.tocify-header>.tocify-item a {
	color: rgba(0,0,0,0.95);
}

.tocify-subheader>.tocify-item a {
    color: rgba(0,0,0,.5);
}

.tocify-header>.tocify-item.active,
.tocify-subheader>.tocify-item.active {
	background: rgba(0,0,0,.03);
    color: rgba(0,0,0,.5);
}

.tocify-extend-page {
    height: 0px!important;
}