html {
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	line-height: 1.3;
}

body {
	margin: 0px;
	min-height: 100vh;
	/*padding: 40px;*/
	box-sizing: border-box;
}

pre {
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	line-height: 1.3;
	white-space: pre-wrap;
}

@keyframes fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes fade-out {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
@keyframes slide {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(24px);
	}
}
.loading {
	display: none;
}

.loading-spinner {
	position: relative;
	width: 100%;
	margin-top: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
}

loading-spinner {
	position: relative;
	top: 15%;
	left: 40%;
	width: -moz-fit-content;
	width: fit-content;
	height: -moz-fit-content;
	height: fit-content;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding: 15px;
	box-sizing: border-box;
}

.spinner {
	width: 40px;
	height: 40px;
	border: 4px solid var(--LightGrey);
	border-top: 4px solid var(--AccentColor);
	border-radius: 50%;
	animation: spin 1s linear infinite;
}
.spinner.small {
	width: 20px;
	height: 20px;
}
.spinner.extra-small {
	width: 10px;
	height: 10px;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
.FehlerMeldung {
	text-align: center;
	padding: 20px;
	font-weight: 600;
	color: var(--SignalRot);
}

/* Use this message box to give user some quick feedback on something happening in the page */
.message-box {
	position: absolute;
	top: 30px;
	right: 45vh;
	z-index: 1000;
	padding: 10px;
	border-radius: 10px;
	box-shadow: 0px 1px 10px 2px rgba(0, 0, 0, 0.1);
	background-color: white;
	transition: opacity 0.5s;
	/* adjust the duration to your liking */
	opacity: 1;
}

.disabled {
	cursor: not-allowed;
	opacity: 0.5;
}

side-bar {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	padding-top: 45px;
	padding-bottom: 25px;
	width: var(--side-bar-width);
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-color: white;
	box-sizing: border-box;
	box-shadow: 1px 0px 4px 0px rgba(0, 0, 0, 0.2);
	font-size: 11px;
	text-align: center;
	color: var(--AccentColor);
}
side-bar a {
	width: 100%;
}

.logo {
	width: 60%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	/* or cover, depending on your preference */
}

side-bar-item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	width: 100%;
	height: 62px;
	cursor: pointer;
	flex-shrink: 0;
}
side-bar-item .icon {
	width: auto;
	height: 20px;
	fill: var(--AccentColor);
}
side-bar-item p {
	margin-top: 5px;
	margin-bottom: 0;
}
side-bar-item .indicator {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 4px;
	background-color: var(--AccentColor);
	box-shadow: 2px 3px 11px 0px rgba(0, 0, 0, 0.7);
	border-radius: 0 6px 6px 0;
	animation: fade-in 0.6s ease forwards;
	transition: all 0.5s ease;
}

.side_bar_top,
.side_bar_bottom {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: auto;
	width: 100%;
	gap: 20px;
}

side-panel {
	display: flex;
	flex-direction: column;
	position: fixed;
	top: 0;
	left: 0px;
	right: 0;
	bottom: 0;
	box-sizing: border-box;
	--side-panel-padding-top: 90px;
	padding-top: 0;
	padding-right: 0px;
	padding-left: 0px;
	height: 100vh;
	--side-panel-width: 518px;
	width: var(--side-panel-width);
	background-color: white;
	box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.2);
	overflow-y: hidden;
	z-index: -1;
	transition: left 0.3s ease;
}
side-panel.suchsets-panel {
	display: flex;
	flex-direction: column;
	--suchsets-panel-width: 800px;
	width: var(--suchsets-panel-width);
	height: 100vh;
	padding-top: 0;
}
side-panel.suchsets-panel .fixed-top-box {
	flex: 0 0 auto;
	width: var(--suchsets-panel-width);
	height: -moz-fit-content;
	height: fit-content;
	position: static;
	padding-bottom: 4px;
}
side-panel.suchsets-panel .scrollable-box {
	overflow-y: auto;
	overflow-x: hidden;
	flex: 1;
}
side-panel.closed {
	left: -800px;
}
side-panel:not(.closed) {
	left: 81px;
}
side-panel .back_button {
	height: 41px;
	width: 30px;
	display: block;
	position: absolute;
	left: 48px;
	top: 37px;
	font-size: 16px;
	color: var(--BlackText);
	text-decoration: none;
	cursor: pointer;
	font-weight: 600;
	box-sizing: border-box;
	padding: 8px 0;
}
side-panel .back_button .icon {
	width: 15px;
}
side-panel .fixed-top-box {
	flex: 0 0 auto;
	position: static;
	height: -moz-fit-content;
	height: fit-content;
	width: var(--side-panel-width);
	box-sizing: border-box;
	padding-top: var(--side-panel-padding-top);
	padding-bottom: 15px;
	background-color: white;
	box-shadow: 0px 1px 10px 2px rgba(0, 0, 0, 0.1);
	z-index: 100;
}
side-panel .history {
	height: 185px;
}

.breadcrumbs {
	cursor: pointer;
	color: var(--AccentColor);
	text-decoration: underline;
	margin: 0;
	font-size: 12px;
	font-weight: 400;
}
.breadcrumbs:hover {
	text-decoration: none;
}

.scrollable-box {
	overflow-y: auto;
	overflow-x: hidden;
	height: 95%;
}

.side-panel-container {
	padding: 0 48px;

	&.border-y-2 {
		border-top: 2px solid #ffffff;
		border-bottom: 2px solid #ffffff;
	}
}
.side-panel-container h2 {
	font-size: 18px;
	font-weight: 500;
	margin-top: 0;
	margin-bottom: 10px;
}
.side-panel-container .page-title {
	margin-top: 10px;
}
.side-panel-container .header-and-refresh-btn {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin-top: 10px;
}
.side-panel-container .header-and-refresh-btn .refresh-btn {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	height: 25px;
	width: 25px;
	cursor: pointer;
	border-radius: 50%;
	box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.2);
}
.side-panel-container .header-and-refresh-btn .refresh-btn icon-component {
	height: 13px;
	padding-bottom: 1px;
}
.side-panel-container .header-and-refresh-btn .refresh-btn .icon {
	height: 13px;
	width: auto;
	fill: var(--AccentColor);
}
.side-panel-container .header-and-refresh-btn .refresh-btn p {
	font-size: 14px;
}
.side-panel-container h3 {
	margin: 15px 0;
	font-size: 16px;
	font-weight: 500;
}
.side-panel-container .cancel-btn {
	padding: 8px 5px;
	color: red;
	font-size: 14px;
	cursor: pointer;
}

