/* Main */
body {
	font-family : 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size : 14px;
}
.bg-light {
	background-color : #f6f6f6 !important; /* #f6f6f6 */
}
.bg-dark {
	background-color : #262626 !important; /* #f6f6f6 */
}
.container {
	width : 100%;
}
.card {

}

/* Navbar */
.navbar {
	height : 75px;
	border-bottom : 3px solid #0086b7 !important;
	background-color : #f6f6f6 !important;
	box-shadow : 0px 3px 8px 0px lightgrey !important;
}
.navbar .nav-link.active {
	color: #353535 !important;  /* Bootstrap-Primary-Blau */
	font-weight: 600;
}
.navbar .nav-link {
	transition: color 0.2s ease;
}
.navbar .nav-link:hover {
	background-color : #eeeeee;
	transition: 0.4s;
}
.navbar-collapse {
	background-color : #f6f6f6;
}
.nav-item {
	font-size : 16px;
}
.nav-link {
	padding : 15px;
}
@media (max-width: 767px) {
	.nav-link {
		border-bottom: 1px solid #e5e5e5;
	}
}

/* Links */
a {
	color : #0086b7;
	text-decoration : none;
	transition : 0.4s;
}
a:hover {
	color : #009cd4;
}

/* Buttons */
.btn-default {
	color: #333;
	background-color: #fff;
	border-color: #ccc;
}
.btn-default:hover {
	color: #333;
	background-color: #e6e6e6 !important;
	border-color: #adadad !important;
}
.btn-default:active {
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);	
}
.btn-primary {
	background-color : #0086b7;
	border-color: #0083b3 !important;
	padding : 10px;
	border-radius : 5px;
}
.btn-primary:hover {
	background-color : #009cd4;
	border-color : #0083b3;
}
.btn-primary i {
	color : white !important;
}
.btn-primary:active {
	background-color : #0086b7 !important;
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.btn-outline-primary {
	border-color : #31708f !important;
	color : #31708f;
	border : none;
}
.btn-outline-primary:hover {
	background-color: #31708f !important;
	color : white;
}
.btn-outline-primary:active {
	background-color : #31708f !important;
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.btn-secondary {
	background-color : #eeeeee !important;
	border-color: lightgrey !important;
	color: #333333 !important;
	padding : 10px;
	border-radius : 5px;
}
.btn-secondary:hover {
	background-color : #dedede !important;
}
.btn-secondary:active {
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.btn-outline-secondary {
	border : none;
}
.btn-outline-success {
	border : none;
}
.btn-outline-danger {
	border : none;
}

/* Überschriften */
.page-header {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding-bottom : 10px;
}
.page-header .btn {
	padding-left : 20px;
	padding-right : 20px;
}
h1 {
	font-size : 25px;
}
h2 {
	font-size : 20px;
	color : #777777;
}


/* Schriften */
.text-primary {
	color : #31708f !important;
}
.text-success {
	color : #3c763d !important;
}
.text-danger {
	color: #a94442 !important;
}
.text-warning {
	color : #8a6d3b !important;
}


/* Alerts */
.alert {
	padding: 15px;
	margin-bottom: 20px;
	border: 1px solid transparent;
	border-radius: 4px;
	word-break: break-word;
	hyphens: auto;
}
.alert-success {
	color: #3c763d;
	background-color: #dff0d8;
	border-color: #d6e9c6;
}
.alert-info {
	color : #31708f;
	background-color : #d9edf7;
	border-color : #bce8f1;
}
.alert-warning {
	color: #8a6d3b;
	background-color: #fcf8e3;
	border-color: #faebcc;
}
.alert-danger {
	color: #a94442;
	background-color: #f2dede;
	border-color: #ebccd1;
}

/* Badges */
.bg-primary {
	color : #31708f !important;
	background-color : #d9edf7 !important;
}

.bg-info {
	color : #31708f !important;
	background-color : #d9edf7;
}

.bg-success {
	color: #3c763d !important;
	background-color: #dff0d8 !important;
}

.bg-warning {
	color: #8a6d3b !important;
	background-color: #fcf8e3 !important;
}

.bg-danger {
	color: #a94442 !important;
	background-color: #f2dede !important;
}

/* Modals */
.modal-header {
	background-color : #f6f6f6;
	border-bottom : 3px solid rgb(0, 134, 183);
}

/* Footer */
.footer {
	background-color : #f6f6f6 !important;
	border-top: 1px solid #eee;
}
.footer a {
	color : #0086b7;
	text-decoration : none;
}
.footer a:hover {
	color : #009cd4;
}

/* Tabellen */
.table {
}
.table td {
}
.table>:not(caption)>*>* {
	padding : 5px !important;
	line-height : 20px;
}
.table-expand tbody tr td {
	padding-top: 0.6rem !important;
	padding-bottom: 0.6rem !important;
}
.table-striped > tbody > tr:nth-of-type(odd) > * {
	background-color: #fefefe;
}
.table-hover-soft tbody tr > * {
	transition: background-color 0.4s ease, color 0.4s ease;
}
.table-hover-soft tbody tr:hover > * {
	background-color: #EAF8FF !important;
	color: #23527C !important;
}

/* Login */
.login {
	background: rgba(255, 255, 255, 0.8);
	transition: 0.4s;
	border: 1px solid #cccccc;
	border-radius: 10px;
	width : 330px;
	padding : 30px !important;
	max-width : 100%;
}
@media (min-width: 768px) {
	.login {
		width : 380px;
	}
}
.login:hover {
	background: rgba(255, 255, 255, 0.9);
}
.login form {
	margin-bottom: 0px;
}
.login .form-control {
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid #ccc;
	color: #555;
	height: 34px;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.42857143;
	border-radius: 4px;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
	transition : 0.4s;
}
.login .form-control:hover {
	background: rgba(255, 255, 255, 0.9);
}
.login .form-control::placeholder {
	color: #dbdbdb;
}
.login .input-group-text {
	background: rgba(238, 238, 238, 0.7);
	border: 1px solid #ccc;
	font-size: 14px;
	color : #555;
}
.login .btn {
	opacity : 0.7 !important;
	height:42px;
	font-size:14px;
	margin-bottom:5px;
	transition: color .15s ease-in-out, background-color .0s ease-in-out, border-color .0s ease-in-out, box-shadow .0s ease-in-out;
	transition : 0.4s;
}
.login .btn:hover {
	opacity : 1.0 !important;
}
.login p {
	margin-bottom : 0px;
}
.login .alert {
	font-size : 14px;
}
.mb-3 {
	margin-bottom : 15px !important;
}
.fade-in {
	opacity: 0;
	animation: fadeIn 1.0s ease-out forwards;
	/* animation-delay: 0.1s; */
	animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@keyframes fadeIn {
	from { opacity: 0; }
	to   { opacity: 1; }
}

hr {
	border-top: 1px solid rgba(0, 0, 0, 0.1); !important;
	margin: 20px 0 !important;
	opacity: 1 !important;
}