

/* ----------------------------------------------------------------------------------------------------------------------------------
  xx. Defaults
---------------------------------------------------------------------------------------------------------------------------------- */
*,
:after,
:before {
	box-sizing: border-box
}

@media (prefers-reduced-motion:no-preference) {
	:root {
		scroll-behavior: smooth
	}
}

body,
html {
	height: 100%
}

body {
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	background-color: var(--bg-template-03);
	/*color: #3e4676;*/
	font-family: var(--bs-font-sans-serif);
	font-size: .9375rem;
	font-weight: 400;
	line-height: 1.5;
	margin: 0
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--bg-template-13);
	font-family: Jost, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Arial, sans-serif;
	font-weight: 500;
	line-height: 1.2;
	margin-bottom: .5rem;
	margin-top: 0
}

.h1,
h1 {
	font-size: 1.875rem
}

.h2,
h2 {
	font-size: 1.64062rem
}

.h3,
h3 {
	font-size: 1.40625rem
}

.h4,
h4 {
	font-size: 1.17188rem
}

.h5,
.h6,
h5,
h6 {
	font-size: .9375rem
}

.display-1 {
	font-size: 4rem
}

.display-1,
.display-2 {
	font-weight: 300;
	line-height: 1.2
}

.display-2 {
	font-size: 3.5rem
}

.display-3 {
	font-size: 3rem
}

.display-3,
.display-4 {
	font-weight: 300;
	line-height: 1.2
}

.display-4 {
	font-size: 2.5rem
}

.display-5 {
	font-size: 2rem
}

.display-5,
.display-6 {
	font-weight: 300;
	line-height: 1.2
}

.display-6 {
	font-size: 1.5rem
}

a {
	text-decoration: none
}

pre.snippet {
	word-wrap: break-word;
	text-align: justify;
	white-space: pre-wrap;
}

a:active,
a:focus {
	outline: 0;
	border: none;
	-moz-outline-style: none;
}


/* ----------------------------------------------------------------------------------------------------------------------------------
  xx. Passwort-Felder
---------------------------------------------------------------------------------------------------------------------------------- */
input.password {
    font-family: 'text-security-disc';
}


/* ----------------------------------------------------------------------------------------------------------------------------------
  xx. Breiten & Höhen
---------------------------------------------------------------------------------------------------------------------------------- */
.h-100 {
	height: 100%!important
}

.w-100 {
	width: 100%!important
}


/* ----------------------------------------------------------------------------------------------------------------------------------
  xx. Farben
---------------------------------------------------------------------------------------------------------------------------------- */
.bg-primary {
	background-color: #3b7ddd!important
}

.bg-secondary {
	background-color: #6f42c1!important
}

.bg-tertiary {
	background-color: #669ae5!important
}

.bg-success {
	background-color: #28a745!important
}

.bg-info {
	background-color: #20c997!important
}

.bg-warning {
	background-color: #fd7e14!important
}

.bg-danger {
	background-color: #dc3545!important
}

.bg-light {
	background-color: #e9ecef!important
}

.bg-dark {
	background-color: #153d77!important
}

.bg-body {
	background-color: #f4f7fc!important
}

.bg-white {
	background-color: #fff!important
}

.bg-transparent {
	background-color: transparent!important
}

.bg-gradient {
	background-image: var(--bs-gradient)!important
}

.bg-primary-light {
	background-color: #5c93e3!important
}

.bg-secondary-light {
	background-color: #855fca!important
}

.bg-tertiary-light {
	background-color: #87afea!important
}

.bg-success-light {
	background-color: #2fc652!important
}

.bg-info-light {
	background-color: #31deab!important
}

.bg-warning-light {
	background-color: #fd933a!important
}

.bg-danger-light {
	background-color: #e25663!important
}

.bg-light-light {
	background-color: #fff!important
}

.bg-dark-light {
	background-color: #1a4d98!important
}

.bg-primary-dark {
	background-color: #2469ce!important
}

.bg-secondary-dark {
	background-color: #5e37a6!important
}

.bg-tertiary-dark {
	background-color: #4684df!important
}

.bg-success-dark {
	background-color: #218838!important
}

.bg-info-dark {
	background-color: #1ba87e!important
}

.bg-warning-dark {
	background-color: #e96b02!important
}

.bg-danger-dark {
	background-color: #c82333!important
}

.bg-light-dark {
	background-color: #d3d9df!important
}

