body{
    position: relative;
    background: #ffffff;
    font-family: 'Open Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
body {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.content {
        width: 100%;
        padding: 0;
        box-sizing: border-box;
    margin: 0;
      }


.footer {
  position: absolute;
  bottom: -1px;
  width: 100%;
  height: 112px;
  background: linear-gradient(270deg, #BC0000 14.93%, #E3000F 85.87%);
  color: #fff;
  text-align: center;
  padding-top: 20px;
  z-index: 9998;
}

.footer-background{
    position: fixed;
  bottom: -1px;
    width: 100vw;
  height: 112px;
    background: linear-gradient(270deg, #BC0000 50%, #E3000F 50%);
    left: 50%;
    transform: translate(-50%);
}

.footer2 {
        position: absolute;
  bottom: 0;
  width: 100%;
  height: 111px;
        background: linear-gradient(270deg, #E3000F 14.93%, #BC0000 85.87%);
        color: #fff;
        text-align: center;
        padding-top: 20px;
        z-index: 9998;
      }

.footer-background2{
    position: fixed;
  bottom: 0;
    width: 100vw;
  height: 111px;
    background: linear-gradient(270deg, #E3000F 50%, #BC0000 50%);
    left: 50%;
    transform: translate(-50%);
}

    .cookie-button {
        display: block;
    }

    #cookieDiv{

max-width: 400px;
        width: calc(100% - 84px);
  background-color: #fff;
  padding: 32px 24px;
  font-size: 14px;
  font-family: inherit;
  color: #212121;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  border-radius: 10px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.084), 0px 2px 3px rgba(0, 0, 0, 0.168);   
        position: absolute;
        left: 50%;
        top: 50%;
        
        transform: translate(-50%, -50%)
    }

    #popup246 {
        display: none; /* Standardmäßig ausblenden */
        position: fixed;
        top: 0%;
        left: 50%;
        transform: translate(-50%);
        width: 100vw;
        height: 100%;
        
        padding: 0;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        z-index: 999999;
        backdrop-filter: blur(11px);
        -webkit-backdrop-filter: blur(11px);
    }

    #popup247 {
        position: sticky;
        bottom: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 999999;

    }


    body.popup-open {
        overflow: hidden;
    }

    .logo-container {
  text-align: center;
  font-weight: 600;
  font-size: 18px;
}

.cookie-checkbox{




}





/* Hide the default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}



.container {
  display: flex;
  position: relative;
  cursor: pointer;
  font-size: 1rem;
  user-select: none;
}

/* Create a custom checkbox */
.checkmark {
  --clr: #0B6E4F;
  position: relative;
  top: 0;
  left: 0;
  height: 1.3em;
  width: 1.3em;
  background-color: #ccc;
  border-radius: 50%;
  transition: 300ms;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: var(--clr);
  border-radius: .5rem;
  animation: pulse 500ms ease-in-out;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 0.45em;
  top: 0.25em;
  width: 0.25em;
  height: 0.5em;
  border: solid #E0E0E2;
  border-width: 0 0.15em 0.15em 0;
  transform: rotate(45deg);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 #0B6E4F90;
    rotate: 20deg;
  }

  50% {
    rotate: -20deg;
  }

  75% {
    box-shadow: 0 0 0 10px #0B6E4F60;
  }

  100% {
    box-shadow: 0 0 0 13px #0B6E4F30;
    rotate: 0;
  }
}

.notallowed{
     cursor: not-allowed !important;
}




.wrapper-sm {
    position: absolute;
    left: 23px;
    top: 11px;

    
  display: inline-flex;
  list-style: none;
  height: calc(100% - 11px);
  width: auto;
  font-family: "Poppins", sans-serif;
  justify-content: center;
}

.wrapper-sm .icon {
  position: relative;
  background: #fff;
  border-radius: 50%;
  margin: 9px;
  width: 46px;
  height: 46px;
  font-size: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      
}

.wrapper-sm i{
    color: #E3000F;
    position: relative;
}

.wrapper-sm .tooltip-sm {
  position: absolute;
  top: 0;
  font-size: 14px;
  background: #fff;
  color: #fff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper-sm .tooltip-sm::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: #fff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper-sm .icon:hover .tooltip-sm {
  top: -37px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper-sm .icon:hover .tooltip-sm {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}


.wrapper-sm .facebook:hover,
.wrapper-sm .facebook:hover .tooltip-sm,
.wrapper-sm .facebook:hover .tooltip-sm::before {
  background: #1877F2;
  color: #fff;
}

.wrapper-sm .facebook:hover i{
    color: #fff;
}

.wrapper-sm .instagram:hover,
.wrapper-sm .instagram:hover .tooltip-sm,
.wrapper-sm .instagram:hover .tooltip-sm::before {
  background: #E4405F;
  color: #fff;
}

.wrapper-sm .instagram:hover i{
    color: #fff;
}




.pfeil {
    position: fixed;
    font-size: 50px;
    font-weight: bold;
    display: block;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 15%;
    height: 15%;
    color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.pfeil:hover {
    color: red;
}

.pfeil-links {
    left: 5.5%;
    top: 35%;
    z-index: 999999;
}

.pfeil-rechts {
    right: 1%;
    top: 35%;
    z-index: 999999;
}
.no-scroll {
  overflow: hidden !important;
}




.main-grid
{ 
    width: 90%;
    padding-left: 152px;
display: grid;
grid-template-columns: auto;
grid-template-rows: auto;
grid-template-areas: 
    "termin archiv Gemeinde"
    "mitglied mitglied Gemeinde ";
margin: 42px 23px 42px 36px;
gap: 17px;

}

.item-a .item-b .item-c .item-d{
    border-radius: 11px;
}

.item-a {
  grid-area: termin;
    padding: 10px;
    min-height: 150px;

}

.item-b {
  grid-area: archiv;
padding: 10px;
    min-height: 150px;


}
.item-c {
  grid-area: Gemeinde;

padding: 10px;
}

.item-d {
  grid-area: mitglied;
padding: 10px;
    min-height: 150px;
}

/** Mach mit teil Neu mit Grid **/




.machmitlink {

  display: flex;
  height: auto;
  align-items: center;
  flex: 1;
  background-color: transparent;
  border: 2px solid #E3000F;
  transition: all 0.3s ease;
  text-decoration: none;
  color: black;
  position: relative;
  overflow: hidden;
  align-content: flex-start;
  height: 100%;
}

.machmitlink:hover {
  background-color: #E3000F;
  color: #fff;
  border-color: #E3000F;
}

.machmitlink h2 {
  margin-bottom: 10px;
  font-size: 20px;
  opacity: 1;
  transition: opacity 0.3s ease;
  margin-left: 10px;
  position: relative;
  display: flex;
  visibility: visible;
    color: #000;
}

.machmitlink i {
  display: flex;
  font-size: 44px;
   margin: 0 10px;
  transition: all 0.3s ease;
  z-index: 3;
    align-self: center;
}

.machmitlink:hover i {
    display: flex;
   margin: 0 23px;
  font-size: 44px;
    
}

.machmitlink:hover h2 {
    color: #fff;
  opacity: 1;
    visibility: visible;
}


/* Schrift */

/* Open Sans is licensed under the SIL Open Font License, Version 1.1.
* License URL: http://scripts.sil.org/OFL
* Copyright 2020 The Open Sans Project Authors (https://github.com/googlefonts/opensans)
*/

@font-face {
    font-family: 'Open Sans';
    src: url('fonts/Open_Sans/OpenSans-Light.woff2') format('woff2'),
        url('fonts/Open_Sans/OpenSans-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('fonts/Open_Sans/OpenSans-Regular.woff2') format('woff2'),
        url('fonts/Open_Sans/OpenSans-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('fonts/Open_Sans/OpenSans-Medium.woff2') format('woff2'),
        url('fonts/Open_Sans/OpenSans-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('fonts/Open_Sans/OpenSans-SemiBold.woff2') format('woff2'),
        url('fonts/Open_Sans/OpenSans-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('fonts/Open_Sans/OpenSans-Bold.woff2') format('woff2'),
        url('fonts/Open_Sans/OpenSans-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('fonts/Open_Sans/OpenSans-ExtraBold.woff2') format('woff2'),
        url('fonts/Open_Sans/OpenSans-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}