/* Site Loader */
#universal-loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	color: #fff;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.5s, visibility 0.5s;
}

.loader-content {
	text-align: center;
}

.loader-spinner {
	border: 5px solid #f3f3f3;
	border-top: 5px solid #3498db;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	animation: spin 1s linear infinite;
	margin: 0 auto 15px;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.loader-hidden {
	opacity: 0;
	visibility: hidden;
}
/* End: Site Loader */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	/* min-height: 100vh; @csi */
	/* background: url("abstrakt-hintergrund-kunst-farben-1591285425HGI.jpg") center center; @csi */
	/* background-size: 500px; @csi */
	display: flex;
	justify-content: center;
	align-items: center;
	/* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; @csi */
	padding: 20px;
	/* animation: moveBackground 210s linear infinite; @csi */
}

.container {
	padding: 40px;
	max-width: 600px;
	width: 100%;
	color: #fff;
	overflow: hidden;
}

.glass {
	/* background: rgba(255, 255, 255, 0.15); */ /* default */
	background: rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(5.5px); /* default 10px */
	-webkit-backdrop-filter: blur(5.5px);
	filter: url(#glass-distortion); /* new */
	border-radius: 20px;
	/* border: 0.1px solid rgba(255, 255, 255, 0.18); */ /* default */
	box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.2), 1px 1px 1px rgba(0, 0, 0, 0.1);
	transition: all 0.8s ease;
}

.glass:hover {
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20x);
	transition: all 0.8s ease;
}

