:root {
	--width: 800px;
	--main-theme-color: #f07600;
	--main-color: #515151;
	--white-color: #fff;
	--whitesmoke-color: whitesmoke;
	--a-color: #1850c1;
	--dark-color-a: rgba(0, 0, 0, 0.05);
	--dark-color-an: #f5f6f5;
	--dark-color-b: rgba(0, 0, 0, 0.1);
	--dark-color-c: rgba(0, 0, 0, 0.2);
	--dark-color-d: rgba(0, 0, 0, 0.4);
	--dark-color-e: rgba(0, 0, 0, 0.6);
	--dark-color-f: rgba(0, 0, 0, 0.8);
	--dark-color-z: rgba(0, 0, 0, 0.01);
	--header-bg: var(--white-color);
	--header-bg-darker: var(--dark-color-an);
	--github-bg: var(--dark-color-an);
	--footer-bg: #424141;
	--footer-bg-darker: #232323;
	--loader: #f1efe3;
	--highlight-bg: #F7EEC3;
	--product: rgba(239, 237, 224, 0.5)
}

html {
	scroll-behavior: smooth;
	max-width: 2000px;
	margin: 0 auto;
	background: var(--dark-color-z)
}

body {
	font-family: sans-serif, arial, 'Source Sans Pro';
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow: auto;
	color: var(--main-color);
	background-color: var(--white-color)
}

body,
table {
	font-size: 14px;
	line-height: 16px
}

button {
	font-size: 90%
}

a {
	color: var(--a-color);
	text-decoration: none
}

h2 {
	font-family: Oswald, sans-serif;
	text-align: center;
	padding: 5px 0
}

h2 span {
	border-bottom: 1px solid var(--main-color);
	line-height: 37px
}

h3 {
	font-size: 100%;
	margin: 0
}

h4 {
	padding: 10px 0
}

abbr {
	cursor: help
}

hr {
	border: none;
	border-top: dashed 1px var(--dark-color-c)
}

@media screen and (max-width:500px) {
	.hideif {
		display: none!important
	}
}

.content {
	max-width: var(--width);
	margin: 0 auto;
	padding: 0 10px
}

.target:target {
	background: var(--highlight-bg)
}

.ellipsis {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.pointer {
	cursor: pointer
}

.firefox24 {
	background-position: -24px 0
}

.edge24 {
	background-position: -48px 0
}

.opera24 {
	background-position: 0 0
}

.chrome24 {
	background-position: -24px -24px
}

.safari24 {
	background-position: -48px -48px
}

.android24 {
	background-position: 0 -24px
}

.android24,
.chrome24,
.edge24,
.firefox24,
.opera24,
.safari24 {
	background-repeat: no-repeat;
	width: 24px;
	height: 24px;
	background-size: 72px
}

.android24:hover,
.chrome24:hover,
.edge24:hover,
.firefox24:hover,
.opera24:hover,
.safari24:hover {
	background-color: var(--header-bg-darker)
}

.invisible {
	display: none!important
}

#more div {
	text-align: justify
}

#more ul {
	margin: -5px 0
}

#more li {
	margin: 0;
	padding: 0
}

@keyframes square-spin {
	25% {
		transform: perspective(100px) rotateX(180deg) rotateY(0)
	}
	50% {
		transform: perspective(100px) rotateX(180deg) rotateY(180deg)
	}
	75% {
		transform: perspective(100px) rotateX(0) rotateY(180deg)
	}
	100% {
		transform: perspective(100px) rotateX(0) rotateY(0)
	}
}

.failed div[loader],
.loading div[loader] {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100px
}

.failed div[loader] {
	background-size: 32px;
	background-position: center center;
	background-repeat: no-repeat
}

.loading div[loader]>div {
	animation-fill-mode: both;
	width: 32px;
	height: 32px;
	background-color: var(--loader);
	animation: square-spin 3s 0s cubic-bezier(.09, .57, .49, .9) infinite
}

.bubble {
	position: relative;
	outline: 0
}

.bubble [type=popup] {
	position: absolute;
	max-width: 400px;
	min-height: 50px;
	left: 0;
	transform: translateX(-50%);
	margin-top: 6px;
	padding: 10px;
	z-index: 3;
	background-color: var(--white-color);
	box-shadow: 0 0 1px 0 var(--dark-color-c)
}

