/*! HTML5 Boilerplate v9.0.1 | MIT License | https://html5boilerplate.com/ */

/* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

   body{
    font-family: proxima-nova, sans-serif;
    font-size: .9em;
   }

   a{
    text-decoration: none;
   }

  a:hover{
    text-decoration: underline;
  }

   #content{
    max-width: 1600px;
    margin: 0 auto;
    padding: 120px 0px 0px 0px;
   }

   .wrapper {
    max-width: 1600px;
    margin: 0 30px;
    box-sizing: border-box;
  }

  #hamburger{
    display: none;
  }

   header {
    padding: 1rem 0 0.5rem;
    display: flex;
    justify-content: space-between;
  }

  .logo {
    width: 220px;
    margin-left: -5px;
  }

  .social-icons{
    display: flex;
    align-self: center;
  } 

  .social-icons a {
    color: #000;
    margin-left: .5rem;
    text-decoration: none;
    align-self: center;
  }

  .social-icons a img{
    height: 30px;
    width:auto;
  }

  .shopBtn{
   text-transform: uppercase;
   background-color: #df2023;
   letter-spacing: .1em;
   font-weight: 800;
   padding: 3px 3px 2px 3px;
   margin-left: .8rem !important;
   width: 180px;
   text-align: center;
   font-size: 1.3em;
   border-radius: 15px;
  }

  .shopBtn{
    color: #fff !important;
  }

  #nav{
    display: block;
    box-sizing: border-box;
  }

   nav {
    color: #000;
    padding: 0.5rem 0;
  }

  nav ul {
    list-style: none;
    margin: 0 auto;
    padding: 0px;
    display: flex;
    max-width: 1600px;
    width: 100%;
    justify-content:space-between;
  }

  nav li {

    display: inline;
    position: relative;
    text-wrap:nowrap;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 800; 
    margin: 0px;
    padding: 0px;
  }


  .has-submenu li{
    text-transform: none;
    letter-spacing:.03em;
    font-weight: 600;
  }

  .has-submenu > a::after{
    content:'';
    border-width: 5px 5px 0 5px;
    border-color: #000000 transparent transparent transparent;
    width: 0;
    height: 0;
    display: inline-block;
    vertical-align: middle;
    border-style: solid;
    margin-left: 3px;
    margin-top: -2px;
  }



  nav a {
    display: block;
    padding: 0;
    color: #000;
    text-decoration: none;
  }

  nav a:hover {
    text-decoration: none;
    color: #df2023;
  }

  nav li::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #df2023;
  transition: transform 0.25s ease-out;
}

nav li:hover::after {
  transform: scaleX(1);
}


 nav ul ul{
  display: none;
  width: auto;
  flex-direction: column;
  background-color: #fff;
  box-sizing: border-box;
  border: 1px solid #df2023;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: rgba(0, 0, 0, 0.95);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .5);
  z-index: 1000;
}

nav ul ul a{
  color: #fff;
}



 nav ul ul:before {
  content: "";
  position: absolute;
  top: -11px;
  left: 20px; /* Pfeil horizontal positionieren */
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-bottom: 11px solid #df2023;
 
}

nav ul ul:after {
  content: "";
  position: absolute;
  top: -10px;
  left: 20px; /* Pfeil horizontal positionieren */
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #000000;
 
}

nav li.has-submenu::after {
  content: "";
  position: absolute;
  top: 90%;
  left: 0;
  width: 100%;
  height: 20px; /* Verhindert Hover-Gap */
  border-top: 2px solid #df2023;
  background: transparent;
}


  nav li:hover > ul,
  nav li.show > ul {
    display: flex;
    /* border: 1px solid rgba(0, 0, 0, 0.245); */
   transition: opacity 1s ease-in-out;
    transition: height 1s ease-in-out;
    opacity: 1;
    height: auto;
    padding: 15px;
  }

  nav ul ul li {
    text-align: left;
    font-weight: 800;
  }

  nav ul ul li a {
    padding: 0.25rem 0;
  }

  .current a{
    color: #df2023;
  }

  .has-submenu:has(li.current) > a{
   color: #df2023;
  }

