@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('_bundle/Poppins-Regular.ttf') format('truetype');
}


@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('_bundle/Poppins-Medium.ttf') format('truetype');
}

@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 400;
  src: url('_bundle/Poppins-Italic.ttf') format('truetype');
}

@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 700;
  src: url('_bundle/Poppins-MediumItalic.ttf') format('truetype');
}

:root {
  --red: #AD1F24;
  --light-red: #ca5271;
  --darker-blue: #345b73;
  --lighter-blue: #4e98ad;
  --lightest-blue: #e1e9ed;
  --background: #FFFEF9;
  --text: #142934;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  background-image: url(./_shared/bg.jpg);
  height: 100%;
  padding-bottom: 48px;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center 5vw;
  overflow-x: hidden;
  font-size: 18px;
}



.zelt-wrapper img {
  width: 1200px;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

h1 {
  background-color: var(--lighter-blue);
  padding: 24px;
  margin-top: 0px;
  margin-bottom: 0px;
  text-align: center;
}

h1 img {
  max-width: 100%;
}

h2 {
  background-color: var(--darker-blue);
  color: #fff !important;
  font-family: "Poppins";
  font-weight: 700;
  text-align: center;
  margin-top: 0px;
  font-size: 26px;
  padding: 6px;
  box-shadow: none;
  margin-bottom: 12px;
}


button[data-provides="delete"] {
  background-color: transparent !important;
  border-color: transparent !important;
  width: 430px;
  max-width: 100%;
  height: 63px;
  background: url("./_shared/delete-btn.svg") no-repeat center/contain;
  border: none;
  background-color: transparent !important;
  border-color: transparent !important;
}

button[data-provides="delete"],
button[data-provides="delete"]:active,
button[data-provides="delete"]:focus,
button[data-provides="delete"]:hover,
button[data-provides="delete"]:visited {
  background-color: transparent !important;
  border-color: transparent !important;
}

button[data-provides="delete"]:hover,
button[data-provides="delete"]:active {
  background-image: url("./_shared/delete-btn-aktiv.svg");
}

.modul-link {
  display: inline-block;
  position: relative;
}

.icon {
  display: block;
  width: 300px;
  max-width: 100%;
}

.flex-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin-top: 0px !important;
}

.icon-aktiv {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.modul-link:hover .icon-aktiv,
.modul-link:focus .icon-aktiv {
  opacity: 1;
}

.modul-link:hover .icon-inaktiv,
.modul-link:focus .icon-inaktiv {
  opacity: 0;
}

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


@media (max-width:1350px) {
  .bg-img {
    display: none;
  }

  body{
    padding-bottom: 200px;
  }
}

@media (max-width:960px) {

  h2 {
    font-size: 24px;
  }

  button[data-provides="delete"] {
    width: 390px;
  }


}


