/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* My Style */
.source {
    font-family: 'Source Code Pro', monospace; 
}
body {
    background: #f0f0f0;
    color: #333;
    font-family: 'Open Sans', sans-serif;
}
body > header {
    background-color: #fff;
    padding: 10px 40px;
    border-bottom: 1px solid #aaa;
}
body > header h1 {
    color: #288690;
    font-size: 24px;
    font-weight: 700;
    padding: 10px 0;
}
body > header h2 {
    color: #333;
    padding: 0 0 10px 0;
}
body > header .version {
    background-color: #333;
    font-size: 12px;
    color: #fff;
    padding: 5px 10px;
    border-radius: 10px;
    margin: 0 10px;
}
body > main {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 10px;
}
.group {
    margin: 30px auto 20px auto;
}
.group > header {
    border-bottom: 1px solid #aaa;
    font-weight: 700;
    font-size: 18px;
    padding: 5px 30px 10px 0;
    margin-bottom: 15px;
	-webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
	cursor: pointer;
	position: relative;
}
.group > header > .arrow {
	width: 20px;
    height: 20px;
    position: absolute;
    top: 5px;
    right: 5px;
}
.group > header > .arrow > svg {
	width: 100%;
    height: 100%;
	transition: transform 300ms;
}
.group.open > header > .arrow > svg {
    transform: rotateZ(180deg);
}
.group > main {
    display: none;
}
.group.open > main {
    display: block;
}
.endpoint {
    background-color: #fff;
    box-shadow: #aaa 0 0 3px;
    margin: 10px 0;
}
.endpoint > header {
    display: flex;
    flex-direction: row;
    cursor: pointer;
	position: relative;
	-webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.endpoint > header > .path {
    padding: 12px 0;
	overflow-x: auto;
}
.endpoint > header > .method {
    padding: 12px 0;
    min-width: 80px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.endpoint[data-method="get"] > header > .method {
    background-color: #3CAAB5;
}
.endpoint[data-method="post"] > header > .method {
    background-color: #78BC61;
}
.endpoint[data-method="put"] > header > .method {
    background-color: #E6C229;
}
.endpoint[data-method="delete"] > header > .method {
    background-color: #ED6A5A;
}
.endpoint > header > .path > .source {
    font-weight: 700;
	padding: 0 12px;
}
.endpoint > header > .path > .source > .parameter {
    background-color: #ddd;
    padding: 4px 5px;
    border-radius: 3px;
    font-size: 0.75em;
    color: #333;
}
.endpoint > header > .path > .description {
    font-size: 11px;
    vertical-align: bottom;
	display: block;
	padding: 5px 12px 0 12px;
}
.endpoint > header > .btn-copy {
    display: none;
	position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(#fcfcfc,#eee);
    padding: 5px 10px;
    margin: 5px;
    border: 1px solid #d5d5d5;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-appearance: none;
    cursor: pointer;
    color: #333;
    border-radius: 3px;
}
.endpoint > header:hover > .btn-copy {
    display: block;
}
.endpoint > main {
    display: none;
}
.endpoint.open > main {
    display: block;
    border-top: 1px solid #ddd;
}
.endpoint[data-method="get"] > main {
    border-top-color: #3CAAB5;
}
.endpoint[data-method="post"] > main {
    border-top-color: #78BC61;
}
.endpoint[data-method="put"] > main {
    border-top-color: #E6C229;
}
.endpoint[data-method="delete"] > main {
    border-top-color: #ED6A5A;
}
.endpoint > main > .options > header {
    padding: 15px 20px;
    font-weight: 700;
    background-color: #ddd;
}
.endpoint[data-method="get"] > main > .options > header {
    background-color: #3CAAB533;
}
.endpoint[data-method="post"] > main > .options > header {
    background-color: #78BC6133;
}
.endpoint[data-method="put"] > main > .options > header {
    background-color: #E6C22933;
}
.endpoint[data-method="delete"] > main > .options > header {
    background-color: #ED6A5A33;
}
.endpoint > main > .options > header > h1 {
    font-size: 14px;
}
.endpoint > main > .options > main {
    padding: 20px 0;
    overflow-x: auto;
}
.endpoint > main > .options > main > .scroll {
    min-width: 550px;
    padding: 0 20px;
}
.endpoint > main > .options > main .empty {
    padding: 10px 0;
    font-size: 14px;
}
.endpoint > main > .options > main .h-entry,
.endpoint > main > .options > main .entry {
    display: flex;
    flex-direction: row;
}
.endpoint > main > .options > main .h-entry > div:nth-child(1),
.endpoint > main > .options > main .entry > div:nth-child(1) {
    width: 200px;
}
.endpoint > main > .options > main .h-entry > div:nth-child(2),
.endpoint > main > .options > main .entry > div:nth-child(2) {
    width: calc(100% - 200px);
}
.endpoint > main > .options > main .h-entry {
    border-bottom: 1px solid #ddd;
    font-size: 12px;
    font-weight: 700;
    padding: 10px 0;
}
.endpoint > main > .options > main .h-entry {
    border-bottom: 1px solid #ddd;
}
.endpoint > main > .options > main .h-entry,
.endpoint > main > .options > main .entry h5 {
    font-size: 12px;
    font-weight: 700;
    padding: 10px 0;
}
.endpoint > main > .options > main .entry {
    padding: 15px 0 0 0;
}
.endpoint > main > .options > main .entry .required {
    font-size: 10px;
    color: red;
    padding: 5px;
    vertical-align: top;
}
.endpoint > main > .options > main .entry h2 {
    font-size: 14px;
    font-weight: 700;
    padding: 5px 0;
}
.endpoint > main > .options > main .entry h3 {
    font-size: 12px;
    padding: 5px 0;
}
.endpoint > main > .options > main .entry h4 {
    color: #888;
    font-size: 12px;
    font-style: italic;
    padding: 5px 0;
}

.endpoint > main > .options > main .entry .box {
    background-color: #41444e;
    color: #fff;
    margin: 0 0 15px 0;
    border-radius: 3px;
    box-sizing: border-box;
    font-size: 13px;
    overflow-x: auto;
    overflow-wrap:break-word;
    word-break:break-word;
    word-wrap:break-word;
}
.endpoint > main > .options > main .entry .box.msg {
    font-style: italic;
    padding: 10px;
}
.endpoint > main > .options > main .entry .box pre {
    padding: 10px;
}
.separator {
    padding: 0 10px;
    font-size: 20px;
}