.bg-dark-dark {
	background-color: #0f2c56!important
}


/* ----------------------------------------------------------------------------------------------------------------------------------
  xx. Layout
---------------------------------------------------------------------------------------------------------------------------------- */
/*
@media (min-width:1440px) {
	.container-fluid,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl {
		width: 95%
	}
}
*/

/* ----------------------------------------------------------------------------------------------------------------------------------
  xx. Layout :: Rows & Cols
---------------------------------------------------------------------------------------------------------------------------------- */


/* ----------------------------------------------------------------------------------------------------------------------------------
  xx. Content-Wrapper
---------------------------------------------------------------------------------------------------------------------------------- */
.wrapper {
	align-items: stretch;
	display: flex;
	overflow: hidden;
	position: relative;
	width: 100%
}

.wrapper:before {
	background-color: var(--bg-template-01);
	content: " ";
	height: 264px;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%
}

.main {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	min-width: 0;
	transition: margin-left .3s ease-in-out, left .3s ease-in-out, margin-right .3s ease-in-out, right .3s ease-in-out;
	width: 100%
}

/*
@media (max-width:767.98px) {
	.main {
		min-width: 100vw;
		overflow-y: hidden;
		width: 100vw
	}
}
*/

.content {
	flex: 1;
	/*margin-top: 3rem;*/
	margin-top: 0px; /*1rem;*/
	padding: 0 .5rem
}

@media (min-width:992px) {
	.content {
		padding: 0 1rem;
	}
}


/* ----------------------------------------------------------------------------------------------------------------------------------
  xx. Main-Content - Flexbox
---------------------------------------------------------------------------------------------------------------------------------- */
.flexbox {
	display: flex;
	gap: 20px;
}

.flexbox .flex-main {
	flex: 1;
}

.flexbox .flex-sidebar-250 {
	flex: 0 250px;
}
.flexbox .flex-sidebar-300 {
	flex: 0 300px;
}

.flexbox .flex-sidebar-400 {
	flex: 0 400px;
}

.flexbox .flex-main-1000 {
	flex: 1000px 0 ;
}

@media (max-width:767.98px) {
	.flexbox {
		display: block;
	}
}


/* ----------------------------------------------------------------------------------------------------------------------------------
  xx. Seiten-Titel :: Header
---------------------------------------------------------------------------------------------------------------------------------- */
.header {
	/*margin-bottom: 3rem;*/
	margin-bottom: 0px; /*1.5rem*/;
	position: relative;
}

.header-title {
	font-size: 1.64062rem;
}
.header-title h1 {
	font-size: 18px;
}

.header-subtitle {
	font-size: .9375rem;
}

.header-title h1,
.header-subtitle p {
	color: #fff;
}



/* ----------------------------------------------------------------------------------------------------------------------------------
  xx. Seiten-Titel :: Breadcrumb
---------------------------------------------------------------------------------------------------------------------------------- */
.breadcrumb {
	background-color: transparent;
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin-bottom: 1rem;
	padding: 0
}

.breadcrumb-item+.breadcrumb-item {
	padding-left: .5rem
}

.breadcrumb-item+.breadcrumb-item:before {
	color: #ced4da;
	content: var(--bs-breadcrumb-divider, "/");
	float: left;
	padding-right: .5rem
}

.breadcrumb-item a {
	color: #dee2e6;
	font-weight: 400;
	text-decoration: none;
}
.breadcrumb-item a:hover {
	text-decoration: underline;
}

.breadcrumb-item.active {
	color: #fff;
	font-weight: 500
}


/* ----------------------------------------------------------------------------------------------------------------------------------
  xx. Dropdown-Menu
---------------------------------------------------------------------------------------------------------------------------------- */
.navbar-nav .dropdown-menu {
	box-shadow: 0 0 2rem 0 rgba(0, 0, 0, .05)
}

/*
.dropdown .dropdown-menu.show {
	-webkit-animation-duration: .5s;
	animation-duration: .5s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-name: dropdownAnimation;
	animation-name: dropdownAnimation;
	-webkit-animation-timing-function: ease;
	animation-timing-function: ease
}

@-webkit-keyframes dropdownAnimation {
	0% {
		opacity: 0;
		transform: translateY(-8px)
	}
	to {
		opacity: 1;
		transform: translateY(0)
	}
}

@keyframes dropdownAnimation {
	0% {
		opacity: 0;
		transform: translateY(-8px)
	}
	to {
		opacity: 1;
		transform: translateY(0)
	}
}
*/

