





:root {
  --font-family: 'Montserrat', sans-serif;
  --font-family-monospace: Consolas, Menlo, Monaco, Andale Mono WT, Andale Mono, Lucida Console, Lucida Sans Typewriter, DejaVu Sans Mono, Bitstream Vera Sans Mono, Liberation Mono, Nimbus Mono L, Courier New, Courier, monospace;
}


/* Theme colors */
:root {
  --color-highlight: rgb(184,158,0);
  --color-one: rgb(15, 38, 31);
  --color-two: rgb(103,113,111);
  --text-color: rgb(254, 254, 254);
  --text-color-link: rgb(254, 254, 254);
  --text-color-link-visited: rgb(254, 254, 254);
  --line-width: 2.5px;
  }

/* Global stylesheet */
*,
*::before,
*::after {
  box-sizing: border-box;

}

html,
body {
  padding: 0;
  margin: 0;
  font-family: var(--font-family);
  color: var(--text-color);
  scroll-behavior: smooth;
  background-color: var(--color-one);

}

p:last-child {
  margin-bottom: 0;
}
p{
  line-height: 1.9;
  max-width: 640px;
}

section{
  padding:2% 0;
  min-height: 10vh;
}

.tmpl-page{
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  padding: 0.5em;
  min-height: 80vh;
  padding: 1em
}


.tmpl-poster{
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  padding: 1em;

}

.poster-img{
  display: grid;
  height: min(100vh);
  grid-gap: 20px;
  grid-template-columns: 1fr minmax(10px,400px) minmax(10px,400px) 1fr;
  grid-template-rows: repeat(6, 1fr);
  width: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 20% 0%;
  justify-content: center;
  align-items: center;
  padding-bottom: 40px;
}

.poster-title{
  grid-column-start: 2;
  grid-column-end: 4;
  grid-row-start: 4;

}

.poster-title img{
  width: 100%;
  max-width: 1200px;
  height: auto;

}

.poster-ort{
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 4;
  grid-row-end: 6;
}

.poster-ort img{
  width: 65%;
  max-width: 1200px;
  height: auto;
}

.poster-zeit{
  grid-column-start: 3;
  grid-column-end: 4;
  grid-row-start: 5;
  grid-row-start: 6;
  }

