@charset "UTF-8";
/* CSS Document */

/* #A7BCB1 /*Hintergrundfarbe Plan */
/* #009ddf; /* Workshop-Cayn hell */
/* #0086c7 /*Workshop-Cyan Dunkel */
/* #c7d300; /* Offene Angebote Gruen Hell */
/* #a8bc08 /*Offene Angebote Gruen Dunkel */
/* #f9b01e /* Vortraege Orange */
/* #b1b1b2; /* Mittleres Grau fuer Icons */
/* #3a3938; /* Anthrazit Texte und Konturen */
/* #ddd8cd; /* Hintergrund Warmes Grau */
/* #e8e6df; /* Hintergrund Warmes Grau 60% */
/* #e2000a; /* MINT rot '*/

/* ubuntu-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/ubuntu-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* ubuntu-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/ubuntu-v20-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* ubuntu-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/ubuntu-v20-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


body {
    font-family: sans-serif;
	font-family: 'Ubuntu';
	font-style: normal;
	font-weight: 400;
    margin: 0;
    padding: 0;
    display: flex;
	box-sizing:border-box;
    justify-content: center;
	background-color: #e8e6df; /* Hintergrund warmes grau 20% */
}

.wrapper {
	width: 100%;
    max-width: 600px;
    padding: 0;
    box-sizing: border-box;
	border: 1px solid #000000;
}

 .section {
     /*margin-bottom: 20px;*/
	padding: 10px;
 }

p a {
	color:#e2000a; /* MINT rot '*/
}

.titel-container {
	background-color: #ffffff;
	text-align: center;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.mint-logo {
	width: 240px;
	height: 80px;
	margin: auto;
	background-image: url("images/mint-logo.png");
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: center;	
}

h1 {
	font-size: 24px;
	color:#3a3938; /* Anthrazit Texte und Konturen */
}

h2 {
	font-size: 24px;
	color:#3a3938; /* Anthrazit Texte und Konturen */
}

h3 {
	font-size: 18px;
	color:#3a3938; /* Anthrazit Texte und Konturen */
}

p {
	font-size: 14px;
	color:#3a3938; /* Anthrazit Texte und Konturen */
}

ul li {
	color:#3a3938; /* Anthrazit Texte und Konturen */
}

/* short nav */
.short-nav {
	height: auto;
	position: sticky;
	top: 0;
	z-index: 1000;
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 6px 8px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.05);
	transition: all 0.3s ease;
}

.short-nav.hidden {
	opacity: 0;
	height: 0;
	pointer-events: none;
}

.short-nav-left,
.short-nav-right {
	display: flex;
	gap: 0px;
}

.short-nav a, .short-nav-right a {
	display: inline-block;
	min-width: 50px;
	padding: 12px 0px;
	font-size: 16px;
	font-weight: normal;
	color: #000;
	text-decoration: none;
	margin: 4px;
	background-color: #e8e6df;
	text-align: center;
}

.short-nav a:hover {
  background-color: #e0e0e0;
}

.short-nav a.ws-shortnav-link {
  	background-color: #0086c7;
	color: #ffffff;
}

.short-nav a.oa-shortnav-link {
  	background-color: #a8bc08;
	color: #ffffff;
}

.short-nav a.v-shortnav-link {
  	background-color: #f9b01e;
	color: #ffffff;
}

.short-nav a.suche-shortnav-link {
	background-image: url("icons/mint-icon-lupe.png");
	background-position: center;
	background-size:30px;
	background-repeat: no-repeat;
}

.short-nav a.top-shortnav-link {
	background-image: url("icons/mint-icon-pfeil-nach-oben.png");
	background-position: center;
	background-size:30px;
	background-repeat: no-repeat;
}

/* toggle boxen und buttons */
.button-container {
	
}

.button-container .toggle-button {
    display: block;
    width: 100%;
    margin-top: 10px;
	padding: 20px;
	border-radius: 0;
	border: none;
	cursor: pointer;
	font-size: 14px;
	box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

#toggleAngebote.toggle-button {
	color:#ffffff;
	background-color: #a8bc08; /*Offene Angebote Gruen Dunkel */
}

#toggleAngebote.toggle-button:hover {
	color: #000000;
	background-color: #c7d300; /*Offene Angebote Gruen hell */
}

#toggleWorkshops.toggle-button {
	color:#ffffff;
	background-color:#0086c7; /*Workshop-Cyan Dunkel */
}

#toggleWorkshops.toggle-button:hover {
	background-color:#009ddf;
}

#toggleVortraege.toggle-button {
	color:#ffffff;
	background-color:#f9b01e; /* Vortraege Orange */
}

/* toggle content aufklappboxen */
.toggle-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  border: 1px solid #efefef;
  padding: 0 16px; /* initial padding, wird bei Sichtbarkeit ergänzt */
  margin-bottom: 10px;
  background-color: #fff;
  position: relative;
}

#workshops.toggle-content {
	border:1px solid #0086c7;
}

#offene-angebote.toggle-content {
	border:1px solid #a8bc08;
}

#vortraege.toggle-content {
	border:1px solid #f9b01e;
}