.folder-lvl-4 {
	padding-top: 0px;
	padding-bottom: 15px;
}
.folder-lvl-4 h3 {
	margin-bottom: 5px;
}
.folder-lvl-4 pre {
	margin-top: 0;
	margin-bottom: 20px;
}

.sondersuchset-toggle-container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 30%;
	gap: 10px;
	h3 {
		margin: 0;
	}
}

.fehlerpunkte-container {
	display: flex;
	flex-direction: column;

	&.Hidden {
		display: none;
	}
}

#floating-panel-wrapper {
	position: fixed;
	top: 33px;
	left: -1650px;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
	width: -moz-fit-content;
	width: fit-content;
	box-sizing: border-box;
}
#floating-panel-wrapper.closed {
	left: -1650px;
	opacity: 0;
}
#floating-panel-wrapper:not(.closed) {
	left: 610px;
	opacity: 1;
	transition: opacity 0.2s ease;
}

floating-panel {
	display: none;
	box-sizing: border-box;
	border-radius: 10px;
	padding-top: 40px;
	padding-right: 0px;
	padding-left: 0px;
	height: 92vh;
	width: 25vw;
	max-width: 500px;
	background-color: white;
	box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	z-index: -1;
	transition: opacity 0.2s ease;
	opacity: 0;
}
floating-panel h2 {
	font-size: 16px;
	font-weight: 500;
	margin: 0;
}
floating-panel h3 {
	margin: 0;
	font-size: 15px;
	font-weight: 500;
}
floating-panel.closed {
	display: none;
	opacity: 0;
}
floating-panel:not(.closed) {
	display: block;
	opacity: 1;
	transition: all 0.2s ease;
}
floating-panel .closebtn {
	display: flex;
	align-items: center;
	position: absolute;
	right: 12px;
	top: 12px;
	height: 12px;
	width: 12px;
	cursor: pointer;
	border-radius: 50%;
	box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
	padding: 8px;
	margin: 0;
	z-index: 1000;
}
floating-panel .closebtn .icon {
	fill: var(--AccentColor);
}

folder-nav-panel {
	box-sizing: border-box;
	border-radius: 10px;
	padding-top: 40px;
	padding-right: 0px;
	padding-left: 0px;
	height: 92vh;
	width: 25vw;
	max-width: 500px;
	background-color: white;
	box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	z-index: -1;
	transition: opacity 0.2s ease;
	opacity: 0;
}
folder-nav-panel h2 {
	font-size: 16px !important;
	font-weight: 500;
	margin: 0;
}
folder-nav-panel h3 {
	margin: 0;
	font-size: 15px !important;
	font-weight: 500;
}
folder-nav-panel.closed {
	display: none;
	opacity: 0;
}
folder-nav-panel:not(.closed) {
	display: block;
	opacity: 1;
	transition: all 0.2s ease;
}
folder-nav-panel .closebtn {
	display: flex;
	align-items: center;
	position: absolute;
	right: 12px;
	top: 12px;
	height: 12px;
	width: 12px;
	cursor: pointer;
	border-radius: 50%;
	box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
	padding: 8px;
	margin: 0;
	z-index: 1000;
}
folder-nav-panel .closebtn .icon {
	fill: var(--AccentColor);
}
folder-nav-panel .back_button {
	height: 41px;
	width: 30px;
	display: block;
	position: absolute;
	left: 48px;
	top: 10px;
	font-size: 16px;
	color: var(--BlackText);
	text-decoration: none;
	cursor: pointer;
	font-weight: 600;
	box-sizing: border-box;
	padding: 8px 0;
}
folder-nav-panel .back_button .icon {
	width: 15px;
}
folder-nav-panel .linking-button-on {
	background-color: var(--AccentColor);
	border-radius: 50%;
	padding: 9px;
	box-sizing: border-box;
	height: 35px;
	width: 35px;
	cursor: pointer;
}
folder-nav-panel .linking-button-on .icon {
	height: 15px;
	width: auto;
	fill: white;
}
folder-nav-panel .linking-button-off {
	border-radius: 50%;
	border: 2px solid var(--AccentColor);
	padding: 8px;
	box-sizing: border-box;
	height: 35px;
	width: 35px;
	cursor: pointer;
}
folder-nav-panel .linking-button-off .icon {
	height: 15px;
	width: auto;
	fill: var(--AccentColor);
}

.nav-folder-link-btn {
	margin: 0;
}

.floating-panel-container {
	padding: 0 32px;
	box-sizing: border-box;
}
.floating-panel-container h2 {
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
	display: -webkit-box;
	-webkit-line-clamp: 5; /* Chrome, Safari */
	-moz-line-clamp: 5; /* Firefox */
	line-clamp: 5; /* Standard property */
	-webkit-box-orient: vertical;
	box-orient: vertical;
}
.floating-panel-container .linking-button-on {
	background-color: var(--AccentColor);
	border-radius: 50%;
	padding: 9px;
	box-sizing: border-box;
	margin-top: 12px;
	height: 35px;
	width: 35px;
	cursor: pointer;
}
.floating-panel-container .linking-button-on .icon {
	height: 15px;
	width: auto;
	fill: white;
}
.floating-panel-container .linking-button-off {
	border-radius: 50%;
	border: 2px solid var(--AccentColor);
	padding: 8px;
	box-sizing: border-box;
	margin-top: 12px;
	height: 35px;
	width: 35px;
	cursor: pointer;
}
.floating-panel-container .linking-button-off .icon {
	height: 15px;
	width: auto;
	fill: var(--AccentColor);
}
.floating-panel-container .download-btn-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	margin-top: 20px;
	box-sizing: border-box;
}
.floating-panel-container .download-btn-container .eyes-container {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	height: 48px;
}
.floating-panel-container .download-btn-container .eye-btn {
	width: 25px;
	cursor: pointer;
}
.floating-panel-container .download-btn-container .eye-btn .icon {
	fill: var(--AccentColor);
	height: 20px;
	width: auto;
}

.order-links-btn {
	margin-top: 20px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 15px;
	height: 40px;
	width: -moz-fit-content;
	width: fit-content;
	cursor: pointer;
	border-radius: 10px;
	background-color: #091f77;
	box-sizing: border-box;
	padding: 0 32px;
	color: white;
}
.order-links-btn .icon {
	fill: white;
	width: auto;
	height: 20px;
}
.order-links-btn:hover {
	opacity: 0.8;
}