.dropdown-toggle:after {
	border: solid;
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 2px;
	transform: rotate(45deg)
}

.dropdown-item {
	transition: background .1s ease-in-out, color .1s ease-in-out
}
.dropdown-menu-lg {
	min-width: 20rem
}

.dropdown .list-group .list-group-item {
	border-width: 0 0 1px;
	margin-bottom: 0
}

.dropdown .list-group .list-group-item:first-child,
.dropdown .list-group .list-group-item:last-child {
	border-radius: 0
}

.dropdown .list-group .list-group-item:hover {
	background: #f8f9fa
}

.dropdown-menu-header {
	border-bottom: 1px solid #dee2e6;
	font-weight: 500;
	padding: .75rem;
	text-align: center
}

.dropdown-menu-footer {
	display: block;
	font-size: .75rem;
	padding: .5rem;
	text-align: center
}

/* ----------------------------------------------------------------------------------------------------------------------------------
  xx. Cards
---------------------------------------------------------------------------------------------------------------------------------- */
.card {
	word-wrap: break-word;
	background-clip: border-box;
	background-color: var(--bg-template-04);
	border: 0 solid #222;
	border-radius: .2rem;
	display: flex;
	flex-direction: column;
	min-width: 0;
	position: relative
}
.card.danger {
	background-color: #F2DEDE;
}
.card.success {
	background-color: #DFF0D8;
}
.card.danger .card-title, .card.success .card-title {
	color: var(--bg-template-21);
}

.card > hr {
	margin-left: 0;
	margin-right: 0
}

.card > .list-group {
	border-bottom: inherit;
	border-top: inherit
}

.card > .list-group:first-child {
	border-top-left-radius: .2rem;
	border-top-right-radius: .2rem;
	border-top-width: 0
}

.card > .list-group:last-child {
	border-bottom-left-radius: .2rem;
	border-bottom-right-radius: .2rem;
	border-bottom-width: 0
}

.card > .card-header+.list-group,
.card > .list-group+.card-footer {
	border-top: 0
}

.card-body {
	flex: 1 1 auto;
	padding: 1.25rem;
}

.card-title {
	/*margin-bottom: .5rem;*/
	margin-bottom: 0px;
}

.card-subtitle {
	margin-top: -.25rem
}

.card-subtitle,
.card-text:last-child {
	margin-bottom: 0
}

.card-link:hover {
	text-decoration: none
}

.card-link+.card-link {
	margin-left: 1.25rem
}

.card-header {
	background-color: #fff;
	border-bottom: 0 solid #222;
	margin-bottom: 0;
	padding: .75rem 1.25rem
}

.card-header:first-child {
	border-radius: .2rem .2rem 0 0
}

.card-footer {
	background-color: #fff;
	border-top: 0 solid #222;
	padding: .75rem 1.25rem
}

.card-footer:last-child {
	border-radius: 0 0 .2rem .2rem
}

.card-header-tabs {
	border-bottom: 0;
	margin-bottom: -.75rem;
	margin-left: -.625rem;
	margin-right: -.625rem
}

.card-header-tabs .nav-link.active {
	background-color: #fff;
	border-bottom-color: #fff
}

.card-header-pills {
	margin-left: -.625rem;
	margin-right: -.625rem
}

.card-img-overlay {
	border-radius: .2rem;
	bottom: 0;
	left: 0;
	padding: 1rem;
	position: absolute;
	right: 0;
	top: 0
}

.card-img,
.card-img-bottom,
.card-img-top {
	width: 100%
}

.card-img,
.card-img-top {
	border-top-left-radius: .2rem;
	border-top-right-radius: .2rem
}

.card-img,
.card-img-bottom {
	border-bottom-left-radius: .2rem;
	border-bottom-right-radius: .2rem
}

.card-group>.card {
	margin-bottom: .75rem
}