.toggle-content.visible {
  max-height: 9000px; /* groß genug für Inhalte */
  opacity: 1;
  padding: 16px;
}

.toggle-content.hidden {
  max-height: 0;
  opacity: 0;
  padding: 0 16px;
}

/* close-buttons */
.close-button {
  position: absolute;
  top: 0px;
  right: 0px;
  background-color: #efefef;
	border: none;
  width: 30px;
  height: 100%;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  cursor: pointer;
  color: #333;
}

.close-button:hover {
  background-color: #eee;
}

/* minus-zeichen immer sichtbar auch bei langen listen */
.close-button span {
	
}

#workshops.toggle-content .close-button {
	background-color: #cce7f4; /* dunkles Cyan 20%*/
	color: #0086c7;
}

#offene-angebote.toggle-content .close-button {
	background-color: #eef2ce; /* dunkles Gruen 20%*/
	color: #a8bc08;
}

#vortraege.toggle-content .close-button {
	background-color: #fde7bb; /* orange 30% */
	color: #f9b01e;
}


/* angebote in aufklappboxen */

.klassen-ueberschrift {
	font-weight: normal;
}

.workshop-liste {
	list-style-type: none;
	padding-left: 0;
	font-size: 14px;
}

.workshop-liste li {
	margin-bottom: 20px;
	line-height: 1.7;
	padding-bottom: 6px;
	border-bottom: 1px dotted #000000;
}

.zeit {
	color: #555;
	display: inline-block;
	margin-right: 6px;
}

.ws-link {
  background-color: #0086c7;
	color: #ffffff;
  text-decoration: underline;
	text-decoration-style: dotted;
  margin-right: 6px;
	padding: 6px;
}

.ws-titel {
	font-weight: 500;
}

.raum-link {
  	color: #e2000a;
  	font-weight: bold;
  	text-decoration: underline;
	text-decoration-style: dotted;	
  	margin-left: 6px;
}

/* offene angebote */
.offene-angebote-liste {
  list-style-type: none;
  padding-left: 0;
	padding-right: 40px;
	font-size: 14px;
}

.offene-angebote-liste li {
  margin-bottom: 20px;
  line-height: 1.7;
	padding-bottom: 6px;
	border-bottom: 1px dotted #000000;
}

.oa-titel {
	font-weight: 500;
}

.oa-raum-link {
  	color: #e2000a;
  	font-weight: bold;
  	text-decoration: underline;
	text-decoration-style: dotted;	
  	margin-left: 0px;
	margin-right: 6px;
}

.oa-nummer {
  background-color: #a8bc08; /* gruen */
	color: #ffffff;
  text-decoration: underline;
	text-decoration-style: dotted;	
  margin-right: 6px;
	padding: 6px;
}

/* Vortraege */
.vortraege-liste {
  list-style-type: none;
  padding-left: 0;
	padding-right: 40px;
	font-size: 14px;
}

.vortraege-liste li {
  margin-bottom: 20px;
  line-height: 1.7;
	padding-bottom: 6px;
	border-bottom: 1px dotted #000000;
}

.vortraege-liste .raum-link {	
  	margin-left: 0px;
	margin-right: 6px;
}

.vortraege-zeit {
	color: #555;
	display: inline-block;
	margin-right: 6px;
}

.vortraege-link {
	background-color: #f9b01e;
	color: #ffffff;
	text-decoration: underline;
	text-decoration-style: dotted;
	margin-right: 6px;
	padding: 6px;
}

.vortraege-titel {
	font-weight: 500;
}

.vortraege-description {
	font-weight: normal;
}


/* raumplaene */
.raumplan-container {
	padding: 0;
	width: 100%;
    margin-top: 16px;
}


/* suchfunktion */
.search-area {
	padding: 20px;
}

.suchfeld-wrapper {
  display: flex;
  gap: 0px;
  margin-top: 10px;
}

.suchfeld-wrapper input[type="text"] {
  flex-grow: 1;
  height: 54px;
	max-height: 54px;
	max-width: 70%;
  padding: 0;
	padding-left: 10px;
  font-size: 16px;
	border-radius: 0px;
	border: 1px solid #ddd8cd;
}

/* lupe */
.suchfeld-wrapper button {
 	width:60px;
	height: 60px;
	max-height: 56px;
  padding: 8px 16px;
  font-size: 20px;
  background-color: #ddd8cd;
  color: #ffffff;
  border: none;
  cursor: pointer;
	box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
	background-image: url("icons/mint-icon-lupe.png");
	background-position: center;
	background-size:50px;
	background-repeat: no-repeat;
}

.suchfeld-wrapper button:hover {
  background-color: #e2000a;
}

.suchmeldung {
  margin-top: 8px;
  font-size: 14px;
  color: #e2000a; /* MINT-Rot */
  min-height: 1em; /* Reservierter Platz, damit nix springt */
}

