@font-face {
  font-family: 'Satoshi-Regular';
  src: url('fonts/Satoshi-Regular.woff2') format('woff2'),
       url('fonts/Satoshi-Regular.woff') format('woff'),
       url('fonts/Satoshi-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Satoshi-Italic';
  src: url('fonts/Satoshi-Italic.woff2') format('woff2'),
       url('fonts/Satoshi-Italic.woff') format('woff'),
       url('fonts/Satoshi-Italic.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: 'Anton-Regular';
  src: url('fonts/Anton-Regular.woff2') format('woff2'),
       url('fonts/Anton-Regular.woff') format('woff'),
       url('fonts/Anton-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

:root {
  --base:              rgba(226, 69, 135, 1);
  --green:             rgba(25, 153, 98, 1);
  --bg-blend:          multiply;
  --fg-blend:          lighten;
  --foreground:        #000000;
  --spacing:           0px;
}

html {
	font-family: 'Satoshi-Regular', sans-serif;
  font-weight: 400;
  color: #fff;
  background-color: var(--base);
}

* {
	margin: 0;
	padding: 0;
  border: none;
  outline: none !important;
  box-sizing: border-box;
}

.preload * {
 -webkit-transition: none !important;
 -moz-transition: none !important;
 -ms-transition: none !important;
 -o-transition: none !important;
}

a,
a:hover,
em  {
  color: #fff;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, b, strong {
  font-family: 'Anton-Regular', serif;
  text-transform: uppercase;
  font-weight: 400;
  color: #fff;
}

/*#map {
  height: 100lvh;
  width: 100vw;
  position: fixed !important;
}*/

.mapboxgl-popup-content {
  color: var(--base) !important;
}

/* MODAL */

.uk-modal-dialog {
  width: 400px;
}

.worst-case .uk-modal-body {
  background: var(--base);
}

.worst-case .uk-modal-close-default,
.worst-case .uk-modal-close-full {
  background: var(--base);
  color: #fff;
}

.best-case .uk-modal-body {
  background: var(--green);
}

.best-case .uk-modal-close-default,
.best-case .uk-modal-close-full {
  background: var(--green);
  color: #fff;
}

#modal-image-container {
    width: 100%;
    aspect-ratio: 1 / 1; /* Erzwingt das Quadrat */
    background-size: cover;
    background-position: center;
    border-top-left-radius: 3px; /* Optional: an UIkit-Radius anpassen */
    border-top-right-radius: 3px;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.mappage header {
  position: fixed;
  width: 100%;
  pointer-events: none;
}

.mappage main {
  height: 100lvh;
  overflow: hidden;
  position: relative;
  display: block;
}

#map {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.map-buttons {
  position: absolute;
  top: 120px;
  left: 0;
  padding: 40px;
  z-index: 1;
}

.map-buttons a {
  display: block;
  margin-bottom: 1rem;
}

.uk-button-default {
  color: #fff;
  background: var(--base);
  border: 2px solid #000;
  border-radius: 100px;
  /*box-shadow: -2px -2px 0px 0px rgba(0,0,0,1) inset;
  -webkit-box-shadow: -2px -2px 0px 0px rgba(0,0,0,1) inset;
  -moz-box-shadow: -2px -2px 0px 0px rgba(0,0,0,1) inset;*/
  box-shadow: 2px 2px 0px 0px rgba(0,0,0,1);
  -webkit-box-shadow: 2px 2px 0px 0px rgba(0,0,0,1);
  -moz-box-shadow: 2px 2px 0px 0px rgba(0,0,0,1);
}

.uk-button-default:hover {
  color: #fff;
  background: var(--base);
  border: 2px solid #fff;
  border-radius: 100px;
  /*box-shadow: -2px -2px 0px 0px rgba(0,0,0,1) inset;
  -webkit-box-shadow: -2px -2px 0px 0px rgba(0,0,0,1) inset;
  -moz-box-shadow: -2px -2px 0px 0px rgba(0,0,0,1) inset;*/
  box-shadow: 2px 2px 0px 0px rgba(255,255,255,1);
  -webkit-box-shadow: 2px 2px 0px 0px rgba(255,255,255,1);
  -moz-box-shadow: 2px 2px 0px 0px rgba(255,255,255,1);
}

.uk-button + .uk-button {
  margin-left: 1rem;
}

.menu-active .logo h1 {
  transform: translateX(-15vw);
  transition: all .5s ease-in-out 0s;
}

.logo h1 {
  padding: 40px;
  text-indent: -9999px;
  margin: 0;
  transition: all .5s ease-in-out 0s;
}

.homepage header .logo h1 a {
  width: 500px;
  height: 253px;
  display: block;
  background: url(images/logo.png);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: 100%;
  transition: all .5s 0s ease;
}

header.active .logo h1 a,
.contentpage header .logo h1 a,
.mappage header .logo h1 a  {
  width: 150px;
  height: 75px;
  display: block;
  background: url(images/logo.png);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: 100%;
  transition: all .5s 0s ease;
  pointer-events: auto;
}

@media screen and (max-width:640px) {
  .logo h1 {
    padding: 15px;
  }
  .homepage header .logo h1 a {
    width: 250px;
    height: 126px;
  }

  header.active .logo h1 a,
  .contentpage header .logo h1 a,
  .mappage header .logo h1 a  {
    width: 150px;
    height: 75px;
    display: block;
    background: url(images/logo.png);
    background-repeat: no-repeat;
    background-position: center left;
    background-size: 100%;
    transition: all .5s 0s ease;
    pointer-events: auto;
  }
}

.uk-navbar-nav>li>a,
.uk-navbar-item {
  color: #fff;
  font-family: 'Satoshi-Regular', sans-serif;
  font-weight: 400;
}

.uk-navbar-toggle {
  color: #fff;
}

.uk-offcanvas-bar ul li a {
  font-size: 1.4rem;
  color: #fff;
  text-transform: uppercase;
}

.subnav li a {
  padding-left: 0;
  transition: all .5s 0s ease;
}

.subnav li.uk-active a {
  padding-left: 10px;
  transition: all .5s 0s ease;
}

.uk-list li a {
  display: inline-block;
  transform: translateX(0);
  transition: all .2s ease-in-out 0s;
}

.uk-list li a:hover {
  transform: translateX(10px);
  transition: all .2s ease-in-out 0s;
}


/*.title-container {
  width: 100%;
}

.title-container h1 {
  font-size: clamp(2.4rem, 1.3548rem + 4.6452vw, 6rem);
  margin-bottom: 2rem !important;
  text-align:center
}
@media screen and (max-width:640px) {
  .title-container h1 {
    margin-bottom: 7rem !important;
  }
}


.date-badge {
  font-size: .75rem;
  /*background: #000;
  color: #fff;*/
  padding: 5px 8px 5px 0;
  display: inline-block;
  text-transform: uppercase;
}

.news-links {
  border-top: 1px solid #000;
  padding: 1rem 0;
}

@media screen and (min-width:640px) {
  .news-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-links a {
  text-transform: uppercase;
  font-size: .75rem;
  display: flex;
  align-items: center;
  line-height: initial;
}

.news-links a span {
  transition: all .5s 0s ease;
}

.news-links a:hover span {
  scale: 1.1;
  transition: all .5s 0s ease;
}

.first-section,
.content section:first-of-type {
  padding-top: 0;
}

.uk-label-default {
  background: #fff;
  color: var(--base);
  font-size: -.5rem;
}

.uk-text-small.uk-label-default {
  font-size: .75rem;
}


@media screen and (max-width: 640px) {
  .logo h1 a {
    background-size: 75%;
  }

  header .uk-sticky.uk-active .logo h1 a {
    background-size: 75%;
  }
}

.footer {
  min-height: 300px;
  background-color: var(--base);
  background-image: url(images/stern.png);
  background-repeat: no-repeat;
  background-position: right -40px bottom -40px;
  background-size: contain;
}


/* TABELLE */

td.table-jahr {
  font-family: 'Satoshi-Regular', sans-serif;
  font-weight: 400;
}

.uk-table-divider>:first-child>tr:not(:first-child), .uk-table-divider>:not(:first-child)>tr, .uk-table-divider>tr:not(:first-child) {
border-top: 1px solid #4e4e4e;
}

@media screen and (max-width:640px) {
  td.table-title,
  td.table-projekt {
    font-size: 1.25rem;
  }

  .uk-table tr {
    display: block;
    border-bottom: 1px solid #000;
    padding: .5rem 0;
  }

  .uk-table tr:last-child {
    border-bottom: none;
  }

  .uk-table td {
    display: list-item;
    padding: 0;
    width: 100%;
  }
}



/* NEUES GRID */


@media screen and (min-width:640px) {
  .grid, .grid-odd, .grid-even {
    display: grid;
    align-items: flex-start;
    grid-template-columns: repeat(18, 1fr);
    grid-template-rows: auto;
    margin-bottom: calc(100vw / 18) !important;
  }

  .grid-section:nth-child(even) .grid-for-one,
  .grid-even .grid-for-one {
    grid-row: 1;
    grid-column: 1/span 6;
    display: grid;
    row-gap: 2rem;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(4,2rem);
  }

  .grid-section:nth-child(even) .grid-for-two,
  .grid-even .grid-for-two {
    grid-row: 1;
    grid-column: 7/span 12;
    display: grid;
    row-gap: 2rem;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
  }

  .grid-section:nth-child(odd) .grid-for-two,
  .grid-odd .grid-for-two {
    grid-row: 1;
    grid-column: 1/span 10;
    display: grid;
    row-gap: 2rem;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
  }

  .grid-section:nth-child(odd) .grid-for-one,
  .grid-odd .grid-for-one {
    grid-row: 1;
    grid-column: 11/span 8;
    display: grid;
    row-gap: 2rem;
    grid-template-columns: repeat(6, 1fr);
    /*grid-template-rows: repeat(4,2rem);*/
  }

  .grid-section:nth-child(even) .grid-for-two .grid-item:nth-child(1),
  .grid-even .grid-for-two .grid-item:nth-child(1) {
    grid-row: 1;
    grid-column: 7/span 6;
  }

  .grid-section:nth-child(even) .grid-for-two .grid-item:nth-child(1).portrait:has(+.portrait) {
    grid-row: 1;
    grid-column: 8/span 4;
  }

  .grid-even .grid-for-two .grid-item:nth-child(1) {
    grid-row: 1;
    grid-column: 6/span 6;
  }


  .grid-section:nth-child(even) .grid-for-two .grid-item:nth-child(2).landscape,
  .grid-section:nth-child(even) .grid-for-two .grid-item:nth-child(2) {
    grid-row: 2;
    grid-column: 3/span 9;
  }

  .grid-section:nth-child(even) .grid-for-two .grid-item:nth-child(2).portrait {
    grid-row: 2;
    grid-column: 3/span 6;
  }

  .grid-section:nth-child(even) .grid-for-two .grid-item:nth-child(1).portrait + .portrait {
    grid-row: 2;
    grid-column: 5/span 4;
  }

  .grid-even .grid-for-two .grid-item:nth-child(2) {
    grid-column: 3/span 6;
  }

  .grid-section:nth-child(even) .grid-for-one .grid-item:nth-child(1),
  .grid-even .grid-for-one .grid-item:nth-child(1) {
    grid-row: 3;
    grid-column: 1/span 6;
  }

  .grid-section:nth-child(odd) .grid-for-two .grid-item:nth-child(1) {
    grid-row: 1;
    grid-column: 2/span 5;
  }

  .grid-section:nth-child(odd) .grid-for-two .grid-item:nth-child(1).portrait:has(+.portrait),
  .grid-odd .grid-for-two .grid-item:nth-child(1) {
    grid-row: 1;
    grid-column: 1/span 4;
  }

  .grid-odd .grid-for-two .grid-item:nth-child(1) {
    grid-row: 1;
    grid-column: 1/span 6;
  }

  .grid-section:nth-child(odd) .grid-for-two .grid-item:nth-child(2),
  .grid-odd .grid-for-two .grid-item:nth-child(2) {
    grid-row: 2;
    grid-column: 4/span 5;
  }

  .grid-section:nth-child(odd) .grid-for-two .grid-item:nth-child(2).portrait {
    grid-row: 2;
    grid-column: 3/span 6;
  }

  .grid-section:nth-child(odd) .grid-for-two .grid-item:nth-child(1).portrait + .portrait {
    grid-row: 2;
    grid-column: 4/span 4;
  }

  .grid-odd .grid-for-two .grid-item:nth-child(2) {
    grid-row: 2;
    grid-column: 3/span 6;
  }

  .grid-section:nth-child(odd) .grid-for-one .grid-item:nth-child(1),
  .grid-odd .grid-for-one .grid-item:nth-child(1) {
   /* grid-row: 3;*/
    grid-column: 1/span 5;
  }

  .grid-section:nth-child(odd) .grid-for-one .grid-item:nth-child(1).portrait,
  .grid-odd .grid-for-one .grid-item:nth-child(1) {
    grid-row: 3;
    grid-column: 3/span 4;
  }

  .grid-section:nth-child(odd) .grid-1 > div .grid-item:nth-child(1).portrait {
    grid-row: 1;
    grid-column: 4/span 4;
  }

  .grid-section:nth-child(odd) .grid-2 .grid-for-two {
    grid-row: 1;
    grid-column: 1/span 18;
    display: grid;
    row-gap: 2rem;
    grid-template-columns: repeat(18, 1fr);
    grid-template-rows: auto auto;
  }

  .grid-section:nth-child(odd) .grid-2 .grid-for-two .grid-item:nth-child(1).portrait {
    grid-row: 1;
    grid-column: 2/span 4;
  }

  .grid-section:nth-child(odd) .grid-2 .grid-for-two .grid-item:nth-child(2).portrait {
    grid-row: 1;
    grid-column: 10/span 4;
    margin-top: calc(100vw / 18);
  }



  /* TEAM */
  .team-grid {
    display: grid;
    align-items: flex-start;
    grid-template-columns: repeat(18, 1fr);
    grid-template-rows: auto;
    margin-bottom: calc(100vw / 18) !important;
  }

  .grid-section:nth-child(even) .team-grid .grid-large,
  .grid-section:nth-child(odd) .team-grid .grid-large {
    grid-row: 1;
    grid-column: 1/span 10;
    display: grid;
    row-gap: 2rem;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    align-self: center;
  }

  .grid-section:nth-child(even) .team-grid .grid-small,
  .grid-section:nth-child(odd) .team-grid .grid-small {
    grid-row: 1;
    grid-column: 11/span 9;
    display: grid;
    row-gap: 2rem;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
  }


  .grid-section:nth-child(even) .team-grid .grid-large .grid-item:nth-child(1),
  .grid-section:nth-child(odd) .team-grid .grid-large .grid-item:nth-child(1) {
    grid-row: 1;
    grid-column: 1/span 12;
  }

  .grid-section:nth-child(even) .team-grid .grid-small .grid-item:nth-child(1),
  .grid-section:nth-child(odd) .team-grid .grid-small .grid-item:nth-child(1) {
    grid-row: 1;
    grid-column: 1/span 12;
  }

  .grid-section:nth-child(even) .team-grid .grid-small .grid-item:nth-child(2),
  .grid-section:nth-child(odd) .team-grid .grid-small .grid-item:nth-child(2) {
    grid-row: 2;
    grid-column: 1/span 12;
  }

  .grid-section:nth-child(even) .team-grid .grid-small .grid-item:nth-child(3),
  .grid-section:nth-child(odd) .team-grid .grid-small .grid-item:nth-child(3) {
    grid-row: 3;
    grid-column: 1/span 12;
  }

  .grid-small .grid-item .image-text {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
  }

  .grid-small .grid-item:nth-child(odd) .image-text img {
    grid-column: 1/span 4;
  }

  .grid-small .grid-item:nth-child(odd) .image-text .grid-text {
    grid-column: 5/span 8;
  }

  .grid-small .grid-item:nth-child(even) .image-text img {
    grid-column: 8/span 4;
  }

  .grid-small .grid-item:nth-child(even) .image-text .grid-text {
    grid-row: 1;
    grid-column: 1/span 7;
  }

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

}

@media screen and (max-width:640px) {
  .grid-item {
    margin-bottom: 1rem;
  }
}

/* CSS variables. Not needed for the effect to work. */

.grid-item,
.bg-pink {
  background-color:    var(--base);
  position:            relative;
}

.image-grid .grid-item img,
.img-filter {
  filter:              grayscale(100%) contrast(1);
  mix-blend-mode:      multiply;
  will-change: filter;
}

.grid-item::before {
  background-color:    #000;
  bottom:              0;
  content:             '';
  height:              100%;
  left:                0;
  mix-blend-mode:      lighten;
  position:            absolute;
  right:               0;
  top:                 0;
  width:               100%;
  z-index:             1;
}


.page-item-grid section:nth-of-type(2n) {
  width: 85vw;
  margin: 0 auto;
}

.grid .page-item,
.grid .grid-item {
  aspect-ratio: 1;
}

.page-item img {
  opacity: .5;
  scale: 1;
  transition: all .2s ease-in-out 0s;
}

.page-item h3 {
  text-align: center;
}

/* Jedes 2. Bild leicht nach rechts drehen */
.page-item:nth-child(2n) img {
    transform: rotate(3deg);
}

/* Jedes 3. Bild leicht nach links drehen */
.page-item:nth-child(3n) img {
    transform: rotate(-2deg);
}

/* Jedes 5. Bild etwas stärker drehen */
.page-item:nth-child(5n) img {
    transform: rotate(5deg);
}

.page-item:hover img {
  scale: 1.05;
  transition: all .2s ease-in-out 0s;
}
/*
MENU
*/


#overlay {
  width: 33vw;
  height: 100lvh;
  position: fixed;
  padding: 3rem;
  top: 0px;
  right: 0px;
  background: #f2f2f2;
  z-index: 1020;
  transform: translateX(33vw);
  transition: all .5s ease-in-out 0s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#overlay ul {
  text-transform: uppercase;
  list-style-type: none;
  padding-left: 0;
}

#overlay h2,
#overlay p,
#overlay ul li,
#overlay a {
  color: var(--base); !important;
}

#overlay h2,
#overlay p,
#overlay ul {
  margin-bottom: 1rem;
}