@media (min-width:576px) {
	.card-group {
		display: flex;
		flex-flow: row wrap
	}
	.card-group>.card {
		flex: 1 0 0%;
		margin-bottom: 0
	}
	.card-group>.card+.card {
		border-left: 0;
		margin-left: 0
	}
	.card-group>.card:not(:last-child) {
		border-bottom-right-radius: 0;
		border-top-right-radius: 0
	}
	.card-group>.card:not(:last-child) .card-header,
	.card-group>.card:not(:last-child) .card-img-top {
		border-top-right-radius: 0
	}
	.card-group>.card:not(:last-child) .card-footer,
	.card-group>.card:not(:last-child) .card-img-bottom {
		border-bottom-right-radius: 0
	}
	.card-group>.card:not(:first-child) {
		border-bottom-left-radius: 0;
		border-top-left-radius: 0
	}
	.card-group>.card:not(:first-child) .card-header,
	.card-group>.card:not(:first-child) .card-img-top {
		border-top-left-radius: 0
	}
	.card-group>.card:not(:first-child) .card-footer,
	.card-group>.card:not(:first-child) .card-img-bottom {
		border-bottom-left-radius: 0
	}
}

.card {
	box-shadow: 0 2px 4px rgba(126, 142, 177, .12);
	margin-bottom: 1.5rem
}

a.card {
	cursor: pointer;
	text-decoration: none
}

.card-header {
	background: transparent
}

.card-body {
	/*padding-top: .75rem;*/
	padding-top: 0px;
}

.card-title {
	color: var(--bg-template-13);
	font-size: .9375rem;
	line-height: 1.5
}

.card-subtitle {
	font-weight: 400
}

.card-table {
	margin-bottom: 0
}

.card-table tr td:first-child,
.card-table tr th:first-child {
	padding-left: 1.25rem
}

.card-table tr td:last-child,
.card-table tr th:last-child {
	padding-right: 1.25rem
}

.card-img,
.card-img-bottom,
.card-img-top {
	height: auto;
	max-width: 100%
}

@media (-ms-high-contrast:none) {
	.card-img,
	.card-img-bottom,
	.card-img-top {
		height: 100%
	}
}

.card-actions a {
	color: #3e4676;
	text-decoration: none
}

.card-actions svg {
	height: 16px;
	width: 16px
}

.card-actions .dropdown {
	line-height: 1.4
}

.card-img-hover {
	transition: all .1s ease-in-out
}

.card-img-hover:hover {
	transform: scale(1.035)
}

.card-actions .pagination {
	padding: 0px;
	margin: 0px;
}


/* ----------------------------------------------------------------------------------------------------------------------------------
  xx. Cards / Tabellen
---------------------------------------------------------------------------------------------------------------------------------- */
.card > .table tbody,
.card > .table td,
.card > .table tfoot,
.card > .table th,
.card > .table thead,
.card > .table tr {
	border-color: #dee2e6
}

.card > .dataTables_wrapper .table.dataTable,
.card > .table,
.card > .table-responsive-lg .table,
.card > .table-responsive-md .table,
.card > .table-responsive-sm .table,
.card > .table-responsive-xl .table,
.card > .table-responsive .table {
	border-bottom: 0;
	border-left: 0;
	border-right: 0;
	margin-bottom: 0
}

.card > .dataTables_wrapper .table.dataTable td:first-child,
.card > .dataTables_wrapper .table.dataTable th:first-child,
.card > .table-responsive-lg .table td:first-child,
.card > .table-responsive-lg .table th:first-child,
.card > .table-responsive-md .table td:first-child,
.card > .table-responsive-md .table th:first-child,
.card > .table-responsive-sm .table td:first-child,
.card > .table-responsive-sm .table th:first-child,
.card > .table-responsive-xl .table td:first-child,
.card > .table-responsive-xl .table th:first-child,
.card > .table-responsive .table td:first-child,
.card > .table-responsive .table th:first-child,
.card > .table td:first-child,
.card > .table th:first-child {
	border-left: 0;
	padding-left: 1.25rem
}

.card > .dataTables_wrapper .table.dataTable td:last-child,
.card > .dataTables_wrapper .table.dataTable th:last-child,
.card > .table-responsive-lg .table td:last-child,
.card > .table-responsive-lg .table th:last-child,
.card > .table-responsive-md .table td:last-child,
.card > .table-responsive-md .table th:last-child,
.card > .table-responsive-sm .table td:last-child,
.card > .table-responsive-sm .table th:last-child,
.card > .table-responsive-xl .table td:last-child,
.card > .table-responsive-xl .table th:last-child,
.card > .table-responsive .table td:last-child,
.card > .table-responsive .table th:last-child,
.card > .table td:last-child,
.card > .table th:last-child {
	border-right: 0;
	padding-right: 1.25rem
}