.menu {
	padding: 20px;
	max-width: 600px;
	width: 100%;
	color: #fff;
	overflow: hidden;
	margin-bottom: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.logo {
	padding-right: 20px;
	padding-top: 5px;
}

.nav {
	padding-left: 20px;
	display: flex;
	gap: 15px;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bolder;
}

.nav_link {
	text-decoration: none;
	color: #fff;
	text-shadow: 0 0 2px #e6e6e6,0 0px 10px #fff;
}

.nav_link:hover {
	color: #e0e0e0;
	/* text-decoration-line: underline overline;
	text-decoration-thickness: 2px; */
	text-shadow: none;
}

.nav_link_active {
	color: #e0e0e0;
	text-decoration-line: none;
	text-shadow: none;
}

.title_figure {
	margin-top: -40px;
	margin-left: -40px;
	margin-right: -40px;
	margin-bottom: 20px;
}

.title_image {
	width: 100%;
	display: block;
	height: auto;
}

.content_figure {
	margin-top: 20px;
	margin-left: -40px;
	margin-right: -40px;
	margin-bottom: 20px;
}

.content_image {
	width: 100%;
	display: block;
	height: auto;
}

form {
	padding: 20px 0;
	position: relative;
	z-index: 2;
}

form input {
	appearance: none;
	outline: 0;
	border: 1px solid rgba(255, 255, 255, 0.4);
	background-color: rgba(255, 255, 255, 0.2);
	width: 250px;
	border-radius: 3px;
	padding: 10px 15px;
	margin: 0 auto 10px auto;
	display: block;
	text-align: center;
	font-size: 18px;
	color: white;
	-webkit-transition-duration: 0.25s;
	transition-duration: 0.25s;
	font-weight: 300;
}

form textarea {
	appearance: none;
	outline: 0;
	border: 1px solid rgba(255, 255, 255, 0.4);
	background-color: rgba(255, 255, 255, 0.2);
	width: 250px;
	border-radius: 3px;
	padding: 10px 15px;
	margin: 0 auto 10px auto;
	display: block;
	text-align: center;
	font-size: 18px;
	color: white;
	-webkit-transition-duration: 0.25s;
	transition-duration: 0.25s;
	font-weight: 300;
}

form input:hover {
	/* background-color: rgba(255, 255, 255, 0.4); */
	background: rgba(255, 255, 255, 0.35);
	backdrop-filter: blur(10px); /* default 10px */
	-webkit-backdrop-filter: blur(10px);
}

form textarea:hover {
	/* background-color: rgba(255, 255, 255, 0.4); */
	background: rgba(255, 255, 255, 0.35);
	backdrop-filter: blur(10px); /* default 10px */
	-webkit-backdrop-filter: blur(10px);
}

form input:focus {
	/* background-color: white;
	width: 300px;
	color: #53e3a6; */
	background: rgba(255, 255, 255, 0.35);
	backdrop-filter: blur(10px); /* default 10px */
	-webkit-backdrop-filter: blur(10px);
	color: #fff;
	width: 300px;
}

form textarea:focus {
	/* background-color: white;
	width: 300px;
	color: #53e3a6; */
	background: rgba(255, 255, 255, 0.35);
	backdrop-filter: blur(10px); /* default 10px */
	-webkit-backdrop-filter: blur(10px);
	color: #fff;
	width: 300px;
}

form input::placeholder {
	color: rgba(255, 255, 255, 0.35);
}

form textarea::placeholder {
	color: rgba(255, 255, 255, 0.35);
}

form button {
	appearance: none;
	outline: 0;
	/* background-color: white; */
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(20px); /* default 10px */
	-webkit-backdrop-filter: blur(10px);
	border: 0;
	padding: 10px 15px;
	color: #fff;
	text-shadow: 0 -0.5px 1px #3d3d3d,0 0 1px #fff;
	border-radius: 3px;
	width: 250px;
	cursor: pointer;
	font-size: 18px;
	transition-duration: 0.25s;
	display: block;
	margin: 0 auto;
}

form button:hover {
	/* background-color: #f5f7f9; */
	background: rgba(255, 255, 255, 0.35);
	backdrop-filter: blur(10px); /* default 10px */
	-webkit-backdrop-filter: blur(10px);
}

.info-msg,
.success-msg,
.warning-msg,
.error-msg {
	text-align: center;
	padding: 10px 50px 15px 50px;
	border-radius: 10px;
}

.info-msg {
	/* color: #059; */ /* default */
	/* background-color: #BEF; */ /* default */
	color: #BEF;
	background-color: rgb(128, 223, 255, 0.5);
}

.success-msg {
	color: #270;
	background-color: #DFF2BF;
}

.warning-msg {
	color: #9F6000;
	background-color: #FEEFB3;
}

.error-msg {
	/* color: #D8000C; */ /* default */
	/* background-color: #FFBABA; */ /* default */
	color: #ff9393;
	background-color: rgba(255, 0, 0, 0.5);
}

.icon-msg {
	font-size: 25px;
}

.footer {
	padding: 10px 20px;
	max-width: 600px;
	width: 100%;
	color: #fff;
	overflow: hidden;
	margin: 10px auto;
	display: flex;
	justify-content: space-between;
	color: #fff;
	text-shadow: 0 -0.5px 1px #3d3d3d,0 0 1px #fff;
	/* font-weight: bolder; */
	font-size: 0.9em;
}

.footer_link {
	text-decoration: none;
	color: #fff;
	text-shadow: 0 -0.5px 1px #3d3d3d,0 0 1px #fff;
}

.footer_link:hover {
	color: #e0e0e0;
	/* text-decoration-line: underline overline;
	text-decoration-thickness: 2px; */
	text-shadow: none;
}

h1, h2, h3, h4 {
	margin-bottom: 15px;
	text-shadow: 0 0px 1px #c4b59d,0 -1px 1px #fff;
}

h1 {
	font-size: 2rem;
	color: #ffffff;
	font-weight: bolder;
}

h2 {
	margin-top: 30px;
	font-size: 1.5rem;
}

h3 {
	font-size: 1.25rem;
}

h4 {
	font-weight: bolder;
}

p {
	line-height: 1.6;
	margin-bottom: 15px;
	/* font-size: 1.1rem; */
	text-shadow: 0 -0.5px 1px #3d3d3d,0 0 1px #fff;
}

a {
	text-decoration: none;
	color: #fff;
	/* text-shadow: 1px -1px 2px #3d3d3d,0 0 2px #fff; */
	text-decoration-line: underline;
}

a:hover {
	color: #e0e0e0;
	/* text-decoration-line: underline overline;
	text-decoration-thickness: 2px; */
	text-shadow: none;
	text-decoration-line: none;
}

ul {
	margin-left: 10px;
	margin-bottom: 15px;
}

li {
	margin-left: 10px;
}

hr {
    border: 0;
    height: 2px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.75), rgba(0, 0, 0, 0));
	margin-top: 15px;
	margin-bottom: 15px;
}

