


html {
  font-family: var(--font-family-sans);
  color: var(--color-text);
  background: var(--color-background);
  scroll-behavior: smooth;
}

.key {
  color: var(--color-key);
}

.inline {
  display: inline !important;
}

main {

  padding: var(--padding);
  margin: 0 auto;
  max-width: 60rem;
  padding-bottom: 6rem;
}

@media (min-width: 2200px) {
  main {
    max-width: 80rem;
  }
}

.img {
  object-fit: cover;
  object-position: var(--focus-x) var(--focus-y);
}

footer {
  margin: 0 auto;
}

.header-nav {

  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 6rem;
  max-width: 70rem;
  margin: 0 auto;
  padding-top: 2rem;
}

main > h1:first-child{
  margin-bottom: 2rem;
}

header {
  position: sticky;
  top: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

  background-color: var(--color-light);
  margin-bottom: 3rem;
  z-index: 999;
}

.logo {

  display: flex;
  align-items: center;
  font-weight: 600;
  cursor: pointer;

}

.logo-sk {
  width: auto;
  height: 6rem;


}

/*====Fonts====*/
html {
  font-size: 16px;
  /* Standard-Schriftgröße */
  --font-size-p: 16px;

}

@media (min-width: 768px) {
  html {
    font-size: calc(8px + (24 - 8) * ((100vw - 768px) / (1440 - 768)));
    --font-size-p: calc(8px + (24 - 8) * ((100vw - 768px) / (1440 - 768)));
  }

  .p,
  p {
    hyphens: manual;
  }
}

@media (min-width: 1440px) {
  html {
    font-size: 20px;
    --font-size-p: 20px;
  }
}

.p,
p {
  font-size: var(--font-size-p);
  font-weight: 300;
  hyphens: auto;
}

.h1,
h1 {
  font-size: var(--h1-font-size);
  line-height: var(--h1-line-height);
  font-weight: var(--h1-font-weight);
}

.h2,
h2 {
  font-size: var(--h2-font-size);
  line-height: var(--h2-line-height);
  font-weight: var(--h2-font-weight);
}

.h3,
h3 {
  font-size: var(--h3-font-size);
  line-height: var(--h3-line-height);
  font-weight: var(--h3-font-weight);
}

.h4,
h4 {
  font-size: var(--h4-font-size);
  line-height: var(--h4-line-height);
  font-weight: var(--h4-font-weight);
}

.h5,
h5 {
  font-size: var(--h5-font-size);
  line-height: var(--h5-line-height);
  font-weight: var(--h5-font-weight);
}

.h6,
h6 {
  font-size: var(--h6-font-size);
  line-height: var(--h6-line-height);
  font-weight: var(--h6-font-weight);
}

/*====LINKS====*/


