@font-face{
	font-family: "zenone";
	src: url("zenone.ttf");
}
@font-face{
	font-family: "fa-icons";
	src: url("fa-icons.woff");
}
body{
	color: var(--default-text-color);
	background-color: var(--default-background-color);
	font-family: var(--default-font);
	font-size: var(--default-text-size);
}
*::-webkit-scrollbar{
	background-color: var(--scroll-color);
}
*::-webkit-scrollbar-thumb{
	background-color: var(--scroll-background);
	border-radius: 10px;
}
header{
	background-image: var(--header-bg);
	background-position: center bottom;
	background-size: cover;
	background-repeat: repeat-x;
	height: 300px;
	/*min-height: 500px;*/
	padding-top: 30px;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	/*padding-top: 10px;*/
}
header > *{
	/*margin: 2em;
	margin-top: 1em;
	width: 30vw;
	display: inline-block;*/
}
@keyframes fly{
	from {
		background-position: 0, 0;
	}
	to {
		background-position: -100vw, 0;
	}
}
.flyer{
	position: absolute;
	/*bottom: -50px;*/
	top: -70px;
	left: 0;
	margin: 0;
	height: 200px;
	width: 100%;
	background-image: url('flyer.png');
	background-position: center;
	background-repeat: repeat-x;
	animation-name: fly;
	animation-duration: 700s;
	animation-timing-function: ease;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	transition: 0.3s;
	opacity: 0.5;
	z-index: 1;
}
/*header .flyer:nth-child(2),
footer .flyer:nth-child(2){
	animation-duration: 400s;
	bottom: 10px;
}*/
.success,
.error,
.alert,
.help{
	border: solid 1px;
	border-radius: 3px;
	padding: 0.5em;
	margin: 0.5em 0 0.5em 0;
}
.success{
	color: var(--success-color);
	background: var(--success-background);
	border-color: var(--success-color);
}
.error{
	color: var(--error-color);
	background: var(--error-background);
	border-color: var(--error-color);
}
.alert{
	color: var(--alert-color);
	background: var(--alert-background);
	border-color: var(--alert-color);
}
.help{
	color: var(--help-color);
	background: var(--help-background);
	border-color: var(--help-color);
}
nav{
	/*margin-top: -3px;*/
	margin: auto;
	margin-bottom: 10px;
	margin-top: -40px;
	/*align-items: center;*/
	width: fit-content;
	z-index: 1;
}
nav > div{
	height: fit-content;
}
nav > div:nth-child(1) a,
nav > div:nth-child(1) a:visited,
nav > div:nth-child(1) a:active{
	font-family: var(--nice-font);
	padding: 3px 0 3px 0;
	margin: 0 0.5em 0 0.5em;
	text-decoration: none;
	color: var(--nav-text-color);
	border-bottom: solid 1px;
	border-color: var(--nav-text-color);
	transition: 0.4s;
}
nav > div:nth-child(1) a:before,
nav > div:nth-child(1) a:after{
	font-family: "fa-icons";
	font-size: 1.7em;
	/*margin: 0.3em;*/
	vertical-align: middle;
	font-size: 1.2em;
	/*margin: 0.3em;*/
	opacity: 0.2;
	transition: 0.6s;
}
nav > div:nth-child(1) a:before{
	content: '\2619';
	margin-right: 0.5em;
}
nav > div:nth-child(1) a:after{
	content: '\2767';
	margin-left: 0.5em;
}
nav > div:nth-child(1) a:hover:before,
nav > div:nth-child(1) a:hover:after{
	opacity: 0.7;
}
nav > div:nth-child(1) a:hover,
nav > div:nth-child(1) a:visited:hover,
nav > div:nth-child(1) a:active:hover{
	padding-bottom: 0.7em;
}
nav > div:nth-child(2){
	display: none;
}
aside{
	border-right: solid 1px;
	border-color: var(--default-border-color);
	margin-top: 40px;
}
aside > nav{
	margin-top: 0;
}
aside > nav a,
aside > nav a:visited,
aside > nav a:active,
nav > div:nth-child(2) a,
nav > div:nth-child(2) a:visited,
nav > div:nth-child(2) a:active{
	font-family: var(--nice-font);
	text-decoration: none;
	color: var(--nav-text-color);
	line-height: 2em;
	padding: 0.5em;
	margin: 0.5em;
	border: transparent 0;
	border-color: transparent;
	transition: 0.4s;
}
aside > nav a:before,
nav > div:nth-child(2) a:before{
	margin-right: 0.5em;
	font-family: "fa-icons";
	content: '\f0a9';
	font-size: 0.95em;
	vertical-align: baseline;
	transition: 0.4s;
	opacity: 0.3;
}
aside > nav a:hover:before,
nav > div:nth-child(2) a:hover:before{
	opacity: 0.7;
	margin-right: 0.7em;
}
aside > nav li:nth-child(1) a:before,
nav > div:nth-child(2) li:nth-child(1) a:before{
	content: '\2af7';
}
aside > nav a:after,
nav > div:nth-child(2) a:after{
	content: '';
}
.banner{
	margin-top: 20px;
	margin-bottom: 20px;
}
#app-name{
	font-family: "georgia";
	font-weight: bold;
	font-size: 300%;
	margin-top: 20px;
	/*margin: 100px 0 10px 0;*/
	color: var(--name-text-color);
	text-shadow: var(--name-shadow-color) 0 0 10px;
}
#app-name > span:nth-child(1) {
	font-family: "zenone";
	margin-right: 0.3em;
}
#owner-name{
	/*margin-top: 90px;*/
	font-family: "georgia";
	text-align: right;
	font-size: 1.5em;
	width: 100%;
	color: white;
	text-shadow: var(--nav-text-color) 0 0 10px;
}
#identity{
	margin-top: -0.2vh;
	display: block;
	text-align: left;
	width:70%;
	z-index: 1;
}
#logo{
	/*float: left;*/
	margin: auto;
	margin-top: -5vh;
	height: fit-content;
	width: fit-content;
	padding: 50px;
	/*background: white;
	background-color: lineal-gradient(white, silver);*/
	background-image: url("logo_bg.png");
	background-size: cover;
	border-radius: 50%;
	/*box-shadow: var(--default-background-color) 0 0 10px;
	padding: 10px;*/
	/*min-height: 100px;
	margin: 20px;
	margin-top: 60px;*/
	z-index: 1;
}
#logo img{
	/*margin: 40px;
	margin-top: 10px;*/
	border: transparent 0;
	z-index: 1;
	max-width: 20vw;
	max-height: 20vw;
}
#slogan,
#app-name-text{
	font-family: Georgia;
	font-size: 120%;
	margin-top: 10px;
	/*padding-left: 0.15em;
	background: var(--default-background-color);
	background: var(--transparent-background-color*/
	/*margin-left: 10vw;
	margin-right: -2em;*/
	color: var(--slogan-color);
	text-shadow: var(--name-shadow-color) 0 0 20px;
	/*padding-right: 17vw;*/
}
#socials{
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
#socials img{
	margin: 5px;
	width: 30px;
	transition: 0.3s;
	border: solid 1px var(--default-text-color);
	border-radius: 5px;
}
#socials img:hover{
	box-shadow: var(--name-text-color) 0 0 10px;
	transform: rotate(-10deg);
}
#session-menus{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	float: right;
	font-size: 0.9em;
	display: flex;
	justify-content: flex-end;
	margin-top: -0.5em;
	max-height: 30px;
	overflow: visible;
	z-index: 1;
}
#session-menus a{
	color: var(--nav-text-color);
	text-decoration: none;
	margin: 0.2em;
	line-height: 1.7em;
}
#session-menus a:before{
	/*font-family: "fa-icons";
	content: '\2714';*/
	font-size: 0.95em;
	margin-right: 0.5em;
	color: var(--nav-text-color);
	opacity: 0.3;
	transition: 0.4s;
}
#session-menus a:hover:before{
	opacity: 0.7;
	margin-right: 0.7em;
}
#session-menus > div{
	margin: 0.3em;
	padding: 0.5em;
	background-color: var(--default-background-color);
	/*width: fit-content;*/
	box-shadow: var(--shadow-color) 0 3px 5px;
	border-radius: 2px;
	height: fit-content;
}
#session-menus > div,
#session-menus ul{
	width: 100px;
}
#session-menus ul{
	/*width: fit-content;*/
	flex-direction: column;
	height: 0;
	overflow-x: hidden;
	overflow-y: scroll;
	transition: 0.6s;
	border-color: var(--default-border-color);
}
#session-menus ul::-webkit-scrollbar{
	width: 5px;
	opacity: 0.2;
	border-radius: 3px;
}
#session-menus ul::-webkit-scrollbar-thumb{
	border-radius: 3px;
}
#session-menus ul > li{
	line-height: 1.5em;
	padding-right: 1em;
}
#session-menus ul > li:nth-child(1){
	margin-top: 5px;
	border-top: solid 1px  var(--default-border-color);
}
#session-menus > div{
	cursor: pointer;
}
#session-menus > div > *:nth-child(1):before{
	font-family: "fa-icons";
	margin-right: 0.3em;
}
#session-menus > #lang-menu > *:nth-child(1):before{
	content: '\f0ac';
}
#session-menus > #acc-menu > *:nth-child(1):before{
	content: '\f29a';
}
#session-menus > div:hover > ul,
#session-menus > div:focus-within > ul{
	height: 8vh;
	/*overflow-y: auto;*/
}
#search-form{
	text-align: left;
	margin-left: 0;
	margin-top: 2em;
	width: 100%;
}
#search-form form > input:nth-child(1){
	max-width: 70%;
	margin: auto;
	font-size: 120%;
	padding: 0.5em;
	padding-right: 2em;
	padding-left: 1em;
	min-width: 30vw;
	border: solid 1px;
	border-radius: 5px;
	border-color: var(--nav-text-color);
	color: var(--nav-text-color);
	background: var(--default-background-color);
	background-color: var(--transparent-background-color);
	box-shadow: var(--shadow-color) 0 0 5px;
	z-index: 1;
}
#search-form form:after{
	font-family: "fa-icons";
	font-size: 120%;
	margin-left: -1.5em;
	color: var(--nav-text-color);
	content: '\f002';
}
section{
	min-height: 60vh;
	padding-top: 5vh;
	/*background-image: url("../serve.php?r=images&p=test.jpg");*/
}
#breadcrumb{
	margin-top: 30px;
}
#breadcrumb a,
#breadcrumb a:visited,
#breadcrumb a:active{
	color: var(--nav-text-color);
	text-decoration: none;
}
#breadcrumb *:nth-child(1) > a:before{
	font-family: "fa-icons";
	font-size: 0.8em;
	vertical-align: baseline;
	margin-right: 0.3em;
	content: '\f80b';
	opacity: 0.3;
	transition: 0.4s;
}
#breadcrumb a:after{
	font-family: "fa-icons";
	font-size: 1.1em;
	vertical-align: middle;
	margin-left: 0.3em;
	content: '\2771';
	opacity: 0.3;
	transition: 0.4s;
}
#breadcrumb a:hover:before,
#breadcrumb a:hover:after{
	opacity: 0.7;
}
button, 
a[role=button], 
input[type=submit], 
input[type=reset]{
	transition: 0.4s;
}
.paginator * {
	margin: 0.3em;
	padding: 0.3em;
	min-width: 3em;
	font-family: var(--readable-font);
	font-size: 0.8em;
	border-radius: 2px;
}
.paginator a,
.paginator a:active,
.paginator a:visited {
	text-decoration: none; 
	vertical-align: baseline;
	transition: 0.4s;
	border: solid 1px;
	border-color: var(--default-border-color);
	color: var(--nav-text-color);
}
.paginator a:hover {
	border-color: var(--nav-text-color);
}
a[icon=plus] {
	color: red;
}
footer{
	color: var(--footer-hover-background);
	background-color: var(--default-text-color);
	/*background-image: var(--footer-bg);
	background-size: 100%;
	background-repeat: repeat-x;
	/*min-height: 400px;*/
	/*border-top: solid 10px var(--default-border-color);*/
	padding-top: 30px;
	padding-bottom: 100px;
	position: relative;
	display: block;
	/*flex-direction: column;
	justify-content: space-between;
	align-items: center;*/
	overflow: hidden;
	height: fit-content;
	clip-path: polygon(0 0, 30% 5%, 100% 0, 100% 100%, 0 100%, 0 0);
}
footer > *{
	/*display: flex;
	flex-direction: row;*/
	float: left;
}
footer #links{
	max-width: 20%;
	overflow: auto;
}
footer > #links,
footer > #links > ul{
	width: fit-content;
	float: right;
}
footer > #links ul,
footer > #links li{
	list-style: none;
}
footer > #links img{
	width: 50%;
	margin: 5px;
}
footer > #owner{
	display: block;
	/*clear: both;*/
	width: fit-content;
	float: right;
}
footer .flyer{
	top: auto;
	bottom: -100px;
}
footer a,
footer a:visited,
footer a:active{
	color: var(--footer-hover-backgrond);
	text-decoration: none;
}
footer #sitemap{
	margin-top: var(--sitemap-position-adjust);
	width: fit-content;
	max-width: 80%;
	overflow: auto;
	z-index: 1;
}
footer #sitemap a{
	font-family: var(--nice-font);
}
footer #sitemap > ul{
	width: fit-content;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
}
footer #sitemap > ul > li{
	margin: 2em;
}
footer #sitemap > ul > li > a{
	padding: 0.2em 0 0.2em 0;
	text-decoration: none;
	/*color: var(--nav-text-color);*/
	border-bottom: solid 1px;
	/*border-top: solid 5px;
	border-color: transparent;*/
	border-color: var(--default-border-color);
	transition: 0.4s;
}
footer #sitemap > ul > li > a:hover{
	padding-bottom: 0.7em;
}
footer #sitemap > ul > li > a:before,
footer #sitemap > ul > li > a:after{
	font-family: "fa-icons";
	vertical-align: middle;
	font-size: 1.2em;
	/*margin: 0.2em;*/
	opacity: 0.2;
	transition: 0.4s;
}
footer #sitemap > ul > li > a:before{
	content: '\2619';
	margin-right: 0.5em;
}
footer #sitemap > ul > li > a:after{
	content: '\2767';
	margin-left: 0.5em;
}
footer #sitemap > ul > li > a:hover:before,
footer #sitemap > ul > li > a:hover:after{
	opacity: 0.7;
}
footer #sitemap > ul > li ul,
footer #sitemap > ul > li ul > li{
	margin-top: 0.5em;
}
footer #sitemap > ul > li ul > li > a{
	font-size: 90%;
}
footer #sitemap > ul > li ul > li > a:before{
	font-family: "fa-icons";
	content: '\f0a9';
	opacity: 0.2;
	transition: 0.4s;
	margin: 0.2em;
	margin-right: 0.3em;
}
footer #sitemap > ul > li ul > li > a:hover:before{
	opacity: 0.7;
	margin-right: 0.7em;
}
footer #owner{
	text-align: right;
	margin-top: 20px;
	margin-bottom: 20px;
	display: block;
	clear: both;
}