nav li.has-submenu:has(li.current)::after{
  transform: scaleX(1);
}

  .current::after{
    transform: scaleX(1);
  }

  .slide_down_menu{
    position: fixed;
    z-index: 999;
    background: #fff;
    right: 5px;
    left: 5px;
    top: 0px;
    transform: translateY(0);
    transition: transform 0.1s linear;
  }

  .artists_carousel_wrapper{
    opacity: 0;
    padding: 0px 20px 0px 20px;
    background-color: #000;
    background-image: url(../img/carouselBG.jpg);
  }

  .artists_carousel.is-hidden{
     display: none;
  }

  .artists_carousel{
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  }

 .artists_carousel.flickity-enabled {
  opacity: 1;
  }

  .carousel-cell {
      width: 19%;
      height: 170px;
      margin-right: 15px;
  }

  .carousel-cell a{
    text-decoration: none;
  }

  .carousel-cell img{
    width: 100%;
    height: auto;
  }

  .artist_carousel_caption{
      font-weight: 600;
      width: 80%;
      color: #ede8e4;
      /* text-shadow: 0 -1px 0 rgba(0,0,0,.5); */
      text-transform: uppercase;
      font-size: .73em;
      letter-spacing: .1em;
      line-height: 1.5em;
      text-align: center;
      margin: 3px auto 0px auto;
      display: flex;
      height: 50px;
      justify-content: center;
      align-items: center;
    }

  .artist_carousel_caption p{
    padding: 0px;
    margin: 0px;
  }

  .flickity-viewport{
    padding: 20px 20px 60px 20px;
  }

  .flickity-button,.flickity-button:hover{
    background: transparent;
  }

  .flickity-prev-next-button.previous{
    left: -60px;
  }

  .flickity-prev-next-button.next{
    right: -60px;
  }

  #ticker{
    opacity: 0;
  }

  .eocjs-newsticker {
    padding: 5px 0;
    background-color: #df2023;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.3em;
    margin-top: 10px;
    letter-spacing: .03em;
    }

    .eocjs-newsticker .duenn{
      font-weight: 300;
      /* margin-right: 5px; */
    }

    .eocjs-newsticker .dick{
      font-weight: bold;
      /* margin-left: 5px; */
    }

    .eocjs-newsticker a{
      color: #fff;
      text-decoration: underline;
    }

    .eocjs-newsticker a:hover{
    color: #000;
    }
    

    .plusplus{
      color: #000;
      font-weight: bold;
    }

  .container {
    opacity: 0;
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 60px;
  }


  .main {
    flex: 1;
    box-sizing: border-box;
    overflow: hidden;
  }

  .grid {
    display: flex;
    flex-wrap: wrap;
    /* margin-left: -0.5rem;
    margin-right: -0.5rem; */
  }

  .grid-sizer {
    width: calc(25% - 30px);
  }

  .item {
    padding-top: 15px;
    width: calc(25% - 30px);
    /* margin: 0px 10px 0px 10px; */
    /* background: #f4f4f4; */
    overflow: hidden;
    box-sizing: border-box;
    border-top: 1px solid #000;
    background-color:#fff;
  }

    .item img{
      cursor: pointer;
       border: .5px solid rgba(0, 0, 0, 0.3);
       box-sizing: border-box;
    }

  .item.spalten_2{
    width: calc(50% - 30px);
  }

  .item.spalten_3{
    width: calc(75% - 30px);
  }

  .item p:first-of-type{
    padding: 0;
    margin: 0;
  }

  .item img{
    max-width: 100%;
  }

  .item a{
    color: #df2023;
  }

  .item figure{
    margin: 0px;
    padding: 0px;
  }

  .item figcaption{
    font-style: italic;
    margin: 5px 0px 10px 0px;
    text-align: center;
    font-size: 0.9em;
    color: dimgrey;
  }

  .item iframe{
    max-width: 100%;
    border: none;
  }

  .item h4 {
    margin-top: 0;
    margin-bottom: 5px;
    padding: 0;
    color: #df2023;
    text-transform: uppercase;
    font-size: 1em;
    letter-spacing: .03em;
  }

  .item h3 {
    margin-top: 0;
    margin-bottom: 5px;
    padding: 0;
    color: #000000;
    text-transform: uppercase;
    font-size: 1.2em;
    letter-spacing: .03em;
  }

  .item.spalten_2 h4{
    font-size: 1.2em;
  }

  .item.spalten_2 h3{
    font-size: 1.8em;
  }

  .video-container {
    position: relative;
    padding-bottom: 56.25% !important;
    /* padding-top: 30px !important; */
    height: 0;
    overflow: hidden;
  }

  .video-container > iframe,
  .video-container > object,
  .video-container > embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  }

  .stamp {
  position: absolute;
  width: calc(25%);
  right: 0px;
  }
  
  .sidebar {
    /* flex: 1;
    top: 80px; */
    height: fit-content;
    display: block;
  }



