* {
	-webkit-tap-highlight-color: transparent;
}

@font-face {
	font-family: 'Space Grotesk';
	src: url('SpaceGrotesk.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Rubik Mono One';
	src: url('RubikMonoOne-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

:root {
	color-scheme: dark;
}

body {
	background-color: #0c0c0c;
	color: #fafafa;
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-family: 'Space Grotesk';
}

.logo {
	width: 5rem;
	height: auto;
	margin: 1rem 0;
}

.navicon {
	font-size: 2.8rem;
	padding: 1.5rem 0;
}

.accounticon {
	font-size: 4rem;
	margin-bottom: 1rem;
}

.navbar {
    width: 5rem;
    height: calc(100dvh - 2rem);
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translate(0, -50%);
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    transition: all 0.3s;
    overflow: hidden;
    background: rgb(44 44 44 / 50%);
    backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
    border-radius: 25px;
    user-select: none;
    box-shadow: 0px 0px 3px #fafafa33;
	z-index: 3;
}

.navbar-hover {
    width: 19rem;
}

.navbuttons {
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: start;
	flex-grow: 1;
	width: 100%;
	overflow-x: hidden;
	overflow-y: scroll;
	-ms-overflow-style: none;
    scrollbar-width: none;
}

.navbuttons::-webkit-scrollbar {
    display: none;
}

.navbuttons hr {
	width: 90%;
}

.navrow {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: start;
	transition: all 0.2s;
}

.navrow:hover {
	color: #00ab0a !important;
	cursor: pointer;
	scale: 1.01;
}

.rowicon {
	width: 5rem;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.rowtext {
	width: 14rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
}

.navtitle {
	font-size: 3rem;
	font-weight: bold;
	font-family: 'Rubik Mono One';
	margin: 0;
}

.navoptiontext {
	font-size: 1.5rem;
	font-family: 'Space Grotesk';
	margin: 0;
	word-break: break-word;
}

#titlerow:hover {
	
}

.errorbanner {
	display: none;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	position: fixed;
	bottom: 1rem;
	width: 90%;
	min-height: 5.5rem;
	background-color: #1c1c1c;
	border-radius: 20px;
	border: 4px solid #ff4d4daa;
	z-index: 99999;
	left: 50%;
	transform: translate(-50%, 0);
	padding: 3px;
}

#errorcontent {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: auto;
	margin: 0rem 2rem;
	color: #fafafa;
	font-weight: bold;
	word-break: break-word;
}

#closeerror {
	width: 2rem;
	color: #fafafa;
	text-shadow: 0px 0px 3px #000;
	font-size: 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: 0;
}

.open-error {
	animation: erroropen 0.3s ease-out forwards;
}

.closed-error {
	animation: errorclose 0.3s ease-out forwards;
}

#loadingspinner {
	width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
    border-top: 5px solid #00ab0a;
    animation: spin 0.5s linear infinite;
	margin: 1rem;
	box-shadow: 0px 0px 1px #000;
}

.loadingspinner {
	width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
    border-top: 5px solid #00ab0a;
    animation: spin 0.5s linear infinite;
	margin: 1rem;
	box-shadow: 0px 0px 1px #000;
}

#loadingscreen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100dvw;
	height: 100dvh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #0c0c0c;
	z-index: 10;
	visibility: visible;
	opacity: 1;
	transition: opacity 0.3s ease;
}

#splash {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.2s ease;
	transform: scale(0.8);
	user-select: none;
}

.grow {
	animation: grow 2s cubic-bezier(0.34, 0.68, 0.55, 0.95) forwards;
}

#loadinglogo {
	width: 90vw;
	max-width: 20rem;
	height: auto;
}

#loadingtitle {
	font-size: 3.5rem;
	font-weight: bold;
	font-family: 'Rubik Mono One';
	margin: 0;
	text-align: center;
}

#loadingtext {
	font-size: 1.5rem;
	font-family: 'Space Grotesk';
	margin: 1rem 0;
	text-align: center;
}

#contentarea {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
	padding-left: 7rem;
	padding-right: 1rem;
    overflow-y: auto;
    flex-grow: 1;
    height: 100dvh;
    width: calc(100dvw - 8rem);
	opacity: 1;
	transition: opacity 0.3s ease;
	user-select: none;
}

#pagetitlecontainer {
	position: fixed;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: max-height;
    width: calc(100dvw - 8rem);
    z-index: 2;
}