.linked-folders-container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 5px;
	margin: 5px 0;
}

download-button {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	height: 48px;
	width: 86%;
	cursor: pointer;
	border-radius: 10px;
	background-color: var(--AccentColor);
	box-sizing: border-box;
	padding: 0 32px;
	color: white;
	box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.2);
}
download-button:hover {
	background-color: #633077;
}
download-button p {
	margin: 0;
	font-size: 12px;
	font-weight: 500;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
download-button .icon {
	fill: white;
	width: auto;
	height: 20px;
}

custom-tooltip {
	width: -moz-fit-content;
	width: fit-content;
	height: -moz-fit-content;
	height: fit-content;
	box-sizing: border-box;
	overflow: hidden;
	width: 100%;
}
custom-tooltip p {
	margin: 0;
}

.tooltip {
	position: absolute;
	background-color: #f0f0f0;
	padding: 5px 10px;
	border-radius: 5px;
	border: 1px solid var(--AccentColor);
	box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.1254901961);
	font-size: 11px;
	z-index: 100;
	pointer-events: none; /* Prevents the tooltip from interfering with mouse events */
	transition: opacity 0.3s ease-in-out;
	max-width: 400px; /* Maximum width of the tooltip */
	white-space: normal; /* Allows text to wrap */
}

header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	box-sizing: border-box;
	padding: 13px 30px;
	overflow: hidden;
	z-index: 10;
	height: 50px;
	background-color: white;
}
header .menuButton {
	position: relative;
	display: inline-block;
	height: 24px;
	cursor: pointer;
}
header .ausloggenButton {
	position: absolute;
	right: 40px;
	top: 13px;
	height: 24px;
	cursor: pointer;
}
header h1 {
	color: var(--SignalGruen);
	letter-spacing: 3px;
	font-weight: bold;
	font-size: 24px;
	display: inline-block;
	margin: 0 40px;
}

footer {
	background-color: rgb(238, 238, 238);
	box-sizing: border-box;
	/* padding: 10px 50px 0px 50px; */
	padding-left: 10px;
	position: fixed;
	width: auto;
	bottom: 0;
	right: 0;
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	font-size: 11px;
	z-index: 10;
	box-shadow: 0px -4px 6px rgba(255, 255, 255, 0.2);
}

.accountTagContainer {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 10;
	width: fit-content;
	min-width: 200px;
	height: fit-content;
	min-height: 35px;

	.loggedAccountHeader {
		background-color: rgb(238, 238, 238);
		box-sizing: border-box;
		/* padding: 10px 50px 0px 50px; */
		padding: 8px;
		position: fixed;
		width: fit-content;
		top: -30px;
		right: 0;
		margin-right: 10px;
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;
		font-size: 12px;
		z-index: 10;
		box-shadow: 0px -4px 6px rgba(255, 255, 255, 0.2);
		border-radius: 0 0 8px 8px;
		transition: top 0.2s ease;

		&.Hidden {
			display: none;
		}
	}

	&:hover {
		.loggedAccountHeader {
			top: 0;
		}
	}
}

/* Hide the Google print */
.gmnoprint {
	display: none;
}

/* Excluded the image from the footer */
/* footer img {
    height: 20px;
  } */
footer section {
	position: relative;
	right: 0;
	display: flex;
	flex-direction: row;
	gap: 10px;
}
footer section div:first-of-type {
	cursor: pointer;
}

.DefaultButton {
	display: inline-flex;
	align-items: center;
	padding: 12px 25px;
	background-color: white;
	border: 2px solid var(--Kontrastfarbe);
	font-size: 105%;
	box-shadow: 4px 4px 8px var(--Schattengrau);
	cursor: pointer;
}
.DefaultButton img {
	height: 20px;
	margin-right: 10px;
}

.LoginWrapper {
	position: relative;
	padding-top: 50px;
	box-sizing: border-box;
	text-align: center;

	&.Hidden {
		display: none;
	}
}

.LoginText {
	margin-bottom: 5px;
	margin-top: 15px;
	font-weight: 600;
}

.LoginWrapper input {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 250px;
	padding: 4px;
	border-style: solid;
	border-width: 0px;
	border-bottom-width: 1px;
	border-color: var(--Kontrastfarbe);
	text-align: center;
	color: var(--Kontrastfarbe);
}
.LoginWrapper input:focus {
	outline: 0;
	box-shadow: 0px 1px 3px var(--Kontrastfarbe);
}
.LoginWrapper button {
	padding: 10px 35px;
	margin-top: 20px;
	background-color: white;
	color: var(--Kontrastfarbe);
	border: 2px solid var(--Kontrastfarbe);
	font-size: 105%;
	font-weight: 600;
	cursor: pointer;
	box-shadow: 4px 4px 8px var(--Schattengrau);
	transition-duration: 0.2s;
}
.LoginWrapper button:hover {
	color: white;
	background-color: var(--Kontrastfarbe);
	transition-duration: 0.2s;
}
.LoginWrapper button:focus {
	outline: 0;
	box-shadow: 0px 1px 3px var(--Kontrastfarbe);
}
.LoginWrapper button:disabled {
	color: var(--InaktivGrau) !important;
	border-color: var(--InaktivGrau) !important;
}

.KundenAuswahl {
	display: flex;
	flex-direction: column;
	gap: 15px;
	box-sizing: border-box;
	width: 400px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;

	.KundenAuswahlEintrag {
		margin: 0;
		cursor: pointer;
		padding: 20px;
		box-sizing: border-box;
		box-shadow: 0 0 4px 0px rgba(0, 0, 0, 0.2);
		display: flex;
		flex-direction: row;
		width: 100%;
		border-radius: 5px;
		border: 2px solid var(--LightGrey);
		color: var(--BlackText);
		transition: all 0.2s ease;

		&:hover,
		&:focus {
			background-color: #fbfbfb;
			border: 2px solid var(--AccentColor);
			color: var(--AccentColor);
			box-shadow: 0 0 4px 0px rgba(0, 0, 0, 0.2);
		}

		p {
			margin: 0;
			font-size: 16px;
			font-weight: 600;
		}

		icon-component {
			height: 20px;
			width: auto;

			.icon {
				height: 20px;
				width: auto;
				fill: var(--AccentColor);
			}
		}
	}
}