/*====Login====*/
.pw-login {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pw-label {
  font-family: var(--font-family-serif);
  font-size: var(--h2-font-size);
  line-height: var(--h2-line-height);
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

.pw-button {
  padding: .5rem;
  border-radius: .3rem;
  border: solid;
  border-color: var(--color-key);
  transition: .3s;
  margin-top: 3rem;

}

.pw-button:hover {
  background-color: var(--color-key);
  border-color: var(--color-key);
  color: var(--color-background);
}

.pw-input {

  padding: .5rem;
  border-radius: .3rem;
  border: solid;
  border-color: var(--color-grey);
  min-width: 220px;
  height: 16px;
}

.pw-input:focus {
  border-color: var(--color-key);
}

.pw-control {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pw-help {
  color: var(--color-key);
}

/*====Intro====*/
.header-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(3, auto);
  row-gap: 3rem;
  column-gap: .2rem;
  margin-top: 5rem;

}

.header-grid-head1 {
  grid-column: 1/6;
  grid-row: 1;

  z-index: 10;

}

.header-grid-head2 {
  grid-column: 2/7;
  grid-row: 2;
  font-size: 4rem;
  z-index: 10;
  font-style: italic;
}

/*====News====*/
.news-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding-top: 2rem;

}

.news_headline {
  margin-bottom: 1rem;
  font-size: 3rem;
  font-family: "SangBleu";
  te
}

.news-col {
  width: 40%;
  background-color: var(--color-key-violet);
  color: var(--color-key-green);
  padding: 2rem;
  border-radius: .3rem;
  box-shadow: 0 .3rem 2rem rgba(75, 0, 0, .05);
  margin: 1rem 1rem 0rem 0rem;

}

.news-col:nth-child(2) {
  margin: 1rem 0rem 0rem 1rem;
}

.news_info {
  text-align: justify;
}

.news_publisch {
  margin-top: 1rem;
  font-family: "SangBleu";


}

/*====Filter====*/
.filter {
  margin-bottom: 2rem;
}

.filter-button {
  margin-right: 1rem;
  padding: .5rem;
  border-radius: .3rem;
  border: solid;
  border-color: var(--color-key);
  transition: .3s;
}

.filter-button:hover {
  background-color: var(--color-key);
  border-color: var(--color-key);
  color: var(--color-background);
}

/*====Footer====*/
.footer-content {
  justify-content: space-between;
  float: right;
  max-width: 70rem;



}

@media (min-width:300px) {
  .footer {
    padding: 1rem;
    height: 2rem;
    line-height: 1.8;
    margin-top: 2rem;

    background-color: var(--color-light);
    margin-top: 2rem;
  }
}

@media (min-width:700px) {
  .footer {

    height: 1rem;
    line-height: 1.5em;
    width: 100vw;
    padding: 0;
  }
}


.footer-p {
  color: var(--color-black);
  font-weight: 300;
}

.footer h2 {
  font-weight: 600;
  margin-bottom: .75rem;
}


.footer a {
  color: var(--color-text);
}

.footer a:hover {
  text-decoration: underline;
  text-underline-offset: .2rem;
  text-decoration-color: var(--color-key) !important;
}

.footer p {
  max-width: 15rem;
}

.footer a:hover {
  color: var(--color-text);
}

.footer-div {
  max-width: 70rem;
  padding: 0rem 3rem 3rem 0rem;

  margin: 0 auto;
}

.footer-content {

  float: right;
  justify-content: space-between;
}

/*====Unordered====*/
img {
  width: 100%;
}

li {
  list-style: none;
}

a {
  color: currentColor;
  text-decoration: none;
}

button,
.button {
  font: inherit;
  background: none;
  border: 0;
  color: currentColor;
  cursor: pointer;
  border: solid;
  padding: .5rem;
  border-radius: .3rem;
  border-width: .1rem;
  border-color: var(--color-key);
  align-items: center;
}

button:hover,
.button:hover {
  border-color: var(--color-key);
  background-color: var(--color-key);
  color: var(--color-background);
  transition: .3s;
}

p a{
  text-decoration: underline;
  text-underline-offset: .2rem;
  text-decoration-color: var(--color-key) !important;
  text-decoration-style: dashed;

}
p a:hover{
  text-decoration: underline;
  text-underline-offset: .2rem;
  text-decoration-color: var(--color-key) !important;
  text-decoration-style: solid;
}
strong,
b {
  font-weight: 600;
}

small {
  font-size: inherit;
  color: var(--color-text-grey);
}

.bg-light {
  background-color: var(--color-light);
}

.color-grey {
  color: var(--color-text-grey);
}


.keycolor,
.key {
  color: var(--color-key);
}

/*====Menu====*/

.menu {
  display: flex;
}

.menu a {
  padding: 1rem;
  display: block;
  color: var(--color-text);
  display: flex;
  align-items: start;
}

.logo-sk {
  width: auto;
  height: 5rem;
  margin-top: -1rem;
  rotate: -10deg;

}

.maske-nav {
  fill: var(--color-key);
  width: 1.3rem;
  margin-right: .5rem;
}

.social {
  display: flex;
  padding: 0 .5rem;
}

.social a {
  padding: 1rem .5rem;
}

.section {
  padding: 3rem 0;
}

.grid {
  --columns: 12;
  --gutter: 3rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: 1fr;
}

.grid>.column {
  margin-bottom: var(--gutter);
}

.autogrid {
  --gutter: 3rem;
  --min: 10rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: repeat(auto-fit, minmax(var(--min), 1fr));
  grid-auto-flow: dense;
}

.grid>.column>.text,
.grid>.column {
  height: 100%;
  max-width: 100%;
}
.text {
  line-height: 1.5em;
  hyphens: auto;
}

.text a,
.grid a {
  text-decoration: underline;
  text-underline-offset: .13rem;
  text-decoration-color: var(--color-key);
  text-decoration-style: solid;
}

.text a:hover,
.grid a:hover {
  text-decoration-style: dashed;
}

.text h1,
.text h2,
.text h3,
.text h4,
.text h5,
.text h6 {
  margin-top: 1rem;
  margin-bottom: .5rem;
}

.text :last-child {
  margin-bottom: 0;
}

.text p,
.text ul,
.text ol {
  margin-bottom: 1.5rem;
}

.text ul,
.text ol {
  margin-left: 1rem;
}

.text ul p,
.text ol p {
  margin-bottom: 0;
}

.text ul>li {
  list-style: disc;
}

.text ol>li {
  list-style: decimal;
}

.text ul ol,
.text ul ul,
.text ol ul,
.text ol ol {
  margin-bottom: 0;
}

.text .codeblock {
  display: grid;
}

.text code {
  font-family: var(--font-family-mono);
  font-size: 1em;
  background: var(--color-light);
  padding: 0 .5rem;
  display: inline-block;
  color: var(--color-black);
}

.text pre {
  margin: 3rem 0;
  background: var(--color-black);
  color: var(--color-white);
  padding: 1.5rem;
  overflow-x: scroll;
  overflow-y: hidden;
  line-height: 1.5rem;
}

.text pre code {
  padding: 0;
  background: none;
  color: inherit;
}

.text hr {
  margin: 6rem 0;
}

.text dt {
  font-weight: 600;
}




.text figcaption {
  padding-top: .75rem;
  color: var(--color-text-grey);
}

hr {
  border: 0;
  background: currentColor;
  height: 2px;
  width: 1.5rem;
  margin: 3rem auto;
}

.align-center {
  text-align: center;
}

.intro {
  max-width: 40rem;
}

.intro *:not(:last-child) {
  margin-bottom: 1em;
}

.cta {
  background: var(--color-black);
  color: var(--color-white);
  display: inline-flex;
  justify-content: center;
  padding: .75rem 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-black);
}