.card > .dataTables_wrapper .table.dataTable tr:first-child td,
.card > .dataTables_wrapper .table.dataTable tr:first-child th,
.card > .table-responsive-lg .table tr:first-child td,
.card > .table-responsive-lg .table tr:first-child th,
.card > .table-responsive-md .table tr:first-child td,
.card > .table-responsive-md .table tr:first-child th,
.card > .table-responsive-sm .table tr:first-child td,
.card > .table-responsive-sm .table tr:first-child th,
.card > .table-responsive-xl .table tr:first-child td,
.card > .table-responsive-xl .table tr:first-child th,
.card > .table-responsive .table tr:first-child td,
.card > .table-responsive .table tr:first-child th,
.card > .table tr:first-child td,
.card > .table tr:first-child th {
	border-top: 0
}

.card > .dataTables_wrapper .table.dataTable tr:last-child td,
.card > .table-responsive-lg .table tr:last-child td,
.card > .table-responsive-md .table tr:last-child td,
.card > .table-responsive-sm .table tr:last-child td,
.card > .table-responsive-xl .table tr:last-child td,
.card > .table-responsive .table tr:last-child td,
.card > .table tr:last-child td {
	border-bottom: 0
}


/* ----------------------------------------------------------------------------------------------------------------------------------
  xx. Tabellen
---------------------------------------------------------------------------------------------------------------------------------- */

.table tr td .table-action {
	/*visibility: hidden;*/
	opacity: 0.25;
}

.table tr:hover td .table-action {
    /*visibility:visible !important;*/
	opacity: 1;
}

.table-action a {
	color: #6c757d
}

.table-action a:hover {
	color: #212529
}

/* ----------------------------------------------------------------------------------------------------------------------------------
  xx. Listen
---------------------------------------------------------------------------------------------------------------------------------- */
.list-group {
}

.list-group-item {
	padding: .75rem 1.25rem;
}

.list-group-item.active {
	background-color: #336699;
	border-color: #336699;
	color: #fff;
}


/* ----------------------------------------------------------------------------------------------------------------------------------
  xx. Dropdowns
---------------------------------------------------------------------------------------------------------------------------------- */
.dropdown-item.danger {
	color: #dc3545;
}
.dropdown-item.danger:active {
	color: #fff;
	background-color: #dc3545;
}


/* ----------------------------------------------------------------------------------------------------------------------------------
  xx. Accordion
---------------------------------------------------------------------------------------------------------------------------------- */
.accordion .card:not(:last-child) {
	margin-bottom: .5rem
}

.accordion .card-header {
	border-bottom: 0
}

.accordion .card-body {
	border-top: 1px solid #222
}

.accordion .card-title a {
	color: #3e4676
}


/* ----------------------------------------------------------------------------------------------------------------------------------
  xx. Formulare
---------------------------------------------------------------------------------------------------------------------------------- */


/* ----------------------------------------------------------------------------------------------------------------------------------
  xx. Buttons
---------------------------------------------------------------------------------------------------------------------------------- */
.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}
.btn-default:focus {
    color: #333;
    background-color: #e6e6e6;
    border-color: #8c8c8c;
}
.btn-default:hover {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad;
}
.btn-default:active {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad;
}

.btn-app {
	border-radius: 3px;
	background-color: #f8f9fa;
	border: 1px solid #ddd;
	color: #6c757d;
	font-size: 12px;
	height: 60px;
	min-width: 80px;
	padding: 15px 5px;
	position: relative;
	text-align: center;
}

.btn-app > .fa,
.btn-app > .fas,
.btn-app > .far,
.btn-app > .fab,
.btn-app > .fal,
.btn-app > .fad {
	display: block;
	font-size: 20px;
}

.btn-app:hover {
	background-color: #f8f9fa;
	border-color: #aaaaaa;
	color: #444;
}

