@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 300;
	src: url('fonts/roboto-v30-latin/roboto-v30-latin-300.eot'); /* IE9 Compat Modes */
	src: local(''), url('fonts/roboto-v30-latin/roboto-v30-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('fonts/roboto-v30-latin/roboto-v30-latin-300.woff2') format('woff2'), /* Super Modern Browsers */ url('fonts/roboto-v30-latin/roboto-v30-latin-300.woff') format('woff'), /* Modern Browsers */ url('fonts/roboto-v30-latin/roboto-v30-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */ url('fonts/roboto-v30-latin/roboto-v30-latin-300.svg#Roboto') format('svg'); /* Legacy iOS */
}
@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 500;
	src: url('fonts/roboto-v30-latin/roboto-v30-latin-500.eot'); /* IE9 Compat Modes */
	src: local(''), url('fonts/roboto-v30-latin/roboto-v30-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('fonts/roboto-v30-latin/roboto-v30-latin-500.woff2') format('woff2'), /* Super Modern Browsers */ url('fonts/roboto-v30-latin/roboto-v30-latin-500.woff') format('woff'), /* Modern Browsers */ url('fonts/roboto-v30-latin/roboto-v30-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */ url('fonts/roboto-v30-latin/roboto-v30-latin-500.svg#Roboto') format('svg'); /* Legacy iOS */
}
:root {
	--canvas: rgb(230, 235, 245);
	--nav: rgb(10, 15, 20);
	--overlay: rgb(115, 125, 135);
	--dark: rgb(64, 72, 84);
	--green: rgb(121, 181, 28);
	--lightgreen: rgb(188, 218, 142);
	--blue: rgb(0, 96, 192);
	--lightblue: rgb(0, 192, 255);
	--error: rgb(192, 0, 0);
	--marked: rgba(0, 192, 255,0.33);
}
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	color: inherit;
	outline: none;
	transition: background-color 0.2s ease-out 0s, color 0.2s ease-out 0s, opacity 0.2s ease-out 0s, box-shadow 0.2s ease-out 0s, transform 0.2s ease-out 0s;
}
html, body {
	background-color: white;
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-weight: 300;
	min-height: 100.1%;
}
.unselectable {
	user-select: none;
}
.missing {
	color: var(--error) !important;
	background-color: rgb(255, 255, 0) !important;
}
body {
	margin-top: 95px;
	overflow-x: hidden;
}
body:not(.loggedIn) .showAfterLogin, body.loggedIn .showBeforeLogin {
	display: none;
}
strong {
	font-weight: 500;
}
table {
	border-collapse: collapse;
	width: 100%;
}
nav {
	display: flex;
	justify-content: center;
	width: 100vw;
	background-color: var(--nav);
	position: fixed;
	top: 0;
	z-index: 12;
	border-bottom: 2px solid white;
	border-top: 60px solid white;
}
nav span[data-href] {
	padding: 0.5em;
	text-decoration: none;
	background-color: var(--dark);
	color: white;
	font-weight: 500;
	cursor: pointer;
}
nav span + span {
	margin-left: 0.5em;
}
nav span[data-href].active, nav span[data-href]:hover {
	opacity: 1;
	background-color: var(--blue);
}
nav span[data-section].open {
	background-color: var(--green);
}
nav span[data-href].active {
	cursor: default;
}
main {
	border-top: 1px solid var(--blue);
	border-bottom: 1px solid var(--blue);
	margin: 0;
	padding: 1em 20vw;
	background-color: var(--canvas);
	position: relative;
}
main .userlist .user {
	width: 128px;
	display: inline-block;
	position: relative;
}
main .userlist .user.selectable {
	cursor: pointer;
}
main .userlist .user .online {
	position: absolute;
	top: 0.5em;
	right: 0.5em;
	background-color: var(--green);
	outline: 2px solid white;
	width: 1em;
	height: 1em;
	border-radius: 0.5em;
}
main .user + .user {
	margin-left: 1em;
}
main .userlist .user > img {
	width: 128px;
	height: 128px;
}
main .userlist .user > span:not(.online) {
	width: 128px;
	display: block;
	overflow: hidden;
}
main .user > span > span {
	position: relative;
	display: inline-block;
	pointer-events: none;
	white-space: nowrap;
}
main:not(.newEntry) section.newEntry, main.newEntry button.newEntry, body:not([data-section]) main .newEntry {
	display: none;
}
main button.newEntry {
	margin-bottom: 1em;
}
/* standard formats */
main ul {
	list-style: none;
	margin: 0 0 1em 1em;
	line-height: 1.5em;
}
main ul li {
	position: relative;
}
main ul li:before {
	position: absolute;
	left: -1em;
}
main ul li:before {
	content: '';
	width: 0.5em;
	height: 0.5em;
	top: 0.4em;
	background-color: var(--green);
}
main ul ul li:before {
	width: 0.3em;
	height: 0.3em;
	top: 0.5em;
}
main ol {
	list-style: none;
	counter-reset: c;
}
main ol ol {
	list-style: none;
	counter-reset: sc;
}
main ol li {
	counter-increment: c;
	padding: 0 0 0 .5em;
}
main ol ol li {
	counter-increment: sc;
	padding: 0 0 0 .5em;
}
main ol li:before {
	content: counter(c) ". ";
}
main ol ol li:before {
	content: counter(c) "."counter(sc) ". ";
}
footer {
	display: flex;
	justify-content: flex-end;
	align-items: stretch;
	padding: 0.5em 20vw;
}
footer span[data-href] {
	padding: 0.25em 0.5em;
	cursor: pointer;
}
footer span[data-href].active {
	font-weight: 500;
}
p {
	line-height: 1.5em;
	margin-bottom: 1em;
}
main p, main h1, main h2 {
	margin: 0 0 1em 0;
}
main h1, main h2, main h3 {
	font-weight: 500;
	display: table;
}
main h1 {
	color: white;
	background-color: var(--green);
	padding: 0.5em;
}
main h3 {
	opacity: 0.5;
}
main .result {
	margin: 1em 0;
}
main .result section.entry {
	margin-bottom: 1em;
	background-color: white;
}
main .result .entries > section.entry {
	cursor: pointer;
	position: relative;
}
main .result section.entry > header {
	background-color: white;
	display: flex;
	align-items: flex-start;
	border-top: 1px solid var(--green);
}
main .entry .text .user {
	width: 96px;
}
main .entry .text .user {
	display: inline-block;
	float: left;
	margin-right: 1em;
	background-color: var(--canvas);
	outline: 5px solid var(--canvas);
	cursor: pointer;
}
main .entry .user img, main .reply .user img {
	width: 96px;
	height: 96px;
	display: block;
}
main .entry .user > span, main .reply .user > span {
	width: 96px;
	display: block;
	overflow: hidden;
}
main .reply > .text {
	max-width: calc(60vw - 96px - 5em);
}
main .result section.entry > header img {
	margin-right: 1em;
}
main .result .date {
	display: block;
	font-size: 0.8em;
	font-style: italic;
}
main .result section.entry > header.full .date {
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 0.2em 0.5em;
}
main .result section.entry > header h1 {
	display: inline-block;
}
main .result section.entry > header td:first-child {
	padding: 0;
}
main .result .entries > section.entry:hover {
	box-shadow: 1em 2em 2em rgba(0, 0, 0, 0.2);
	z-index: 3;
}
main .result section.entry > header, main .result section.entry > .text {
	padding: 1em;
	border-top: 1px solid var(--green);
}
main .result .reply {
	display: flex;
	justify-content: space-between;
	padding: 1em;
	background-color: white;
	border-bottom: 1px solid var(--green);
	margin-bottom: 0.5em;
}
main .result .reply .date {
	opacity: 0.6;
}
.popup {
	position: relative;
	display: inline-block;
}
.popup > .fa {
	cursor: pointer;
	opacity: 0.5;
}
.popup.active > .fa, .popup:hover > .fa {
	opacity: 1;
}
.popup > div {
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%, -70%);
	background-color: var(--canvas);
	box-shadow: 1em 1em 2em rgba(0, 0, 0, 0.3);
	padding: 1em;
	min-width: 30ch;
	max-width: 50ch;
	outline: 2px solid var(--green);
}
.popup:not(.active) > div {
	display: none;
}
input.error, textarea.error {
	border: 1px solid var(--error) !important;
	outline: 1px solid var(--error) !important;
}
input[type="checkbox"] {
	width: 1em;
	height: 1em;
	vertical-align: sub;
	margin-right: 0.5em;
	position: relative;
	cursor: pointer;
	margin-bottom: 0.5em;
}
input[type="checkbox"]:before {
	position: absolute;
	font-family: 'FontAwesome';
	top: 0.25em;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 1.5em;
	color: white;
	content: '\f0c8';
	text-shadow: 0 0 2px black;
}
input[type="checkbox"]:checked:after {
	position: absolute;
	font-family: 'FontAwesome';
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 2em;
	color: var(--green);
	content: '\f00c';
}
input[type="text"], input[type="password"], input[type="email"], input[type="tel"], textarea {
	width: 100%;
	margin-top: 0.5em;
	border: 1px solid var(--dark);
	padding: 0.5em;
	background-color: white !important;
}
input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, input[type="tel"]:focus, textarea:focus {
	border: 1px solid var(--green);
	outline: 2px solid var(--green);
}
textarea {
	max-width: 100%;
	min-width: 100%;
	min-height: 3em;
	max-height: 10em;
}
#overlay {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 999;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.8);
}
#overlay:not(.active) {
	pointer-events: none;
	opacity: 0;
}
#overlay section {
	padding: 1em;
	display: none;
	width: 50ch;
	background-color: white;
	box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
}
#overlay[data-selection="showProfile"] section.showProfile {
	display: block;
}
main section.profile .avatar, #overlay section.showProfile .avatar {
	width: 7em;
	height: 7em;
	margin-bottom: 1em;
	background-color: var(--dark);
	background-image: url("stripe.png");
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
}
main section.profile .avatar .smallMenu {
	padding: 0.5em;
	background-color: rgba(0, 0, 0, 0.9);
	color: white;
	opacity: 0;
	font-size: 1.25em;
}
main section.profile .avatar:hover .smallMenu {
	opacity: 1;
}
main section.profile .avatar .smallMenu > span {
	cursor: pointer;
}
main section.profile .avatar .smallMenu > span + span {
	margin-left: 0.5em;
}
main section.profile .avatar .smallMenu > span:hover {
	color: var(--lightblue);
}
main section.profile td:first-child {
	width: 23ch;
}
#overlay section.showProfile td:first-child {
	width: 11ch;
}
td {
	padding-bottom: 0.5em;
	vertical-align: top;
}
main section.profile td:nth-child(2) {
	font-weight: 500;
}
main span[data-id] {
	line-height: 0;
	background-color: var(--dark);
	color: white;
	margin-bottom: 0.5em;
	display: inline-block;
	position: relative;
	text-align: center;
	min-width: 5ch;
}
.list span[data-id] {
	margin-right: 0.5em;
}
.list span[data-id] img, main section.newEntry .targetUsers img {
	width: 5ch;
	cursor: pointer;
}
.list span[data-id] > .smallMenu {
	display: flex;
	position: absolute;
	/*top: 0;*/
	left: 0;
	bottom: 0;
	right: 0;
	justify-content: center;
	align-items: center;
	background-color: black;
	transform: translateY(100%);
}
.list span[data-id]:not(:hover) > .smallMenu {
	display: none;
}
.list span[data-id] > .smallMenu > span {
	padding: 0.1em;
	cursor: pointer;
}
.list span[data-id] > .smallMenu > span.add:hover {
	color: var(--green);
}
.list span[data-id] > .smallMenu > span.remove:hover {
	color: var(--error);
}
#ticker {
	margin: 1em 0;
	padding: 5px 0;
	white-space: nowrap;
	overflow: hidden;
	width: 100vw;
	background-color: var(--lightgrey);
	position: relative;
}
#ticker > span {
	padding-left: 100%;
	position: relative;
	top: 0;
	left: 0;
}
#ticker > div {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}
#ticker.hidden + .offset:before {
	content: '';
	padding: 1em 0;
	display: block;
}
#head {
	display: none;
}
#head > div {
	overflow: hidden;
	width: 100vw;
	height: 60vh;
	position: relative;
}
#head .image {
	background-color: black;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 0;
	width: 100%;
	height: 80vh;
	transition: background 0.5s ease-out 0s !important;
}
#head .image .img {
	transition: opacity 0.5s ease-out 0s;
	position: absolute;
	width: 100vw;
	height: 80vh;
	left: 0;
	bottom: 0;
	opacity: 1;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}