.main-link {
  display: block;
  font-size: 2rem;
  padding: .5rem 0;
  transition: all .2s ease-in-out 0s;
}

.main-link:hover {
  transform: translateX(10px);
  transition: all .2s ease-in-out 0s;
}

body.menu-active #overlay {
  right:0px;
  transform: translateX(0);
  transition: all .5s ease-in-out 0s;
}

body.menu-active .page-wrapper {
  transform: translateX(-33vw);
  opacity: .5;
  transition: all .5s ease-in-out 0s;
}

body .page-wrapper {
  opacity: 1;
  transition: all .5s ease-in-out 0s;
}

.menu-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  margin: calc(55px / 2);
  width: 25px;
  height: 25px;
  cursor: pointer;
  z-index: 1025;
}

.hamburger-menu,
.hamburger-menu:after,
.hamburger-menu:before {
  width: 25px;
  height: 3px;
}

.hamburger-menu {
  position: relative;
  transform: translateY(10px);
  background: #fff;
  transition: all 0ms 300ms;
}
.hamburger-menu.animate {
  background: rgba(0, 0, 0, 0);
}

.hamburger-menu:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 10px;
  background: #fff;
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.hamburger-menu:after {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  background: #fff;
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.hamburger-menu.animate:after {
  background: #000;
  top: 0;
  transform: rotate(45deg);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.hamburger-menu.animate:before {
  background: #000;
  bottom: 0;
  transform: rotate(-45deg);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.instagram img,
.facebook img {
  height: 30px;
  width: 30px;
}



@media screen and (max-width: 640px) {
  /*.text-bild {
    display: flex;
    flex-direction: column;
  }*/


  body.menu-active .page-wrapper {
    transform: translateX(-25vw);
    opacity: .5;
    transition: all .5s ease-in-out 0s;
  }

  body .page-wrapper {
    opacity: 1;
    transition: all .5s ease-in-out 0s;
  }


  #overlay {
    width: 100vw;
    transform: translateX(100vw);
  }
  }


  /* GANZ NEUES GRID */

  .new-grid {
    display: grid;
    align-items: flex-start;
    grid-template-columns: repeat(18, 1fr);
    grid-template-rows: auto auto auto;
    gap: 2rem;
    align-items: start;
  }

  .grid-section:nth-child(even) .new-grid .grid-item:nth-of-type(1) {
    grid-row: 1;
    grid-column: 2/span 6;
  }

  .grid-section:nth-child(even) .new-grid .grid-item:nth-of-type(2) {
    grid-row: 2;
    grid-column: 3/span 6;
  }

  .grid-section:nth-child(even) .new-grid .grid-item:nth-of-type(3) {
    grid-row: 1; /* Startet oben und geht bis zur Mitte */
    align-self: center; /* Zentriert es innerhalb seines Bereichs */
    grid-column: 10/span 6;
  }

  .grid-section:nth-child(odd) .new-grid .grid-item:nth-of-type(1) {
    grid-row: 1; /* Startet oben und geht bis zur Mitte */
    align-self: center; /* Zentriert es innerhalb seines Bereichs */
    grid-column: 2/span 6;
  }

  .grid-section:nth-child(odd) .new-grid .grid-item:nth-of-type(2) {
    grid-row: 1;
    grid-column: 12/span 6;
  }

  .grid-section:nth-child(odd) .new-grid .grid-item:nth-of-type(3) {
    grid-row: 2;
    grid-column: 8/span 6;
  }





  /* COOKIEMANAGEMENT */

  /* Der äußere Wrapper (dein Karten-Container) */
  .map-wrapper {
      position: relative;
      width: 100%;
      height: 100%; /* Oder deine gewünschte Höhe */
      display: flex;
      align-items: center;
      justify-content: center;
  }

  /* Der PrivacyWire Hinweis-Kasten */
  .privacywire-ask-consent {
      text-align: center;
      padding: 20px;
      background: white;
  }

  /* Der Text im Hinweis */
  .privacywire-ask-consent p {
      margin-bottom: 15px;
      font-family: sans-serif;
      color: #333;
      line-height: 1.4;
  }

  /* Der Button (falls du ihn noch stylen willst) */
  .privacywire-consent-button {
      background-color: #007bff; /* Dein Blau-Ton */
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 4px;
      cursor: pointer;
      font-weight: bold;
      transition: background 0.2s ease;
  }

  .privacywire-consent-button:hover {
      background-color: #0056b3;
  }


  .privacywire{position:fixed;bottom:-250%;left:0;right:0;box-shadow:0 -1px 3px rgba(0,0,0,.3);opacity:0;background:#fff;z-index:1;padding:1rem;transition:bottom .3s ease-in,opacity .3s ease}.show-banner .privacywire-banner,.show-message .privacywire-message,.show-options .privacywire-options{bottom:0;opacity:1}.privacywire-header{font-weight:bold}.privacywire-ask-consent-blueprint,.privacywire button[hidden],[data-ask-consent-rendered="1"]{display:none}
  div.privacywire-wrapper div.privacywire {
      max-width: 350px;
      right: auto;
      z-index: 999;
      transform: translateZ(1px)
  }



  div.privacywire-wrapper a {
      color: rgb(122,158,26) !important;
  }

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

  div.privacywire-wrapper button {
    margin: 1rem 0 0 0;
    border: none;
    overflow: visible;
    text-transform: none;
    -webkit-appearance: none;
    border-radius: 0;
    display: inline-block;
    box-sizing: border-box;
    padding: 0 30px;
    vertical-align: middle;
    font-size: .875rem;
    line-height: 38px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: .1s ease-in-out;
    transition-property: color,background-color,border-color;
      color: #fff;
      background: var(--base);
      border: 2px solid #000;
      border-radius: 100px;
      /*box-shadow: -2px -2px 0px 0px rgba(0,0,0,1) inset;
      -webkit-box-shadow: -2px -2px 0px 0px rgba(0,0,0,1) inset;
      -moz-box-shadow: -2px -2px 0px 0px rgba(0,0,0,1) inset;*/
      box-shadow: 2px 2px 0px 0px rgba(0,0,0,1);
      -webkit-box-shadow: 2px 2px 0px 0px rgba(0,0,0,1);
      -moz-box-shadow: 2px 2px 0px 0px rgba(0,0,0,1);
      cursor: pointer;
  }

  div.privacywire-wrapper button:hover {
    color: #fff;
    background: var(--base);
    border: 2px solid #fff;
    border-radius: 100px;
    /*box-shadow: -2px -2px 0px 0px rgba(0,0,0,1) inset;
    -webkit-box-shadow: -2px -2px 0px 0px rgba(0,0,0,1) inset;
    -moz-box-shadow: -2px -2px 0px 0px rgba(0,0,0,1) inset;*/
    box-shadow: 2px 2px 0px 0px rgba(255,255,255,1);
    -webkit-box-shadow: 2px 2px 0px 0px rgba(255,255,255,1);
    -moz-box-shadow: 2px 2px 0px 0px rgba(255,255,255,1);
  }
/*

  div.privacywire-wrapper button.allow-all {
      padding: 6px;
      background: #000;
      color: var(--base);
      transition: .3s ease
  }

  div.privacywire-wrapper button.allow-all:hover {
      background: #222;
      color: #fff
  }

  div.privacywire-wrapper button.allow-necessary,
  div.privacywire-wrapper button.choose,
  div.privacywire-wrapper button.save {
      padding: 6px;
      margin: 6px 0;
      font-weight: 300;
      background: #fff;
  }*/

  
  div.privacywire-wrapper button.choose {
      display: none;
  }

  div.privacywire-wrapper button.allow-necessary:hover {
      opacity: 1
  }

  .privacywire-page-links {
    display: none;
  }
  /*div.privacywire-wrapper button.choose {
      display: none;
      visibility: hidden
  }*/






  .show-banner > .privacywire-page-wrapper,
      .show-options > .privacywire-page-wrapper,
      .show-message > .privacywire-page-wrapper {
          position: fixed;
          left: 0;
          top: 0;
          right: 0;
          bottom: 0;
          background: rgba(0, 0, 0, 0.6);
          backdrop-filter: blur(5px);
          display: flex;
          justify-content: center;
          align-items: center;
          z-index: 9999;
      }

      .privacywire {
          display: none;
      }

      .show-banner .privacywire.privacywire-banner,
      .show-options .privacywire.privacywire-options,
      .show-message .privacywire.privacywire-message {
          display: block;
          position: relative;
          left: auto;
          right: auto;
          bottom: auto;
          max-width: 450px;
          background: var(--base);
      }

      .consent-category-external_media {
        padding: 10vw;
        background: var(--base);
        text-align: center;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
      }

  .privacywire-consent-button {
    margin: 0;
  border: none;
  overflow: visible;
  font: inherit;
  color: inherit;
  text-transform: none;
  -webkit-appearance: none;
  border-radius: 0;
  display: inline-block;
  box-sizing: border-box;
  padding: 0 30px;
  vertical-align: middle;
  font-size: .875rem;
  line-height: 38px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: .1s ease-in-out;
  transition-property: color,background-color,border-color;
  cursor: pointer;
  }

  .privacywire-text ul {
    list-style-type: none !important;
  }


  .privacywire-header {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .privacywire-header,
  .privacywire-text {
    text-align: center;
  }

  button.allow-necessary {
    /*display: none !important;*/
  }