.box {
  background: var(--color-light);
  padding: 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-light);
}


.img {
  position: relative;
  display: block;
  --w: 1;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  background: var(--color-black);
}

.img img,
.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.img[data-contain] img {
  object-fit: contain;
}
.video-player{
  max-height: 70vh;
}
.img-caption,
.video-caption {
  padding-top: .75rem;
  line-height: 1.5em;
}

.title {
  margin-bottom: 3rem;
}

.text video{
  max-width: 100%;
  max-height: 70vh;
}
.map {
  --w: 2;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  position: relative;
  overflow: hidden;
  background: var(--color-black);
}

.map iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.margin-s {
  margin-bottom: .75rem;
}

.margin-m {
  margin-bottom: 1.5rem;
}

.margin-l {
  margin-bottom: 3rem;
}

.margin-xl {
  margin-bottom: 4.5rem;
}

.margin-xxl {
  margin-bottom: 6rem;
}


@media screen and (min-width: 60rem) {
  body {
    --padding: 3rem;
  }

  .grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .grid>.column {
    grid-column: span var(--columns);
  }

}
.grid>.column {
  grid-column: span var(--columns);
}

.pagination {
  display: flex;
  padding-top: 6rem;
}

.pagination>span {
  color: var(--color-text-grey);
}

.pagination>* {
  padding: .5rem;
  width: 3rem;
  text-align: center;
  border: 2px solid currentColor;
  margin-right: 1.5rem;
}

