/*TITELPART*/

.header {
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  height: 55vh;
  margin-bottom: 8vh;
  gap: 5vh;
  width: 95%;
  align-items: center;
}

.header_title {
  flex: 1.5;
  justify-content: center;
  align-items: flex-end;
  display: flex;
}

.header_title a {
  font-family: var(--font-head);
  color: var(--headings-header);
  font-size: 64px;
  line-height: 95%;
  text-align: center;
  text-transform: var(--ftransf-head);
  text-decoration: none;
  transition: 0.5s;
	-webkit-font-smoothing: antialiased;
}

.header_title a:hover {
  color: var(--headings-header-hover);
  transition: 0.5s;
}

.header_cont {
  display: flex;
  flex-flow: row;
  gap: 10px;
  flex: 1;
  max-height: 42%;
}

.header_cont .tbox {
  background: var(--navubod);
  flex: 1;
  color: var(--helltext);
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-items: stretch;
  padding: 15px 25px;
	gap: 5px;
}

.header_cont .thead {
  font-size: 12px;
}

.header_cont .tmain {
  flex: 1;
  width: 100%;
  text-align: justify;
  overflow: auto;
}


/*DROPDOWN AC*/
/* Style The Dropdown Button */
.ac_dropbtn {
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
  transition: 0.5s;
  padding:0px;
}

.ac_drop {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.ac_drop-content {
  display: none;
  position: absolute;
  background: var(--navubod);
  min-width: 100%;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  transition: 1s all;
}

/* Links inside the dropdown */
.ac_drop-content a {
  color: var(--bunt);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.ac_drop-content a:hover {
  background: var(--headings-side);
color: var(--bunt);
}

/* Show the dropdown menu on hover */
.ac_drop:hover .ac_drop-content {
  transition: 1s all;
display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.ac_drop:hover .ac_dropbtn {
  color: var(--box-body);
}

.ac_drop:hover {
cursor: pointer;
}



/*KALENDER*/
.header_ctable {
	float:left;
	width: 100%;
	text-align: center;
line-height: 120%;
}

.mod_kat {
	background: var(--bunt);
	padding: 5px;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 10px;
	font-size: 15px;
	font-weight: bold;
	color: var(--bunttext);
}

.mod_event {
	padding:10px;
	text-align:justify;
	line-height:170%;
}

.mod_kat a {
	color: var(--bunttext);
}

.mod_ue {
	font-family: var(--font-head);
	text-transform: var(--ftransf-head);
	color: var(--trigger);
	text-align: center;
	font-size: 15px;
}

.event a, .birthday a, .scene a {
	color: var(--headings-side);
}

.event {
	background: var(--hg);
}

.birthday {
	background:#7ea357;
}

.scene {
	background:#7ea357;
}



/*WARN*/
.warn_icon {
	font-size: 32px;
	color: #f80039;
	float: left;
	margin-right: 10px;
}

.warn_box {
	padding: 10px;
	margin-bottom: 10px;
}



/*POP UP*/
.infopop {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: hsla(0, 0%, 0%, 0.5);
	z-index: 1;
	opacity:0;
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	pointer-events: none;
}

.infopop:target {
	opacity:1;
	pointer-events: auto;
}

.infopop > .pop {
	background: #f2f2f2;
	width: 320px;
	position: relative;
	margin: 10% auto;
	padding: 25px;
	z-index: 3;
}

.closepop {
	position: absolute;
	right: -5px;
	top:-5px;
	width: 100%;
	height: 100%;
	z-index: 2;
}