#head .image .img.hidden {
	display:block;
	opacity: 0;
}
#head h1 {
	font-weight: 400;
	color: white;
	text-shadow: 2px 2px 50px black;
	padding: 0.5em 30vw 0.5em 20vw;
	background-color: rgba(0, 0, 0, 0.5);
	background-image: url("grid.png");
	margin-bottom: 1cm;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 9;
	font-size: 2em;
	line-height: 1.5em;
	width: 100%;
	text-align: left;
}
#head .image > h1:empty {
	display: none;
}
.logo {
	background-color: transparent !important;
	background-image: url("logo.svg");
	position: absolute;
	top: -50px;
	height: 40px;
	width: 150px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center 0.2em;
	padding: 0 !important;
}
.transparent {
	background-color: transparent !important;
}
.hoverTxt {
	position: relative;
}
.hoverTxt .htxt {
	display: inline-block;
	position: absolute;
	top: 0;
	right: 50%;
	transform: translate(50%, 120%);
	background-color: white;
	color: var(--dark);
	font-weight: 300;
	padding: 0.5em;
	box-shadow: 0.5em 0.5em 0.5em rgba(0, 0, 0, 0.3);
	z-index: 9;
}
.hoverTxt:not(:hover) .htxt {
	display: none;
}
.selection {
	position: relative;
	cursor: pointer;
}
.selection input + div {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
.selection input + div > span {
	display: block;
	padding: 0.5em;
	background-color: var(--canvas);
}
.selection input + div > span:not(.active):hover {
	background-color: white;
}
.selection input + div > span.active {
	font-weight: 500;
}
.selection:not(.disabled):hover input + div {
	display: block;
}
.selection > span[data-val] {
	font-weight: bold;
	margin-top: 0.5em;
	margin-left: 0.5em;
	background-color: white;
	padding: 0.5em;
}
.selection > span[data-val].active {
	background-color: var(--blue);
	color: white;
}
button {
	border: none;
	padding: 0.5em;
	color: white;
	background-color: var(--dark);
	cursor: pointer;
	font-weight: 500;
	margin-top: 0.5em;
	user-select: none;
}
button[disabled] {
	cursor: default;
	opacity: 0.2;
}
button > .fa {
	margin-right: 0.5em;
}
button:not([disabled]):hover {
	background-color: var(--blue);
}
button + button, input + .fa {
	margin-left: 0.5em;
}
input + .fa {
	cursor: pointer;
}
.symbol {
	position: relative;
}
.symbol > .fa {
	position: absolute;
	right: 1em;
	top: 50%;
	transform: translateY(-50%);
}
.symbol.disabled > .fa {
	opacity: 0.5;
	cursor: auto;
}
.hidden {
	display: none;
}
.link {
	cursor: pointer;
	text-decoration: underline;
}
.link:hover {
	color: var(--blue);
}
nav span[data-href="profile"].notify .fa {
	animation: notify 1s infinite;
}
@keyframes notify {
	0% {
		transform: scale(1);
	}
	25% {
		transform: scale(1.5);
	}
	100% {
		transform: scale(1);
	}
}
/*flags*/
main .languages {
	height: 2em;
	display: flex;
}
main .languages > span[data-lang] {
	margin-right: 0.5em;
}
span[data-lang] {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	width: 2em;
	display: inline-block;
	opacity: 0.5;
	cursor: pointer;
}
span[data-lang].active, span[data-lang]:hover {
	opacity: 1;
}
span[data-lang="de"] {
	background-image: url("lang/flags/DE.svg");
}
span[data-lang="en"] {
	background-image: url("lang/flags/GB.svg");
}
span[data-lang="ge"] {
	background-image: url("lang/flags/GE.svg");
}
/*uploader*/
.uploader {
	background-color: var(--canvas);
	padding: 0.5em;
}
input[type="file"] {
	padding: 0;
}
.files {
	padding: 1em 0;
}
.files > span {
	display: block;
}
.files .delete {
	cursor: pointer;
	margin-right: 0.5em;
}
.files .delete:hover {
	color: var(--error);
}
/* autofill */
input:autofill, input:autofill:hover, input:autofill:focus, textarea:autofill, textarea:autofill:hover, textarea:autofill:focus, select:autofill, select:autofill:hover, select:autofill:focus {
	background-color: white !important;
	transition: background-color 5000s ease-in-out 0s !important;
}
#globi {
	position: absolute;
	top: 0;
	left: 12vw;
	transform: translateY(-69%);
	z-index: 99;
	pointer-events: none;
	width: 200px;
}
#globi.fixed {
	position:fixed;
	top: 16px;
}
main .entry, main .reply {
	position: relative;
}
main p a {
	display: inline-block;
	text-decoration: underline;
}
main p a:hover {
	color: var(--blue);
}
main .attachments {
	border-top: 1px dashed var(--dark);
	padding-bottom: 1em;
}
main .entry .attachments {
	margin: 1em;
}
main .attachments > a {
	padding: 0.25em 0.5em;
	border-radius: 0.25em;
	background-color: var(--dark);
	color: white;
	text-decoration: none;
}
main .attachments > a + a {
	margin-left: 0.25em;
}
main .attachments > a:hover {
	background-color: var(--blue);
}
main .attachments > a:before {
	font-family: 'FontAwesome';
	margin-right: 0.25em;
}
main .attachments > a[href$=".pdf"]:before {
	content: '\f1c1';
}
main .attachments > a[href$=".txt"]:before {
	content: '\f0f6';
}
main .attachments > a[href$=".png"]:before, main .attachments > a[href$=".jpg"]:before, main .attachments > a[href$=".gif"]:before {
	content: '\f1c5';
}
main .attachments > a[href$=".zip"]:before, main .attachments > a[href$=".7z"]:before, main .attachments > a[href$=".rar"]:before {
	content: '\f1c6';
}

