@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk");
@import url("https://fonts.googleapis.com/css2?family=Inter");
#4my.se
:root {
	
}

html {
	height: 100%;
	--mainColor: #1E4063;
	--secColor: #256FAF;
	--secColorT: #256FAFdd;
	
	--linkColor: #F7CC41;
	--empColor: #FF7700;
	--textColor: #EEAA55;
	
	--headFont: Space Grotesk;
	--textFont: Inter;
}

*, *::before, *::after, *:checked {
	box-sizing: border-box;
	
	color: 0;
	background: 0;
	border: 0;
	outline: 0;
	font-weight: normal;
	font-size: 100%;
	font: inherit;
	
	list-style-type: none;
	text-decoration: none;
	
	text-transform: none;
	text-indent: 0;
	font-style: none;
	
	margin: 0px;
	padding: 0px;
	margin-block-start: 0px;
	margin-block-end: 0px;
	margin-inline-start: 0px;
	margin-inline-end: 0px;

	padding-block-start: 0px;
	padding-block-end: 0px;
	padding-inline-start: 0px;
	padding-inline-end: 0px;

	scrollbar-color: var(--empColor) #0000;
	scrollbar-width: thin;
	scroll-behavior: smooth;
	
	content: "";
	interpolate-size: allow-keywords;
	
	transition: all 300ms ease-in-out;
}

