/*!
 * Start Bootstrap - Simple Sidebar HTML Template (http://startbootstrap.com)
 * Code licensed under the Apache License v2.0.
 * For details, see http://www.apache.org/licenses/LICENSE-2.0.
 */

/****************************************
 * 
    ALLGEMEIN
 *  
****************************************/

* {
	font-family: "Georgia", "Times New Roman", Times, serif;
	font-size: 16px;
}

body {
	overflow-x: hidden;
}

/***	Kompensation für fixen Header bei dokumenteninternen Verlinkungen (Ausnahme für Tabellenzeilen, DB-linkbuttons)***/
:not(tr):target:before {
	content: "";
	display: block;
	/* fixed header height*/
	height: 51px;
	/* negative fixed header height */
	margin: -51px 0 0;
}

/***	Seitenränder bei geringer Bildschirmgröße entfernen	***/
@media (max-width: 480px) {

	#page-content-wrapper,
	#page-content-wrapper>.container-fluid {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
}


/****************************************
 * 
    EINZELELEMENTE
 *  
****************************************/
a {
	color: #26547f;
}

a:hover {
	color: #CB8614;
}

h1,
h2 {
	text-align: center;
}

.hikolink_p {
	text-align: center;
}

.abschnitt_header,
.themen_header,
.rdb_header {
	font-size: 2.5em;
	margin-bottom: 0.5em;
}

@media (max-width: 480px) {

	.abschnitt_header,
	.themen_header,
	.rdb_header {
		font-size: 2em !important;
	}
}

span.highlight,
span.biogrammname,
span.fremdwort {
	font-style: oblique;
}

.to_top .glyphicon {
	font-size: 14px;
	top: 2px;

}


.modal-footer .btn {
	margin-bottom: 2px !important;
}



/****************************************
 * 
	WRAPPER
 *  
****************************************/

#wrapper {
	padding-left: 0;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	background-color: #fff;
}

#wrapper.toggled {
	padding-left: 250px;
}

#page-content-wrapper {
	margin-top: 50px;
	padding: 15px;
	width: 100%;
}

@media (min-width: 1400px) {
	#wrapper.toggled #page-content-wrapper {
		position: absolute;
		margin-right: -250px;
	}
}

@media (max-width: 1399px) {
	#wrapper.toggled {
		padding-left: 0 !important;
	}
}

/****************************************
 * 
    NAVBAR
 *  
****************************************/

.navbar-fixed-top {
	background: linear-gradient(90deg, rgb(0, 26, 51), rgb(0, 26, 51) 50%, rgba(0, 26, 51, 0.8));
	border-color: #aaa;
}

.navbar-fixed-top .navbar-nav>li>a,
.navbar-fixed-top .navbar-header>.navbar-brand {
	color: floralwhite;
	overflow: hidden;
}

.navbar-fixed-top .navbar-nav>li>a:hover,
.navbar-fixed-top .navbar-header>.navbar-brand:hover {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
}

.navbar-inverse .navbar-nav>.active>a {
	color: #001a33;
	background-color: #fff;
	border: 1px #001a33 solid;
}

.navbar-inverse .navbar-nav>.active>a:hover {
	background-color: #111;
	color: floralwhite;
}

/*Frühere navbar-Einfaltung*/
@media (max-width : 1115px) {
	.navbar-header {
		float: none;
	}

	.navbar-left,
	.navbar-right {
		float: none !important;
	}

	.navbar-toggle {
		display: block;
	}

	.navbar-collapse {
		border-top: 1px solid transparent;
		box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
	}

	.navbar-fixed-top {
		top: 0;
		border-width: 0 0 1px;
	}

	.navbar-collapse.collapse {
		display: none !important;
	}

	.navbar-nav {
		float: none !important;
		margin-top: 7.5px;
	}

	.navbar-nav>li {
		float: none;
	}

	.navbar-nav>li>a {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.collapse.in {
		display: block !important;
	}

	.navbar-nav .open .dropdown-menu {
		position: static;
		float: none;
		width: auto;
		margin-top: 0;
		background-color: transparent;
		border: 0;
		-webkit-box-shadow: none;
		box-shadow: none;
	}
}

/*Seitenüberschrift anpassbar an Seitenbreite*/
.minrprotheader {
	margin-left: 0 !important;
	padding-left: 5px;
	padding-right: 5px;
}

#minrprotheadershort {
	display: none;
}

@media (max-width: 600px) {
	#minrprotheaderlong {
		display: none;
	}

	#minrprotheadershort {
		display: block;
	}
}

@media (max-width: 399px) {
	.minrprotheader {
		font-size: 14px;
	}
}

@media (max-width: 340px) {
	.minrprotheader {
		font-size: 12px;
	}
}

/*rem statt Pixel, da Firefox bei kleinen Bildschirmgrößen Media-Queries ignoriert
Original: 299px*/
@media (max-width: 19rem) {
	.minrprotheader {
		font-size: 10px;
	}
}

/*Original: 279px*/
@media (max-width: 17rem) {
	.minrprotheader {
		display: none !important;
	}
}