.pagination>a:hover {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.note-excerpt {
  line-height: 1.5em;
}

.note-excerpt header {
  margin-bottom: 1.5rem;
}

.note-excerpt figure {
  margin-bottom: .5rem;
}

.note-excerpt-title {
  font-weight: 600;
}

.note-excerpt-date {
  color: var(--color-text-grey);
}

.marker {
  position: absolute;
  height: 10px;
  width: 10px;
}


/*====Kontaktliste====*/

/*====Dropdown====*/
.dropdown-button {
  margin-top: 3rem;
  -webkit-appearance: none;
  margin: 0;
  border: none;
  overflow: visible;
  font: inherit;
  color: var(--color-text);
  text-transform: none;
  display: inline-block;
  box-sizing: border-box;
  padding: 0 1rem;
  background: 0 0;
  vertical-align: middle;
  line-height: 2.35rem;
  min-height: 2.35rem;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  border: 2px solid var(--color-key-violet);
  border-radius: .3rem;
  transition: box-shadow .2s, border-color .2s, color .2s;
  margin-top: 1rem;
}

dropdown-button::after {
  content: '>';
  align-self: stretch;
  display: flex;
  align-content: center;
  justify-content: center;
  justify-items: center;
  align-items: center;
  padding: .5em;
}


/*====Filter====*/
.uk-dropdown,
.uk-dropdown-blank {
  display: none;
  position: absolute;
  z-index: 970;
  box-sizing: border-box;
  width: 100%
}

.uk-dropdown {
  padding: 5px;
  background: var(--color-navbar-bg);
  color: var(--color-page-text);
  font-size: 1rem;
  vertical-align: top;
  margin-top: 10px;
  box-shadow: 0 .3rem 2rem rgba(0, 0, 0, .05);
  border: var(--border-width) solid var(--color-page-border);
  border-radius: var(--button-radius)
}

.uk-dropdown:focus {
  outline: 0
}

.uk-nav,
.uk-nav ul {
  margin: 0;
  padding: 0;
  list-style: none
}

.uk-nav li>a {
  display: block;
  text-decoration: none
}

.uk-nav>li>a {
  padding: 0 0
}

.uk-nav-dropdown>li>a:focus,
.uk-nav-dropdown>li>a:hover {
  background: var(--color-navbar-text);
  color: var(--color-navbar-bg);
  outline: 0
}

.uk-nav-dropdown .uk-nav-header {
  color: #999
}

.uk-nav-dropdown .uk-nav-divider {
  border-top: 1px solid #ddd
}

.uk-nav-dropdown ul a {
  color: #07d
}

.uk-nav-dropdown ul a:hover {
  color: #059
}

.uk-button-dropdown {
  display: inline-block;
  vertical-align: middle;
  position: relative
}

.uk-button {
  -webkit-appearance: none;
  margin: 0;
  border: none;
  overflow: visible;
  font: inherit;
  color: var(--color-page-text);
  text-transform: none;
  display: inline-block;
  box-sizing: border-box;
  padding: 0 1rem;
  background: 0 0;
  vertical-align: middle;
  line-height: 2.35rem;
  min-height: 2.35rem;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  border: 1px solid var(--color-key-violet);
  border-radius: 1rem;
  transition: box-shadow .2s, border-color .2s, color .2s;
}

/*====NAVBAR====*/
/*Generel*/
@media (min-width:300px) {
  .div-nav {
    width: 100%;
    margin-left: 4.5vw;
    margin-right: 4.5vw;
    margin-top: 1.7rem;
    z-index: 1001;
    height: 3rem;
  }

  .div-nav-toggle {


    transition: 0.6s ease;
  }
}



@media (min-width:850px) {

  .div-nav {
    width: 95%;
    max-width: 75rem;
    margin: 0 auto;
    padding-top: 1.5rem;
    height: 4.5rem;
  }
}

@media (min-width:2200px) {

  .div-nav {
    width: 100%;
    max-width: 95rem;

  }
}




/*** Event-Page ***/
.event-img {
  width: 50%;
  max-width: 500px;
  padding-left: 5%;
}

.event-text {
  text-align: justify;
  hyphens: auto;
  width: 50%;
  max-width: 500px;
}



.kommenden-va {
  margin-top: 2rem;
}

.event-hinweis {
  border: 2px dashed var(--color-key);
  /* border-top: 2px solid var(--color-key); */
  padding: 1.5rem 1rem;
  text-align: center;
  margin-bottom: 2rem;

}

.event-ticket>h2 {
  margin-bottom: 2rem;
}

.nexs-start {
  width: 33%;
  border: 2px dashed var(--color-key);
  /* border-top: 2px solid var(--color-key); */
  padding: 1.5rem 1rem;
  text-align: center;
  margin-bottom: 2rem;
}

.nexs-start-div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding-top: 2rem;

}

