.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: 13px;
  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: relative;

  width: 100%;
  height: 111px;
        background: linear-gradient(270deg, #E3000F 14.93%, #BC0000 85.87%);
        color: #fff;
        text-align: center;
        padding-top: 13px;
        z-index: 9998;
    max-width: var(--max-w);
      }

.footer-background2{
    position: absolute;

    width: 100vw;
  height: 111px;
    background: linear-gradient(270deg, #E3000F 50%, #BC0000 50%);
    left: 50%;
    transform: translate(-50%);
}

.footer2 p{
    margin-bottom: 3px;
}

    .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;
}







/* 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: 50px;
  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;
}






/* 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;
}