/*@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");*/
@import url("https://fonts.googleapis.com/css2?family=Gruppo&display=swap");

html {
  height: 100%;
  width: 100%;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  /*font-family: "Poppins", sans-serif;*/
  font-family: "Arial", sans-serif;
  font-weight: 300;
  font-size: 0.9em;
}
@media (max-width: 991px) {
  body {
    font-size: 0.7em;
  }
  h1,
  h2,
  h3 {
    font-size: 0.8em;
  }
}

p {
  margin: 0;
  padding: 0;
}

.servios {
  font-family: "Gruppo";
  color: #fff;
  font-size: 30px;
  width: 100%;
  text-align: center;
}

#body {
  display: flex;
  height: 100%;

  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#menu {
  z-index: 2;
  /*max-width:200px;*/
  /*min-width: 200px;*/
  width: 200px;
  background-color: #fff;
  height: 100%;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
  transition: 0.5s;
}

#main {
  z-index: 1;
  flex: 3;
  max-height: 100%;
  max-width: calc(100vw - 200px);
}

#head {
  position: relative; /* fix */
  background-color: #fff;
  height: 100px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}

#global_head {
  display: flex;
  height: 50px;
  border-bottom: 1px solid #dfdfdf;
  justify-content: center;
  align-items: center;
}

#content {
  z-index: 1;
  background: #f6f8f9;
  display: flex;
  height: calc(100vh - 100px); /* -100px (#head height) */
}
@media (max-width: 991px) {
  #content {
    flex-direction: column-reverse;
  }
  #content .content_box {
    margin: 0;
  }
}

/* BUTTON */

.button_confirm {
  width: auto;
  cursor: pointer;
  background-color: #34b233;
  border: 1px solid #34b233;
  padding-top: 0.3em;
  padding-bottom: 0.3em;
  padding-left: 1em;
  padding-right: 1em;
  text-align: center;
  color: #ffffff;
  font-family: Arial;
  transition: 0.5s all ease;
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  -ms-transition: 0.5s all ease;
  -webkit-appearance: none;
  box-shadow: 2px 1px 6px rgba(136, 136, 136, 0.4);
}

.button_confirm:hover {
  color: #34b233;
  border: 1px solid #34b233;
  background-color: rgba(0, 0, 0, 0);
}

.debug {
  color: red;
  font-style: italic;
}
.debug::before {
  font-weight: bold;
  content: "Achtung Debug Modus aktiv! \A";
}

search > div {
  position: relative;
  width: 200px;
}

search [type="text"] {
  width: 100%;
  padding-right: 20px;
}

search [type="reset"] {
  position: absolute;
  border: none;
  display: block;
  width: 16px;
  border-radius: 20px;
  top: 2px;
  bottom: 2px;
  right: -5px;
  color: #dfdfdf;
  background: none;
  padding: 0px;
  margin: 0px;
}

.marquee {
  max-width: 100vw;
  height: 16px;
  white-space: nowrap;
  overflow: hidden;
  background: #dd0000;
  color: #fff;
  font-size: 11px;
  line-height: 16px;
}

.marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 40s linear infinite;
}

/* Optional: mouseover (oder Tipp auf dem Touchscreen) pausiert die Laufschrift */
.marquee span:hover {
  animation-play-state: paused;
}

/* Make it move */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.language-switch {
  color: #9ca6af;
  transition: 500ms;
  z-index: 1000;
}
.language-switch:hover {
  color: #000;
  cursor: pointer;
}
.language-switch img {
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
  transition: 500ms;
}
.language-switch:hover img {
  -webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
  filter: grayscale(0%);
}