.DezenterLink {
	margin-top: 20px;
	text-decoration: underline;
	cursor: pointer;
}

search-box {
	position: absolute;
	top: 33px;
	left: 174px;
	z-index: 10;
}

.search_area {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	width: 376px;
}

.search_bar {
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	border-radius: 15px;
	box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.2);
	width: 376px;
	height: 48px;
}
.search_bar input {
	width: 100%;
	height: 100%;
	border: none;
	outline: none;
	padding: 0 20px;
	font-size: 14px;
}
.search_bar button {
	width: 101px;
	height: 100%;
	border: none;
	outline: none;
	background: var(--AccentColor);
	cursor: pointer;
	border-radius: 0 15px 15px 0;
}
.search_bar button .icon {
	width: 20px;
	height: 20px;
	fill: white;
}

.history_search_bar {
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.1);
	width: 100%;
	height: 30px;
}
.history_search_bar input {
	width: 100%;
	height: 100%;
	border: none;
	outline: none;
	padding: 0 20px;
	font-size: 13px;
}
.history_search_bar button {
	width: 101px;
	height: 100%;
	border: none;
	outline: none;
	background: var(--LightGrey);
	cursor: pointer;
	border-radius: 0 8px 8px 0;
}
.history_search_bar button .icon {
	width: 15px;
	height: 15px;
	fill: white;
}

#address_suggestions {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
	background-color: white;
	padding: 20px;
	box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.2);
	border-radius: 15px;
	z-index: 1000;
	max-width: 376px;
	min-width: 376px;
	max-height: 350px;
	box-sizing: border-box;
	overflow-y: scroll;
	scrollbar-color: #ccc rgba(255, 255, 255, 0);
}
#address_suggestions.Hidden {
	display: none;
}
#address_suggestions a {
	text-decoration: none;
	color: var(--BlackText);
}
#address_suggestions a:hover {
	color: var(--AccentColor);
}

.map_div {
	position: absolute;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	z-index: 0;
	border: 0;
}
.map_div * {
	border: 0 !important;
}

.results_box {
	padding: 0 48px;
	box-sizing: border-box;
}

.results_box_header {
	height: auto;
}

.results_box_header_text {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 25px;
	color: var(--BlackText);
	text-align: center;
}
.results_box_header_text h2 {
	font-size: 18px;
	font-weight: 500;
	margin: 0;
	text-align: left;
}
.results_box_header_text .icon {
	width: 25px;
	height: 25px;
	fill: var(--BlackText);
}

.results_box_info_text {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: var(--BlackText);
	text-align: center;
}
.results_box_info_text p {
	font-size: 11px;
	margin: 0;
	color: var(--BlackText);
}

.badge {
	font-size: 11px;
	border-radius: 30px;
	padding: 3px 6px;
}

.badge-gultig {
	background-color: var(--BadgeGultig);
}

.badge-ungultig {
	background-color: var(--BadgeUngultig);
}

.badge-archiviert {
	background-color: var(--BadgeArchiviert);
}

.badge-Super-Admin {
	background-color: var(--BadgeSuperAdmin);
}

.badge-BPlan-Manager {
	background-color: var(--BadgeSuperAdmin);
}

.badge-Admin {
	background-color: var(--BadgeAdmin);
}

.badge-Benutzer {
	background-color: var(--BadgeBenutzer);
}

.badge-Beobachter {
	background-color: var(--BadgeBeobachter);
}

.results_box_address {
	margin-top: 15px;
	margin-bottom: 5px;
	display: flex;
	flex-direction: row;
	gap: 16px;
}
.results_box_address .icon {
	fill: var(--LightGrey);
	width: auto;
	height: 20px;
}
.results_box_address p {
	font-size: 14px;
	font-weight: 500;
	margin: 0;
	color: var(--BlackText);
}

toggle-option {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	font-weight: 500;
	margin: 0;
	color: var(--BlackText);
}
toggle-option p {
	margin: 8px 0;
}

toggle-switch {
	width: 52px;
	height: 26px;
	border-radius: 16px;
	border: 1px solid var(--LightGrey);
	display: flex;
	justify-content: flex-start;
	align-items: center;
	cursor: pointer;
	transition: background-color 0.3s;
}
toggle-switch .switch {
	margin: 4px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	transition: margin-left 0.3s;
}
toggle-switch[istoggled="false"] {
	background-color: white;
}
toggle-switch[istoggled="false"] .switch {
	background-color: var(--LightGrey);
	margin-left: 4px;
}
toggle-switch[istoggled="true"] {
	background-color: var(--AccentColor);
}
toggle-switch[istoggled="true"] .switch {
	background-color: white;
	margin-left: calc(100% - 24px);
}

.suchset-edit-panel {
	position: absolute;
	top: 0;
	left: var(--side-bar-width);
	right: 0;
	bottom: 0;
	background-color: white;
	height: 100vh;
	/* width: calc(100vw - var(--side-bar-width)); */
	padding-right: 33px;
	padding-left: 48px;
	padding-top: 45px;
	padding-bottom: 25px;
	box-sizing: border-box;
}
.suchset-edit-panel .suchset-edit-container {
	display: flex;
	flex-direction: row;
	gap: 25px;
}
.suchset-edit-panel .back-button-container .icon {
	fill: var(--BlackText);
	width: auto;
	height: 20px;
}

.suchset-edit-column-left,
.suchset-edit-column-right {
	box-sizing: border-box;
	overflow-y: auto;
	overflow-x: hidden;
	height: 100%;
	padding-right: 12px;
}

.suchset-edit-column-left {
	width: 40%;
}

.suchset-edit-column-right {
	padding-top: 32px;
	width: 60%;
}

.suchset-description {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-top: 20px;
	margin-bottom: 20px;
}
.suchset-description h3 {
	font-size: 18px;
	font-weight: 500;
	margin: 0;
	color: var(--BlackText);
}
.suchset-description h2.red-text-alert {
	font-size: 18px;
	font-weight: 500;
}

.suchset-description-text {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
	font-size: 14px;
	font-weight: 500;
	margin: 0;
	color: var(--BlackText);
}
.suchset-description-text p,
.suchset-description-text pre {
	margin: 0;
	font-size: 12px;
	font-weight: 400;
	line-height: 20px;
	color: var(--BlackText);
}
.suchset-description-text icon-component {
	padding: 8px;
	cursor: pointer;
}
.suchset-description-text .icon {
	fill: var(--BlackText);
	width: auto;
	height: 20px;
}