#filter {
	position: relative;
}
#filter .fa-search {
	cursor: pointer;
	position:absolute;
	top:0;
	right:0;
	font-size: 1.5em;
}
#filter .fa-search:hover {
	transform: scale(1.35);
	color: var(--blue);
}
#filter .fa-search.active {
	display: none;
}
#filter .fa-search:not(.active) + div {
	display: none;
}
#filter .fa-search.active + div {
	padding-bottom: 0.5em;
	margin-bottom: 0.5em;
	border-bottom: 1px solid var(--blue);
}

#filter .userlist span + span {
	margin-left: 0.5em;
}
#filter .userlist img {
	width: 5ch;
}
#filter .userlist .gap {
	padding: 0.5em;
}
#filter .languageFilter > span[data-lang] {
	width: 6ch;
	height: 3ch;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
#filter p {
	margin-bottom:0;
	margin-top:0.5em;
}
#filter input[name="searchterm"] {
	width:90%;
}
mark {
	padding: 0.25em;
	background-color: var(--marked);
}
#hilited {
	cursor: pointer;
	background-color: var(--marked);
	padding: 0.25em;
	display: table;
	margin-bottom: 0.5em;
}
#hilited:before {
	font-family: FontAwesome;
	content: '\f00d';
	margin-right: 0.5em;
}
body:not([data-highlight]) #hilited, #hilited:empty {
	display:none;
}