#pagetitle {
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 0.3rem 1.2rem;
    font-size: 2rem;
    text-align: center;
    box-shadow: 0px 0px 3px #fafafa33;
	text-shadow: 0px 0px 2px #000;
	margin: 0;
	opacity: 1;
	transition: opacity 0.3s ease;
}

.contenttitle {
	font-size: 2.5rem;
	margin: 0.5rem 0;
	text-align: center;
}

.contenttext {
	font-size: 1.1rem;
	margin: 0.5rem 0;
	text-align: center;
	color: #b4b4b4;
}

.notificationbanner {
	display: none;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	position: fixed;
	bottom: 1rem;
	width: 90%;
	min-height: 5.5rem;
	background-color: #1c1c1c;
	border-radius: 20px;
	border: 4px solid #00ab0aaa;
	box-shadow: 0px 2px 10px #000;
	z-index: 9999;
	left: 50%;
	transform: translate(-50%, 0);
	padding: 3px;
}

#notifcontent {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: auto;
	margin: 0rem 2rem;
	color: #fafafa;
	font-weight: bold;
	word-break: break-word;
}

#closenotif {
	width: 2rem;
	color: #fafafa;
	font-size: 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: 0;
}

.open-notif {
	animation: notifopen 0.3s ease-out forwards;
}

.closed-notif {
	animation: notifclose 0.3s ease-out forwards;
}

#noscriptwarn {
	position: fixed;
	top: 0;
	left: 0;
	width: 100dvw;
	height: 100dvh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #0c0c0c;
	z-index: 20;
}

.appbutton {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	padding: 0.6rem 1.2rem;
	margin: 0.5rem;
	border-radius: 15px;
	border: none;
	font-size: 1.2rem;
	font-family: 'Space Grotesk';
	background-color: #00ab0a;
	color: #fafafa;
	transition: all 0.3s ease;
	text-decoration: none;
	user-select: none;
}

.appbutton:hover {
	transform: translateY(-0.1rem);
	box-shadow: 0px 1px 5px #fafafaaa;
	scale: 1.02;
	cursor: pointer;
}

.appinput {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	padding: 0.6rem 1.2rem;
	margin: 0.5rem;
	border-radius: 15px;
	border: none;
	font-size: 1.2rem;
	font-family: 'Space Grotesk';
	text-align: center;
	background-color: #1c1c1c;
	color: #fafafa;
	transition: all 0.3s ease;
	text-decoration: none;
	user-select: none;
}

.appinput:hover {
	
}

.equalwidthwrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: max-content;
	height: auto;
}

.custom-checkbox {
	display: inline-block;
	cursor: pointer;
	border-radius: 500px;
	flex-shrink: 0;
}

.custom-checkbox input[type="checkbox"] {
	display: none;
}

.custom-checkbox .checkmark {
	position: relative;
	height: 5rem;
	width: 5rem;
	background-color: #1c1c1c;
	border-radius: 500px;
	vertical-align: middle;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 3rem;
	text-shadow: 0px 0px 3px #000;
	box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
}

.custom-checkbox input:checked + .checkmark {
	background-color: #00ab0a;
}

.custom-checkbox .checkmark i {
	display: none;
}

.custom-checkbox input:checked + .checkmark i {
	display: block;
}

.flashred {
	animation: flashred 1s infinite;
}

.padder {
	width: 100%;
	min-height: 5rem;
}

.rainbowbutton {
	width: 7rem;
    padding: 1rem;
	margin: 1rem;
    border: none;
    outline: none;
    color: rgb(255, 255, 255);
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.rainbowbutton:hover {
	scale: 1.05;
	cursor: pointer;
}

.rainbowbutton:hover::after {
	background-image: linear-gradient(45deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 225, 255, 0) 60%);
	background-size: 200% 100%;
	animation: shimmer 1.9s linear infinite;
}

.rainbowbutton:before {
	content: "";
	background: linear-gradient(
		45deg,
		#ff0000,
		#ff7300,
		#fffb00,
		#48ff00,
		#00ffd5,
		#002bff,
		#7a00ff,
		#ff00c8,
		#ff0000
	);
	position: absolute;
	top: -2px;
	left: -2px;
	background-size: 400%;
	z-index: -1;
	filter: blur(5px);
	-webkit-filter: blur(5px);
	width: calc(100% + 4px);
	height: calc(100% + 4px);
	animation: glowing-rainbowbutton 20s linear infinite;
	transition: opacity 0.3s ease-in-out;
	border-radius: 10px;
}