/****************************************
 * 
    SIDEBAR
 *  
****************************************/

/*** Erscheinungsbild ***/
#sidebar-wrapper {
	position: fixed;
	left: 250px;
	z-index: 1000;
	overflow-x: hidden;
	overflow-y: auto;
	margin-left: -250px;
	width: 0;
	height: 100%;
	background: linear-gradient(180deg, rgb(0, 26, 51), rgb(0, 26, 51) 10%, rgba(0, 26, 51, 0.75));
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

#wrapper.toggled #sidebar-wrapper {
	width: 250px;
}

/*** Sidebar einklappen bei geringer Bildschirmbreite ***/
@media (min-width : 1400px) {
	#wrapper {
		padding-left: 250px;
	}

	#wrapper.toggled {
		padding-left: 0;
	}

	#sidebar-wrapper {
		width: 250px;
	}

	#wrapper.toggled #sidebar-wrapper {
		width: 0;
	}

	#page-content-wrapper {
		padding: 20px;
	}
}

@media (min-width: 651px) {
	#wrapper #page-content-wrapper {
		position: relative;
		margin-right: 0;
	}
}

/*** Inhalt ***/
.sidebar-nav {
	position: absolute;
	top: 0;
	margin: 0;
	padding: 0 5px 0 0;
	width: 250px;
	list-style: none;
	overflow: hidden;
}

.sidebar-content {
	min-height: 76vh;
	list-style: none;
	margin-top: 30px;
	padding: 0 5px 0 0;
}

.sidebar-nav li {
	padding-left: 0.9em;
	line-height: 2em;
}

.sidebar-nav li a,
.sidebar-nav li>span {
	display: block;
	color: #fff;
	padding-left: 0.3em;
	text-decoration: none;
}

.sidebar-nav li a:hover,
.sidebar-nav li>span:hover {
	background-color: #ffffff33;
	color: #fff;
	text-decoration: none;
	cursor: pointer;

}

.sidebar-nav li.active>a:hover {
	background-color: #111;
}

.sidebar-nav li a:active,
.sidebar-nav li a:focus {
	text-decoration: none;
}

.sidebar-nav li li {
	padding-right: 10px;
}

.sidebar-nav>.sidebar-brand {
	height: 65px;
	font-size: 18px;
	line-height: 60px;
}

.sidebar-nav>.sidebar-brand a {
	color: floralwhite;
}

.sidebar-nav>.sidebar-brand a:hover {
	background: none;
	color: #fff;
}

.sidebar_bandname {
	color: #bbb;
}

.sidebarbandtitel {
	display: inline-block;
	width: 45%;
}

.sidebarbandjahr {
	display: inline-block;
}

/***	Sidebar-Dropdowns	***/
.sidebar-nav a[data-toggle="collapse"] {
	position: relative;
}

.sidebar-nav a[aria-expanded="false"]::before,
.sidebar-nav a[aria-expanded="true"]::before {
	content: '\e259';
	display: block;
	position: absolute;
	right: 20px;
	font-family: 'Glyphicons Halflings';
	font-size: 0.6em;
}

.sidebar-nav a[aria-expanded="true"]::before {
	content: '\e260';
}

.sidebar-nav li.active {
	background-color: #fff;
}

.sidebar-nav li.active:hover {
	background-color: #111;
}

.sidebar-nav li.active a {
	color: black;
}

.sidebar-nav li.active:hover a {
	color: white;
}

.sidebar-nav .nav-divider {
	height: 1px;
	margin: 1em 10px;
	overflow: hidden;
	background-color: #aaa;
	;
}

#hikologo-sidebar {
	width: 70%;
	margin-left: 14%;
	padding: 0;
	color: white;
}

@media (max-width: 650px) {
	.sidebar-nav {
		width: 100% !important;
		padding: 0 !important;
	}

	.sidebar-nav li {
		width: 95%;
	}

	.sidebar-nav li li {
		padding-right: 0 !important;
	}

	.sidebar-content {
		min-height: 66vh !important;
	}

	#hikologo-sidebar {
		width: 50% !important;
		height: auto !important;
		margin-left: 25% !important;
	}
}


/****************************************
 * 
    BACK-TO-TOP-BUTTON
 *  
****************************************/

div#back-to-top {
	cursor: pointer;
	position: fixed;
	bottom: 15px;
	right: 15px;
	display: none;
	background-color: #26547F;
	color: white;
}

#back-to-top:hover {
	background-color: #cb8614;
	color: black;
}


/****************************************
 * 
    THEMEN- UND HILFESEITEN
 *  
****************************************/
.ministerprasidentimg {
	float: right;
	width: 250px;
	height: auto;
	margin: 0 0 1em 1em;
}

#themendokument p,
#themendokument a{
	font-size: 20px;
}

@media (max-width: 592px) {
	.ministerprasidentimg {
		float: none !important;
	}

	@media (max-width: 360px) {
		.ministerprasidentimg {
			width: 100%;
		}
	}
}