.bubble input[type=radio] {
	display: none
}

@media screen and (max-width:700px) {
	.bubble {
		position: unset
	}
	.bubble [type=popup] {
		width: calc(100vw - 40px);
		left: 50%!important
	}
}

.bubble [type=arrow] {
	content: "";
	position: absolute;
	left: calc(50% - 5px);
	border-style: solid;
	border-width: 0 6px 4px;
	border-radius: 50px;
	border-color: var(--dark-color-c) transparent;
	display: block;
	width: 0;
	z-index: 21;
	margin-top: 2px
}

.bubble [type=box] {
	position: relative
}

.bubble input[type=radio]:not(:checked)~[type=popup] {
	display: none
}

.bubble input[type=radio]:not(:checked)~div [type=arrow] {
	display: none
}

[hbox] {
	display: flex
}

[vbox] {
	display: flex;
	flex-direction: column
}

[align=start] {
	align-items: flex-start
}

[pack=start] {
	justify-content: flex-start
}

[align=center] {
	align-items: center
}

[pack=center] {
	justify-content: center
}

[align=end] {
	align-items: flex-end
}

[pack=end] {
	justify-content: flex-end
}

[flex="1"] {
	flex: 1
}

[flex="2"] {
	flex: 2
}

[flex="3"] {
	flex: 3
}

#header-right-container {
	display: none
}

/*header {
	height: 210px!important;
	background-image: url(header.png);
	background-repeat: no-repeat;
}*/

header .icon {
	display: none
}

header div[data-id=content] {
	/*margin-left: 30px!important;
	margin-right: 30px!important;
	width: calc(100% - 60px);*/
	line-height: initial
}

header span[data-id=name] {
	font-size: 300%!important;
	text-overflow: ellipsis;
	overflow-x: hidden;
	/*width: 100%*/
	
	margin: auto;
    /* width: 50%; */
    border: 3px solid white;
    padding: 10px;
    background-color: white;
}

@media screen and (max-width:600px) {
	header {
		height: 120px!important
	}
	header span[data-id=name] {
		font-size: 130%!important
	}
}

header {
	height: 88px;
	white-space: nowrap;
	background-color: var(--header-bg)
}

header a,
header a:visited {
	color: var(--main-color)
}

body:not([no-git]) header>div:last-child {
	/*margin-right: 50px*/
}

header .icon {
	width: 100px;
	background-size: 46px;
	height: 64px
}

header div[data-id=content] {
	/*overflow-x: hidden;
	margin-right: 10px*/
}

header span[data-id=name] {
	font-size: 130%
}

header span[data-id=desc] {
	text-overflow: ellipsis;
	overflow: hidden;
	/*width: 100%;*/
	text-align: left;
	padding-top: 4px;
	font-weight: 300;
	
	margin: auto;
    /* width: 50%; */
    border: 3px solid white;
    padding: 10px;
    background-color: white;
		
}

#donation {
	margin-right: 20px
}

#donation b {
	margin-bottom: 5px
}

#donation img {
	background-color: var(--header-bg-darker)
}

@media screen and (max-width:700px) {
	header {
		flex-direction: column;
		align-items: flex-start
	}
	header div.wrap {
		width: 100%;
		justify-content: flex-end
	}
	header .icon {
		width: 70px
	}
	header .icon {
		background-size: 48px;
		height: 48px
	}
	#header-right-container {
		align-items: center
	}
	#donation b {
		display: none
	}
}

.download-parent {
	min-width: 80px;
	white-space: nowrap;
	padding: 0 50px 0 15px
}

.download {
	position: relative
}

.download a,
.download label {
	display: inline-block;
	width: 24px;
	height: 24px;
	margin: 3px 1px 0 0
}

.download::before {
	content: 'Download for:';
	position: absolute;
	top: -15px;
	left: 2px
}

@media screen and (max-width:700px) {
	.download-parent {
		padding-right: 20px
	}
	.download::before {
		display: none
	}
}