.mobbar{
  display:none;
}

  .artist_mobbar .download_section{
    height: 30px;
    overflow: hidden;
    padding: 0px 10px 10px 15px;
  }

.artist_mobbar .download_section h2 {
margin-top: 5px;
text-transform: uppercase;
cursor: pointer;
}

.artist_mobbar .download_section h2::after{
content: '';
border-width: 5px 5px 0 5px;
border-color: #ffffff transparent transparent transparent;
width: 0;
height: 0;
display: inline-block;
vertical-align: middle;
border-style: solid;
margin-left: 5px;
}

.artist_mobbar .news_termine_box{
  height: 30px;
    overflow: hidden;
    padding: 0px 10px 10px 15px;
    margin-bottom: 15px;
}


.artist_mobbar .news_termine_box h4 {
margin-top: 5px;
padding: 0px;
cursor: pointer;
}

.artist_mobbar .news_termine_box h4::after{
content: '';
border-width: 5px 5px 0 5px;
border-color: #ffffff transparent transparent transparent;
width: 0;
height: 0;
display: inline-block;
vertical-align: middle;
border-style: solid;
margin-left: 5px;
}

.download_section.openclose_mobbar{
  height: auto;
}

.news_termine_box.openclose_mobbar{
  height: auto;
}

.rotate_arr::after{
  transform: rotate(180deg);
}

  .artist_sidebar h2{
text-transform: uppercase;
font-size: 1.5em;
letter-spacing: .03em;

  }

  .sidebar h3 {
    color: #c00;
  }

  .artist_info_container{
    background: #000;
    color: #fff;
    padding: 0px 30px 30px 30px;
  }

  .artist_info_container a{
    color: #df2023;
  }

  .artist_page_hero{
    padding: 10px 30px 30px 0px !important;
    display: grid;
    grid-auto-rows: 1fr;
    grid-template-columns: 65% 35%;
    background: #000;
    max-height: 600px;
    overflow: hidden;
    position: relative;
    transition: max-height 1s;
  }

  .openclose{
    max-height: 100%;
  }

  .mehr_btn{
    background: #000000;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0.65) 80%, rgba(255, 255, 255, 0) 100%);
    text-align: center;
    font-size: 1em;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding-top: 30px;
    padding-bottom: 15px;
    position: absolute;
    z-index: 100;
    width: 100%;
    bottom: 0px;
    cursor: pointer;
    vertical-align: bottom;
  }

  .mehr_btn_shape{
    background-color: #df2023;
    border-radius: 15px;
    color: #fff;
    display: inline-block;
    padding: 3px 10px 4px 10px;
    transform: scale(1);
    transition: all .5s;
  }

  .mehr_btn:hover .mehr_btn_shape{
    transform: scale(1.1);
    transition: all .5s;
  }

  .arrow {
    content: '';
border-width: 5px 5px 0 5px;
border-color: #ffffff transparent transparent transparent;
width: 0;
height: 0;
display: inline-block;
vertical-align: middle;
border-style: solid;
margin-left: 0px;
  }
  
  .arrow.up{
    transform: rotate(180deg);
  }
  
  .artist_info_container h1{
    text-transform: uppercase;
    margin: 5px 0px 5px 0px;
    letter-spacing: .05em;
    font-weight: 600;
  }

  .artist_info_container h3{
    text-transform: uppercase;
    color: #df2023;
    letter-spacing: .05em;
    font-size: 1.5em;
    margin: 0px;
  }

  #my_nanogallery2{
      margin-top: 13px;
      margin-bottom: 30px;
  }

  .nanogallery_gallerytheme_dark_my_nanogallery2 .nGY2TnImgBack {
    background: #202020 !important;
  }

  .nGY2GThumbnailTitle{
    display: none !important;
  }

  .artist_gallery{
    margin-top:50px;
  }

  .artist_gallery h3{
    text-transform: uppercase;
    color: #df2023;
    letter-spacing: .05em;
    font-size: 1.5em;
    margin: 0px;
  }

  .artist_info_img{
    width: 45%;
    float: left;
    padding: 10px 30px 15px 0px;
  }

  .page_hl h1{
    margin: 0;
    padding: 3px 0 3px 15px;
    background: #000;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.5em;
    letter-spacing: .05em;
  }

  .page_hl.red_hl h1{
  background: #df2023 !important; 
  }

  .artist_news_hl{

    margin: 0px 0px 15px 0px;
    padding: 3px 0 3px 15px;
    background: #df2023;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.5em;
    letter-spacing: .05em;

  }


  .news_termine_hl{
    margin: 0;
    padding: 15px 15px 0px 15px;
    font-size: 1.5em;
    letter-spacing: .05em;
  }

  .news_termine_box{
    background: #000;
    color: #fff;
  }

  .news_termine_box a{
    color: #df2023;
    text-decoration: none;
  }

  .news_termine_box a:hover {
    text-decoration: underline;
  }

  .news_termine_post{
    border-bottom: 1px solid #fff;
    padding-top: 30px;
    padding: 30px 15px 5px 15px;
  }

  .news_termine_kunstler{
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .03em;
    margin-bottom: 3px;
  }

  .news_termine_title{
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: #df2023;
  }

  .news_termine_text{
    font-size: .9em;
    letter-spacing: .03em;
    line-height: 1.5em;
    padding-bottom: 15px;
  }

  .news_termine_text p{
   margin: 1em 0;
   padding: 0;
  }

