body {
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
  background-color: white;
  font-family: Oswald !important;
  max-width: 100%;
  scroll-behavior: smooth;
}

.element::-webkit-scrollbar {
  width: 0 !important;
}

.element {
  overflow: -moz-scrollbars-none;
}

.element {
  -ms-overflow-style: none;
}

::-webkit-scrollbar {
  width: 0px;
  background: transparent;
  /* make scrollbar transparent */
}

html {
  scroll-behavior: smooth;
}

h2 {
  font-style: normal;
  font-size: 2.5em;
}

#nav_on_phone {
  background-color: #ed413d;
}

.wrapper {
  display: flex;
  justify-content: space-around;
}

.media_squares {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  font-size: 200%;
  font-weight: bold;
}

.media_square_square {
  overflow: hidden;
  border-radius: 5px !important;
  width: 315px;
  height: 504px;
  /* background-color: #4bc06e;*/
  background-color: #ed413d;
  /*border-radius: 30px;*/
  -webkit-animation: fadein 5s;
  /* Safari 4.0 - 8.0 */
  animation: fadein 5s;
  animation: fadein 5s forwards;
  position: relative;
  -webkit-animation: fadein 5s forwards;
  /* for less modern browsers */

  color: white;
  text-align: center;
  /*box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);*/
  /*text-shadow: 2px 3px 4px #000000;
        border-radius: 30px;*/
  font-family: Oswald !important;
}

.media_square_square_short {
  overflow: hidden;
  border-radius: 5px !important;
  width: 280px;
  height: 704px;
  /* background-color: #4bc06e;*/
  background-color: #ed413d;
  /*border-radius: 30px;*/
  -webkit-animation: fadein 5s;
  /* Safari 4.0 - 8.0 */
  animation: fadein 5s;
  animation: fadein 5s forwards;
  position: relative;
  -webkit-animation: fadein 5s forwards;
  /* for less modern browsers */

  color: white;
  text-align: center;
  /*box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);*/
  /*text-shadow: 2px 3px 4px #000000;
        border-radius: 30px;*/
  font-family: Oswald !important;
}

.media_square_square_short iframe {
  height: 500px;
}

.media_square_square_image {
  /*alt="Lamp" width="300px" height="300px" margin="auto" top="0" left="0" 
	right="0" bottom="0" position="absolute" overflow="hidden"*/
  width: auto;
  height: 476px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 5px;
  clip-path: inset(-2px -2px -18px -2px);
  overflow: hidden;
}

.media_square_square_sillydiv {
  clip-path: inset(-1px -1px 18px -1px);
  height: 340px;
}

.media_square_square_video {
  width: auto;
  height: 330px;
  float: none;
}

.wrapper > div {
  background: #ed413d;
  padding: 1em;
  color: white;
}

.wrapper > div:nth-child(odd) {
  background: #ed413d;
  color: white;
}

.phone_nav_bar {
  display: none;
}

.container_navbarbutton {
  display: none;
}

.purchase_link,
.nav_text {
  /*text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;*/
  font-size: 1.5em;
}

.purchase_link {
  color: red;
}

.nav_text:hover {
  color: black;
}

a:hover {
  color: black;
}

a {
  color: white;
  text-decoration: none;
}

.slideshowgrid {
  display: grid;
  grid-template-columns: 100%;
  /*  Make a gap between all of them
      grid-column-gap: 1em;
      grid-row-gap: 1em;*/
  grid-gap: 1em;
  z-index: 7;
}

.mySlides {
  display: none;
}

img {
  vertical-align: middle;
}

.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
  z-index: 6;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
  background-color: rgba(0, 0, 0, 0.2);
  border: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  text-shadow: 2px 2px 4px #000000;
}

.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active,
.dot:hover {
  background-color: #717171;
}

.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

.bluebar {
  /*background-color: #33c2c0;*/
  background-color: #ed413d;
  width: 100%;
  height: 3.5em;
  z-index: 6;
}

.logosection {
  text-align: center;
  z-index: 7;
  position: absolute;
  width: 30%;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-shadow: 2px 3px 4px #000000;
  color: white;
  font-size: xx-large;
}

* {
  box-sizing: border-box;
}

label {
  padding: 12px 12px 12px 0;
  display: inline-block;
  font-family: Oswald;
}

input[type='submit'] {
  font-family: Oswald;
  /*background-color: #4bc06e;*/
  background-color: #4d4d4d;
  color: white;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  float: right;
}

input[type='submit']:hover {
  font-family: Oswald;
  background-color: #45a049;
  border-radius: 5px;
}

.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 111px;
  z-index: 6;
}

.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

.col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}

.reihe:after {
  content: '';
  display: table;
  clear: both;
}

@keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 300px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 7;
}

.dropdown-content a {
  float: none;
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: white;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
  background-color: #ed413d;
}

.dropdown {
  overflow: hidden;
  background-color: #ed413d;
}

.dropdown .dropbtn {
  border: none;
  outline: none;
  color: white;
  background-color: #ed413d;
  font-family: inherit;
  margin: 0;
}