.poster-zeit img{
  width: 65%;
  max-width: 1200px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

a[href] {
  color: var(--text-color-link);
}
a[href]:visited {
  color: var(--text-color-link-visited);
}

main {
  padding: 0em;
}

header:after {
  content: "";
  display: table;
  clear: both;
}

table {
  margin: 1em 0;
}
table td,
table th {
  padding-right: 1em;
}

pre,
code {
  font-family: var(--font-family-monospace);
  line-height: 2;
}
pre {
  font-size: 14px;
  line-height: 1.8;
  direction: ltr;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  -moz-tab-size: 2;
  -o-tab-size: 2;
  tab-size: 2;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  padding: 1em;
  margin: .5em 0;
  background-color: var(--background-color);
}
code {
  word-break: break-all;
}

/* Header */
.home {
  padding: 0 1rem;
  float: left;
  margin: 1rem 0; /* 16px /16 */
  font-size: 1em; /* 16px /16 */
}
.home :link:not(:hover) {
  text-decoration: none;
}

h1{
padding:1em 0 0.5em 0;
font-size: 44px;
}

h2{
  padding: 0.5em 0 0.3em 0;
  font-size: 36px;
 }

h3 {
  font-size: 28px;
 }

 .alert{
  color: white !important;
  min-height: 40px;
  font-size: 24px;
  text-align: center;
  padding: 10px 10px 10px 10px;
  background-color: var(--color-highlight);
 }

.navigation .flex{
  gap: 20px 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-content: center;
  z-index: 1000;

}

.navigation{
  z-index:1000;
  position:sticky;
  top: 0;
  background-color: var(--color-two);
  padding: 15px 0px 0px 0px;
}

.navigation :link:not(:hover) {
  text-decoration: none;
}

.navigation :link:hover {
  color: var(--color-highlight)
}

.navigation hr, header hr, footer hr{
  color: var(--color-highlight);
  border: var(--line-width) solid var(--color-highlight);
  margin:0;
}


.navigation hr{
  margin-top:8px;
}

.shortinfo{
  padding: 10px 10px 10px 10px;

  font-size: 14px;

}

.shortinfo summary{
font-size: 20px;
margin-left: 20px;
margin-bottom: 10px;
line-height: 1.9;
}

.news {
  display: flex;
  gap: 10px 20px;
  overflow-x: auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}

.news-card{
  display: flex;
  min-width: 280px;
  min-height: 120px;
  height: 100%;
  padding-bottom: 15px;
  justify-content: center;
  align-items: center;
  padding: 10px 10px 10px 10px
}

.news-card::after{
  font-size: 8px;
}


.news :link:not(:hover) {
  text-decoration: none;
}

.news :link:hover {
  color: var(--color-highlight)
}




.kachel{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: stretch;
  -webkit-align-items: stretch;
  border-collapse: separate;
  box-sizing: border-box;
  overflow-x: auto;
  justify-content: center;
  border-spacing: 0;
  padding: 10px;
  hyphens: auto;
}

.nowrap{
  flex-wrap: nowrap;
  justify-content: left;
}

.kachel-card{
  display: flex;
  flex-wrap: wrap;
  min-height: 250px;
  width: 220px;
  padding: 0;
  border: 2px solid var(--text-color);
  background-color: var(--color-one);
}


.program :link:hover, .kachel :link:hover {
  color: var(--color-highlight)
}


.program-wrapper{
  overflow-x: scroll;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.program{
  display: grid;
  grid-auto-flow: column;
  border-collapse: separate;
  box-sizing: border-box;
  overflow-x: auto;
  border-spacing: 0;
}

.program > div {
  padding: 20px 20px;
  border-left: 6px solid var(--color-two);
  border-bottom: 6px solid var(--color-two);
}

.entry .date{
  display: none;
  height: 0;
  width: 0;
}

@media only screen and (max-width: 720px){
  .program{
    position:relative;
    display: grid;
    grid-auto-flow: row;
    border-collapse: separate;
    box-sizing: border-box;
    overflow-x: auto;
    border-spacing: 0;
  }

  .entry .date{
    display: block;
    height: auto;
    width: auto;
  }


  .time{
    display:none;
    width: 0;
    height: 0;


  }
  .day{
    font-size: 30px;
  }

  .hide{
    display: none;
    height: 0;
    width: 0;
  }
}

.program td, .kachel-card{
  padding: 1.5em;
  margin: 10px;
}


.program a, .kachel a {
  text-decoration: none;

}

.program a:hover, .kachel a:hover{
  text-decoration: underline;

}

.program .type, .kachel-card .type{
  font-size:12px;
  text-align: right;
  width: 100%;
  align-self: start;
}

.program .actor, .kachel .actor{
  font-size:12px;
  align-self: end;
  width: 100%;
}


.date {
font-size: 14px;
}


header {
  background-color:var(--color-two);
}

header > div{
  padding: 20px 50px 20px 50px;
  font-size: 28px;

}
header :link:not(:hover) {
  text-decoration: none;

}

header :link:hover {
  color: var(--color-highlight)
}

footer > div{
padding: 0px 10px 10px 10px;

}

audio{
  display: block;
  position: relative;
  border-radius: 50px;
  margin-left:auto;
  margin-right:auto;

}


.actor  .actor-name:after{
  content:", "
}

.actor  .actor-name:last-child:after{
  content:""
}


.highlightbox{

  border: 2px var(--color-highlight) solid;
  border-bottom: 2px var(--color-highlight) solid;
}


h1 a[href]{
  text-decoration: none;
}
h1 a[href]:hover{
  text-decoration: underline;
}

.horizontal-list{
  overflow-x: scroll;
  flex-wrap: nowrap;
  justify-content: flex-start;

  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.close{
  font-size: 35px;
  margin-left:10px;
  margin-top:5px;
  transition: transform 0.5s ease;

}


.close:hover{
  opacity: 0.5;
  transform: rotate(180deg);


}

.searchbar{
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
  padding-bottom: 30px;

}

input[type="text"] {
  position: relative;
  width: 100%;
  max-width:600px;
  height:35px;
  font-size:20px;
  padding-inline: 5px;
  border: var(--line-width) solid var(--text-color);
}

input[type="checkbox"] {
  display: none;
}


.taglist{
  display: flex;
  flex-wrap: nowrap;
  overflow: scroll;
  align-content: flex-start;
  gap: 8px;


}
.taglist label{
  padding-inline: 8px;
  border: 2px solid var(--text-color);
  justify-content: center;
}

.taglist label:hover{
  opacity: 0.7;
  background-color: var(--color-two);
}



.taglist input[type="checkbox"]:checked+label{
  background-color: var(--color-two);
}