.platzhalter {
  background-color: var(--color-key);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}



@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("../webfont/Inter-Thin.woff2?v=3.19") format("woff2"),
    url("../webfont/Inter-Thin.woff?v=3.19") format("woff");
}

@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url("../webfont/Inter-ThinItalic.woff2?v=3.19") format("woff2"),
    url("../webfont/Inter-ThinItalic.woff?v=3.19") format("woff");
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("../webfont/Inter-ExtraLight.woff2?v=3.19") format("woff2"),
    url("../webfont/Inter-ExtraLight.woff?v=3.19") format("woff");
}

@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url("../webfont/Inter-ExtraLightItalic.woff2?v=3.19") format("woff2"),
    url("../webfont/Inter-ExtraLightItalic.woff?v=3.19") format("woff");
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../webfont/Inter-Light.woff2?v=3.19") format("woff2"),
    url("../webfont/Inter-Light.woff?v=3.19") format("woff");
}

@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("../webfont/Inter-LightItalic.woff2?v=3.19") format("woff2"),
    url("../webfont/Inter-LightItalic.woff?v=3.19") format("woff");
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../webfont/Inter-Regular.woff2?v=3.19") format("woff2"),
    url("../webfont/Inter-Regular.woff?v=3.19") format("woff");
}

@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../webfont/Inter-Italic.woff2?v=3.19") format("woff2"),
    url("../webfont/Inter-Italic.woff?v=3.19") format("woff");
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../webfont/Inter-Medium.woff2?v=3.19") format("woff2"),
    url("../webfont/Inter-Medium.woff?v=3.19") format("woff");
}

@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../webfont/Inter-MediumItalic.woff2?v=3.19") format("woff2"),
    url("../webfont/Inter-MediumItalic.woff?v=3.19") format("woff");
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../webfont/Inter-SemiBold.woff2?v=3.19") format("woff2"),
    url("../webfont/Inter-SemiBold.woff?v=3.19") format("woff");
}

@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("../webfont/Inter-SemiBoldItalic.woff2?v=3.19") format("woff2"),
    url("../webfont/Inter-SemiBoldItalic.woff?v=3.19") format("woff");
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../webfont/Inter-Bold.woff2?v=3.19") format("woff2"),
    url("../webfont/Inter-Bold.woff?v=3.19") format("woff");
}

@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../webfont/Inter-BoldItalic.woff2?v=3.19") format("woff2"),
    url("../webfont/Inter-BoldItalic.woff?v=3.19") format("woff");
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../webfont/Inter-ExtraBold.woff2?v=3.19") format("woff2"),
    url("../webfont/Inter-ExtraBold.woff?v=3.19") format("woff");
}

@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url("../webfont/Inter-ExtraBoldItalic.woff2?v=3.19") format("woff2"),
    url("../webfont/Inter-ExtraBoldItalic.woff?v=3.19") format("woff");
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../webfont/Inter-Black.woff2?v=3.19") format("woff2"),
    url("../webfont/Inter-Black.woff?v=3.19") format("woff");
}

@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url("../webfont/Inter-BlackItalic.woff2?v=3.19") format("woff2"),
    url("../webfont/Inter-BlackItalic.woff?v=3.19") format("woff");
}