.back-button-container {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	width: -moz-fit-content;
	width: fit-content;
	height: 25px;
}
.back-button-container p {
	margin: 0;
	line-height: 15px;
}

.suchset-edit-header {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	margin-top: 40px;
	margin-bottom: 10px;
}
.suchset-edit-header h2 {
	font-size: 22px;
	font-weight: 500;
	margin: 0;
}
.suchset-edit-header .test-suchset-button-container {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
	gap: 3px;
	width: -moz-fit-content;
	width: fit-content;
}
.suchset-edit-header .test-suchset-button-container .test-suchset-alert {
	margin: 0;
	font-size: 12px;
	font-weight: 400;
	color: red;
}

textarea {
	padding: 10px;
	font-family: Montserrat, sans-serif;
	font-size: 12px;
	font-weight: 400;
	line-height: 20px;
	border: 1px solid var(--AccentColor);
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	width: 100%;
	height: 80px;
	resize: none;
}
textarea:focus {
	outline: none;
}

.keywords-section,
.relations-section {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 30px 0;
}
.keywords-section h3,
.relations-section h3 {
	font-size: 18px;
	font-weight: 500;
	margin-top: 0;
	margin-bottom: 15px;
}

.keywords-container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: stretch;
	gap: 10px;
}
.keywords-container h4 {
	font-size: 14px;
	font-weight: 500;
	margin: 0;
	color: var(--BlackText);
}

.positiv-keywords-container,
.negativ-keywords-container,
.negative-proximity-container {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
}
.positiv-keywords-container p,
.negativ-keywords-container p,
.negative-proximity-container p {
	margin: 0;
	font-size: 12px;
	font-weight: 400;
	color: var(--BlackText);
}
.negative-proximity-words {
	display: flex;
	gap: 15px;
	flex-direction: row;
	flex-wrap: wrap;
}

.negative-proximity-words input {
	width: 80%;
	border-radius: 5px;
	padding: 2px;
}

.positiv-keywords-container .keyword-input-container-top,
.negativ-keywords-container .keyword-input-container-top,
.negative-proximity-container .keyword-input-container-top {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	gap: 25px;
}
.positiv-keywords-container .keyword-input-container-top icon-component,
.negativ-keywords-container .keyword-input-container-top icon-component,
.negative-proximity-container .keyword-input-container-top icon-component {
	cursor: pointer;
	width: 30px;
	height: 20px;
}
.positiv-keywords-container
	.keyword-input-container-top
	icon-component.disabled,
.negativ-keywords-container
	.keyword-input-container-top
	icon-component.disabled,
.negative-proximity-container
	.keyword-input-container-top
	icon-component.disabled {
	cursor: not-allowed;
	opacity: 0.5;
}
.positiv-keywords-container .keyword-input-container-top .icon,
.negativ-keywords-container .keyword-input-container-top .icon,
.negative-proximity-container .keyword-input-container-top .icon {
	fill: var(--BlackText);
	width: auto;
	height: 20px;
}
.positiv-keywords-container .keyword-input-container-bottom,
.negativ-keywords-container .keyword-input-container-bottom,
.negative-proximity-container .keyword-input-container-bottom {
	margin-top: 5px;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
}
.positiv-keywords-container .keyword-input-container-bottom input[type="radio"],
.negativ-keywords-container .keyword-input-container-bottom input[type="radio"],
.negative-proximity-container input[type="radio"] {
	margin: 0;
}
.positiv-keywords-container .keyword-input-container-bottom label,
.negativ-keywords-container .keyword-input-container-bottom label,
.negative-proximity-container label {
	font-size: 13px;
	font-weight: 500;
	color: var(--BlackText);
	margin: 0;
}
.positiv-keywords-container .keyword-input-container-bottom .icon,
.negativ-keywords-container .keyword-input-container-bottom .icon {
	fill: var(--BlackText);
	font-weight: bold;
}
.positiv-keywords-container
	.keyword-input-container-bottom
	icon-component[icon="lock-locked"]
	.icon,
.negativ-keywords-container
	.keyword-input-container-bottom
	icon-component[icon="lock-locked"]
	.icon {
	width: auto;
	height: 15px;
}
.positiv-keywords-container
	.keyword-input-container-bottom
	icon-component[icon="lock-open"]
	.icon,
.negativ-keywords-container
	.keyword-input-container-bottom
	icon-component[icon="lock-open"]
	.icon {
	width: auto;
	height: 15px;
}

.keyword-input-container {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 2px;
	background-color: #e5e5e5;
	border-radius: 10px;
	box-sizing: border-box;
	padding: 10px;
	margin-bottom: 5px;
	width: 100%;
	height: auto;
}
.keyword-input-container input[type="text"] {
	border-radius: 8px;
	box-sizing: border-box;
	padding: 8px;
	font-family: Montserrat, sans-serif;
	font-size: 12px;
	font-weight: 400;
	line-height: 20px;
	border: 1px solid var(--AccentColor);
	width: 100%;
	height: 32px;
	resize: none;
}

