﻿/* Div Styles*/


html,body{
	height:100%;
	margin:0;
}

.box {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center safe;
  height: 100%;
}

.box .row {
  margin: auto;
  align-self:center;
}

.box .row.header {
  flex: 0 1 auto;
  margin-top: 0px;
  margin-bottom: 20px;
  width:95%;
  max-height: 50px;
}

.box .row.content {
  flex: 0 1 auto;
  margin-left:30px;
  margin-right:30px;
  max-width:1200px;
}

.box .row.footer {
  flex: 0 1 40px;
  margin-top: auto;
  width:95%;
}

/* Text Styles*/
.menu_item{
	text-align:center;
	color:white;
}

.normal_text {
	text-align: left;
	color:rgb(240, 240, 240);
}

.bold_text{
  font-weight: bold;
}

.small_text{
  font-size: small;
}

.red_text{
  color: darkred;
}

.green_text{
  color: green;
}

.gold_text{
  font-weight: bold;
  color:darkgoldenrod;
}

.top_caption {
	text-align: center;
	font-weight:bold;
	font-size: x-large;
}

.h2_caption {
	text-align: center;
	font-size: larger;
	font-weight:bold;
	margin-top:2em;
}

.h3_caption {
	text-align: center;
	font-style:italic;
	margin-top:2em;
}


.impressum {
	text-align:center
}

.paragraph_caption {
	font-weight:bold;
}

.base_style {
	background-color:rgb(10,10,10); 
	color: rgb(240, 240, 240);
	font-family: Arial, Helvetica, sans-serif;
}

/* Main text body*/
.Body {
    color: rgb(240, 240, 240);
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 20px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
    padding-bottom: 0px;
    padding-top: 0px;
    text-align: left;
    text-decoration: none;
    text-indent: 0px;
    text-transform: none;
}

/* Link styles */
a:link {
  color: #FFFFFF;
  background-color: transparent;
  text-decoration:underline;
}

a[href^="mailto:"]:link {
  color: #FFFFFF;
  background-color: transparent;
  text-decoration:underline;
} 

a:hover {
	color:silver;
	background-color: transparent;
	text-decoration:underline;
}

a[href^="mailto:"]:hover {
	color:silver;
	background-color: transparent;
	text-decoration:underline;

}

a:visited {
    color: rgb(200, 200, 200);
}

a[href^="mailto:"]:visited {
    color: rgb(200, 200, 200);
}

.centered_image{
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.center_align{
  text-align: center;
}

.fill_width{
  width: 100vw;
  max-width: 1200px;
}

/* Two Column Layout */
.two_column_flex{
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 40px 40px;
}

.two_column_tile{
  background-color: rgb(40, 40, 40);
  border-radius: 5px;
  padding: 10px;
  width: 200px;
  height: 200px;
  /*color: black;*/
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.two_column_tile .tile_heading{
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.two_column_tile .tile_content{
  flex-grow: 1;
  align-self: center;
}

.two_column_tile .description_container{
  margin-bottom: 10px;
  overflow-y: auto;
}

.two_column_tile .description_item{
  margin-bottom: 10px;
}

.two_column_tile span{
  font-weight: bold;
}

@media screen and (min-width: 601px){
  .cookie_banner_regular{
    width: 600px;
  }
}

@media screen and (max-width: 600px){
  .cookie_banner_small{
    width: 90vw;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 40px;
  left: -700px;
  max-width: 600px;
  padding: 5px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(241,239,237);
  color: #000;
  border-radius: 5px;
  box-shadow: 3px 3px 3px 0 rgba(219, 208, 208, 0.9);
  -webkit-animation: slide-in 0.5s forwards;
  -webkit-animation-delay: 1s;
  animation: slide-in 0.5s forwards;
  animation-delay: 1s;
  border-radius: 6px;
  z-index: 10;
}

.cookie-banner a{
  color: #000;
}

@-webkit-keyframes slide-in{
  100% {left : 0;}
}

@keyframes slide-in{
  100% {left : 0;}
}

.cookie-banner .close{
  height: 20px;
  background-color: #777;
  font-weight: bold;
  border: none;
  color: white;
  padding: 8px 8px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  height: 32px;
}


/* Navigation Menu */
 .nav_menu {
  background-color: #333;
  position: sticky;
  top: 0;
}

/* Style the links inside the navigation bar */
.nav_menu a {
  float: left;
  color: rgb(240, 240, 240);;
  text-align: center;
  padding: 10px 14px;
  text-decoration: none;
  font-size: 16px;
}

/* Hide the icon that should open and close the nav menu on smaller screens */
.nav_menu .icon {
  display: none;
}

/* dropdown_menu container - needed to position the dropdown_menu content */
.dropdown_menu {
  float: left;
}

/* Style the dropdown_menu button to fit inside the nav_menu */
.dropdown_menu .menu_button {
  font-size: 16px;
  border: none;
  outline: none;
  color: rgb(240, 240, 240);
  padding: 10px 14px; 
  background-color: inherit;
  font-family: inherit;
}

/* Style the dropdown_menu content, let it fill the whole screen*/
.dropdown_menu-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  width: 100%;
  left: 0;
  z-index: 2;
}

/* Style the links inside the dropdown_menu, let them float in one line from left */
.dropdown_menu-content a {
  float: left;
  color: black;
  padding: 10px 14px;
  text-decoration: none;
  display: block;
}

/* Add a dark background on nav_menu links and the dropdown_menu button on hover */
.nav_menu a:hover, .dropdown_menu:hover .menu_button {
  background-color: #555;
  color: rgb(240, 240, 240);
}

.nav_menu .dropdown_menu .small{
  font-size:12px;
}

/* Add a grey background to dropdown_menu links on hover */
.dropdown_menu-content a:hover {
  background-color: #ddd;
  color: black;
}

/* Show the dropdown_menu menu when the user moves the mouse over the dropdown_menu button */
.dropdown_menu:hover .dropdown_menu-content {
  display: block;
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the nav_menu (.icon) */
@media screen and (max-width: 600px) {
  .nav_menu a:not(:first-child), .dropdown_menu .menu_button {
    display: none;
  }

  .nav_menu a.icon {
    float: right;
    display: block;
  }
}

/* The "responsive" class is added to the nav_menu with JavaScript when the user clicks on the icon. This class makes the nav_menu look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
  .nav_menu.responsive {
    position: relative;
  }

  .nav_menu.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }

  .nav_menu.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .nav_menu.responsive .dropdown_menu {
    float: none;
  }

  .nav_menu.responsive .dropdown_menu-content {
    position: relative;
  }

  .nav_menu.responsive .dropdown_menu .menu_button {
    display: block;
    width: 100%;
    text-align: left;
  }
} 