.trocadero_player{
  margin-bottom: 30px;
  background: #1f1f1f;
}

.termine_grid .grid-sizer{
  width: calc(33.33% - 30px);
}

.termin_item{
width: calc(33.33% - 30px);
}

.termin_item_header{
  display: flex;
  padding-bottom: 15px;
}

.termin_item img{
  float: left;
}

.termin_item_hl{
padding-left: 10px;
}


#booking form{
  margin-top: 15px;
  display: grid;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 2em;
}

#booking form>div{
  padding-top: 10px;
  border-top: 1px solid #000;
}

#booking form h2 {
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 1rem;
}


#booking input[type="text"],
#booking input[type="email"],
#booking textarea {
  width: 100%;
  padding: .5rem .5rem .5rem .5rem;
  box-sizing: border-box;
  background: #f9f9f9;
  text-indent: 0px;
  font-family: "proxima-nova";
border: 1px solid #94464e;
border-radius: 5px;
/* padding: 2px 2px 2px 2px; */
margin-bottom: 2em;
color: #3D3734 !important;
background-color: rgba(0,0,0,.05);
box-shadow: none;
line-height: normal;
font-size: 14px;
border-color: rgba(255,255,255,0.8);
outline: 0;
outline: thin dotted \9;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)/* , 0 0 8px rgba(255,255,255,0.3) */;
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)/* , 0 0 8px rgba(255,255,255,0.3) */;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)/* , 0 0 8px rgba(255,255,255,0.3) */;
}

#booking input:focus::-webkit-input-placeholder { color:transparent; }
#booking input:focus:-moz-placeholder { color:transparent; } /* FF 4-18 */
#booking input:focus::-moz-placeholder { color:transparent; } /* FF 19+ */
#booking input:focus:-ms-input-placeholder { color:transparent; } /* IE 10+ */

#booking textarea:focus::-webkit-input-placeholder { color:transparent; }
#booking textarea:focus:-moz-placeholder { color:transparent; } /* FF 4-18 */
#booking textarea:focus::-moz-placeholder { color:transparent; } /* FF 19+ */
#booking textarea:focus:-ms-input-placeholder { color:transparent; } /* IE 10+ */

#booking select{ 
font-family: "proxima-nova";
color: #3D3734 !important;
background-color: rgba(0,0,0,.02);
font-size: 14px !important;
border: 1px solid #94464e;
border-color: rgba(255,255,255,0.8);
border-radius: 5px;
margin-bottom: 2em;
width: 100%;
height: 35px;
background-color: none;
box-shadow: none;
line-height: normal;
outline: none;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)/* , 0 0 8px rgba(255,255,255,0.3) */;
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)/* , 0 0 8px rgba(255,255,255,0.3) */;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)/* , 0 0 8px rgba(255,255,255,0.3) */;
}