.positiv-words-pool,
.negativ-words-pool {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.negativ-words-pool p {
	text-decoration: line-through;
}

keyword-pill .pill,
folder-pill .pill {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 5px;
	border-radius: 50px;
	border: 2px solid var(--AccentColor);
	box-sizing: border-box;
	padding-left: 10px;
	margin: 0;
	width: -moz-fit-content;
	width: fit-content;
}
keyword-pill:not([delete-btn]) p,
folder-pill:not([delete-btn]) p {
	margin-right: 10px;
}
keyword-pill .icon,
folder-pill .icon {
	fill: var(--BlackText);
	width: auto;
	height: 12px;
}
keyword-pill .delete-btn,
folder-pill .delete-btn {
	cursor: pointer;
	border-left: 2px solid var(--AccentColor);
	padding: 0 10px;
}
keyword-pill p,
folder-pill p {
	margin: 0;
	font-size: 12px;
	font-weight: 400;
	color: var(--AccentColor);
}

.vertical-divider {
	border-left: 1px solid black;
}

.relations-container {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
	width: 100%;
}

.red-text-alert {
	font-size: 12px;
	font-weight: 400;
	color: red;
	margin: 0;
}

.relation-box {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
	padding: 15px;
	width: 100%;
	background-color: rgba(94, 21, 97, 0.062745098);
	border-radius: 10px;
	box-sizing: border-box;
}
.relation-box h4 {
	font-size: 14px;
	font-weight: 500;
	margin: 0;
	color: var(--BlackText);
}
.relation-box .relation-box-header {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 30px;
	margin-top: 5px;
	box-sizing: border-box;
}
.relation-box .relation-box-header .icon {
	fill: white;
	width: auto;
	height: 20px;
}
.relation-box .relation-box-header p {
	margin: 0;
	font-size: 12px;
	font-weight: 400;
}
.relation-box .relation-box-hide {
	width: 100%;
}
.relation-box .relation-box-body {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	gap: 10px;
	padding: 20px;
	width: 100%;
	box-sizing: border-box;
}
.relation-box .relation-box-body h5 {
	font-size: 13px;
	font-weight: 500;
	margin: 0;
	color: var(--BlackText);
}
.relation-box .relation-box-body p {
	margin: 0;
	font-size: 13px;
	font-weight: 400;
	color: var(--BlackText);
}
.relation-box .relation-box-body .icon {
	width: auto;
	height: 15px;
}
.relation-box .relation-box-body .relation-words-col {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
	width: 70%;
}
.relation-box .relation-box-body .relation-words-col .relation-words-pool {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 20px;
	width: 100%;
}
.relation-box
	.relation-box-body
	.relation-words-col
	.relation-words-pool
	.relation-word {
	display: flex;
	flex-direction: row;
	justify-content: felx-start;
	align-items: center;
	gap: 5px;
}
.relation-box .relation-box-body .relation-words-col .relation-words-selection {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-auto-rows: 1fr;
	grid-auto-flow: dense;
	grid-column-gap: 20px;
	grid-row-gap: 10px;
	overflow-wrap: break-word;
	word-break: break-all;
}
.relation-box .relation-box-body .relation-type-col {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
	width: 30%;
}
.relation-box .relation-box-body .relation-type-col input[type="number"] {
	margin-left: 25px;
	width: 60px;
}

.delete-suchset-button {
	position: relative;
	bottom: 15px;
	margin-top: 50px;
	width: -moz-fit-content;
	width: fit-content;
	color: red;
	cursor: pointer;
}
.delete-suchset-button p {
	margin: 0;
	font-size: 14px;
	font-weight: 400;
}

.test-result {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
	width: 100%;
	box-sizing: border-box;
}
.test-result > icon-component .icon {
	width: auto;
	height: 30px;
	margin-top: 12px;
	cursor: pointer;
}
.test-result .linking-button-on {
	background-color: var(--AccentColor);
	border-radius: 50%;
	padding: 9px;
	box-sizing: border-box;
	margin-top: 12px;
	height: 35px;
	width: 35px;
	cursor: pointer;
}
.test-result .linking-button-on .icon {
	height: 15px;
	width: auto;
	fill: white;
}
.test-result .linking-button-off {
	border-radius: 50%;
	border: 2px solid var(--AccentColor);
	padding: 8px;
	box-sizing: border-box;
	margin-top: 12px;
	height: 35px;
	width: 35px;
	cursor: pointer;
}
.test-result .linking-button-off .icon {
	height: 15px;
	width: auto;
	fill: var(--AccentColor);
}
.test-result .eyes-container {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	height: 48px;
}
.test-result .eye-btn {
	width: 25px;
	cursor: pointer;
	margin-top: 18px;
}
.test-result .eye-btn .icon {
	fill: var(--AccentColor);
	height: 22px;
	width: auto;
}

.test-result-toggle {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	flex: 1;
	max-width: calc(100% - 33px);
	margin-top: 0;
	margin-bottom: 20px;
	padding: 15px 35px;
	border: 1px solid var(--BlackText);
	border-radius: 10px;
	box-sizing: border-box;
	box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.2);
	cursor: pointer;
	min-width: 0;
}
.test-result-toggle .test-result-toggle-header {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	width: 100%;
	box-sizing: border-box;
}
.test-result-toggle .test-result-toggle-header p {
	margin: 0;
	font-size: 14px;
	font-weight: 400;
}
.test-result-toggle .test-result-toggle-header .icon {
	width: auto;
	height: 20px;
}
.test-result-toggle .test-result-toggle-header .rotatable-chevron {
	transform: rotate(90deg);
	transition: transform 0.3s;
}
.test-result-toggle .test-result-toggle-header .rotatable-chevron.clicked {
	transform: rotate(-90deg);
}
.test-result-toggle .test-result-toggle-divider {
	margin: 0;
	opacity: 0;
	overflow: hidden;
	transition: opacity 0.3s;
	width: 100%;
	position: relative;
	border-top: 1px solid #b1b2b5;
}
.test-result-toggle .test-result-toggle-divider.clicked {
	opacity: 1;
	margin: 15px 0;
}
.test-result-toggle .test-result-toggle-body {
	padding: 0px 25px;
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.3s;
}
.test-result-toggle .test-result-toggle-body p {
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.3;
}
.test-result-toggle .test-result-toggle-body.clicked {
	max-height: 300px;
	overflow-y: scroll;
	overflow-x: auto;
}

.development_plans_box {
	/* box-sizing: border-box; */
	padding-left: 48px;
	padding-right: 48px;
	width: 100%;
	box-sizing: border-box;
	overflow-y: scroll;
}

.bplan-header {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 30px;
}

.development_info_text h3 {
	font-size: 18px;
	font-weight: 500;
	/*margin-top: 0;*/
	margin-bottom: 18px;
}

.development_plans_button {
	position: relative;
	left: -12px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	box-sizing: border-box;
	padding: 12px;
	font-size: 12px;
	font-weight: 400;
	width: 100%;
	height: 52px;
	margin: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: var(--BlackText);
}
.development_plans_button:hover {
	background-color: var(--HoverAccentColor);
	border-radius: 8px;
	cursor: pointer;
}
.development_plans_button .icon {
	fill: var(--LightGrey);
	width: auto;
	height: 20px;
}
.development_plans_button icon-component[icon="chevron-right"] svg {
	fill: var(--BlackText);
}
.development_plans_button.disabled {
	cursor: not-allowed;
	opacity: 0.5;
}