.table_thead {
	width: 100%;
	text-align: center;
	margin-bottom: 15px;
}

.table_thead th {
	font-weight: bolder;
	text-align: center;
}

.table_thead td {
	text-align: center;
	border-color: white;
	border-style: solid;
	border-width: 2px;
}

blockquote {
	background: rgba(6, 6, 7, 0.1);
	/* color: #617a91; */
	font-size: 1.25rem;
	font-style: italic;
	/* border: 1px solid #2e87e7; */
	border-radius: 4px;
	padding: 20px;
	margin: 1.5em 10px;
	clear: both;
}

blockquote:before {
	color: rgba(30, 144, 255, 0.75);
	content: open-quote;
	font-size: 6rem;
	line-height: 0.1em;
	margin-right: 0.25em;
	vertical-align: -0.4em;
}

.blockquote_credit {
	font-size: 0.75rem;
}

/* Dynamic Scroll-to-Top */
#scroll-top-btn {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	/* background: #ffcc00; */ /* default */
	background: rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(5.5px); /* default 10px */
	-webkit-backdrop-filter: blur(5.5px);
	color: #1a2a6c;
	border: none;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
	z-index: 1000;
}

#scroll-top-btn:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
	/* background: #ffdb4d; */ /* default */
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20x);
}

#scroll-top-btn.visible {
	display: flex;
}

.scroll-indicator {
	position: fixed;
	bottom: 100px;
	right: 45px;
	font-size: 0.9rem;
	padding: 10px 15px;
	border-radius: 15px;
	opacity: 0;
	transition: opacity 0.3s;
	pointer-events: none;
	/* background: rgba(255, 255, 255, 0.15); */ /* default */
	background: rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(5.5px); /* default 10px */
	-webkit-backdrop-filter: blur(5.5px);
	box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.2), 1px 1px 1px rgba(0, 0, 0, 0.1);
	color: #fff;
	text-shadow: 0 -0.5px 1px #3d3d3d,0 0 1px #fff;
}

#scroll-top-btn:hover + .scroll-indicator {
	opacity: 1;
}
/* End: Dynamic Scroll-to-Top */

.slate {
	display: none;
}

.non_slate {
	display: inline;
}

/* @keyframes moveBackground {
	from {
		background-position: 0% -1500%;
	}
	to {
		background-position: 0% 0%;
	}
} @csi */

/* Disable Filter on Google Chrome
@media screen and (-webkit-min-device-pixel-ratio:0) {
	.glass {
		filter: none !important;
	}
} */

/* Responsive Adjustments */
@media (max-width: 768px) {
	#scroll-top-btn {
		bottom: 79px; /* default 20px */
		right: 20px;
		width: 50px;
		height: 50px;
		font-size: 1.5rem;
	}
	.scroll-indicator {
		display: none;
	}
}
@media (max-width: 600px) {
	.container {
		padding: 25px;
	}
	h1 {
		font-size: 2rem;
	}
}
@media (max-width: 500px) {
	.menu {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.logo {
		padding-right: 0;
		margin-bottom: 10px;
	}
	.nav {
		padding-left: 0;
		margin-top: 0;
		justify-content: center;
	}
	.footer {
		justify-content: center;
	}
	.footer_mobile_span {
		display: none;
	}
	.slate {
		display: inline;
	}
	.non_slate {
		display: none;
	}
}