/* -------------------------------------------------------
Variable font.
Usage:

  html { font-family: 'Inter', sans-serif; }
  @supports (font-variation-settings: normal) {
    html { font-family: 'Inter var', sans-serif; }
  }
*/
@font-face {
  font-family: 'Inter var';
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
  font-named-instance: 'Regular';
  src: url("../webfont/Inter-roman.var.woff2?v=3.19") format("woff2");
}

@font-face {
  font-family: 'Inter var';
  font-weight: 100 900;
  font-display: swap;
  font-style: italic;
  font-named-instance: 'Italic';
  src: url("../webfont/Inter-italic.var.woff2?v=3.19") format("woff2");
}


.in-frame {
  --pretix-brand-primary: #ff0000 !important;
}

/*Blockquaot*/

blockquote>div::before {
  content: '» ';
}

blockquote>div::after {
  content: ' «';
}

blockquote>div::after,
blockquote>div::before {

  color: var(--color-key);
  display: inline-block;
  font-weight: 500;
}

.text blockquote {
  font-size: var(font-size);
  line-height: 1.325em;
  padding-left: 1rem;
  margin: 0 auto;
  max-width: 40rem;
  text-align: center;
}

.text blockquote footer {
  font-size: var(--font-size-p);
  font-weight: 200;
  margin-top: .3rem;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background-color: #4CAF50;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #3e8e41;
}
.photographer{
  font-size: calc(var(--font-size-p) * .5);
}
.button:hover .key {
  color: var(--color-black);
}
/* Selfunmberung*/
/* Self - Numbering Headlines and Paragraphs */
body {
  counter-reset: h3 h4 p-counter;
}

h1,
h2 {
  counter-reset: h3 p-counter;
}

.selfnumbering h3::before,
.selfnumbering .column h3::before {
  content: counter(h3) ".\0000a0\0000a0";
  counter-increment: h3;
  color: var(--color-key);
}

.selfnumbering h3 {
  counter-reset: h4 p-counter;
}

.selfnumbering h4::before {
  counter-increment: h4;
  content: counter(h3) "." counter(h4) ".\0000a0\0000a0";
  color: var(--color-key);
}

.selfnumbering h4 {
  counter-reset: p-counter;
}

/* Nummerierung für Absätze mit Klasse pselfnumber */
.selfnumbering p.pselfnumber::before {
  counter-increment: p-counter;
  content: "("counter(p-counter) ")\0000a0\0000a0";
  color: var(--color-key);

}



/*Galerie*/
/*Galerie*/
@media (min-width:300px) {
  .galerie {
    margin-top: 3rem;
    line-height: 0;
    columns: 1;
    column-gap: 1.5rem;
  }

  .galerie-div {
    display: block;
    margin-bottom: 1.5rem;
    break-inside: avoid;
  }

  .galerie-div-grid {
    display: grid;
    grid-template-columns: repeat(18, 1fr);
    grid-template-rows: repeat(7, auto);
  }

  .galerie-info {
    grid-column: 2/ 18;
    grid-row: 6/7;
    margin-top: -1rem;

    transition: display 2s;
  }

  .galerie-img {
    grid-column: 1/ 19;
    grid-row: 1/6;
  }

  .galerie-info-caption {
    font-weight: 600;
    color: var(--color-key);
    line-height: 1.2;
    color: var(--color-key);
  }

  .galerie-info-credit {
    margin-top: .6rem;
    font-size: .6rem;
    color: var(--color-key);
  }

}

@media (min-width:700px) {
  .galerie {
    columns: 2;
  }

  .galerie-3 {
    columns: 3;
  }

  .galerie-4 {
    columns: 4;
  }

  .galerie-info {
    display: none;
  }
}


.galerie-img:hover+.galerie-info {
  display: block;
}
/*Pretix*/
.pretix-widget-frame-holder{
  margin: auto !important;
}
.btn-primary{
  background-color: var(--pretix-brand-primary);
}