#booking p.error{
  color: #df2023;
  font-weight: 600;
  margin-top: -1.5em;
}

#booking #myForm-privacy-inputwrapper p.error{
  margin-top: -0.5em;
}

#booking .alert-danger{
  color: #df2023;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 10px;
}

#booking textarea {
  min-height: 150px;
  resize: vertical;
}


#booking label {
  display: none; /* Nur Placeholder sichtbar */
}

#myForm-privacy-fieldwrapper label{
  display: block !important;
  margin-bottom: 10px;
}




#booking input[type="checkbox"] {
  margin-right: 0.5rem;
}

/* Datenschutz-Checkbox separat gestalten */
#booking .privacy-wrapper {
  flex-basis: 100%;
  margin-top: 2rem;
}

#booking #myForm-privacy{
  float: left;
}


  #booking .pflichtfelder{
        margin-bottom: 5px;
    }

  #booking #form-success-message{
   color: #df2023;
   font-weight: 600;
   margin-left: 5px;
  }  

  #booking #myForm-artists{
    margin-bottom: 5px;
  }  

#booking button,
#booking input[type="submit"] {
  background-color:#df2023;
  color: #fff;
  border: none;
  padding: .5rem 1rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

#booking button:hover,
#booking input[type="submit"]:hover {
  background-color: #333;
}

#booking .stadt-plz-wrapper {
  display: flex;
  gap: 1rem;
}

#booking .stadt-plz-wrapper > div {
  flex: 1;
}

/* Platzhaltertext heller */
#booking ::placeholder {
  color: #999;
}

.input_short{
  width: 65%;
  float: left;
}

.input_shorter{
  width: 30%;
  float: left;
  margin-left: 5%;
}

.booking_spalte h2{
  text-transform: uppercase;
  font-size: 1em;
  letter-spacing: .03em;
}

.afterSubmit{
  position: absolute;
  margin-top: -150px;
  right: 0px;
  width: 33.33%;
}



.download_section{
  margin: 0px 0px 15px 0px;
  padding: 3px 15px 15px 15px;
  background: #df2023;
  color: #fff;
  top: 0px !important;
}

.download_section h2{
margin-top: 10px;
}

.dl_section_title{
  font-size: 1.3em;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 5px;
  color: #000;
}

.dl_file{
  background: #000;
  border-radius: 15px;
  margin-bottom: 15px;
  width:fit-content;
  padding: 5px 10px;
}


.dl_file:hover{
  background: #3d0303;
}

.dl_file a{
  text-decoration: none;
  color: #fff;
  font-size: 1em;
}

.dl_file i{
  margin-right: 5px;
}

.voe_date{
  font-weight: 600;
  letter-spacing: .03em;
  margin: 5px 0px 15px 0px;
}

.tt_img{
  margin-bottom: 10px;
}

.tontraeger_grid > .grid-sizer{

   width: calc(25.333% - 30px);

}

.tontraeger_grid > .item{

   width: calc(25.333% - 30px);

}

.about_grid .grid-sizer{
  width: calc(33.33% - 30px);
}

.about_item{
   width: calc(33.33% - 30px);
}

.about_item img{
  max-width: 40%;
  float: left;
  margin: 5px 10px 10px 0px;
}

.about_item_hl{
clear: both;
}

#map { height: 600px; }

.leaflet-tile-pane {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}


/* CONTACT */

.contact_wrapper{

  margin-top: 15px;
  display: grid;
  grid-auto-rows: 1fr;
    grid-template-columns: 1fr 2fr;
    column-gap: 2em;

}

.contact_wrapper > div{
  border-top: 1px solid #000;
  padding-top: 15px;
}

#Contact_form{
  width: 100%;
  position: relative;
}

#Contact_form h2{
  font-size: 1rem;
  font-weight: bold;
    text-transform: uppercase;  
  margin-bottom: 1rem;
}

#Contact_form input[type="text"],
#Contact_form input[type="email"],
#Contact_form textarea {
  width: 100%;
  padding: .5rem .5rem .5rem .5rem;
  box-sizing: border-box;
  background: #f9f9f9;
  text-indent: 0px;
  font-family: "proxima-nova";