*, *:visited, *:active, *:focus {
	&[small]		{	font-size: 1.6rem;	}
	&[medium]		{	font-size: 2.0rem;	}
	&[large]		{	font-size: 3.0rem;	}
	
	&[red]			{	color: #c00;	}
	&[blue]			{	color: #069;	}
	&[green] 		{	color: #0c0; 	}
	&[yellow]		{	color: #cc0;	}
	&[black]		{	color: #222;	}
	&[white]		{	color: #eee;	}
	&[orange]		{	color: #f70;	}
	&[purple]		{	color: #c0c;	}
	&[pink]			{	color: #faa;	}
	&[lightblue]	{	color: #0bf;	}
	&[kinkgreen]	{	color: #4ba;	}
	
	&[shadow]		{	text-shadow: 2px 2px 4px #111;	}
	&[outline]		{	text-shadow: -1px 0 #111, 0 1px #111, 1px 0 #111, 0 -1px #111;	}
	&[glow]			{	text-shadow: 0 0 4px #c00;	}
	
	&[under]		{	text-decoration: underline;	}
	&[wavy]			{	text-decoration: underline wavy 1px;	}
	&[noline]		{	text-decoration: none;	}
	
	&[bold]			{	font-weight: bold;	}
	&[italic]		{	font-style: italic;	}
	
	&[upper]		{	text-transform: uppercase;	}
	&[lower]		{	text-transform: lowercase;	}
	&[capitalize]	{	text-transform: capitalize;	}
	
	&[box]			{	border: 1px solid #111;	}
	&[rounded]		{	border-radius: 10px;	}
	
	&[b-red]		{	background-color: #c00;	}
	&[b-blue]		{	background-color: #069;	}
	&[b-green]		{	background-color: #0c0;	}
	&[b-yellow]		{	background-color: #cc0;	}
	&[b-black]		{	background-color: #222;	}
	&[b-white]		{	background-color: #eee;	}
	&[b-orange]		{	background-color: #f70;	}
	&[b-purple]		{	background-color: #c0c;	}
	&[b-pink]		{	background-color: #faa;	}
	&[b-lightblue]	{	background-color: #0bf;	}
	
	&[padded]		{	padding-left: 5px; padding-right: 5px;	}
	
	&[left]			{	float: left;	}
	&[right]		{	float: right;	}
	&[center]		{	display: block; text-align: center; margin-left: auto; margin-right: auto; }
	
	&[sans]			{	font-family: sans, sans-serif, helvetica, arial;	}
	&[serif]		{	font-family: serif, times, times new roman;	}
	&[mono]			{	font-family: mono, monospaced, courier, courier new;	}
}

*:hover {
	&[hover-blue]		{	color: #069; }
	&[hover-red]		{	color: #c00; }
	&[hover-green]		{	color: #0c0; }
	&[hover-yellow]		{	color: #cc0; }
	&[hover-black]		{	color: #222; }
	&[hover-white]		{	color: #eee; }
	&[hover-orange]		{	color: #f70; }
	&[hover-purple]		{	color: #c0c; }
	&[hover-pink]		{	color: #faa; }
	&[hover-lightblue]	{	color: #0bf; }
	
	&[hover-under]	{	text-decoration: underline;	}
	&[hover-wavy]	{	text-decoration: underline wavy 1px;	}
	&[hover-noline]	{	text-decoration: none;	}
}


body {
	font-family: var(--textFont), sans, sans-serif, helvetica, arial;
	font-size: 1.1rem;
	background: radial-gradient(circle,var(--secColor) 0%, var(--mainColor) 100%);
	//background-image: linear-gradient(to top, var(--secColor), var(--mainColor));
	color: var(--textColor);
	width: 100%;
	max-width: 900px;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
}


b {
	font-weight: 600;
}

i {
	font-style: italic;
}

u {
	text-decoration: underline;
}

a, a:visited {
	color: var(--linkColor);
	text-decoration: none;
}

a:hover {
	color: var(--linkColor);
	text-decoration: underline var(--empColor);
}

h1, h2, h3, h4, h5 {
	font-family: var(--headFont), sans, sans-serif, helvetica, arial;
	font-weight: bold;
	display: inline;
}

h1 {
	font-size: 2.4rem;
}

h2 {
	font-size: 2.0rem;
}

h3 {
	font-size: 1.5rem;
}

h4 {
	font-size: 1.2rem;
}

hr {
	height: 2px;
	margin-bottom: 5px;
	background-image: linear-gradient(to right, #c005, #c00, #c00, #c00, #c00, #c00, #0000, #0000);
}

li:before {
	content: "»";
	padding-right: 7px;
	padding-left: 3px;
}

#fullPage {
	display: flex;
	flex-flow: column nowrap;
	align-items: stretch;
	height: 100%;
	min-height: 100%;
	max-height: 100%;
	padding: 10px;
}

#topContainer {
	display: flex;
	flex-flow: row nowrap;
	align-items: stretch;
	height: 60px;
	min-height: 60px;
	max-height: 60px;
	padding: 0px;
	border: 0px solid var(--empColor);
	border-radius: 10px;
	margin-bottom: 5px;
	flex-grow: 1;
	background-image: url("images/dekalogo.php?e=EEAA55&r=FF7700");
	background-position: center center;
	background-size: auto 60px;
	background-repeat: no-repeat;
}

#mobControllers {
	display: flex;
	flex-flow: row nowrap;
	flex-grow: 1;
	width: 0px;
	min-width: 0px;
	max-width: 0px;
	line-height: 60px;
	vertical-align: middle;
	gap: 10px;
}

.navButton {
	flex-grow: 1;
	font-size: 24px;
	display: none;
	width: 40px;
	min-width: 40px;
	max-width: 40px;
	height: 40px;
	min-height: 40px;
	max-height: 40px;
	line-height: 32px;
	vertical-align: middle;
	text-align: center;
	
	border: 3px solid var(--empColor);
	border-radius: 50px;
	background: var(--secColorT);
	color: var(--textColor);
}

.navButton:hover {
	border: 3px solid var(--linkColor);
	background: var(--mainColor);
	color: var(--empColor);
}

#topTitle {
	flex-grow: 1000;
	line-height: 60px;
	vertical-align: middle;
	text-align: center;
	background-image: url("images/logotext2.png");
	background-position: center left;
	background-size: auto 50px;
	background-repeat: no-repeat;
}

#memberBox {
	flex-grow: 1;
	line-height: 60px;
	vertical-align: middle;
}

#memberBox #memberLink {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-end;
	justify-items: flex-end;
	justify-content: flex-end;
	background: var(--secColorT);
	border-radius: 50px;

	height: 60px;
	min-height: 60px;
	max-height: 60px;
	line-height: 58px;
}

#memberBox #memberLinkText {
	flex-grow: 100;
	display: inline-block;
	font-family: Bebas Neue;
	font-size: 20px;
	color: var(--textColor);
	height: 60px;
	min-height: 60px;
	max-height: 60px;
	line-height: 64px;
	vertical-align: middle;
	text-align: right;
	padding-left: 8px;
}

#memberBox #memberLinkIcon {
	flex-grow: 1;
	font-size: 36px;
	display: inline-block;
	width: 60px;
	min-width: 60px;
	max-width: 60px;
	height: 60px;
	min-height: 60px;
	max-height: 60px;
	line-height: 57px;
	vertical-align: middle;
	text-align: center;
	margin-left: 4px;
	border: 3px solid var(--empColor);
	border-radius: 50px;
	color: var(--textColor);
}

#topContainer h1 {
	font-size: 28px;
}

#topContainer h3 {
	font-size: 16px;
	opacity: 0.7;
}

#pageContents {
	display: flex;
	flex-flow: row nowrap;
	align-items: stretch;
	width: 100%;
	height: 100%;
	max-height: 100%;
	padding: 0px;
	
	overflow: hidden;
}

#menuContainer {
	display: flex;
	flex-flow: column nowrap;
	align-items: flex-start;
	line-height: 56px;
	padding: 0px;
	overflow: auto;
	border-radius: 10px;
	margin-right: 5px;
	width: 170px;
	min-width: 170px;
	max-width: 170px;
	flex-grow: 1;
}

#menuContainer a, #menuContainer a:visited, #menuContainer a:hover {
	color: none;
	text-decoration: none;
}

#menuContainer a {
	flex-grow: 1;
	width: 100%;
	height: 60px;
	min-height: 60px;
	max-height: 60px;
	vertical-align: middle;
	padding: 0px;
	margin-left: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	text-align: left;
	text-decoration: none;
	color: var(--linkColor);
}

#menuContainer a .menuItem {
	font-family: Bebas Neue;
	background: var(--secColorT);
	border-radius: 50px;
	width: 100%;
	height: 60px;
	min-height: 60px;
	max-height: 60px;
}

.menuItem .menuIcon {
	font-size: 36px;
	display: inline-block;
	width: 60px;
	min-width: 60px;
	max-width: 60px;
	height: 60px;
	min-height: 60px;
	max-height: 60px;
	line-height: 57px;
	vertical-align: middle;
	text-align: center;
	margin-right: 4px;
	border: 3px solid var(--empColor);
	border-radius: 50px;
	color: var(--textColor);
}

.menuItem .menuText {
	font-size: 24px;
	display: inline-block;
	height: 60px;
	min-height: 60px;
	max-height: 60px;
	line-height: 64px;
	vertical-align: middle;
	text-align: left;
	color: var(--textColor);
}

#menuContainer a .selected .menuIcon {
	color: var(--empColor);
}

#menuContainer a:hover .menuItem {
	background: var(--mainColor);
	border-color: var(--empColor);
	text-decoration: none;
}

#menuContainer a:hover .menuIcon {
	color: var(--empColor);
}

#menuContainer a:hover .menuText {
	color: var(--empColor);
}

#mainContainer {
	flex-grow: 1000;
	height: calc(100%);
	max-height: calc(100%);
	padding: 10px;
	background-color: var(--secColorT);
	border: 3px solid var(--empColor);
	border-radius: 20px;
	display: flex;
	flex-flow: column nowrap;
}

#pageTitleWrapper {
	flex-grow: 1;
	height: 40px;
	min-height: 40px;
	max-height: 40px;
	font-family: Bebas Neue, sans, sans-serif, helvetica, arial;
	font-size: 1.8rem;
}

#mainContainerWrapper {
	flex-grow: 1;
	overflow-y: scroll;
	overflow-x: hidden;
	scrollbar-gutter: stable;
	font-family: Oswald, sans, sans-serif, helvetica, arial;
	font-size: 1.2rem;
}

#themeForm > * {
	color: var(--textColor);
}

#themeForm > input, #themeForm > select {
	border: 2px solid var(--empColor);
	padding-left: 4px;
	padding-right: 4px;
}

/* --- Small screens, e g smartphones */	
@media (max-width: 700px) {
	#topTitle {
		background: none;
	}
	
	#mobControllers {
		width: 90px;
		min-width: 90px;
		max-width: 90px;
		margin-right: 5px;
	}
	
	.navButton {
		display: inline-block;
	}
	
	#pageContents {
		flex-flow: column-reverse nowrap;
	}
	
	#menuContainer {
		flex-grow: 1;
		display: flex;
		flex-flow: row nowrap;
		justify-content: space-between;
		
		overflow: hidden;
		margin-top: 5px;
		width: 100%;
		min-width: 100%;
		max-width: 100%;
		height: 50px;
		min-height: 50px;
		max-height: 50px;
		gap: 5px;
		//background: #c0c6;
	}
	
	#menuContainer a {
		height: 50px;
		min-height: 50px;
		max-height: 50px;
		width: 50px;
		min-width: 50px;
		max-width: 50px;
	}
	
	.menuItem {
		flex: 1;
		text-align: center;
		line-height: 50px;
		vertical-align: middle;
		height: 50px;
		min-height: 50px;
		max-height: 50px;
		width: 50px;
		min-width: 50px;
		max-width: 50px;
		padding: 0px;
		border-radius: 50px;
	}
	
	.menuItem .menuText {
		visibility: hidden;
		display: none;
	}
	
	.menuItem .menuIcon {
		height: 50px;
		min-height: 50px;
		max-height: 50px;
		width: 50px;
		min-width: 50px;
		max-width: 50px;
		line-height: 47px;
		font-size: 30px;
	}
	
	#mainContainer {
		height: 1px;
	}
}