nav {
	position: sticky;
	top: 0;
	height: 34px;
	background-color: var(--header-bg-darker);
	z-index: 2
}

nav a {
	margin: 0 5px
}

nav a,
nav a:visited {
	color: var(--main-color)
}

nav input[type=search] {
	-webkit-appearance: none;
	height: 28px;
	border: solid 1px rgba(0, 0, 0, .1);
	width: 170px;
	max-width: 50vw;
	text-indent: 5px;
	outline: 0;
	margin: 0 15px;
	padding-right: 28px;
	transition: width .3s ease, opacity .3s ease;
	opacity: .8
}

nav input[type=search]:focus {
	width: 250px;
	opacity: 1
}

nav input[type=search][highlight] {
	box-shadow: 0 0 4px #f07600
}

@media screen and (max-width:500px) {
	header input[type=search] {
		margin-left: 10px
	}
}

#translate {
	margin-right: 10px;
	position: relative;
	cursor: pointer
}

#translate>ul {
	position: absolute;
	right: -3px;
	top: 18px;
	background-color: var(--white-color);
	box-shadow: 0 0 1px 0 var(--dark-color-c);
	list-style: none;
	margin: 0;
	padding: 0;
	visibility: hidden;
	transition-delay: .3s
}

#translate:hover ul {
	visibility: visible
}

#translate li {
	padding: 5px 10px
}

#translate li:hover {
	background-color: var(--dark-color-b)
}

#translate li:active {
	opacity: .3
}

#google-translate {
	display: none
}

section {
	text-align: justify
}

#entries div {
	width: 100%;
	column-gap: 3px;
	grid-row-gap: 3px;
	display: inline-grid;
	grid-template-columns: auto auto auto
}

@media screen and (max-width:800px) {
	#entries div {
		grid-template-columns: auto auto
	}
}

@media screen and (max-width:500px) {
	#entries div {
		grid-template-columns: auto
	}
}

#entries>h3 {
	text-align: center;
	padding: 10px
}

#entries>h3:not(:first-child) {
	padding-top: 25px
}

.extblock {
	width: min-content;
    margin: auto;
}

.entry {
	/*padding: 10px;*/
	padding-top: 10px;
    padding-right: 100px;
    padding-bottom: 10px;
    padding-left: 100px;
	margin: 20px;
	/*height: 100px;*/
	display: inline-block;
	border: solid 1px var(--dark-color-c);
	background-color: var(--product);
	text-decoration: none;
	color: inherit
}

.entry table {
	table-layout: fixed
}

.entry h3 {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding-bottom: 5px;
}

.entry td[colspan="2"] {
	display: -moz-box;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-moz-line-clamp: 3;
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis
}

#blog {
	background-repeat: no-repeat;
	background-size: 42px
}

#blog {
	background-position: center bottom 30px;
	min-height: 150px
}

#blog ul {
	list-style-type: none;
	padding-left: 0
}

#blog p {
	margin-top: 3px
}

footer {
	padding: 10px;
	font-size: 12px;
	color: var(--whitesmoke-color);
	background-color: var(--footer-bg);
}

footer span {
	margin: auto;
}

footer:first-of-type {
	margin-top: 20px
}

footer.darker {
	background-color: var(--footer-bg-darker)
}

footer a {
	color: var(--whitesmoke-color);
	border-bottom: 1px var(--whitesmoke-color) dotted
}

footer ul {
	list-style-type: none;
	padding: 0;
	margin: 10px 0 0 0
}

@media screen and (max-width:500px) {
	footer.darker {
		flex-direction: column
	}
	footer.darker>span:first-child {
		margin-bottom: 20px
	}
}

#img_logo {
	position: fixed;
	display: none;
	left: 0;
	z-index: 1;
}

#logo {
	position: fixed;
	display: none;
	left: 10;
	z-index: 1;
}

#search {
	display: none;
	background-color: rgba(0, 0, 0, .5);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100
}

#backtotop {
	position: fixed;
	right: 25px;
	top: 80px;
	display: block;
	opacity: .5;
	background-color: var(--dark-color-b);
	border-radius: 50%;
	padding: 10px;
	cursor: pointer;
	z-index: 5
}

#backtotop:hover {
	opacity: 1
}