.button {
  font-weight: bold;
  letter-spacing: 5px;
  outline: none;
  cursor: pointer;
  color: white;
  background-color: #7f8c8d;
  border: none;
  border-radius: 4px;
}

#play-button {
  background-color: #ed413d;
}

#play-button:hover {
  background-color: black;
}

#pause-button {
  background-color: #ed413d;
}

#pause-button:hover {
  background-color: black;
}

#stop-button {
  background-color: #ed413d;
}

#stop-button:hover {
  background-color: black;
}

.radioframe iframe {
  margin: 0 auto;
  width: 0px;
  height: 0px;
  float: left;
  clear: both;
  visibility: visible;
  background-color: #eee;
}

.persoenlichkeiten_raster_gruppe {
  display: grid;
  grid-template-columns: 100%;
  grid-gap: 1em;
  font-family: Oswald !important;
  justify-content: space-between;
  padding: 12px;
}

.persoenlichkeiten_raster img {
  float: right;
  /*height: 400px;*/
  width: 290px;
  border-radius: 5px;
  /*box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);*/
  margin: 5px;
}

.ueberuns_raster_gruppe {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.ueberuns_raster_gruppe_unterstuetzer {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.ueberuns_raster img {
  /*float: right;*/
  /*height: 400px;*/
  display: block;
  width: 290px;
  border-radius: 30px;
  filter: drop-shadow(1px 4px 10px #222);
  margin-left: auto;
  margin-right: auto;
}

.ueberuns_raster_gruppe_ehrenmitglieder {
  display: grid;
  grid-template-columns: 100%;
  grid-gap: 1em;
  font-family: Oswald !important;
  justify-content: space-between;
  padding: 12px;
}

.ueberuns_raster_ehrenmitglieder img {
  /*float: right;*/
  /*height: 400px;*/
  display: block;
  width: 290px;
  border-radius: 30px;
  filter: drop-shadow(1px 4px 10px #222);
  margin-left: auto;
  margin-right: auto;
}

.buecher_raster {
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
  grid-gap: 1em;
  font-family: Oswald !important;
  justify-content: space-between;
  padding: 12px;
}

.buch img {
  width: 290px;
  border-radius: 5px !important;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.icon-bar {
  display: flex;
  justify-content: space-around;
  height: 30%;
}

.icon-bar a {
  text-align: center;
  transition: all 0.3s ease;
  color: white;
  font-size: 40px;
}

.icon-bar i {
  text-align: center;
  padding: 10%;
}

.icon-bar a:hover {
  background-color: #000;
}

.facebook {
  background: #3b5998;
  color: white;
  border-radius: 5px !important;
  width: 5%;
  height: 20%;
}

.twitter {
  background: #55acee;
  border-radius: 5px !important;
  color: white;
  width: 5%;
  height: 20%;
}

.google {
  background: black;
  color: white;
  width: 5%;
  height: 20%;
}

.instagram {
  background: #007bb5;
  color: white;
  border-radius: 5px !important;
  width: 5%;
  height: 20%;
}

.tiktok {
  border-radius: 5px !important;
  color: black;
  border: black;
}

.tiktok img {
  width: 80px;
  height: 80px;
}

.youtube {
  background: #bb0000;
  border-radius: 5px !important;
  color: white;
  width: 5%;
  height: 20%;
}

/*Footer*/
#footer_left {
  padding: 10px;
  text-align: left;
}

#footer_left a {
  color: gray;
}

#footer_left p {
  color: white;
  font-size: 50px;
}

#footer_left a:hover {
  color: white;
}

#footer_right {
  padding: 10px;
  /*text-align: right;*/
}

#footer_right p {
  color: white;
  font-size: 50px;
}

#footer_right a {
  color: gray;
}

#footer_right a:hover {
  color: white;
}

.madeby {
  font-size: 20px;
  text-align: right;
  padding: 22px;
  color: gray;
}

.parolen_platform {
  border-radius: 5px;
  border: 5px #ff8e03;
  padding: 5px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 60%), 0 6px 20px 0 rgba(0, 0, 0, 60%);
  z-index: 6;
}

.parolen_platform_content {
  display: grid;
  grid-template-columns: 100%;
  z-index: 6;
  grid-gap: 1em;
  font-family: Oswald !important;
  justify-content: space-between;
  padding: 12px;
  font-size: 20px;
}

.line {
  width: 99%;
  height: 47px;
  border-bottom: 1px solid black;
  position: absolute;
  align-content: center;
}

.schweizer_border {
  border-radius: 5px;
  border: 5px #ff8e03;
  padding: 10px;
  font-size: 1.7rem;
  /*text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000;*/

  /*box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 60%), 0 6px 20px 0 rgba(0, 0, 0, 60%);*/
}

.footer_group {
  display: grid;
  grid-template-columns: 100%;
  grid-gap: 1em;
  row-gap: 4em;
  justify-content: center;
  /*background-color: black;*/
  background-color: #ed413d;
  z-index: 6;
}

.footer_layer {
  width: 100%;
  z-index: 6;
  position: absolute;
}