.development_plans_name {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
	width: 88%;
}
.development_plans_name p {
	margin: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.development_plans_name .icon {
	fill: var(--LightGrey);
}

.history-address-header,
.suchsets-header {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	padding-top: 14px;
	padding-bottom: 14px;
}

.suchstruktur-header,
.suchsets-header-left,
.suchstruktur-header-edit,
.suchstruktur-header-unclickable {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 20px;
	padding-top: 20px;
	padding-bottom: 14px;
}
.suchstruktur-header .icon,
.suchsets-header-left .icon,
.suchstruktur-header-edit .icon,
.suchstruktur-header-unclickable .icon {
	fill: var(--AccentColor);
	width: auto;
	height: 16px;
}

.suchstruktur-header,
.suchsets-header,
.suchstruktur-header-unclickable {
	padding-top: 15px;
	padding-bottom: 10px;
}

.suchstruktur-header-unclickable {
	width: 100%;
	justify-content: space-between;
}

.suchsets-header-left {
	padding-top: 0;
	padding-bottom: 5px;
}

.suchset-list {
	.btns-container {
		margin-left: 48px;
		margin-top: 15px;
		display: flex;
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
		gap: 10px;
		width: -moz-fit-content;
		width: fit-content;

		.side-panel-container {
			padding: 0;
		}
	}
}

.history-address-header .address-name-and-lock {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 20px;
}
.history-address-header .address-name-and-lock .locked-stamp {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	gap: 5px;
}
.history-address-header .address-name-and-lock .locked-stamp .icon {
	fill: var(--AccentColor);
	width: auto;
	height: 15px;
}
.history-address-header .address-name-and-lock .locked-stamp p {
	margin: 0;
	font-size: 11px;
	font-weight: 400;
}

.suchsets-header h3,
.suchstruktur-header h3,
.suchstruktur-header-edit h3,
.suchstruktur-header-unclickable h3 {
	font-size: 14px;
	font-weight: 500;
	margin: 0;
}

.folder-delete-btn {
	color: red;
	cursor: pointer;
	width: -moz-fit-content;
	width: fit-content;
	margin: 10px 0;
	font-size: 11px;
	font-weight: 400;
}

.history-address-header .icon {
	fill: var(--BlackText);
	width: auto;
	height: 20px;
}
.history-address-header h3 {
	font-size: 16px;
	font-weight: 500;
	margin: 0;
}

.side-panel-container:has(.history-address-header),
.side-panel-container:has(.suchstruktur-header),
.floating-panel-container:has(.history-address-header),
.floating-panel-container:has(.suchstruktur-header) {
	cursor: pointer;
}
.side-panel-container:has(.history-address-header):hover,
.side-panel-container:has(.suchstruktur-header):hover,
.floating-panel-container:has(.history-address-header):hover,
.floating-panel-container:has(.suchstruktur-header):hover {
	background-color: var(--HoverAccentColor);
}
.side-panel-container:has(.history-address-header).disabled,
.side-panel-container:has(.suchstruktur-header).disabled,
.floating-panel-container:has(.history-address-header).disabled,
.floating-panel-container:has(.suchstruktur-header).disabled {
	cursor: not-allowed;
	opacity: 0.5;
}
.side-panel-container:has(.history-address-header).greyedout,
.side-panel-container:has(.suchstruktur-header).greyedout,
.floating-panel-container:has(.history-address-header).greyedout,
.floating-panel-container:has(.suchstruktur-header).greyedout {
	opacity: 0.5;
}

.badge_and_icon {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 25px;
}

.history-address-info {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 5px;
	padding-bottom: 14px;
}
.history-address-info p {
	margin: 0;
	font-size: 12px;
	font-weight: 400;
	color: var(--BlackText);
}

.suchsets-info {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 50px;
	padding-bottom: 5px;
	cursor: pointer;
}
.suchsets-info .icon {
	fill: var(--BlackText);
	width: auto;
	height: 20px;
	margin-right: 15px;
}

.new-folder-container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding-bottom: 14px;

	&.pt-10 {
		padding-top: 10px;
	}
}
.new-folder-container .icon {
	fill: var(--AccentColor);
	width: auto;
	height: 35px;
}
.new-folder-container input[type="text"] {
	width: 60%;
	height: 35px;
	border-radius: 10px;
	border: 1px solid var(--AccentColor);
	box-sizing: border-box;
	padding: 0 10px;
	font-size: 14px;
	font-weight: 400;
}

button-component {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	height: 35px;
	width: -moz-fit-content;
	width: fit-content;
	cursor: pointer;
	border-radius: 5px;
	background-color: var(--AccentColor);
	box-sizing: border-box;
	padding: 5px 15px;
	margin: 0;
	color: white;
	box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.2);
}
button-component:hover {
	background-color: #633077;
}
button-component p {
	margin: 0;
	font-size: 14px;
	font-weight: 500;
	white-space: nowrap;
}
button-component icon-component {
	height: 20px;
}
button-component .icon {
	fill: white;
	width: auto;
	height: 20px;
}
button-component.delete-btn {
	background-color: rgb(148, 0, 0);
}
button-component.disabled {
	cursor: not-allowed;
	opacity: 0.5;
}