#main h2:empty, #main h1:empty {
	display: none;
}
img.border {
	border: 2px solid white;
	box-shadow: 0.5em 0.5em 0.5em rgb(0 0 0 / 10%);
}

.switch {
	cursor: pointer;
	margin-bottom:0;
	font-weight: 500;
}
.switch.active + .switchable + .switch {
	margin-top:0.5em;
}
.switch:not(.active) + .switchable {
	display: none;
}
.switchable > p {
	margin-bottom: 0.25em;
}
.switch.active {
	margin-top: 0.25em;
}
.switch.active, .switch.active + .switchable {
	background-color: rgba(255,255,255,0.75);
	margin-left: -0.5em;
	padding: 0.25em 0.5em;
}

.adminMenu {
	position: absolute;
	top: 0;
	right: 0;
	transform: translateX(100%);
	display: flex;
	flex-direction: column;
	align-items: stretch;
	padding: 0 0.25em;
}
.adminMenu > span {
	color: white;
	padding: 0.5em;
	margin-bottom: 0.25em;
	background-color: var(--dark);
	cursor: pointer;
	display: flex;
	width: 4ch;
	justify-content: center;
}
.adminMenu > span:hover {
	background-color: var(--green);
}
.adminMenu > span.banned {
	background-color: var(--error) !important;
}
.adminMenu > .fav.active, .adminMenu > .fav:not(.active) + .unfav {
	display: none;
}
/* mobile */
.mtoggle {
	display: none;
}
@media screen and (max-width: 700px) and (orientation: portrait) {
	.adminMenu {
		display: none;
	}
	.mtoggle {
		width: 1cm;
		height: 1cm;
		top: 0.25em;
		left: 1em;
		z-index: 999;
		cursor: pointer;
		display: flex;
		justify-content: center;
		align-items: center;
		position: fixed;
		background-color: white;
		outline: 1em solid white;
	}
	.mtoggle.active {
		margin-bottom: 0.15cm;
	}
	.mtoggle > div {
		width: 1cm;
		position: absolute;
		top: 1.5em;
	}
	.mtoggle > div > div {
		width: 1cm;
		height: 6px;
		border-radius: 3px;
		background-color: var(--dark);
		position: absolute;
		transition: all 0.2s ease-out;
	}
	.mtoggle > div > div:nth-child(1) {
		top: -10px;
	}
	.mtoggle > div > div:nth-child(3) {
		top: 10px;
	}
	.mtoggle:hover > div > div {
		background-color: var(--green);
	}
	.mtoggle:not(.active) + .menu {
		display: none !important;
	}
	.mtoggle.active > div > div:first-child {
		transform: rotate(45deg);
	}
	.mtoggle.active > div > div:last-child {
		transform: rotate(-45deg);
	}
	.mtoggle.active > div > div:nth-child(1) {
		top: 0;
	}
	.mtoggle.active > div > div:nth-child(2) {
		opacity: 0;
	}
	.mtoggle.active > div > div:nth-child(3) {
		top: 0;
	}
	nav {
		flex-direction: column;
		z-index: 123;
		width: 100vw;
		justify-content: flex-start;
		transition: transform 0.2s ease-out 0s;
		padding-bottom: 1em;
		background-color: var(--dark);
		font-size: 1.25em;
	}
	nav span[data-href].logo {
		position: absolute;
		left: 2cm;
		margin-left: 100vw;
		/*transition: margin-left 0.2s ease-out 0s;*/
	}
	/*
	.mtoggle.active + nav span[data-href].logo {
		margin-left: calc(100vw - 150px - 2cm - 1em);
	}
	*/
	nav span[data-href]:not(.logo) {
		margin-left: 0;
		padding-left: 1em;
	}
	.mtoggle:not(.active) + nav {
		transform: translateX(-100%);
	}
	nav .lang {
		margin: 1em 0 0 1em;
		width: 1.5cm;
		height: 0.9cm;
		background-size: cover;
	}
	#head h1 {
		padding: 0.5em;
		font-size: 2em;
	}
	main {
		padding: 1em;
	}
}