.staggered-animation::before {
	animation-delay: var(--animation-delay, 0s);
	
}

.rainbowbutton:after {
	z-index: -1;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: #0c0c0c;
	left: 0;
	top: 0;
	border-radius: 10px;
}

.squarebutton {
	width: 7rem;
    padding: 1rem;
	margin: 1rem;
    border: none;
    outline: none;
    color: rgb(255, 255, 255);
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	box-shadow: 0px 0px 2px 2px #fafafaaa;
}

.squarebutton:hover {
	box-shadow: 0px 0px 2px 2px #00ab0a;
	scale: 1.05;
}

.squarebuttonicon {
	font-size: 5rem;
}

.squarebuttontext {
	font-size: 1.4rem;
	font-weight: bold;
	text-align: center;
	margin-top: 1rem;
}

.buttongrid {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
	width: 100%;
	min-width: 400px;
	max-width: 60rem;
}

.rainbowbanner {
    padding: 0.6rem 2rem;
	margin: 0 1rem;
    border: none;
    outline: none;
    color: rgb(255, 255, 255);
    background: #111;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.rainbowbanner:before {
	content: "";
	background: linear-gradient(
		45deg,
		#ff0000,
		#ff7300,
		#fffb00,
		#48ff00,
		#00ffd5,
		#002bff,
		#7a00ff,
		#ff00c8,
		#ff0000
	);
	position: absolute;
	top: -2px;
	left: -2px;
	background-size: 400%;
	z-index: -1;
	filter: blur(1px);
	-webkit-filter: blur(1px);
	width: calc(100% + 4px);
	height: calc(100% + 4px);
	animation: glowing-rainbowbutton 23s linear infinite;
	transition: opacity 0.3s ease-in-out;
	border-radius: 25px;
}

.rainbowbanner:after {
	z-index: -1;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #0c0c0c;
	border-radius: 25px;
}

.textbutton {
	color: #00ab0a;
	text-decoration: none;
	margin: 0.5rem;
	cursor: pointer;
}

.textbutton:hover {
	opacity: 0.9;
}

.apptabwrapper {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	padding: 5px;
	border: 1px solid #fafafa;
	border-radius: 13px;
}

.apptab {
	border-radius: 8px;
	padding: 0.6rem 1.2rem;
	color: #fafafa;
	background: transparent;
	cursor: pointer;
	transition: background 0.3s ease;
}

.apptab:hover {
	color: #00ab0a;
	font-weight: bold;
}

.apptabactive {
	background: #00ab0a !important;
	color: #fafafa !important;
	font-weight: bold;
}

textarea {
	scrollbar-width: none;
}

textarea::-webkit-scrollbar {
	display: none;
}

.newslettercardcontainer {
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	width: 95%;
	max-width: 1000px;
}

.newslettercard {
	display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 15rem;
    width: 100%;
    margin: 1rem 0;
    border-radius: 25px;
    background-color: #1c1c1c;
    overflow: hidden;
	cursor: pointer;
    box-shadow: 0px 1px 5px 1px #000;
	transition: all 0.3s ease;
}

.newslettercard:hover {
	box-shadow: 0px 1px 5px 1px #fafafa77;
	transform: translateY(-0.1rem);
	color: #00ab0a;
	scale: 1.02;
}

.newslettercardimage {
	height: 100%;
	width: 50%;
	object-fit: cover;
}

.newslettercardcontent {
	display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    width: 50%;
    height: 100%;
}

.newslettercarddate {
	margin: 0;
	padding: 0.6rem 1.2rem;
	font-size: 0.9rem;
	color: #b4b4b4;
}

.newslettercardtitle {
	font-size: 1.6rem;
	font-weight: bold;
	margin: 0;
	padding: 0.3rem 1.2rem;
}