.parolen_platform_content_video {
  width: 600px;
  height: 350px;
  float: none;
}

.parolen_platform_layer {
  z-index: 6;
}

.kurzinfo_raster_gruppe {
  display: grid;
  grid-template-columns: 33.33% 33.33% 33.33%;
  grid-gap: 0em;
  font-family: Oswald !important;
  justify-content: space-between;
  padding: 12px;
  text-align: center;
  color: black;
}

.kurzinfo_raster_black img {
  /*float: right;*/
  /*height: 400px;*/
  display: block;
  width: 250px;
  border-radius: 30px;
  filter: drop-shadow(1px 4px 10px black);
  margin-left: auto;
  margin-right: auto;
}

.kurzinfo_raster_red img {
  /*float: right;*/
  /*height: 400px;*/
  display: block;
  width: 290px;
  border-radius: 30px;
  filter: drop-shadow(1px 4px 10px #ed413e);
  margin-left: auto;
  margin-right: auto;
}

.kurzinfo_raster_blue img {
  /*float: right;*/
  /*height: 400px;*/
  display: block;
  width: 290px;
  border-radius: 30px;
  filter: drop-shadow(1px 4px 10px #45b9ba);
  margin-left: auto;
  margin-right: auto;
}

.kurzinfo_raster_green img {
  /*float: right;*/
  /*height: 400px;*/
  display: block;
  width: 290px;
  border-radius: 30px;
  filter: drop-shadow(1px 4px 10px #57b36e);
  margin-left: auto;
  margin-right: auto;
}

.languagebutton input[type='submit'] {
  background-color: white;
  color: black;
  border-radius: 5px !important;
  border-style: solid;
}

/* Artikelsuche Searchbar*/
* {
  box-sizing: border-box;
}

form.example input[type='text'] {
  padding: 10px;
  font-size: 17px;
  border: 1px solid grey;
  float: left;
  width: 80%;
  background: #f1f1f1;
  border-radius: 5px;
}

form.example button {
  float: left;
  width: 20%;
  padding: 11px;
  background: #ed413d;
  color: white;
  font-size: 17px;
  border: 1px solid grey;
  border-left: none;
  cursor: pointer;
  margin-left: -100px;
  border-radius: 5px;
}

form.example strong {
  display: inline-block;
}

form.example button:hover {
  background: #ffff;
  color: black;
}

form.example::after {
  content: '';
  clear: both;
  display: table;
}

/* Artikelsuche Searchbar*/

.alle_artikel_platform_layer {
  z-index: 6;
}

.alle_artikel_platform {
  border-radius: 5px;
  margin: auto;
  border: 5px #ff8e03;
  padding: 5px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 60%), 0 6px 20px 0 rgba(0, 0, 0, 60%);
  z-index: 6;
  width: 90%;
}

.alle_artikel_platform_content {
  display: grid;
  grid-template-columns: 100%;
  z-index: 6;
  grid-gap: 1em;
  font-family: Oswald !important;
  justify-content: space-between;
  padding: 12px;
  font-size: 20px;
}

.alle_artikel_raster img {
  float: right;
  height: 400px;
  border-radius: 30px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/*Alle Artikel Ende*/
form.loginform input[type='text'],
input[type='password'] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
  border-radius: 30px;
  font-family: Oswald;
}

form.loginform button {
  background-color: #ed413d;
  font-family: Oswald;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 10%;
  border-radius: 30px;
}

form.loginform button:hover {
  opacity: 0.8;
}

form.loginform cancelbtn {
  width: auto;
  padding: 10px 18px;
}

form.loginform login_container {
  padding: 16px;
}

form.loginform span.psw {
  float: left;
  padding-top: 16px;
  color: black;
}

.alle_form_loginform {
  border-radius: 30px;
  margin: auto;
  border: 5px #ff8e03;
  padding: 25px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 60%), 0 6px 20px 0 rgba(0, 0, 0, 60%);
  z-index: 6;
  width: 90%;
}

.custom-file-upload {
  border: 1px solid #ccc;
  display: inline-block;
  padding: 6px 12px;
  cursor: pointer;
}

.language-bar {
  position: sticky;
  top: 50%;
  left: 94%;
  -webkit-transform: translateX(-1%);
  -ms-transform: translateX(-1%);
  transform: translateX(-1%);
  z-index: 5;
  overflow: hidden;
}

.language-bar a {
  display: block;
  text-align: center;
  padding: 16px;
  transition: all 0.3s ease;
  color: white;
  font-size: 100px;
}

.document_button {
  background-color: #ed413d;
  border: none;
  color: white;
  padding: 20px 34px;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  margin: 4px 2px;
  cursor: pointer;
  font-family: Oswald !important;
}

.locations_wrapper {
  display: grid;
  margin: 7px;
  width: 100%;
  grid-template-columns: 55% 45%;
}

.language_button_frame {
  height: 50px;
}

.language_button_raster {
  display: flex;
  justify-content: space-around;
}

.carousel-item img {
  filter: brightness(70%);
}

.carousel-caption h1,
.carousel-caption h2 {
  text-shadow: 2px 2px 4px #000000;
}