.btn-app:active, .btn-app:focus {
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn-app > .badge {
	font-size: 10px;
	font-weight: 400;
	position: absolute;
	right: -10px;
	top: -3px;
}

.btn-group-xs>.btn,
.btn-xs {
	padding: .25rem .4rem;
	font-size: .875rem;
	line-height: .5;
	border-radius: .2rem;
}


/* ----------------------------------------------------------------------------------------------------------------------------------
  xx. Toolbars
---------------------------------------------------------------------------------------------------------------------------------- */
.dashboard-toolbar {
	margin-bottom: 3px;
}

.card-toolbar {
}

.card-toolbar .fas, .toolbar .fas {
	padding-right: 5px;
}

.tab-pane .card-toolbar {
	/*
	margin-bottom: 10px;
	padding-bottom: 10px;
	*/
	/*
	border-bottom: 1px solid #dee2e6;
	*/
}

.card-toolbar .tlb-btn-title {
	
}

.btn-cancel, .btn-new, .btn-save {
	display: none;
}

.card-toolbar .dropdown-header {
	padding: 0.5rem 1rem 0rem 1rem;
	font-style: italic;
}

.tab-content .toolbar {
	padding-bottom: 10px;
}

.tab-content .toolbar .fas {
	padding-right: 5px;
}

.modal-toolbar .fas {
	padding-right: 5px;
}

.modal-body .tab-pane {
	padding: 10px;
}

/* ----------------------------------------------------------------------------------------------------------------------------------
  xx. avatar
---------------------------------------------------------------------------------------------------------------------------------- */
.avatar {
	height: 40px;
	width: 40px
}

.avatar-title {
	align-items: center;
	color: #fff;
	display: flex;
	height: 100%;
	justify-content: center;
	width: 100%
}


/* ----------------------------------------------------------------------------------------------------------------------------------
  xx. Cursors
---------------------------------------------------------------------------------------------------------------------------------- */
.cursor-grab {
	cursor: move;
	cursor: grab;
	cursor: -webkit-grab
}


/* ----------------------------------------------------------------------------------------------------------------------------------
  xx. Seite :: Login, Passwort vergessen, Passwort wiederherstellen, Registration
---------------------------------------------------------------------------------------------------------------------------------- */
.auth .auth-header h1 {
	font-size: 2rem;
	color: var(--bg-template-14);
}
.auth .auth-header h1 span {
	color: var(--bg-template-13);
}

.auth .card-title {
	color: #666;
	font-size: 1.1rem;
	font-weight: normal;
	text-align: center;
	padding-top: 20px;
}

/* ----------------------------------------------------------------------------------------------------------------------------------
  xx. System - Benutzer
---------------------------------------------------------------------------------------------------------------------------------- */
.passwort-log {
	display: inline;
}

.passwort-kurz {
	color: #900000;
}

.passwort-schwach {
	color: #ffa500;
}

.passwort-gut {
	color: #000;
}

.passwort-stark {
	color: #009000;
}

.passwort-boldgreen {
	font-weight: bold;
	color: green;
}

.passwort-minimum span {
	display: none;
	padding-left: 10px;
	color: green;
}

.passwort-grossundklein span {
	display: none;
	padding-left: 10px;
	color: green;
}

.passwort-buchstabenundzahlen span {
	display: none;
	padding-left: 10px;
	color: green;
}

.passwort-sonderzeichen span {
	display: none;
	padding-left: 10px;
	color: green;
}


/* ----------------------------------------------------------------------------------------------------------------------------------
  xx. App.alert - Toast
---------------------------------------------------------------------------------------------------------------------------------- */
#toast-container > .toast {
    width: 500px;
}


/* ----------------------------------------------------------------------------------------------------------------------------------
  xx. Seiten :: Kandidaten / Kunden / Mandate / Rapporte
---------------------------------------------------------------------------------------------------------------------------------- */

/* Formular */
.adressen,
.telefonie,
.email,
.ausbildung,
.wichtige-informationen,
.kinder,
.lohn,
.arbeitsaufwand {
	position: relative;
}

.adressen legend,
.telefonie legend,
.email legend,
.ausbildung legend,
.wichtige-informationen legend,
.kinder legend,
.lohn legend {
	position: relative;
}

fieldset {
	border: 1px solid var(--bg-template-01);
	background-color: var(--bg-template-04);
	margin: 0rem 0rem 0.5rem 0rem;
	/*padding-bottom: 15px;*/
}

legend {
	/*
	background-color: var(--bg-template-01);
	color: white;
	padding: 3px 10px;
	*/
}

legend .legend-title {
	padding-right: 7px;
}

.fieldset-footer {
	position: absolute;
	bottom: -10px;
	right: 10px;
	padding: 0px 5px;
	background-color: var(--bg-template-04);
}


.fieldset-footer span {
	padding-left: 4px;
}

.fieldset-footer a {
	color: #3e4676;
}

/* Feld-Beschriftungen */
label {
	font-size: 0.85rem;
}

/* Tabs */
fieldset .tab {
	margin-bottom: 0rem;
}

/* Tabellen */
.table {
	margin-bottom: 5px;
}