.buttonrow {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.smallnewslettercard {
	display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: auto;
    width: 100%;
    margin: 1rem 0;
    border-radius: 25px;
    background-color: #1c1c1c;
    overflow: hidden;
	cursor: pointer;
    box-shadow: 0px 1px 5px 1px #000;
	transition: all 0.3s ease;
}

.smallnewslettercard:hover {
	box-shadow: 0px 1px 5px 1px #fafafa77;
	transform: translateY(-0.1rem);
	color: #00ab0a;
	scale: 1.02;
}

.smallnewslettercardimage {
	height: 100%;
	width: 30%;
	object-fit: cover;
}

.smallnewslettercardcontent {
	display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    width: 70%;
    height: 100%;
	padding-bottom: 0.5rem;
}

.smallnewslettercarddate {
	margin: 0;
	padding: 0.6rem 1.2rem;
	font-size: 0.9rem;
	color: #b4b4b4;
}

.smallnewslettercardtitle {
	font-size: 1.6rem;
	font-weight: bold;
	margin: 0;
	padding: 0.3rem 1.2rem;
}

#newsletterreader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100dvw;
	height: 100dvh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s ease;
	background-color: #f0f0f0;
	z-index: 4;
	pointer-events: none;
}

#newsletterframe {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 5;
	pointer-events: none;
}

#closenewsletter {
	position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
    width: 4rem;
    height: 4rem;
    font-size: 3rem;
    background-color: #0c0c0c;
    border: none;
    border-radius: 15px;
    box-shadow: 0px 0px 1px #fafafa;
}

#scrolltotop {
	position: fixed;
    bottom: 1rem;
    right: 1rem;
    width: 4rem;
    height: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    transition: all 0.3s ease;
    background-color: #000;
    box-shadow: 0px 0px 2px #fafafaaa;
    border-radius: 15px;
	z-index: 2;
    opacity: 0;
    transform: translateY(10rem);
}

.openscrolltotop {
	opacity: 1 !important;
	transform: translateY(0) !important;
}

.newslettermanagerbuttons {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.newslettermanagerbuttons button {
	width: 90%;
}

@media (max-width: 850px) {
	
	.newslettercard {
		flex-direction: column;
		height: auto;
	}
	
	.newslettercardimage {
		height: auto;
		width: 100%;
	}
	
	.newslettercardcontent {
		width: 100%;
        height: auto;
        padding-bottom: 1rem;
	}
	
}

@media (max-width: 500px) {
	
	.navbar {
		height: 5rem;
        top: 0;
        left: 0;
        transform: none;
        border-radius: 0 0 25px 0;
	}
	
	.navrow {
		height: 5rem;
		width: 100%;
	}
	
	.navtitle {
		margin-left: 1rem !important;
	}
	
	.navbar-hover {
		height: 100dvh;
		width: 90vw;
		border-radius: 0 0 0 0;
	}
	
	#pagetitlecontainer {
		top: 0;
		right: 0;
		height: 5rem;
		width: calc(100dvw - 5rem);
	}
	
	#pagetitle {
		box-shadow: none;
	}
	
	#contentarea {
		padding-left: 0;
		padding-right: 0;
		width: 100dvw;
	}
	
	.padder {
		min-height: 5.5rem;
	}
	
	.buttongrid {
		max-width: 100dvw;
	}
	
	#scrolltotop {
		bottom: 0.5rem;
		right: 0.5rem;
	}
	
}

@keyframes glowing-rainbowbutton {
	0% {
		background-position: 0 0;
	}
	50% {
		background-position: 400% 0;
	}
	100% {
		background-position: 0 0;
	}
}

@keyframes flashred {
	0%, 100% {
		box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.6);
	}
	50% {
		box-shadow: 0px 1px 7px 5px rgba(255, 0, 0, 0.5);
	}
}

@keyframes erroropen {
	0% {
		transform: translate(-50%, 100%);
	}
	70% {
		transform: translate(-50%, -20%);
	}
	100% {
		transform: translate(-50%, 0);
	}
}

@keyframes errorclose {
	0% {
		transform: translate(-50%, 0);
	}
	30% {
		transform: translate(-50%, -20%);
	}
	100% {
		transform: translate(-50%, 100%);
	}
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@keyframes grow {
  from {
    transform: scale(0.8);
  }
  to {
    transform: scale(1);
  }
}

@keyframes notifopen {
	0% {
		transform: translate(-50%, 100%);
	}
	70% {
		transform: translate(-50%, -20%);
	}
	100% {
		transform: translate(-50%, 0);
	}
}

@keyframes notifclose {
	0% {
		transform: translate(-50%, 0);
	}
	30% {
		transform: translate(-50%, -20%);
	}
	100% {
		transform: translate(-50%, 100%);
	}
}

@keyframes shimmer {
	from {
		background-position: -200% 0;
	}
	to {
		background-position: 200% 0;
	}
}