.suchvorschlaege {
  list-style: none;
	width: 70%;
  	margin: 0;
	margin-top: -1px;
  padding: 0;
  border: 1px solid #ccc;
  max-height: 200px;
  overflow-y: auto;
  background-color: white;
  font-size: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.suchvorschlaege li {
  padding: 8px;
  cursor: pointer;
}

.suchvorschlaege li:hover {
  background-color: #eee;
}


/* Raumplan Direktlink */
.raumplan-direktlink {
	background-color: #ffffff;
	padding: 20px;
	display: block;
	color: #000000;
	text-decoration: none;
}

.raumplan-direktlink span {
	border-bottom: 1px dotted #000000;
}


/* raumplan karte */
.raumplan-karte {
	position: relative;
}

/* raumplan label */
.raumplan-container .raumplan-label {
	background-color: #A7BCB1;
	background-color: #798C82;
	display: inline-block;
	padding: 20px;
	margin:2px auto 0 0;
	width: 100%;
	text-align: center;
	color: #ffffff;
	/*box-shadow: 3px 0px 6px rgba(0, 0, 0, 0.2);*/
	position: relative;
	box-sizing: border-box;
}

.raumplan-container .raumplan-label h2, .raumplan-container .raumplan-label h3 {
	padding: 0;
	margin: 0;
	color: #ffffff;
}

.raumplan-container .raumplan-label h2 span, .raumplan-container .raumplan-label h3 span {
	
}

/* markierungen auf raumplan */

.raumplan-container .raumplan-bild {
	position: relative;
	/*box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.2);*/
}

	  
.raumplan-container .raumplan-bild img {
      width: 100%;
	height: auto;
	display: block;
} 


.plan-markierung {
	min-height: 12px;
	min-width: 40px;
	position: absolute;
	padding: 1%;
	display: block;
	font-size: 12px;
	transition: all 1s;
	text-align: center;
	background-color: #ffffff;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
}

.raum-markierung {
	background-color: #ffffff;
	transition: all 1s;
}

.raum-markierung.active {
	background-color:#fff000;
	z-index: 4;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
	/*outline: 10px solid #fff000;*/
	color: #000000;
}

.ws-markierung {
	background-color: #0086c7;
	color: #ffffff;
}

.ws-markierung.active {
	background-color:#fff000;
	color: #000000;
	z-index: 4;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.oa-markierung {
	background-color: #a8bc08;
	color: #ffffff;
}

.oa-markierung.active {
	background-color:#fff000;
	color: #000000;
	z-index: 4;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.v-markierung {
	background-color:#f9b01e;
	color: #ffffff;
	min-width: 20px;
}

.v-markierung.active {
	background-color:#fff000;
	color: #000000;
	z-index: 4;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.plan-markierung.mintrot {
	background-color: #e2000a;
}

.plan-markierung.mintrot.active {
	background-color:#fff000;
	color: #000000;
	z-index: 4;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}


.plan-markierung.unsichtbar {
	width: 0;
	height: 0;
	box-shadow: none;
	opacity: 0;
}

.plan-markierung.unsichtbar.active {
	background-color:#fff000;
	color: #000000;
	z-index: 4;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
	opacity: 1;
}

.raumplan-extrainfo-container {
	
	padding: 20px;
	background-color: #ffffff;
}

#footerbereich {
	width: 100%;
	height: auto;
	padding: 0;
	box-sizing:border-box;
	overflow: hidden;
	background-color: #ffffff;
	display:flex; 
	flex-wrap: wrap;
}

#footerbereich .logo-box {
	padding: 10px; 
	float: left;
	box-sizing:border-box;
}

#footerbereich .logo-box a {
	display: inline-block;
	width: 100%;
	text-align: center;
}

#footerbereich .logo-box img {
	width: 100%;
	margin: 0;
}

.zdi-logo {
	width: 60%;
	height: auto;
	margin: auto;
	/*background-image: url("images/logo-zdi-guetersloh.png");
	background-size: 200px auto;
	background-repeat: no-repeat;
	background-position: center;*/
		
}

.prowi-logo {
	width: 40%;
	height: auto;
	margin: auto;
	/*background-image: url("images/prowi-logo-kurzform.png");
	background-size: 120px auto;
	background-repeat: no-repeat;
	background-position: center;*/
		
}

.footer-links {
	padding: 10px 10px 40px 10px;
	width: 100%;
	background-color: #3c4b57;
	color: #ffffff;
}

.footer-links > * {
	color: #ffffff;
}

.footer-links a {
	color: #efefef;
	text-decoration: none;
	border-bottom: 1px dotted #ffffff;
	padding: 10px;
	margin: 10px;
	display: inline-block;
}

.footer-links a:hover {
	color: #ffffff;
	text-decoration: none;
	border-bottom: 1px solid #ffffff;
}



@media screen and (min-width:320px) {

	.plan-markierung {
		padding-left:1.8%;
		padding-right: 1.5%;
	}

}

@media screen and (min-width:480px) {

	
	.button-container .toggle-button {
		font-size: 16px;
	}
	
	p {
		font-size: 16px;
	}
	
	.workshop-liste {
		font-size: 16px;
	}
	
	.offene-angebote-liste {
		font-size: 16px;
	}
	
	.plan-markierung {
		font-size: 14px;
		padding:1.4% 3%;
	}
	
	#footerbereich .logo-box img {
		width: 80%;
	}

}