/* Flexbox :: Ausbildung / Wichtige Informationen */
.fieldset-flexbox {
	display: flex;
}

.fieldset-flexbox .flexbox-main {
	flex: 1;
}

.fieldset-flexbox .flexbox-toolbar {
	flex: 0 25px;
}

/* Buttons */
.button-action {
	color: #6c757d;
}

.button-action:hover {
	color: #212529;
}

.nav-item .card-actions i {
	color: black;
}

.nav-item .card-actions i:hover {
	color: #153d77;
}

/* Adresse */
.adresse-recordset {
	padding-top: 10px;
}

/* ----------------------------------------------------------------------------------------------------------------------------------
  xx. ToDo-List
---------------------------------------------------------------------------------------------------------------------------------- */

.todo-list {
	list-style: none;
	margin: 0;
	overflow: auto;
	padding: 0;
}

.todo-list > li {
	border-radius: 2px;
	background-color: #f8f9fa;
	border-left: 2px solid #e9ecef;
	color: #495057;
	margin-bottom: 2px;
	padding: 5px 10px;
}

.gemeinsame-aufgaben .todo-list > li.kein-verantwortlicher {
	background-color: rgba(176, 196, 222, 0.4) !important;
}

.todo-list > li:last-of-type {
	margin-bottom: 0;
}

/* Checkbox */
.todo-list > li > input[type="checkbox"] {
	margin: 0 10px 0 5px;
}

/* Task-Funktionen (rechts) */
.todo-list > li .tools {
	display: none;
	float: right;
	cursor: pointer;
	margin-right: 5px;
}

.todo-list > li .tools i {
	padding-left: 5px;
	color: gray;
}

.todo-list > li .tools i:hover {
	color: #dc3545;
}

.todo-list > li:hover .tools {
	display: inline-block;
}

/* Task erledigt */
.todo-list > li.done {
	color: #697582;
}

.todo-list > li.done .text {
	font-weight: 500;
	text-decoration: line-through;
}

.todo-list > li .badge {
	margin-right: 10px;
}

.todo-list > li.done .badge {
	background-color: #adb5bd !important;
}

/* Drag & Drop */
.todo-list .handle {
	cursor: move;
	display: inline-block;
	margin: 0 5px;
}

/* Farben - Vertikaler Strich vor Task */
.todo-list .primary {
	border-left-color: #007bff;
}

.todo-list .secondary {
	border-left-color: #6c757d;
}

.todo-list .success {
	border-left-color: #28a745;
}

.todo-list .info {
	border-left-color: #17a2b8;
}

.todo-list .warning {
	border-left-color: #ffc107;
}

.todo-list .danger {
	border-left-color: #dc3545;
}

.todo-list .light {
	border-left-color: #f8f9fa;
}

.todo-list .dark {
	border-left-color: #343a40;
}

.todo-list .lightblue {
	border-left-color: #3c8dbc;
}

.todo-list .navy {
	border-left-color: #001f3f;
}

.todo-list .olive {
	border-left-color: #3d9970;
}

.todo-list .lime {
	border-left-color: #01ff70;
}

.todo-list .fuchsia {
	border-left-color: #f012be;
}

.todo-list .maroon {
	border-left-color: #d81b60;
}

.todo-list .blue {
	border-left-color: #007bff;
}

.todo-list .indigo {
	border-left-color: #6610f2;
}

.todo-list .purple {
	border-left-color: #6f42c1;
}

.todo-list .pink {
	border-left-color: #e83e8c;
}

.todo-list .red {
	border-left-color: #dc3545;
}

.todo-list .orange {
	border-left-color: #fd7e14;
}

.todo-list .yellow {
	border-left-color: #ffc107;
}

.todo-list .green {
	border-left-color: #28a745;
}

.todo-list .teal {
	border-left-color: #20c997;
}

.todo-list .cyan {
	border-left-color: #17a2b8;
}

.todo-list .white {
	border-left-color: #fff;
}

.todo-list .gray {
	border-left-color: #6c757d;
}

.todo-list .gray-dark {
	border-left-color: #343a40;
}


/* ----------------------------------------------------------------------------------------------------------------------------------
  xx. jQueryUI - AutoComplete
---------------------------------------------------------------------------------------------------------------------------------- */
/* Bootsrap Modal Fix */
.ui-autocomplete {
	z-index: 2147483647;
}

