/* PiXYZ Documentations CSS 2024 */
@import url("https://fonts.googleapis.com/css?family=Lato:300,300i,400,700,900");

:root {
	--jack_black: rgb(51, 51, 51);
	--jack_white: #fafafa;
}

html,
body
{
	padding: 0;
	margin: 0;
	font-family: "Lato", sans-serif
}

a,
a:visited
{
	color: rgb(0, 102, 255);
}

a:hover
{
	color: rgb(0, 102, 255);
	text-decoration: underline;
}

#doc-header-nav {
    position: fixed;
    padding: 0;
	background-color: var(--jack_black);
    top: 0;
    width: 100%;
    height: 60px;
    z-index: 1664;
    display: flex;
}

#doc-header-nav img {
    height: 60px;
    display: inline-block;
}

.doc-header-title {
    font-size: 24px;
    color: #FFF;
    text-align: center;
    padding-left: 1em;
    padding-top: .75em;
	margin-top: 0;
}

.doc-internal-preview {
	margin: auto 2em auto auto;
	color: #FFF;
	border-radius: 1em;
	background-color: #e39a3a;
	padding: .5em 1em;
}

.doc-index-content {
    margin-top: 60px;
    padding: 1em;
}

.doc-soft-item {
	display: flex;
	flex-direction: row;
	margin: 1rem 0;
	padding: 1rem;
	border: 1px solid #e0e0e0;
	border-radius: 5px;
	background-color: var(--jack_white);
}

.doc-soft-illus {
	display: flex;
}

.doc-soft-illus img {
	width: 256px;
	height: 168px;
	object-fit: cover;
}

.doc-soft-info {
	display: flex;
	flex-direction: column;
	padding-left: 1em;
}

.doc-soft-info h2 {
	margin: .5em 0;
}

.doc-soft-info ul {
	margin: .5em 0;
	padding-left: 1.5em;
}

.doc-soft-latest {
	color: #777;
	font-style: italic;
}

.doc-button,
.doc-button:visited {
	display: inline-block;
	padding: 0.5em 1em;
	background-color: var(--jack_white);
	color: var(--jack_black);
	border: 2px solid var(--jack_black);
	border-radius: 2em;
	text-decoration: none !important;
}

.doc-button:hover {
	background-color: var(--jack_black);
	color: var(--jack_white);
	text-decoration: none !important;
}

/* file downloader changelog chattoyance */

.file_download {
	padding: 1em;
}

.file_download h1 {
	font-size: 1.5em;
	margin-top: 1.5em;
	margin-bottom: .5em;
}

.file_download h2 {
	font-size: 1.25em;
	margin-top: 1.25em;
	margin-bottom: .35em;
}

.file_download h3 {
	font-size: 1.1em;
	margin-top: 1.1em;
	margin-bottom: .3em;
}

.file_download .recaptcha {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 10px;
}