border: 1px solid #94464e;
border-radius: 5px;
/* padding: 2px 2px 2px 2px; */
margin-bottom: 2em;
color: #3D3734 !important;
background-color: rgba(0,0,0,.05);
box-shadow: none;
line-height: normal;
font-size: 14px;
border-color: rgba(255,255,255,0.8);
outline: 0;
outline: thin dotted \9;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)/* , 0 0 8px rgba(255,255,255,0.3) */;
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)/* , 0 0 8px rgba(255,255,255,0.3) */;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)/* , 0 0 8px rgba(255,255,255,0.3) */;
}

#Contact_form input:focus::-webkit-input-placeholder { color:transparent; }
#Contact_form input:focus:-moz-placeholder { color:transparent; } /* FF 4-18 */
#Contact_form input:focus::-moz-placeholder { color:transparent; } /* FF 19+ */
#Contact_form input:focus:-ms-input-placeholder { color:transparent; } /* IE 10+ */

#Contact_form textarea:focus::-webkit-input-placeholder { color:transparent; }
#Contact_form textarea:focus:-moz-placeholder { color:transparent; } /* FF 4-18 */
#Contact_form textarea:focus::-moz-placeholder { color:transparent; } /* FF 19+ */
#Contact_form textarea:focus:-ms-input-placeholder { color:transparent; } /* IE 10+ */


#Contact_form textarea {
  min-height: 180px;
  resize: vertical;
}


#Contact_form label {
  display: none; /* Nur Placeholder sichtbar */
}

#myForm-privacy-fieldwrapper label{
  display: block !important;
  margin-bottom: 10px;
}


#Contact_form input[type="checkbox"] {
  margin-right: 0.5rem;
}

/* Datenschutz-Checkbox separat gestalten */
#Contact_form .privacy-wrapper {
  flex-basis: 100%;
  margin-top: 2rem;
}

#Contact_form #myForm-privacy{
  float: left;
}

#Contact_form p.error{
  color: #df2023;
  font-weight: 600;
  margin-top: -1.5em;
}

#Contact_form button,
#Contact_form input[type="submit"] {
  background-color:#df2023;
  color: #fff;
  border: none;
  padding: .5rem 1rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

#Contact_form button:hover,
#Contact_form input[type="submit"]:hover {
  background-color: #333;
}

#Contact_form ::placeholder {
  color: #999;
}

#Contact_form .afterSubmit{
  position: absolute;
  margin-top: 0px;
  right: auto;
  right: 0px;
  margin-top: 10px;
}

.submitContact{
float: right;
margin-top: -25px;
}



#Contact_form button{
  right: right;
right: 0px;
position: absolute;
clear: both;
}

#Contact_form #myForm-privacy-fieldwrapper{
  margin-top: -15px;
  position: absolute;
  z-index: 1;
  width: 100%;
}

#myForm-privacy-fieldwrapper label {
display: block !important;
padding-bottom:0px;
}

.adresse{
  margin-top: 40px;
}

#Contact_form .alert-danger{
  color: #df2023;
  font-weight: 600;
  margin-bottom: 10px;
}

#Contact_form .alert-success{

  color: #df2023 !important;
  font-weight: 600 !important;
}

.footer{
  left: 0px;
  right: 0px;
  position: fixed;
  bottom: 0px;
  background: white;
  box-sizing: border-box;
  height: 40px;
  font-size: .8em;
  padding: 10px 35px 0px 35px;
  z-index: 1000;
}

.footer hr{
  margin: 0px 0px 3px 0px;
}

.footer a{
  color: #000;
}

.copyright{
float: right;
}

.copyright img{
width: 60px;
height: auto;
}

.hidePagination{
 display: none;
}

.imprint_container{
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  overflow-wrap: break-word; 
  word-break: break-word;
}

.imprint_container > div{
border-top: 1px solid;
}



/* .privacywire-wrapper{
display: flex !important; 
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
position: fixed !important;
z-index: 300000;
background-color: rgba(0, 0, 0, 0.5);
}

.privacywire-page-wrapper{
display: flex !important;
justify-content: center;
align-content: center;
align-items: center;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
}
 */


.privacywire-banner{
background: rgb(255, 255, 255) !important;
text-align: center;
padding: 60px !important;
position: fixed !important;
bottom: 0;
top: auto !important;
left: 0 !important;
right: 0 !important;
z-index: 500 !important; 
}


.privacywire-buttons .allow-all{
border: none;
border-radius: 15px;
padding: 10px;
font-size: 18px;
background: #df2023;
color: #fff;
cursor: pointer;
} 