/* scrollbar in AutoComplete */
.ui-autocomplete {
	max-height: 250px;
	overflow-y: auto;
	overflow-x: hidden;
}


/* ----------------------------------------------------------------------------------------------------------------------------------
  xx. AJAX-Loader :: Spinning / Rotating
---------------------------------------------------------------------------------------------------------------------------------- */
.AjaxLoading {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    margin: -125px 0px 0px -125px;
    z-index: 2000;
    
    border: 16px solid var(--bg-template-03);
    border-radius: 50%;
    border-top: 16px solid var(--bg-template-01);
    border-bottom: 16px solid var(--bg-template-01);
    
    /*
    border-right: 16px solid red;
    border-bottom: 16px solid green;
    border-left: 16px solid yellow;
	*/
    
    width: 125px;
    height: 125px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

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

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



/* ----------------------------------------------------------------------------------------------------------------------------------
  xx. jQueryUI :: AutoComplete Erweiterungen
---------------------------------------------------------------------------------------------------------------------------------- */

.ui-autocomplete {}

.ui-autocomplete-category {
	margin-top: 5px;
	padding: 2px 3px;
	font-weight: bolder;
	font-style: italic;
	color: #777;
	font-size: 13px;
}

.ui-autocomplete-row {
	padding: 2px 3px;
	border: 1px solid transparent;
}

.ui-autocomplete-row:hover {
	background-color: #153d77;
	color: #fff;
}

/*
.ui-menu-item .ui-menu-item-wrapper.ui-state-active {
	background: #6693bc !important;
	font-weight: bold !important;
	color: #ffffff !important;
}
*/
/*
.ui-menu-item .ui-state-active {
	background: #153d77 !important;
}
*/

.ui-autocomplete-left {
	float: left !important;
	padding-left: 3px;
}

.ui-autocomplete-right {
	float: right !important;
	padding-right: 3px;
}

/* ----------------------------------------------------------------------------------------------------------------------------------
  xx. modales Fenster :: Journal / Aufgaben
---------------------------------------------------------------------------------------------------------------------------------- */

.divJournal_Beziehungen, 
.divAufgaben_Verantwortliche, 
.divAufgaben_Beziehungen {
	margin-top: 13px;
	padding: 5px;
	border: 1px solid #CED4DA;
	display: none;
}

.divJournal_Beziehungen ul, 
.divAufgaben_Verantwortliche ul, 
.divAufgaben_Beziehungen ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}

.divJournal_Beziehungen li, 
.divAufgaben_Verantwortliche li, 
.divAufgaben_Beziehungen li {
	margin-top: 5px;
	margin-right: 5px;
	padding: 3px 5px;
	float: left;
	/*background-color: #153d77;*/
	background-color: rgba(21, 61, 119, 1);
	transition: all .1s ease-in-out;
	color: #fff;
	border: 1px solid #444;
	border-radius: 5px;
}

.divJournal_Beziehungen li:hover, 
.divAufgaben_Verantwortliche li:hover, 
.divAufgaben_Beziehungen li:hover {
	background-color: rgba(21, 61, 119, 0.8);
	transition: all .1s ease-in-out;
}

.divJournal_Beziehungen li a, 
.divAufgaben_Verantwortliche li a, 
.divAufgaben_Beziehungen li a {
	color: #fafafa;
}

.divJournal_Beziehungen li .kz, 
.divAufgaben_Verantwortliche li .kz, 
.divAufgaben_Beziehungen li .kz {
	margin-right: 5px;
	font-weight: bolder;
}

.divJournal_Beziehungen li .element, 
.divAufgaben_Verantwortliche li .element, 
.divAufgaben_Beziehungen li .element {
	/* */
}

.divJournal_Beziehungen li .delete, 
.divAufgaben_Verantwortliche li .delete, 
.divAufgaben_Beziehungen li .delete {
	margin-left: 5px;
}

.divJournal_Beziehungen li a.delete:hover, 
.divAufgaben_Verantwortliche li a.delete:hover, 
.divAufgaben_Beziehungen li a.delete:hover {
	color: red;
	transition: all .1s ease-in-out
}

.divJournal_Beziehungen li a:active, .divJournal_Beziehungen li a:focus,
.divAufgaben_Verantwortliche li a:active, .divAufgaben_Verantwortliche li a:focus,
.divAufgaben_Beziehungen li a:active, .divAufgaben_Beziehungen li a:focus {
	outline: 0;
	border: none;
	-moz-outline-style: none;
}