admin-panel {
	position: fixed;
	top: 0;
	left: 0px;
	right: 0;
	bottom: 0;
	box-sizing: border-box;
	--admin-panel-padding-top: 115px;
	padding-top: calc(var(--admin-panel-padding-top) + 45px);
	padding-bottom: 25px;
	padding-right: 0px;
	padding-left: 0px;
	height: 100vh;
	--admin-panel-width: 800px;
	width: var(--admin-panel-width);
	background-color: white;
	box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	z-index: -1;
	transition: left 0.3s ease;
}
admin-panel.closed {
	left: -800px;
}
admin-panel:not(.closed) {
	left: 81px;
}
admin-panel .back_button {
	height: 41px;
	width: 30px;
	display: block;
	position: absolute;
	left: 48px;
	top: 37px;
	font-size: 16px;
	color: var(--BlackText);
	text-decoration: none;
	cursor: pointer;
	font-weight: 600;
	box-sizing: border-box;
	padding: 8px 0;
}
admin-panel .back_button .icon {
	width: 15px;
}
admin-panel .fixed-top-box {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 160px;
	width: var(--admin-panel-width);
	box-sizing: border-box;
	padding-top: var(--admin-panel-padding-top);
	background-color: white;
	box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.1);
	z-index: 100;
}
admin-panel .fixed-top-box h2 {
	font-size: 18px;
	font-weight: 500;
	margin-top: 0;
	margin-bottom: 0;
}
admin-panel .fixed-top-box p {
	margin: 0;
	font-size: 12px;
	font-weight: 400;
	color: var(--LightGrey);
}
admin-panel .admin-panel-header {
	padding: 0 48px;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 30px;
}
admin-panel .admin-panel-container {
	padding: 25px 48px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
	box-sizing: border-box;
	margin-top: 20px;
	margin-bottom: 20px;
}
admin-panel .user-section-header {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 30px;
}
admin-panel .user-section-header h3 {
	margin: 0;
	font-size: 16px;
	font-weight: 500;
}
admin-panel .users-container {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
	box-sizing: border-box;
	margin-top: 20px;
	margin-bottom: 20px;
}
admin-panel .user-box {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
	padding: 12px;
	box-sizing: border-box;
	width: 100%;
	border-radius: 12px;
	border: 2px solid rgba(0, 0, 0, 0.1882352941);
}
admin-panel .user-box h4 {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
}
admin-panel .user-box .user-box-hide {
	width: 100%;
}
admin-panel .user-box .user-box-visible {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	gap: 20px;
}
admin-panel .user-box .user-info {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 20px;
}
admin-panel .user-box .edit-user-button {
	margin: 0;
	cursor: pointer;
}
admin-panel .user-box .edit-user-button p {
	margin: 0;
	font-size: 14px;
	font-weight: 400;
}
admin-panel .user-box .user-edit-box-hide {
	width: 100%;
}
admin-panel .user-box .user-edit-box {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
	gap: 30px;
}
admin-panel .user-box .user-edit-box .user-edit-box-header {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	gap: 20px;
}
admin-panel .user-box .user-edit-box .user-edit-box-header .btns-container {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 25px;
}
admin-panel
	.user-box
	.user-edit-box
	.user-edit-box-header
	.btns-container
	.cancel-btn {
	cursor: pointer;
	color: red;
}
admin-panel .user-box .user-edit-box .user-edit-body {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	gap: 30px;
	box-sizing: border-box;
	width: 100%;
}
admin-panel .user-box .user-edit-box .user-edit-body h5 {
	margin: 0;
	font-size: 13px;
	font-weight: 500;
}
admin-panel .user-box .user-edit-box .user-edit-body .user-email-input {
	width: 50%;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
admin-panel .user-box .user-edit-box .user-edit-body .user-email-input label {
	margin: 0;
	font-size: 13px;
	font-weight: 500;
}
admin-panel
	.user-box
	.user-edit-box
	.user-edit-body
	.user-email-input
	input[type="email"] {
	width: 90%;
	padding: 8px;
	border-radius: 8px;
	font-family: Montserrat, sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 20px;
	border: 1px solid var(--AccentColor);
}
admin-panel .user-box .user-edit-box .user-edit-body .user-level-input {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 30%;
}
admin-panel .user-box .user-edit-box .user-delete-btn {
	font-size: 12px;
	color: red;
	cursor: pointer;
	width: fitcontent;
	margin-top: 20px;
}
admin-panel .user-box .user-edit-box .user-delete-btn p {
	margin: 0;
}

.results_row_light {
	background-color: var(--RowLight);
	font-size: 12px;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 10px;
	color: var(--DarkBlue);
	text-align: left;
}

.results_row_dark {
	background-color: var(--RowDark);
	font-size: 12px;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 10px;
	color: var(--DarkBlue);
	text-align: left;
}

aside {
	position: fixed;
	left: -360px;
	top: 50px;
	bottom: 80px;
	z-index: 9;
	width: 350px;
	background-color: white;
	box-sizing: border-box;
	padding: 30px 10px;
	border-radius: 0px 0px 30px 0px;
	box-shadow: 4px 4px 8px var(--Schattengrau);
	transition: 0.4s;
}
aside section {
	box-sizing: border-box;
	padding: 10px 20px;
	cursor: pointer;
	transition: 0.3s;
	border-radius: 25px;
	font-weight: 500;
}
aside section:hover {
	background-color: var(--Hightlight);
	transition: 0.3s;
}

#welcome-mail {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: rgb(94, 21, 97);
}

.mail-container {
	max-width: 600px;
	margin: 0 auto;
	padding: 40px;
	background-color: white;
}
.mail-container .mail-body {
	margin-top: 10px;
	text-align: center;
}
.mail-container .mail-body h1 {
	font-size: 36px;
	margin-bottom: 40px;
}
.mail-container .mail-body p {
	margin-bottom: 30px;
}
.mail-container .mail-body img {
	width: auto;
	height: 250px;
	margin: 20px 0;
}

.mail-header {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 600px;
	max-width: 600px;
	padding: 0 40px;
	height: 150px;
	background-color: rgb(238, 231, 239);
}
.mail-header img {
	width: auto;
	height: 70px;
}
.mail-header .SeiteEingeblendet {
	left: 0;
}

.UnterSeitenWrapper {
	position: absolute;
	top: 60px;
	bottom: 60px;
	left: 60px;
	right: 60px;
	background-color: white;
	z-index: 8;
	border: 1px solid black;
	box-sizing: border-box;
	padding: 30px;
	overflow-y: auto;
	overflow-x: hidden;
}

.divider {
	width: 100%;
	position: relative;
	border-top: 1px solid #b1b2b5;
	margin: 15px 0;
}

.my-0 {
	margin-top: 0;
	margin-bottom: 0;
}

datalist {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 100%;
}

input[type="range"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 100%;
	height: 15px;
	border-radius: 10px;
	outline: none;
}
input[type="range"]::-webkit-slider-runnable-track {
	width: 100%;
	height: 8px;
	cursor: pointer;
	background: var(--AccentColor);
	border-radius: 10px;
}
input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 16px;
	height: 16px;
	border: 2px solid var(--AccentColor);
	background: #ffffff;
	cursor: pointer;
	border-radius: 50%;
	margin-top: -4px;
}
input[type="range"]::-moz-range-track {
	width: 100%;
	height: 8px;
	cursor: pointer;
	background: var(--AccentColor);
	border-radius: 10px;
}
input[type="range"]::-moz-range-thumb {
	width: 16px;
	height: 16px;
	border: 2px solid var(--AccentColor);
	background: #ffffff;
	cursor: pointer;
	border-radius: 50%;
} /*# sourceMappingURL=layout001.css.map */