.privacywire-buttons .allow-all:hover{
  background: #000;
}

.privacywire-page-links{
  display: none;
}

.privacywire-page-links a{

  color: #3d0303;
}

.privacywire-consent-message{
  color: #df2023;
  padding: 15px;
}

.privacywire-consent-button{
  background: #df2023;
  color: #fff;
  border-radius: 15px;
  border: none;
  padding: 10px;
  margin: 0px 15px 15px 15px;
}

.cookie_block{
  position: absolute;
  z-index: 1;
  background: #000;
  width: 100%;
  color: #df2023;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  box-sizing: border-box;
  text-align: center;
}

/* MEDIAQUERIES */


@media (max-width: 1024px) {


  .artist_page_hero{
    display: block;
  }

  .artist_info_container{
    padding: 0px 0px 30px 30px;
  }

  .artist_gallery{
    margin-top: 0px;
    padding: 0px 0px 30px 30px;
  }

}



  @media (max-width: 768px) {

    #hamburger{
      display: block;
      margin-left: 30px;
      position: absolute;
      right: 15px;
      top: 10px;
    }

    .hamburger {
      width: 30px;
      height: 30px;
      /* background: black; */
      cursor: pointer;
    }
    
    .hamburger span {
      display: block;
      position: absolute;
      left: 3px;
      right: 3px;
      height: 3px;
      background: rgb(0, 0, 0);
      /* border-radius: 0px; */
      transition: all 0.3s ease;
    }
    
    /* Positionen der drei Balken */
    .hamburger span:nth-child(1) {
      top: 6px;
    }
    
    .hamburger span:nth-child(2) {
      top: 13.5px; /* vertikal zentriert */
    }
    
    .hamburger span:nth-child(3) {
      top: 21px;
    }
    
    /* Animation beim Aktivieren */
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg);
      top: 13.5px;
    }
    
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg);
      top: 13.5px;
    }

    .wrapper {
      margin: 0px 5px 0px 5px;
    }

    .logo{
      width: 180px;
      margin: 0 auto;
    }

    .social-icons{
      margin-top: 10px;
    }

    .shopBtn{
      width: 80px;
    }

    .container {
      flex-direction: column;
    }

    .grid {
      display: flex;
      flex-wrap: wrap;
      margin-left: 0rem;
      margin-right: 0rem;
    }
  

    .grid-sizer,
    .item {
      width: 100%;
      margin: 0px;
    }

    .item.spalten_2 {
      width: 100%;
    }

     .stamp{
      width: 100%;
    } 

    header {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }

    .slide_down_menu{
      max-height: 100%;
      overflow: scroll;
    }

    #nav{
      display: none;
    }

    
    nav ul {
      flex-direction: column;
      align-items: stretch;
      gap: 1rem;
      text-align: center;
    }

    nav ul ul {
     position: relative;
      width: 100%;
      left: 0px;
      text-align: center;
      border: none;
      padding: 0px;
    }

    nav ul ul:before, nav ul ul:after{
      display: none;
    }

    nav ul ul li {
      text-align: center;
    }

    .artists_carousel_wrapper{
      padding: 0px 5px;
    }

    .flickity-viewport{
      padding: 5px 5px 75px 5px;
    }

    .artist_carousel_caption{
      font-size: .05em;
    }

    .carousel-cell {
      width: 40%;
      margin-right: 5px;
  }

  .flickity-prev-next-button{
    display: none;
  }

    nav {
      flex-direction: column;
      align-items: stretch;
      gap: 1rem;
      min-height: 100%;
    }

    nav ul {
      flex-direction: column;
      align-items: stretch;
      gap: 1rem;
    }


    #booking form{
      display: block;
       
    }
    
    .afterSubmit{
      position: absolute;
      margin-top: 15px;
      width: 100%;
    }
    

    .tontraeger_grid > .grid-sizer{

   width: 100%;

}

.tontraeger_grid > .item{

   width: 100%;

}

.contact_wrapper{

  margin-top: 15px;
  display: grid;
  grid-auto-rows: 1fr;
  grid-template-columns: 1fr;
}

.sidebar{
  display: none;
}

.mobbar{
  display: block;
}

.imprint_container{
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.3rem;


  }

} 

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .visually-hidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * The use of `table` rather than `block` is only necessary if using
 * `::before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

