@charset "UTF-8";
/*------------------- CSS resets -------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

body {
  font-family: "Asap-Regular";
  margin: 0;
  padding: 0;
  max-width: 100%;
  min-height: 1vw;
  background-color: #fdfdfd;
  background-image: url("../img/soft-white-paper.png");
  overflow-x: hidden;
}

img {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  width: 100%;
  border-style: none;
}

div {
  margin: 0;
  padding: 0;
}

a:link {
  outline: none;
  text-decoration: none;
}

a:active,
a:focus,
a:visited {
  outline: none;
  text-decoration: none;
}

button {
  outline: none;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

@font-face {
  font-family: "Asap-Regular";
  font-display: auto;
  src: url("../fonts/Asap-Regular.woff2") format("woff2"), url("../fonts/Asap-Regular.woff") format("woff"), url("../fonts/Asap-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Asap-Medium";
  font-display: auto;
  src: url("../fonts/Asap-Medium.woff2") format("woff2"), url("../fonts/Asap-Medium.woff") format("woff"), url("../fonts/Asap-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Asap-Bold";
  font-display: auto;
  src: url("../fonts/Asap-Bold.woff2") format("woff2"), url("../fonts/Asap-Bold.woff") format("woff"), url("../fonts/Asap-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Asap-BoldItalic";
  font-display: auto;
  src: url("../fonts/Asap-BoldItalic.woff2") format("woff2"), url("../fonts/Asap-BoldItalic.woff") format("woff"), url("../fonts/Asap-BoldItalic.ttf") format("truetype");
  font-weight: 700i;
  font-style: normal;
}
/*------------------- Reset Fonts -------------------*/
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  color: #424242;
  width: 100%;
}

/* =======================   Font Styles  =======================*/
h1 {
  font-family: "Asap-Bold";
  font-size: 4.5rem;
  font-weight: 700;
}

h2 {
  font-family: "Asap-Bold";
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  width: 100%;
  max-width: 700px;
}

h3 {
  font-family: "Asap-Bold";
  font-size: 1.9rem;
  font-weight: 700;
  max-width: 700px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.status-label h3 {
  margin: 0;
}

h4 {
  font-family: "Asap-Medium";
  font-size: 1.7rem;
  font-weight: 500;
  color: #565656;
}

h5 {
  font-family: "Asap-Bold";
  font-weight: 700;
  color: #363636;
  font-size: 1.6rem;
}

h6 {
  font-family: "Asap-Bold";
  font-weight: 700;
  color: #363636;
}

p {
  font-family: "Asap-Regular", sans-serif;
  font-size: 1.9rem;
  font-weight: 400;
  color: #565656;
  line-height: 1.8;
  max-width: 700px;
  width: 100%;
  letter-spacing: 0.2px;
}
@media screen and (max-width: 500px) {
  p {
    line-height: 1.6;
  }
}

a {
  font-family: "Asap-Regular", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* =======================  Site Title =========================== */
.site-title {
  font-size: 10rem;
  color: #363636;
  -webkit-marquee-increment: 0vw;
  text-shadow: 0 2px 0 rgb(255, 255, 255);
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 800px) {
  .site-title {
    font-size: 15vw;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 500px) {
  .site-title {
    font-size: 19vw;
  }
}

/* =======================  Page Names Typo =========================== */
.page-title {
  font-size: 6rem;
  width: 100%;
  text-align: center;
  font-weight: 500;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  opacity: 0.5;
}
@media screen and (max-width: 850px) {
  .page-title {
    font-size: 5rem;
  }
}
@media screen and (max-width: 650px) {
  .page-title {
    font-size: 7vw;
  }
}
@media screen and (max-width: 550px) {
  .page-title {
    font-size: 2.5rem;
  }
}

/* =======================  Blog Typo =========================== */
.post-title {
  margin: auto;
  text-align: center;
  font-size: 6rem;
  width: 100%;
  max-width: 700px;
}
@media screen and (max-width: 800px) {
  .post-title {
    font-size: 5rem;
  }
}
@media screen and (max-width: 500px) {
  .post-title {
    font-size: 3rem;
  }
}

.author {
  width: 100%;
  text-align: center;
}

.smaller {
  font-weight: 400;
  font-size: 1.6rem;
  margin-top: -5px;
  margin-bottom: 10px;
  opacity: 0.8;
}

.blog-date {
  font-weight: 400;
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #676767;
  text-align: center;
}

.sub-headline {
  font-size: 1.9rem;
  opacity: 0.7;
}
@media screen and (max-width: 800px) {
  .sub-headline {
    font-size: 1.7rem;
  }
}

#pst {
  font-size: 2.4rem;
}

/* =======================  Simple Date =========================== */
.date {
  font-weight: 400;
  font-size: 1.5rem;
  color: #676767;
}

/* =======================  Helper Classes for Typo  =========================== */
.text-trennung {
  text-overflow: ellipsis;
}

.clown {
  font-size: 10vw;
  margin: 0;
  line-height: 1.2;
  text-shadow: 0 3px 5px rgba(0, 0, 0, 0.24);
}
@media screen and (max-width: 1000px) {
  .clown {
    font-size: 20vw;
  }
}
@media screen and (max-width: 500px) {
  .clown {
    font-size: 25vw;
  }
}

.left-align {
  text-align: left;
}

.center {
  text-align: center;
}

.right-align {
  text-align: right !important;
}

.absatz-headline {
  margin: 3.5rem 0 1.2rem 0;
  max-width: 700px;
}

.centered-headline {
  width: 100%;
  text-align: center;
}

.centered-text {
  width: 100%;
  max-width: 100%;
  text-align: center;
}

.opacity-grey {
  opacity: 0.7;
}

.uppercase-headline {
  text-transform: uppercase;
}

.bold {
  font-weight: 500;
  color: #424242;
}

.action-section-headline {
  width: 100%;
  text-align: center;
}

.big-text {
  font-size: 55px;
}
@media screen and (max-width: 800px) {
  .big-text {
    font-size: 8vw;
    margin-top: 2vw;
  }
}
@media screen and (max-width: 500px) {
  .big-text {
    font-size: 4vmax;
  }
}

.small-text {
  font-size: 1.2rem !important;
  color: grey !important;
}

.more-margin-headline {
  margin: 1.2rem 0 1.2rem 0;
}

/* -------------------------   Große Überschrift für besondere Zwecke ausser der Reihe   ------------------ */
.big-headline {
  max-width: 800px;
  font-size: 55px;
}
@media screen and (max-width: 800px) {
  .big-headline {
    font-size: 8vw;
    margin-top: 2vw;
  }
}
@media screen and (max-width: 500px) {
  .big-headline {
    font-size: 4vmax;
  }
}

.summary-headline {
  display: inline;
}

/* --------------------   Termine Seite "ERLEDIGT" ----------------- */
.headline-vorbei {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  color: grey;
}

.semi-big-headline {
  max-width: 800px;
  font-size: 50px;
}
@media screen and (max-width: 800px) {
  .semi-big-headline {
    font-size: 6vw;
    margin-top: 3vw;
  }
}
@media screen and (max-width: 500px) {
  .semi-big-headline {
    font-size: 4vh;
  }
}

.underline {
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-color: red;
  text-underline-position: under;
  -ms-text-underline-position: below;
}

.emph-text {
  background-color: #e6ffdf;
  padding: 0 3px 0 3px;
}

/* =======================  Footer Typo =========================== */
.white-text {
  color: whitesmoke;
}

.opt-out > #document > html > body {
  line-height: 1.6;
}

/* =======================  geschwärtzter Text =========================== */
.blaack {
  background-color: #565656;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.black {
  background-color: rgb(86, 86, 86);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* =======================  Figcaption "gag =========================== */
.gag {
  font-size: 1.2rem;
  margin-top: 1.2rem;
}

/* =====================   Ivicas Spezial Typo    =========================  */
.red {
  color: #ca3543;
}

.green {
  color: green;
}

.blue {
  color: #0087ff;
}

.math {
  color: #ca3543;
  font-family: "Asap-Medium";
  font-weight: 500;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.ivo {
  font-family: "Georgia", serif;
  font-size: 2.1rem;
  letter-spacing: 0.2px;
  color: #565656;
  max-width: 650px;
  line-height: 1.8;
}
@media screen and (max-width: 800px) {
  .ivo {
    width: 90%;
  }
}

.ivo::first-letter {
  font-weight: 400;
  font-size: 45px;
  margin-right: 4px;
}

.date-ivo {
  font-family: "Georgia", serif;
  font-size: 1.6rem;
  letter-spacing: 0.2px;
  color: grey;
  max-width: 650px;
  line-height: 1.8;
}
@media screen and (max-width: 800px) {
  .date-ivo {
    width: 90%;
  }
}

footer {
  width: 100%;
  padding: 3vw 3% 6vw 3%;
  background-color: black;
  margin-top: 15vw;
}
@media screen and (max-width: 1100px) {
  footer {
    padding: 3vw 3% 15vw 3%;
  }
}

.inner-footer-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media screen and (max-width: 1100px) {
  .inner-footer-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

/* ==================================== IMPRESSUM =============================  */
.impressum-container {
  width: 25%;
  min-width: 200px;
  margin: 10px 0 10px 0;
}

.impressum-container h3 {
  color: whitesmoke;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 1100px) {
  .impressum-container h3 {
    text-align: center;
  }
}

.impressum-container div {
  margin-top: 10px;
}

.impressum-container p {
  font-size: 1.6rem;
  line-height: 1.2;
  color: whitesmoke;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 1100px) {
  .impressum-container p {
    text-align: center;
  }
}

.impressum-container a {
  font-size: 1.9rem;
  font-family: "Asap-Bold";
  color: whitesmoke;
  display: block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
.impressum-container a:hover {
  color: white;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-color: white;
  text-underline-position: under;
  -ms-text-underline-position: below;
}
@media screen and (max-width: 1100px) {
  .impressum-container a {
    text-align: center;
  }
}

/* ==================================== SITEMAP =============================  */
.site-map-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .site-map-container {
    margin-top: 50px;
  }
}

.site-map-container h3 {
  text-align: center;
  width: 100%;
  max-width: 100%;
  color: whitesmoke;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.inner-site-map-container {
  display: flex;
  justify-content: space-around;
  width: 100%;
  max-width: 600px;
}
@media screen and (max-width: 1100px) {
  .inner-site-map-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (max-width: 600px) {
  .inner-site-map-container {
    max-width: 100%;
    align-items: center;
  }
}

@supports (display: grid) {
  .inner-site-map-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    grid-auto-rows: minmax(50px, auto);
    row-gap: 0px;
    -moz-column-gap: 20px;
         column-gap: 20px;
    align-self: center;
  }
}
@supports (display: grid) {
  @media screen and (max-width: 600px) {
    .inner-site-map-container {
      align-items: flex-start !important;
    }
  }
}
.sitemap-box {
  width: 100%;
}
@media screen and (max-width: 450px) {
  .sitemap-box {
    width: 100%;
    text-align: center;
  }
}

.sitemap-box a {
  text-align: left;
  display: block;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 400;
  padding: 10px;
  color: whitesmoke;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
.sitemap-box a:hover {
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-color: white;
  text-underline-position: under;
  -ms-text-underline-position: below;
}

/* ==================================== Twitter =============================  */
.footer-twitter-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 10px;
  width: 25%;
}
@media screen and (max-width: 1100px) {
  .footer-twitter-box {
    align-items: center;
    margin-top: 75px;
  }
}

.twitter-icon-footer {
  fill: whitesmoke;
  width: 40px !important;
}
.twitter-icon-footer:hover {
  fill: #007aff;
}

/* .inner-footer-wrapper *{

@media screen and (max-width:950px){
  width:100%;
  max-width:100%;
  align-items:center;
  text-align:center;
    } 
} */
/* ---------------------- Wrapper content auf Index-Seite ---------------------- */
.content-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-around;
  padding: 2vw 0 100px 5%;
}
@media screen and (max-width: 900px) {
  .content-wrapper {
    flex-direction: column;
    padding: 4vw 5% 3vh 5%;
  }
}
@media screen and (max-width: 550px) {
  .content-wrapper {
    padding: 5vw 3% 0 3%;
  }
}

/* ---------------------- Hälften auf Index Seite ---------------------- */
.west-side {
  display: flex;
  flex-direction: column;
  margin-right: 5vw;
  max-width: 1000px;
}
@media screen and (max-width: 900px) {
  .west-side {
    margin: auto;
    max-width: 100%;
  }
}

.west-side p {
  max-width: 720px;
}

.west-side article {
  margin: 0 0 100px 0;
}
@media screen and (max-width: 900px) {
  .west-side article {
    margin: 0 0 10vh 0;
  }
}

.west-side article h2 {
  margin-bottom: 10px;
}
@media screen and (max-width: 500px) {
  .west-side article h2 {
    margin-bottom: 5px;
  }
}

.west-side article a h2 {
  margin-bottom: 10px;
}
@media screen and (max-width: 500px) {
  .west-side article a h2 {
    margin-bottom: 5px;
  }
}

.west-side article .date {
  margin-bottom: 15px;
}

/* ============================  Index-intro thang ============================ */
@media screen and (max-width: 900px) {
  .index-introduction-container-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 900px) {
  .index-introduction-container-inner > p {
    width: 100%;
    text-align: center;
  }
}

.index-introduction-container > h2 {
  margin-bottom: 50px;
}

.index-intro-hero {
  width: 100%;
  max-width: 450px;
  margin-bottom: 5vw;
}

.index-img-meter-link {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .index-img-meter-link {
    align-items: center;
  }
}

.index-truth-box {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  margin-top: 5vw;
  margin-bottom: 5vw;
  margin: 5vw 0 0vw 0 !important;
}
@media screen and (max-width: 1185px) {
  .index-truth-box {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 1000px) {
  .index-truth-box {
    margin: 10vw 0 0vw 0 !important;
  }
}

.index-truth-box > img {
  max-width: 60px;
  margin-left: 0 !important;
  margin-right: 10px !important;
}

.index-truth-box > .truth-quote {
  max-width: 400px;
}

/* ===============================  Sidebar   ====================================== */
#close-trigger {
  visibility: hidden;
  width: 0;
}
@media screen and (max-width: 1024px) {
  #close-trigger {
    visibility: visible;
    z-index: 100;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40px;
    height: 40px;
    color: #565656;
    background-color: #f1f1f1;
    cursor: pointer;
    border-radius: 20px;
    border: 1px solid white;
    box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.4), 0 1px 0 0 rgb(255, 255, 255);
  }
}

.close-trigger-icon {
  width: 14px;
  transition: 0.3s ease-out;
}
.close-trigger-icon:hover {
  transform: rotate(90deg);
  transition: 0.2s ease-in;
}

.sidebar {
  will-change: transition;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
  padding: 10px 30px 5vh 30px;
  margin-top: 130px;
  border-top: 1px solid white;
  border-left: 2px solid rgba(255, 255, 255, 0.3);
  border-top-left-radius: 6px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 6px;
  height: auto;
  max-height: 3200px;
  overflow-y: scroll;
  box-shadow: 0px 20px 30px 0 rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 1300px) {
  .sidebar {
    max-width: 500px;
  }
}
@media screen and (max-width: 1024px) {
  .sidebar {
    position: absolute;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    max-width: 0;
    max-height: 0;
    padding: 0;
    transition: linear 0.2s;
    top: 0;
    right: 0;
    margin-top: 400px;
  }
}

.sidebar-is-open {
  visibility: visible;
  overflow-y: scroll;
  position: absolute;
  margin-top: 0;
  top: 310px;
  right: 0;
  padding: 30px 30px 5vh 30px;
  z-index: 1;
  width: 500px;
  max-width: 100%;
  height: 7500px;
  max-height: 10000px;
  overflow: scroll;
  opacity: 1;
  transition: width height cubic-bezier(0, 0.22, 0.97, 0.17) 0.3s;
  border-top-left-radius: 6px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 6px;
  background-color: white;
  background-image: url("../img/soft-white-paper.png");
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.75);
}
@media screen and (max-width: 500px) {
  .sidebar-is-open {
    max-width: 90%;
  }
}

.sidebar section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 20px 0;
}
@media screen and (max-width: 900px) {
  .sidebar section {
    padding: 10px 0 10px 0;
  }
}

@media screen and (max-width: 900px) {
  .sidebar section h2 {
    text-align: center;
  }
}

.sidebar section:after {
  content: "";
  margin: 30px 30px 0;
  height: 1px;
  width: 100%;
  background: #444;
  background: linear-gradient(to right, transparent 0%, #444 50%, transparent 100%);
}
@media screen and (max-width: 900px) {
  .sidebar section:after {
    margin: 20px 0 20px 0;
    max-width: 500px;
  }
}

.sidebar-liste {
  width: 100%;
}

.kto-liste {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.kto-item {
  font-size: 1.8rem;
  font-weight: 400;
  color: #565656;
  margin: 5px 0 5px 0;
}

.kto-item-span {
  color: #424242;
  font-weight: 500;
}

.news-and-links {
  margin-top: 2vw;
  padding: 20px;
}

/* ================= Index-BS-O-Meter ===================== */
.index-bs-o-meter-wrapper {
  margin: 0 0 20px 0;
}

.index-bs-o-meter-wrapper > a {
  display: block;
}

.index-bs-o-title {
  width: 100%;
  max-width: 350px;
  margin: auto;
  display: block;
}

#index-bs-o-product {
  width: 100%;
  max-width: 222px;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.25));
  transition: ease-in 0.2s;
}
#index-bs-o-product:hover {
  transform: scale(1.01) translateY(-3px);
  transition: ease-out 0.3s;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.25));
}
@media screen and (max-width: 400px) {
  #index-bs-o-product {
    max-width: 200px;
  }
}

/* ==============  GRID ==================== */
.grid-wrapper {
  padding: 5vw 5vw 5vw 5vw;
}
@media screen and (max-width: 500px) {
  .grid-wrapper {
    padding: 5vw 3% 5vw 3%;
  }
}

.grid-container {
  margin-top: 30px;
  margin-bottom: 7vw;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
@media screen and (max-width: 1500px) {
  .grid-container {
    margin-bottom: 10vw;
  }
}

@supports (display: grid) {
  .grid-container {
    display: grid;
    grid-gap: 50px;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  }
  @media screen and (max-width: 500px) {
    .grid-container {
      grid-template-columns: minmax(300px, 1fr);
      grid-gap: 25px;
    }
  }
}
/* ==============  Wrapper ==================== */
.page-wrap {
  margin: auto;
  width: 100%;
  max-width: 1000px;
  padding: 80px 3% 5vw 3%;
}
@media screen and (max-width: 1000px) {
  .page-wrap {
    padding: 7vw 3% 3vw 3%;
  }
}

.wrapper {
  display: flex;
  flex-direction: column;
  margin: auto;
  width: 100%;
  max-width: 1000px;
  padding: 80px 3% 5vw 3%;
}
@media screen and (max-width: 1000px) {
  .wrapper {
    padding: 7vw 3% 3vw 3%;
  }
}

.section__articles--centered {
  width: 100%;
  margin-top: 50px;
  margin-bottom: 20vw;
}
@media screen and (max-width: 1000px) {
  .section__articles--centered {
    margin-top: 2vw;
  }
}

.section__articles--centered > article {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 100px 0;
}

.section__articles--centered h2 {
  text-align: center;
  font-size: 3.5rem;
}
@media screen and (max-width: 850px) {
  .section__articles--centered h2 {
    font-size: 3rem;
  }
}

.section__articles--centered h3 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.section__articles--centered .date {
  text-align: center;
}

.section__articles--centered figure {
  width: 100%;
  margin-top: 0px;
}

.section__articles--centered figcaption {
  margin-bottom: 0;
}

.section__articles--centered p {
  margin-bottom: 3rem;
}

/* ==========================  new Spacing   ===========================  */
.new-spacing p {
  margin-bottom: 3rem;
}

.new-spacing h3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.post-meta-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

/* ==========================   Wrapper und Container   ===========================  */
.text-block {
  margin: 50px 0 50px 0;
}

.text-block p {
  margin: 0 0 3rem 0;
}

.action-wrapper {
  width: 100%;
  padding: 0 5% 0 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3vw;
  margin-bottom: 5vw;
}

.simple-page-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 3% 90vh 3%;
}

.tube-of-content {
  margin: auto;
  display: flex;
  flex-direction: column;
  padding: 5vw 3% 0px 3%;
  max-width: 1200px;
}

.senkrecht-center {
  margin: auto;
  display: flex;
  flex-direction: column;
  max-width: 800px;
  padding: 5vw 3% 0 3%;
}
@media screen and (max-width: 1000px) {
  .senkrecht-center {
    padding: 7vw 3% 3vw 3%;
  }
}

.senkrecht-center article {
  margin: 0 0 100px 0;
}

.senkrecht-center article a h1 {
  text-align: center;
}

.inner-wrapper {
  align-self: center;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 800px;
  margin-bottom: 5vh;
}

.intro-studien {
  margin-bottom: 50px;
}

.container {
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 5vh;
}

/* ==========================   waagerecht   ===========================  */
.horizontal {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 10% 5vw 10%;
}
@media screen and (max-width: 800px) {
  .horizontal {
    padding: 20px 0 0 0;
  }
}

.spalten-container {
  max-width: 1200px;
  width: 100%;
  align-self: center;
  display: flex;
  justify-content: space-between;
  margin-top: 2.5vw;
}
@media screen and (max-width: 1000px) {
  .spalten-container {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}

/* ==========================   Standard Artikel   ===========================  */
.standard-article {
  margin: 10px 0 5vw 0;
}

/* ==========================   Liste   ===========================  */
.liste {
  font-size: 1.7rem;
  color: #565656;
}

.liste li {
  margin: 0 0 7px 15px;
}

.faq-box {
  margin: 20px 0 20px;
}

.faq-box h3 {
  margin-bottom: 5px;
}

.disclaimer {
  margin: 3vw 0 3vw 0;
}
@media screen and (max-width: 500px) {
  .disclaimer {
    margin: 5vw 0 5vw 0;
  }
}

/* ==========================   Guest Post Seite Seite  ===========================  */
.guest-intro {
  margin-bottom: 3rem;
}

.guest-intro h1 {
  margin-bottom: 2rem;
}

.fence {
  margin-top: 50px;
  background: url(/img/fence.svg);
  background-repeat: repeat-x;
  background-size: 20px;
  padding: 50px 3vw 3vw 3vw;
}

.article-header {
  margin-bottom: 3rem;
}

.article-header h2 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.article-header .post-meta {
  font-size: 1.5rem;
  margin-bottom: 0rem;
}

.fence p {
  margin-bottom: 1.6rem;
}

.fence h1 {
  margin-top: 3rem;
}

/* ==========================   FAQ Seite  ===========================  */
.faq-container div {
  padding: 30px 50px 50px 50px;
  margin-bottom: 10px;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0px 2px 3px -1px rgba(0, 0, 0, 0.35);
  overflow-Y: scroll;
}
@media screen and (max-width: 500px) {
  .faq-container div {
    padding: 20px 20px 35px 20px;
  }
}

.faq-container div h2 {
  color: slategrey;
  text-transform: uppercase;
}

/* ==========================   Shop  ===========================  */
.shop-article h1 {
  text-transform: uppercase;
  text-align: center;
}

.shop-article h2 h4 p {
  text-align: center;
}

.shop-article img {
  display: block;
  min-width: 300px;
  max-width: 500px;
  margin: 3vw 0 3vw 0;
}

/* ==========================   Adresse-Info "Termine"  ===========================  */
ul.adress-info {
  font-size: 1.7rem;
  color: #565656;
  margin-top: 20px;
}

.adress-info li {
  margin: 0 0 7px 0;
}

.termin-date {
  margin-bottom: 10px;
}

.adress-info h5 {
  color: #424242;
  font-size: 2rem;
  margin-bottom: 5px;
}

/* -----------------  Boxring Ding   --------------- */
.box-ring {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-around;
  margin: 4vw 0 3vw 0;
  cursor: pointer;
}
@media screen and (max-width: 720px) {
  .box-ring {
    flex-direction: column;
  }
}

.ring-ecke {
  display: flex;
  flex-direction: column;
  text-align: center;
}
@media screen and (max-width: 720px) {
  .ring-ecke {
    margin: 2vw 0 2vw 0;
  }
}

/* ==========================   Termine "vorbei"  ===========================  */
.termine-vorbei {
  border-top: 2px dashed grey;
  opacity: 0.7;
}

/* ============================ Bienen Blog Post ============================ */
#motionPath {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* border:2px solid green;  */
  height: 0;
  max-width: 50vw;
}

.motion-path {
  width: 50%;
  height: 0;
}

.bee {
  display: block;
  width: 40px;
  height: 40px;
}

/* --------------    Bienen      ------------------   */
.bee-box-one {
  position: relative;
  transform: translate(-120px);
  transform: rotate(0deg);
}

/*  .bee-box-one .bee{
   border:1px solid red;
 } */
.bee-box-two {
  position: relative;
  left: 80%;
  top: 0;
  transform: rotate(50deg);
}

/*  .bee-box-two .bee{
   border:1px solid yellow;
 } */
.bee-box-three {
  transform: rotate(50deg);
}

/* .bee-box-three .bee{
  border:1px solid green;
} */
.bee-box-four {
  position: absolute;
  transform: rotate(-50deg);
}

/* .bee-box-four .bee{
    border:1px solid lightblue;
} */
.bee-box-five {
  position: absolute;
  transform: rotate(50deg);
  margin-left: 15vw;
}

/* .bee-box-five .bee{
  border:1px solid pink;
} */
.bee-box-seven {
  position: absolute;
  transform: rotate(300deg);
  margin-left: 15vw;
}

.bee-box-eight {
  position: absolute;
  transform: rotate(180deg);
  margin-right: 15vw;
}

#beenstock {
  margin-top: 0;
}

/* ============================ Presse Seite ============================ */
.press-box {
  margin-bottom: 30px;
}

/* ============================ Blog Seiten ============================ */
.blog-teaser {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
  width: 100%;
  max-width: 700px;
  margin-bottom: 100px;
}
@media screen and (max-width: 800px) {
  .blog-teaser {
    margin-bottom: 10vh;
  }
}
@media screen and (max-width: 500px) {
  .blog-teaser {
    margin-bottom: 5vh;
  }
}

.blog-article-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
  width: 100%;
  max-width: 800px;
  margin-bottom: 35px;
}
@media screen and (max-width: 800px) {
  .blog-article-header {
    margin-bottom: 3vh;
  }
}

.blog-article {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
  width: 100%;
  max-width: 800px;
  margin-bottom: 100px;
}
@media screen and (max-width: 800px) {
  .blog-article {
    margin-bottom: 10vh;
  }
}
@media screen and (max-width: 500px) {
  .blog-article {
    margin-bottom: 5vh;
  }
}

span.red-text {
  color: red;
}

span.gold {
  color: goldenrod;
}

.commi {
  text-align: left;
  font-size: 6rem;
  line-height: 1;
}

/* ============================ Spenden Seite ============================ */
.spalte-links {
  width: 70%;
  max-width: 550px;
}
@media screen and (max-width: 1000px) {
  .spalte-links {
    width: 90%;
    max-width: 90%;
  }
}

.spalte-rechts {
  width: 30%;
}
@media screen and (max-width: 1000px) {
  .spalte-rechts {
    width: 90%;
    margin-top: 5vw;
  }
}

.article-spalte-links {
  margin-top: 30px;
}

#t-kto {
  margin-top: 0;
}

.halb-halb {
  display: flex;
  flex-direction: column;
  width: 50%;
  padding: 20px;
}
@media screen and (max-width: 950px) {
  .halb-halb {
    width: 100%;
    padding: 10px;
  }
}

.under-halb {
  text-align: center;
}

@media screen and (max-width: 800px) {
  .halb-halb:after {
    content: "";
    margin: 60px 0 0px 0;
    height: 1px;
    width: 100%;
    background: #444;
    background: linear-gradient(to right, transparent 0%, #444 50%, transparent 100%);
  }
}
.intro-treuhand {
  margin-bottom: 50px;
}

.container-spenden-page h2 {
  text-align: center;
}

.container-spenden-page article {
  margin-bottom: 40px;
}

.container-spenden-page article:nth-child(3) {
  margin-bottom: 0px;
}

/* ============================ Artikel Seite ============================ */
/* ============================ News Seite ============================ */
.news-box {
  margin: 10px 0 35px 0;
}

/* ============================ Kontakt Seite ============================ */
.contact-container {
  display: flex;
  margin-top: 3vw;
}
@media screen and (max-width: 800px) {
  .contact-container {
    flex-direction: column;
  }
}

.kontakt-daten {
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 500px;
}

/* .kontakt-daten h2{
  text-align:center;
@media screen and (max-width:800px){
  width:100%;
  text-align:left;
}

} */
.an-schr-ift {
  font-size: 2rem;
  color: #565656;
}

.an-schr-ift li {
  margin: 0 0 5px 0;
}

/* =================  FAQ Details Module  ================ */
summary {
  font-family: "Asap-Regular", sans-serif;
  font-size: 1.9rem;
  font-weight: 400;
  color: #565656;
  line-height: 1.6;
  width: 100%;
  max-width: 700px;
  margin-bottom: 10px;
}

summary > h4 {
  font-family: "Asap-Medium";
  font-weight: 500;
  display: inline;
}

details {
  font-family: "Asap-Regular", sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: #565656;
  line-height: 1.6;
  width: 100%;
  max-width: 700px;
}

details > a {
  font-size: 1.7rem !important;
}

/* =================  Gotcha  ================ */
.gotcha-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gotcha-container h2 {
  font-size: 3rem;
  text-align: center;
  max-width: 100%;
}

#image-upload-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 0 0;
  margin-bottom: 20px;
}

#upload-box {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  max-width: 400px;
  padding: 20px;
}

#upload-box img {
  width: 100%;
  max-width: 300px;
  margin: auto;
  margin-bottom: 20px;
  animation: bulge 2s cubic-bezier(0.2, 0, 0.1, 1) 0s infinite;
}
@media screen and (max-width: 500px) {
  #upload-box img {
    max-width: 150px;
  }
}

#upload-box p {
  text-align: center;
}

#preview {
  border-top: 1px solid #b9b9b9;
  border-right: 1px solid lightgrey;
  border-bottom: 1px solid white;
  border-left: 1px solid lightgrey;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  transition: ease-in 0.1s;
}

#preview > ol {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url("/img/ps_neutral.png");
  border-radius: 4px;
  border-top: 1px solid #b9b9b9;
  border-right: 1px solid lightgrey;
  border-bottom: 1px solid white;
  border-left: 1px solid lightgrey;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: ease-in 0.1s;
  padding: 5%;
}

#preview ol li {
  margin: 10px 0 10px 0;
}

#preview > p {
  font-size: 1.6rem;
}

#preview ol > li {
  font-size: 1.2rem;
}

#preview ol > li > p {
  font-size: 1rem;
}

#camera-foto-select {
  text-align: center;
  max-width: 200px;
  padding: 10px;
  margin: 10px 0 10px 0;
  background-color: white;
  border: 1px solid #adadad;
  border-radius: 6px;
  font-size: 1.2rem;
  color: #565656;
  cursor: pointer;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.15);
  transition: ease-out 0.2s;
}
#camera-foto-select:active {
  box-shadow: 0 0px 2px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(1px);
  transition: ease-in 0.2s;
  background-color: transparent;
}

#gotcha-submit-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#gotcha-submit-btn {
  margin: auto;
  align-self: center;
  font-weight: 700;
  font-size: 2.6rem;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.35);
  text-align: center;
  /*   letter-spacing: 0.5px; */
  color: rgb(255, 255, 255);
  width: 120px;
  height: 50px;
  margin: 40px auto 0;
  padding-top: 2px;
  padding-bottom: 5px;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.5);
  border-style: solid;
  border-radius: 4px;
  background: rgb(44, 222, 0);
  background: linear-gradient(180deg, rgb(44, 222, 0) 0%, rgb(37, 187, 0) 100%) rgb(41, 207, 0);
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.5) inset, 0 1px 1px rgba(255, 255, 255, 0.79) inset, 0 -1px 1px rgba(0, 0, 0, 0.2) inset, 0 1px 4px -1px rgba(0, 0, 0, 0.15), 0 2px 6px -1px rgba(0, 0, 0, 0.3);
  resize: none;
  transition: ease-out 0.3s;
}
#gotcha-submit-btn:hover {
  transition: ease-in 0.2s;
  transform: translateY(-1px);
  cursor: pointer;
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.5) inset, 0 1px 1px rgba(255, 255, 255, 0.79) inset, 0 -1px 1px rgba(0, 0, 0, 0.2) inset, 0 1px 6px -1px rgba(0, 0, 0, 0.35), 0 5px 10px -1px rgba(0, 0, 0, 0.2);
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.55);
}
#gotcha-submit-btn:active {
  transition: ease-in 0.2s;
  transform: translateY(3px);
  background: linear-gradient(180deg, rgb(41, 207, 0) 0%, rgb(37, 187, 0) 100%) rgb(41, 207, 0);
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.5) inset, 0 2px 5px rgba(0, 0, 0, 0.15), 0 1px 1px rgba(255, 255, 255, 0.79) inset, 0 -1px 1px rgba(0, 0, 0, 0.05) inset, 0 1px 1px rgba(0, 0, 0, 0.1);
}

#app-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 750px;
}
@media screen and (max-width: 800px) {
  #app-form {
    align-self: center;
    width: 100%;
    margin-top: 3vw;
  }
}
@media screen and (max-width: 500px) {
  #app-form {
    margin-top: 6vw;
  }
}

label {
  font-weight: 400;
  font-size: 1.2rem;
  color: #707070;
  line-height: 1.65;
  margin-left: 5px;
}
@media screen and (max-width: 500px) {
  label {
    /*       font-size:1.3rem; */
    font-weight: 500;
  }
}

input.form-control {
  margin: 0 0 15px 0;
  height: 40px;
  padding: 0 0 0 10px;
  font-weight: 400;
  font-size: 1.2rem;
  color: #363636;
  background-color: #fdfdfd;
  border: 1px solid;
  border-radius: 4px;
  border-color: rgba(0, 0, 0, 0.3) rgba(0, 0, 0, 0.25) rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) inset;
}
@media screen and (max-width: 500px) {
  input.form-control {
    font-size: 1.6rem;
  }
}

#message {
  display: block;
  padding: 5px 0 5px 10px;
  max-width: 100%;
  min-height: 150px;
  color: #363636;
  background-color: #fdfdfd;
  font-size: 1.2rem;
  line-height: 1.65;
  border: 1px solid;
  border-radius: 4px;
  border-color: rgba(0, 0, 0, 0.3) rgba(0, 0, 0, 0.25) rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) inset;
}
@media screen and (max-width: 500px) {
  #message {
    font-size: 1.6rem;
  }
}

/* =================  End Gotcha  ================ */
.canvas-wrapper {
  position: relative;
  padding-bottom: 56.25%;
}

#headliner {
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 99;
  transform: translateY(10vw);
}

#headliner h4 {
  font-size: 3rem;
  color: white;
  width: 100%;
  max-width: 100%;
}

#headliner p {
  margin-top: 10px;
  font-size: 1.8rem;
  color: white;
  max-width: 100%;
  width: 100%;
}

#headliner a {
  display: inline-block;
  margin-top: 10px;
  font-size: 1.6rem;
  color: white;
  max-width: 50px;
  width: 100%;
}

#fireworks {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #241d33 0%, #171930 51%, #091119 100%);
  opacity: 1;
}

/* ============================ fireworks index =================================== */
.call-to-klick {
  margin-top: 5vw;
  position: absolute;
  text-align: center;
  width: 100%;
}

.call-to-klick h1 {
  color: white;
  font-size: 10vw;
  line-height: 1;
  padding: 0;
  margin: 0;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .call-to-klick h1 {
    font-size: 12vw;
  }
}
@media screen and (max-width: 600px) {
  .call-to-klick h1 {
    font-size: 15vw;
  }
}

.call-to-klick p {
  width: 100%;
  max-width: 100%;
  font-size: 3rem;
  text-align: center;
  color: white;
  margin-top: 50px;
}
@media screen and (max-width: 1000px) {
  .call-to-klick p {
    font-size: 4vw;
    margin-top: 3vw;
  }
}
@media screen and (max-width: 600px) {
  .call-to-klick p {
    font-size: 6vw;
  }
}

.call-to-klick .small-text {
  font-size: 2rem;
  margin-top: 0;
}

.call-to-klick a {
  color: white;
  padding: 20px 5px 3px 5px;
}
.call-to-klick a:hover {
  color: #e74c3c;
  border-bottom: 2px solid #e74c3c;
}

.fireworks-bg {
  background: linear-gradient(to bottom, #241d33 0%, #171930 51%, #091119 100%);
}

#countdown {
  font-family: Consolas, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace;
  background-color: black;
  color: white;
  font-size: 2.5rem;
  padding: 5px 7px 5px 7px;
  display: inline;
  border-radius: 4px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 600px) {
  #countdown {
    font-size: 4.5vw;
    font-weight: bold;
  }
}

/* ============================ Status Seite ============================ */
.status-box {
  max-width: 700px;
  margin: 30px 0 30px 0;
}

.status-color {
  min-width: 15px;
  min-height: 15px;
  max-width: 15px;
  max-height: 15px;
  flex-shrink: 0;
  border-radius: 30px;
  margin-right: 10px;
  margin-top: 7px;
}

#darkred {
  background-color: #CA3543;
}

#red {
  background-color: #d91118;
}

#red-opacity {
  background-color: rgba(217, 17, 24, 0.5);
}

#lightslategrey {
  background-color: lightslategrey;
}

#grey {
  background-color: lightgrey;
}

#black {
  background-image: linear-gradient(0deg, #0a000f 0%, #565656 100%);
}

#green-light {
  background-color: #2fdf49;
}

#green-pale {
  background-color: #b8e4a9;
}

#blue-lighter {
  background-color: #7ccdff;
}

#blue {
  background-color: #29a5f3;
}

.status-label {
  display: flex;
}

.status-label h3 {
  width: auto;
  font-size: 1.9rem;
  line-height: 1.8;
  margin-right: 10px;
}

/* ====================   Video-box   ======================= */
.vitscho {
  width: 100%;
  max-width: 725px;
}

.daves-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  margin: 3vw 0 1vw 0;
}

/* ====================   Cookies Box | Matomo   ======================= */
#cookie-container {
  z-index: 9999999;
  position: fixed;
  width: 350px;
  bottom: 10px;
  left: 3vw;
  background-color: white;
  color: whitesmoke;
  border-radius: 8px;
  border-top: 1px solid white;
  border-left: 1px solid lightgrey;
  border-left: 1px solid lightgrey;
  border-left: 1px solid lightgrey;
  padding: 0 20px 20px 20px;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.4);
}

.inner-cookie-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cookie-offer {
  width: 100%;
  text-align: center;
  font-size: 2rem !important;
  padding-top: 10px;
}

#cookie-container p {
  font-size: 1.6rem;
  width: 90%;
  margin: 10px 0 10px 0;
}

#cookie-container h3 {
  width: 90%;
  text-align: center;
}

.keks {
  font-size: 7rem;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.35));
}

.vanish {
  display: none;
  transition: 2s;
}

.decide-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 50px;
  padding: 0 0 5px 0;
  margin: auto;
  margin-top: 15px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: bold;
  color: #565656;
  text-transform: uppercase;
  text-align: center;
}

#ok {
  color: #488eff;
  border-top: 1px solid #f3f3f3;
  border-right: 1px solid #dcdcdc;
  border-bottom: 1px solid #c3c3c3;
  border-left: 1px solid #dcdcdc;
  background-image: linear-gradient(-180deg, #fefdeb 0%, #fffde8 100%);
  box-shadow: inset 0 1px 0 0 #ffffff, inset 0 -3px 2px 0 rgba(199, 167, 0, 0.25), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
  transition: ease-out 0.2s;
}
#ok:hover {
  color: #3c7bd6;
  box-shadow: inset 0 1px 0 0 #ffffff, inset 0 -3px 2px 0 rgba(199, 167, 0, 0.25), 0 6px 8px -4px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
  transition: ease-in 0.1s;
  border-top: 1px solid #f7f7f7;
  border-bottom: 1px solid #c3c3c3;
}

#nicht-ok {
  color: red;
  border-top: 1px solid #f3f3f3;
  border-right: 1px solid #dcdcdc;
  border-bottom: 1px solid #ababab;
  border-left: 1px solid #dcdcdc;
  box-shadow: inset 0 -3px 1px 0 rgba(205, 205, 205, 0.3), 0 2px 6px -2px rgba(0, 0, 0, 0.4);
}
#nicht-ok:hover {
  color: whitesmoke;
  background-color: #3a3a3a;
  box-shadow: inset 0 -3px 1px 0 rgb(0, 0, 0), 0 2px 6px -2px rgba(0, 0, 0, 0.4);
}

/* ============================ Matomo Opt-Out iFrame =================================== */
#matomo {
  font-family: "Helvetica", sans-serif;
  color: #565656;
  font-size: 1.9rem;
  width: 75%;
  height: 350px;
  overflow: scroll;
  padding: 10px 5px 0 5px;
  border-top: 1px solid #919090;
  border-left: 1px solid #bdbdbd;
  border-bottom: 1px solid #f0f0f0;
  border-right: 1px solid #bdbdbd;
  border-radius: 8px;
  background: #eef4f7;
  box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.25), 0 2px 0 0 rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 800px) {
  #matomo {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  #matomo {
    height: 450px;
  }
}
@media screen and (max-width: 400px) {
  #matomo {
    height: 520px;
  }
}

/* ============================ Bullet Liste =================================== */
.bullet-list {
  list-style: disc;
  list-style-position: inside;
  margin-left: 10px;
  line-height: 2;
  font-size: 1.7rem;
  color: #565656;
}

/* ============================ Kasten mit zusatzinfos Blog Posts =================================== */
.kasten {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 3vw;
  padding: 3vw 30px 3vw 30px;
  border: 1px dashed grey;
  border-radius: 6px;
  background-color: #f2f3f5;
}
@media screen and (max-width: 600px) {
  .kasten {
    padding: 5vw 20px 5vw 20px;
  }
}

/* ============================ Play Knopf für Soundeffekt =================================== */
.play-btn {
  width: 60px;
  height: auto;
}

/* ============================ fake details Thing =================================== */
blockquote:before {
  position: absolute;
  font-family: "Georgia", cursive;
  color: #ccc;
  content: open-quote;
  font-size: 10rem;
  margin-right: 0.25rem;
  margin-top: -7rem;
  vertical-align: 0rem;
  pointer-events: none;
}

blockquote {
  pointer-events: none !important;
  display: inline-block;
  font-family: "ASAP", sans-serif;
  font-size: 1.7rem;
  color: #565656;
  font-weight: 400;
  word-wrap: break-word;
  line-height: 1.6;
  width: 100%;
  max-width: 700px;
  align-self: center;
  background: #f9f9f9;
  border-left: 10px solid #ccc;
  padding: 2rem 2rem 1.5rem 2rem;
  margin: 2.5rem 0 2rem 0;
  quotes: "“" "”" "‘" "’";
  box-shadow: 0px 2px 3px -1px rgba(0, 0, 0, 0.35);
}

blockquote:after {
  content: no-close-quote;
  pointer-events: none;
}

.big-blockquote {
  display: inline-block;
  font-family: "Georgia", cursiv;
  font-size: 5vw;
  color: black;
  font-weight: bold;
  word-wrap: break-word;
  line-height: 1.6;
  max-width: 100vw;
  align-self: center;
  border-left: none;
  padding: 2rem 2rem 1.5rem 2rem;
  margin: 2.5rem 0 2rem 0;
  quotes: "“" "”" "‘" "’";
  box-shadow: none;
}

.big-blockquote:before {
  position: absolute;
  font-family: "Georgia", cursive;
  color: black;
  content: open-quote;
  font-size: 10rem;
  margin-right: 0.25rem;
  margin-top: -10rem;
  vertical-align: 0rem;
}

/* ============================ Ribbon =================================== */
/*
.red{
    color:white;
    text-shadow: 0 -1px 1px rgba(0,0,0,0.5) ;
    background-color:#e74c3c;
    background-image: linear-gradient(top, #e74c3c, #B2362B);
}

*/
/* .green{
    background-color: #BFDC7A;
    background-image: linear-gradient(top, #b6eb8b, #7fc431);
} */
.grey {
  background-color: lightblue;
  background-image: linear-gradient(-180deg, #eceff2 0%, #c4c8cc 100%);
}

/* ============================ Breaking News Dodad =================================== */
.hot-dodad {
  font-size: 1.9rem;
  max-width: 220px;
  font-weight: 500;
  background-color: red;
  color: #f7f7f7;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 8px -3px rgba(116, 0, 0, 0.42);
  padding: 5px 0 8px 0;
  display: inline-block;
}

.dodad {
  font-size: 1.9rem;
  max-width: 220px;
  font-weight: 500;
  background-color: red;
  color: white;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 8px -4px rgba(112, 0, 0, 0.45);
  border-radius: 3px;
  padding: 4px 5px 6px 5px;
  margin-bottom: 10px;
  display: inline-block;
}

.small-dodad {
  font-size: 1.4rem;
  width: 80px;
  font-weight: 500;
  background-color: red;
  color: white;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 8px -4px rgba(112, 0, 0, 0.45);
  border-radius: 3px;
  padding: 5px 5px 7px 5px;
  margin-bottom: 10px;
}

.gruen {
  width: 80px;
  font-weight: 500;
  font-size: 1.9rem;
  color: white;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 8px -4px rgba(0, 85, 42, 0.45);
  background-image: linear-gradient(-180deg, #1dcb5e 7%, #00af41 100%);
  /*   border-bottom:2px solid rgb(0, 139, 51); */
  border-radius: 3px;
  padding: 5px 0 7px 0;
  margin-top: -5px;
  margin-bottom: 5px;
}

.small-gruen {
  display: inline-block;
  width: 60px;
  font-weight: 400;
  font-size: 1.9rem;
  color: white;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 8px -4px rgba(0, 85, 42, 0.45);
  background-image: linear-gradient(-180deg, #1dcb5e 7%, #00af41 100%);
  /*   border-bottom:2px solid rgb(0, 139, 51); */
  border-radius: 3px;
  padding: 0 0 2px 0;
  /*   margin-left: 10px; */
  margin-top: -5px;
  margin-bottom: 5px;
}

/* ============================ Turing Type Demo Message =================================== */
.achtung-wrapper {
  position: relative;
  margin-top: -50px;
  padding: 0 0 0 0;
}
@media screen and (max-width: 800px) {
  .achtung-wrapper {
    position: relative;
    margin-top: 0;
    width: 100%;
  }
}

.achtung-wrapper a.more-link {
  margin-bottom: 10px;
}

.turingtype-box {
  font-family: "Monaco", "Andale Mono", monospace;
  text-align: left;
  font-size: 1.8rem;
  font-weight: 400;
  color: #6b6b6b;
  line-height: 1.3;
  margin-bottom: 0;
  background-color: transparent;
  outline: none;
  border: none;
  padding: 0;
  width: 100%;
  height: 75px;
  resize: none;
}

/* ============================ Twitter Box =================================== */
.twitter-box {
  align-self: center;
  margin-top: 1vw;
  margin-bottom: 5vw;
  width: 90%;
  max-width: 800px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.35);
}

.twitter-box-index {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1vw;
  margin-bottom: 5vw;
  width: 100%;
  /*   box-shadow: 0 1px 3px 0 rgba(0,0,0,0.35); */
}

/* ============================ Tabelle in Artikel =================================== */
.article-table {
  width: 100%;
  max-width: 700px;
  margin: 0 0 0 0;
}

.article-table td {
  font-size: 1.6rem;
}

/* ============================ Tabelle in Sidebar =================================== */
.sidebar-table {
  width: 100%;
  margin-bottom: 25px;
}

.sidebar-table td {
  font-size: 1.6rem;
}

/* ============================ Tabelle =================================== */
table {
  margin: auto;
  font-size: 1.9rem;
  color: #565656;
  border-collapse: collapse;
}
@media screen and (max-width: 350px) {
  table {
    font-size: 1.7rem;
  }
}

thead {
  background-color: #e0e3e9;
}

tr {
  color: #4d5768;
}

td,
th {
  border: 1px solid rgb(209, 209, 209);
  padding: 0.5rem 1rem 0.5rem 1rem;
  max-height: 15px;
  /*   white-space: nowrap; */
  overflow-x: scroll;
  overflow-y: scroll;
}
@media screen and (max-width: 350px) {
  td,
  th {
    padding: 0.5rem;
  }
}

/* ============================ Tabelle Pooling =================================== */
.table-pooling {
  width: 90%;
  max-width: 650px;
  margin-top: 15px;
}

.table-pooling th {
  font-size: 1.7rem;
}

.table-pooling td {
  font-size: 1.7rem;
}
@media screen and (max-width: 460px) {
  .table-pooling td {
    font-size: 1.3rem;
  }
}

.table-pooling td:nth-child(4) {
  text-align: center;
}

.table-pooling .summe {
  text-align: center;
}

.table-pooling td,
.table-pooling th {
  border: 1px solid rgb(209, 209, 209);
  padding: 0.5rem;
  /*   white-space: nowrap; */
  overflow-x: scroll;
  overflow-y: scroll;
}

.table-pooling-eisbein {
  margin-top: 3vw;
  margin-bottom: 3vw;
}

.table-pooling-eisbein th {
  text-align: left;
  font-size: 1.7rem;
}

.table-pooling-eisbein td {
  text-align: center;
}

/* ============================ Tabelle auf Helden Seite =================================== */
.table-helden-page {
  width: 90%;
  max-width: 650px;
  margin-top: 15px;
}
@media screen and (max-width: 800px) {
  .table-helden-page {
    margin-top: 2vw;
  }
}

.table-helden-page td:nth-child(2) {
  padding-left: 20px;
  max-width: 150px;
}
@media screen and (max-width: 500px) {
  .table-helden-page td:nth-child(2) {
    padding-left: 0.5rem;
  }
}

.table-helden-page td:nth-child(1),
.table-helden-page td:nth-child(3) {
  max-width: 100px;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .table-helden-page td:nth-child(1),
  .table-helden-page td:nth-child(3) {
    width: initial;
    max-width: 50px;
  }
}

/* ============================ Banking Box =================================== */
.banking-box {
  display: flex;
  margin: 0 0 10px 0;
}

.external-link-icon {
  width: 20px;
  fill: #565656;
  margin: 2px 0 0 10px;
}
.external-link-icon:hover {
  fill: #3c7bd6;
}

/* ============================ Dropbox Dings =================================== */
.datei-module {
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
  margin-top: 20px;
  margin-bottom: 10px;
  border-top: 1px solid #919090;
  border-left: 1px solid #bdbdbd;
  border-bottom: 1px solid #f0f0f0;
  border-right: 1px solid #bdbdbd;
  border-radius: 8px;
  background: #eef4f7;
  box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.25), 0 2px 0 0 rgba(255, 255, 255, 0.9);
}

.dropbox-icon {
  width: 100px;
  fill: lightslategrey;
}
.dropbox-icon:hover {
  fill: #3276dd;
}

/* ============================ Checklist  =================================== */
.checklist {
  font-size: 1.9rem;
  color: #565656;
  margin: 25px 0 35px 0;
  line-height: 1.6;
  width: 100%;
  max-width: 700px;
}
@media screen and (max-width: 400px) {
  .checklist {
    font-size: 1.7rem;
  }
}

.checklist li {
  margin: 5px 0 10px 0;
}

/* ============================ Search Form  =================================== */
@media screen and (max-width: 500px) {
  .search-form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.search-form input {
  margin: 0 0 15px 0;
  height: 40px;
  padding: 0 0 0 10px;
  font-family: "ASAP", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  color: #363636;
  border-radius: 4px;
  border: 1px solid;
  border-radius: 4px;
  border-color: rgba(0, 0, 0, 0.3) rgba(0, 0, 0, 0.25) rgba(0, 0, 0, 0.25);
}
.search-form input:focus {
  border: 2px solid;
  border-color: #9AC9F9;
}

.search-form button {
  flex-shrink: 0;
  font-family: "ASAP", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #565656;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  cursor: pointer;
  padding: 5px 7px 8px 7px;
  margin-left: 10px;
  background-color: #fdfdfd;
  border-radius: 4px;
  text-align: center;
  background-image: linear-gradient(to bottom, white, #e4e4e9);
  box-shadow: 0 7px 10px -3px rgba(45, 35, 66, 0.2), 0 2px 4px 0 rgba(45, 35, 66, 0.4), inset 0 -3px 0 0 #b4b6c9;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
  will-change: box-shadow, transform;
  background: linear-gradient(#fff, #e4e4e9) no-repeat;
}
.search-form button:hover {
  box-shadow: 0 11px 16px -10px rgba(45, 35, 66, 0.3), 0 4px 5px 0 rgba(45, 35, 66, 0.4), inset 0 -3px 0 0 #b4b6c9;
  transform: translateY(-2px);
}
.search-form button:active {
  box-shadow: 0 1px 2px 0 rgba(45, 35, 66, 0.6), inset 0 -3px 0 0 #b4b6c9;
  transform: translateY(2px);
}

/* ============================ Mail Form  =================================== */
.contact-form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
}
@media screen and (max-width: 800px) {
  .contact-form {
    align-self: center;
    width: 100%;
    margin-top: 3vw;
  }
}
@media screen and (max-width: 500px) {
  .contact-form {
    margin-top: 6vw;
  }
}

label {
  font-family: "ASAP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #707070;
  line-height: 1.65;
  margin-left: 5px;
}
@media screen and (max-width: 500px) {
  label {
    /*       font-size:1.3rem; */
    font-weight: 500;
  }
}

input.form-control {
  margin: 0 0 15px 0;
  height: 40px;
  padding: 0 0 0 10px;
  font-family: "ASAP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #363636;
  background-color: #fdfdfd;
  border: 1px solid;
  border-radius: 4px;
  border-color: rgba(0, 0, 0, 0.3) rgba(0, 0, 0, 0.25) rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) inset;
}
@media screen and (max-width: 500px) {
  input.form-control {
    font-size: 1.6rem;
  }
}

#message {
  display: block;
  padding: 5px 0 5px 10px;
  max-width: 100%;
  min-height: 50px;
  font-family: "ASAP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #363636;
  background-color: #fdfdfd;
  line-height: 1.65;
  border: 1px solid;
  border-radius: 4px;
  border-color: rgba(0, 0, 0, 0.3) rgba(0, 0, 0, 0.25) rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) inset;
}
@media screen and (max-width: 500px) {
  #message {
    font-size: 1.6rem;
  }
}

/* ============================ Parsley =================================== */
input.parsley-success,
textarea.parsley-success {
  color: #565656;
  background-color: white;
}

input.parsley-error,
textarea.parsley-error {
  color: rgb(216, 71, 71);
  background-color: white;
  border: 2px solid rgb(216, 71, 71);
}

.parsley-errors-list {
  margin: 0 0 15px 5px;
  padding: 0;
  list-style-type: none;
  font-size: 1.4rem;
  line-height: 1.65rem;
  color: #565656;
  opacity: 0;
  transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
}

.parsley-errors-list.filled {
  opacity: 1;
}

.send-btn {
  font-family: "ASAP", sans-serif;
  font-weight: 700;
  font-size: 2.3rem;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.35);
  text-align: center;
  /*   letter-spacing: 0.5px; */
  color: rgb(255, 255, 255);
  width: 150px;
  height: 50px;
  margin: 40px auto 0;
  padding-top: 2px;
  padding-bottom: 5px;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.5);
  border-style: solid;
  border-radius: 4px;
  background: rgb(44, 222, 0);
  background: linear-gradient(180deg, rgb(44, 222, 0) 0%, rgb(37, 187, 0) 100%) rgb(41, 207, 0);
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.5) inset, 0 1px 1px rgba(255, 255, 255, 0.79) inset, 0 -1px 1px rgba(0, 0, 0, 0.2) inset, 0 1px 4px -1px rgba(0, 0, 0, 0.15), 0 2px 6px -1px rgba(0, 0, 0, 0.3);
  resize: none;
  transition: ease-out 0.3s;
}
.send-btn:hover {
  transition: ease-in 0.2s;
  transform: translateY(-1px);
  cursor: pointer;
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.5) inset, 0 1px 1px rgba(255, 255, 255, 0.79) inset, 0 -1px 1px rgba(0, 0, 0, 0.2) inset, 0 1px 6px -1px rgba(0, 0, 0, 0.35), 0 5px 10px -1px rgba(0, 0, 0, 0.2);
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.55);
}
.send-btn:active {
  transition: ease-in 0.2s;
  transform: translateY(3px);
  background: linear-gradient(180deg, rgb(41, 207, 0) 0%, rgb(37, 187, 0) 100%) rgb(41, 207, 0);
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.5) inset, 0 2px 5px rgba(0, 0, 0, 0.15), 0 1px 1px rgba(255, 255, 255, 0.79) inset, 0 -1px 1px rgba(0, 0, 0, 0.05) inset, 0 1px 1px rgba(0, 0, 0, 0.1);
}

.reminder {
  margin-left: 5px;
  font-size: 1.6rem;
}
@media screen and (max-width: 500px) {
  .reminder {
    font-size: 1.3rem;
  }
}

/* ============================ Index Hero Video =================================== */
.index-video-container {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90%;
  /*   max-width:800px; */
  margin-top: 30px;
  margin-bottom: 30px;
}

.index-video {
  /*   margin:auto; */
  width: 100%;
  /*   max-width:1900px; */
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.5);
}

.small-video {
  /*   margin:auto; */
  width: 100%;
  max-width: 450px;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.5);
}

/* ============================ Video =================================== */
.video-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 20px 0 30px 0;
}

.video {
  margin: auto;
  align-self: center;
  width: 100%;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.5);
}

/* ============================ Pagination =================================== */
.pagination-container {
  align-self: center;
  display: flex;
  justify-content: space-between;
  width: 90%;
  max-width: 700px;
  margin: 3vw 0 0 0;
}
@media screen and (max-width: 800px) {
  .pagination-container {
    width: 90%;
    margin: 2vw 0 5vh 0;
  }
}
@media screen and (max-width: 500px) {
  .pagination-container {
    width: 100%;
  }
}

/* =======================   Easter Egg Menue Thing =========================  */
.menue {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 17px 15px;
  width: 85px;
  height: 110px;
  white-space: nowrap;
  color: #464448;
  overflow: hidden;
  background-color: #4fcef1;
  background-image: radial-gradient(#fff 15%, transparent 16%), radial-gradient(#fff 15%, transparent 16%);
  background-position: 0 0, 20px 20px;
  background-size: 50px 50px;
  border-radius: 50%/60% 60% 40% 40%;
  box-shadow: -5px 8px 5px -2px rgba(0, 0, 0, 0.25), inset 5px -5px 5px #45acc9;
  transition: 0.2s;
  transform: rotate(-5deg);
}
@media screen and (max-width: 600px) {
  .menue {
    top: 5px;
    left: 10px;
    width: 55px;
    height: 70px;
    background-size: 15px 15px;
    background-position: 0 0, 15px 15px;
  }
}
@media screen and (max-width: 600px) and (max-width: 400px) {
  .menue {
    left: 2px;
    width: 42px;
    height: 55px;
    background-size: 15px 15px;
    background-position: 0 0, 15px 15px;
  }
}
.menue.offen {
  background: white;
  border: 1px solid #ccc;
  width: 60%;
  max-width: 1000px;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 5px 30px -2px rgba(0, 0, 0, 0.5), inset 0 0 0 0 rgba(255, 255, 255, 0);
  transform: rotate(0deg);
}
@media screen and (max-width: 1000px) {
  .menue.offen {
    width: 90%;
  }
}
.menue.offen .menu__button {
  top: 5px;
  right: 15px;
  color: #999;
  transform: rotate(45deg);
}
.menue.offen .plus-x-box {
  background-color: transparent;
  margin: 0;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}
.menue.offen .plus-x {
  width: 20px;
  fill: #565656;
  box-shadow: none;
}
.menue.offen .plus-x-box {
  border: none;
}
.menue.offen .menu__content {
  opacity: 1;
  visibility: visible;
}

.menu__button {
  font-weight: 400;
  border: 0;
  background: none;
  color: white;
  position: absolute;
  top: 20px;
  padding: 0;
  width: 20px;
  height: 20px;
  transition: 0.2s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.plus-x-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f76988;
  border: 1px solid #c75f70;
  border-radius: 100%;
  width: 35px;
  height: 35px;
  margin-left: 20px;
  box-shadow: -1px 2px 2px 0 rgba(0, 0, 0, 0.3);
  transform: rotate(5deg);
}
@media screen and (max-width: 600px) {
  .plus-x-box {
    justify-content: flex-start;
    width: 25px;
    height: 25px;
    margin-left: 5px;
    box-shadow: 1px 2px 3px 0 rgba(0, 0, 0, 0.15);
  }
}
@media screen and (max-width: 400px) {
  .plus-x-box {
    width: 25px;
    height: 25px;
    margin-left: 0px;
    box-shadow: 1px 2px 3px 0 rgba(0, 0, 0, 0.15);
  }
}

.plus-x {
  width: 16px;
  fill: white;
}

.menu__title {
  font-size: 2rem;
  margin: 0 0 15px 10px;
  color: rgb(255, 0, 64);
}
@media screen and (max-width: 1000px) {
  .menu__title {
    font-size: 1.5rem;
    margin-left: 0;
  }
}

.menu__content {
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
}

/* ============================ Ring Bell Button Icon =================================== */
.boxring-bell-btn {
  width: 80px;
  height: 80px;
  cursor: pointer;
}

.boxring-bell-btn2 {
  width: 150px;
  height: 150px;
  cursor: pointer;
  background: transparent;
  box-shadow: none;
  border: none;
}

.ring-bell-icon {
  width: 70px;
}

.dark-bg {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #363636;
}

.sketch {
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
}

.bunter-footer {
  margin-top: 0;
}

a {
  font-family: "Asap-Regular";
}

.full-width-link {
  width: 100%;
  display: block;
}

.full-width-link {
  width: 100%;
  display: block;
}

.hidden-link {
  position: absolute;
  left: calc(50% - 25px);
  margin: auto;
  width: 70px;
  height: 70px;
}
@media screen and (max-width: 700px) {
  .hidden-link {
    margin-top: 50px;
  }
}

.text-link {
  font-family: "Asap-Regular";
  font-size: 1.9rem;
  font-weight: 400;
  color: #565656;
  line-height: 1.6;
  border-bottom: 2px dotted red;
}
.text-link:hover {
  border-bottom: 2px solid red;
}

.small-text-link {
  font-family: "Asap-Regular";
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 400;
  color: #565656;
  border-bottom: 2px dotted red;
}
.small-text-link:hover {
  border-bottom: 2px solid red;
}

.more-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 1.8rem;
  padding: 6px 6px 2px 0;
  color: #3c7bd6;
  font-weight: 500;
  border-bottom: 2px dotted #e74c3c;
}
.more-link:hover {
  color: black;
  border-bottom: 2px solid #e74c3c;
}

/* ========================== Blog | Link To Posts =========================== */
.blog-more-link-box {
  width: 100%;
  max-width: 700px;
}

.blog-more-link {
  display: inline-block;
  margin-top: 10px;
  margin-right: auto;
  font-size: 1.8rem;
  padding: 6px 6px 2px 0;
  color: #3c7bd6;
  font-weight: 500;
  border-bottom: 2px dotted #e74c3c;
}
.blog-more-link:hover {
  color: black;
  border-bottom: 2px solid #e74c3c;
}

/* =========================  Links nach Aussen ========================= */
.external-link {
  display: inline-block;
  margin-top: 5px;
  width: 25px;
  height: 25px;
  background-image: url("/img/link-icon.svg");
  background-repeat: no-repeat;
  background-size: 25px;
}
.external-link:hover {
  background-image: url("/img/link-icon_hover.svg");
}

.big-external-link {
  display: block;
  margin: auto;
  margin-top: 3vw;
  margin-bottom: 3vw;
  width: 30px;
  height: 30px;
  background-image: url("/img/link-icon.svg");
  background-repeat: no-repeat;
  background-size: 30px;
}
.big-external-link:hover {
  background-image: url("/img/link-icon_hover.svg");
  background-repeat: no-repeat;
  background-size: 30px;
}
@media screen and (max-width: 1000px) {
  .big-external-link {
    margin-top: 4vmax;
    margin-bottom: 5vmax;
  }
}

figcaption > .text-link {
  font-family: inherit;
  font-size: 1.5rem;
  color: #565656;
  margin-bottom: 20px;
}

.sidebar-link-list {
  display: block;
  width: 100%;
}

.sidebar-link-list li {
  font-family: "Asap-Regular", sans-serif;
  font-size: 1.9rem;
  font-weight: 400;
  color: #565656;
  line-height: 1.6;
  max-width: 700px;
  margin-bottom: 15px;
}
@media screen and (max-width: 500px) {
  .sidebar-link-list li {
    line-height: 1.6;
  }
}

.sidebar-link-list a {
  margin-top: 0;
  margin-left: 10px;
  padding: 0;
}

.sidebar-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 1.8rem;
  padding: 6px 6px 2px 0;
  color: #565656;
  font-weight: 500;
  border-bottom: 2px dotted #e74c3c;
}
.sidebar-link:hover {
  color: black;
  border-bottom: 2px solid #e74c3c;
}

/* -----------------   die kleinen Link Icons in Sidebar   ------------------- */
.small-external-sidebar-link {
  display: inline-block;
  width: 15px;
  height: 15px;
  background-image: url("/img/link-icon.svg");
  background-repeat: no-repeat;
  background-size: 15px;
}
.small-external-sidebar-link:hover {
  background-image: url("/img/link-icon_hover.svg");
  background-repeat: no-repeat;
  background-size: 15px;
}

/* ========================== link zur Buchhaltung =========================== */
.kto-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #565656;
}
.kto-link:hover {
  color: #3276dd;
}

/* =========================  Links in Liste ========================= */
.list-item {
  margin: 0 0 15px 0;
  font-size: 1.8rem;
  color: #565656;
}

/* ==========================   Banking Buttons   ========================== */
.banking-btn {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  color: #565656;
  padding-right: 30px;
  margin-bottom: 5px;
  background-image: url("/img/link-icon.svg");
  background-repeat: no-repeat;
  background-position: right;
  background-size: 18px;
}
.banking-btn:hover {
  background-image: url("/img/link-icon_hover.svg");
}

/* =========================  Mail Link ========================= */
.mailto-link {
  display: inline-block;
  font-family: "Asap-Regular";
  font-size: 1.9rem;
  font-weight: 400;
  color: #565656;
  line-height: 1.6;
  border-bottom: 2px dotted red;
  background-color: white;
  padding: 0 10px 0 10px;
  border-radius: 3px;
  transition: ease-in 0.15s;
  border-top: 1px solid lightgrey;
  border-left: 1px solid lightgrey;
  border-right: 1px solid lightgrey;
  border-bottom: 2px dotted red;
}
.mailto-link:hover {
  box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.35);
  transition: ease-out 0.2s;
  transform: translateY(-2px);
  border-bottom: 2px solid red;
}

.mail-link {
  display: inline-block;
  padding: 10px 50px 0 10px;
}

.mail-link-icon {
  width: 30px;
  height: auto;
  fill: #565656;
}
.mail-link-icon:hover {
  fill: #3276dd;
}

/* =========================  Download link ========================= */
.download-link {
  display: inline-block;
  margin-top: 5px;
  width: 25px;
  height: 30px;
  background-image: url("/img/dl-icon.svg");
  background-repeat: no-repeat;
  background-size: 25px;
}
.download-link:hover {
  transform: translateY(3px) scale(1.1);
  transition: ease-in-out 0.3s;
}

.big-download-link {
  display: inline-block;
  margin-top: 5px;
  width: 50px;
  height: 50px;
  background-image: url("/img/dl-icon.svg");
  background-repeat: no-repeat;
  background-size: 50px;
}
.big-download-link:hover {
  transform: translateY(3px) scale(1.1);
  transition: ease-in-out 0.3s;
}
@media screen and (max-width: 400px) {
  .big-download-link {
    background-size: 35px;
  }
}

/* -----------------   die Button-Dinger mit rotem gestricheltem Rand   ------------------- */
.meldung {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 500;
  background-color: transparent;
  color: #3c7bd6;
  padding: 8px 10px 10px 13px;
  border: 2px dashed red;
  border-radius: 6px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.meldung:hover {
  border: 2px solid red;
  box-shadow: 0px 3px 6px -2px rgba(0, 0, 0, 0.25);
}

/* =========================  Link in Footer zu Impressum  ========================= */
.back-link {
  font-size: 2rem;
  color: #565656;
  margin: 50px 0 0 0;
  bottom: 50px;
  border-bottom: 2px dotted transparent;
}
.back-link:hover {
  border-bottom: 2px dotted red;
}

.cookie-text-link {
  font-family: "Asap-Regular";
  font-size: inherit;
  font-weight: 400;
  color: #565656;
  line-height: 1.6;
  border-bottom: 2px dotted red;
}
.cookie-text-link:hover {
  border-bottom: 2px solid red;
}

.shoot-email {
  width: 50px;
  height: 50px;
  display: block;
  padding: 10px;
  margin: 20px 0 20px 20px;
  transition: ease-out 0.3s;
  background-image: url(/img/shoot-email.svg);
  background-repeat: no-repeat;
  transform: rotate(5deg);
}
.shoot-email:hover {
  background-image: url(/img/shoot-email-red.svg);
  transition: ease-in 0.2s;
  transform: rotate(-5deg) translatey(-10px) translatex(10px);
}

.zoom-btn {
  padding: 5px;
  width: 70px;
  height: 50px;
  border: 1px solid;
  border-radius: 6px;
  cursor: pointer;
}

.image-box {
  border: 1px solid;
}

.un-zoomed {
  transform: scale(0.5);
  transition: ease-out 0.3s;
}

.zoomed {
  transform: scale(1);
  transition: ease-in 0.3s;
}

/* ==========================   Spenden Button in Header   ========================== */
.spenden-btn-header {
  margin-top: -55px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 110px;
  height: 45px;
  border-radius: 4px;
  border-left: 1px solid rgb(226, 166, 0);
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  border-right: 1px solid rgb(226, 166, 0);
  border-bottom: 3px solid rgb(226, 166, 0);
  background-image: linear-gradient(180deg, #ffec00 0%, #f2d100 90%);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.5), 0 4px 6px 0 rgba(0, 0, 0, 0.2);
}
.spenden-btn-header:hover {
  background-image: linear-gradient(180deg, #ffe300 0%, #ffc400 90%);
}
@media screen and (max-width: 1200px) {
  .spenden-btn-header {
    margin-right: 0px;
  }
}
@media screen and (max-width: 900px) {
  .spenden-btn-header {
    margin: auto;
    margin-top: -65px;
    margin-bottom: 10px;
  }
}

.spenden-btn-alternate {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 170px;
  height: 45px;
  border-radius: 4px;
  border-top: 1px solid rgb(255, 232, 0);
  border-left: 1px solid rgb(226, 166, 0);
  border-right: 1px solid rgb(226, 166, 0);
  border-bottom: 1px solid rgb(226, 166, 0);
  background-image: linear-gradient(to bottom, #ffeb00, #ffda00);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.5), 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  transition: ease-out 0.2s;
}
.spenden-btn-alternate:hover {
  transform: translateY(-1px);
  transition: ease-in 0.2s;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.35), 0 6px 15px -2px rgba(0, 0, 0, 0.2);
}
.spenden-btn-alternate:active {
  transform: translateY(1px);
  transition: ease-in 0.2s;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.35), 0 0px 0px 0 rgba(0, 0, 0, 0.2);
}

.spenden-btn-alternate h6 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.black-bg-spenden-btn-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #424242;
  width: 92px;
  height: 30px;
  border-radius: 3px;
}

.label-spenden-btn-header {
  text-align: center;
  font-size: 2.3rem;
  color: #ffec00;
  text-transform: uppercase;
  margin-top: 9px;
  font-weight: 800;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5), 0 -1px 0px rgb(0, 0, 0);
}

/* ==========================   Prev | Next Buttons   ========================== */
.pagination-btn {
  font-size: 1.9rem;
  color: #565656;
  border-bottom: 2px dotted #e74c3c;
  margin: 10px;
  padding: 10px;
}
.pagination-btn:hover:hover {
  color: #3c7bd6;
  border-bottom: 2px solid #e74c3c;
}

/* ==========================   Phone Button   ========================== */
.phone-btn {
  width: 80px;
  margin-top: 3vw;
}
@media screen and (max-width: 650px) {
  .phone-btn {
    margin-top: 5vh;
  }
}

/* ==========================   Download PDF Button  ========================== */
.dl-btn {
  color: initial;
  background-color: white;
  border-radius: 3px;
  padding: 3px 4px 4px 4px;
  border-top: 1px solid #c5c5c5;
  border-right: 1px solid #c5c5c5;
  border-bottom: 1px solid #a0a0a0;
  border-left: 1px solid #c5c5c5;
  box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2);
}
.dl-btn:hover {
  color: #3c7bd6;
  box-shadow: 0 3px 3px -2px rgba(0, 0, 0, 0.2);
}
.dl-btn:active {
  color: #3c7bd6;
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.1);
}

.download-label {
  font-size: 1.6rem;
  opacity: 0.8;
}

/* ==========================   Twitter Btn index News Item  ========================== */
@keyframes tweets {
  0% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(20deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.news-item-twitter {
  width: 40px;
  height: 50px;
  animation: tweets 1s cubic-bezier(0.2, 0, 0.1, 1) 1.5s infinite;
}

.cluster {
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3vw;
}

#sticker {
  position: absolute;
  margin-top: 110px;
  margin-left: 50px;
  width: 100%;
  max-width: 160px;
  transform: rotate(-3deg);
}
@media screen and (max-width: 800px) {
  #sticker {
    margin-top: 60px;
    margin-left: 60px;
    width: 100%;
    max-width: 120px;
  }
}
@media screen and (max-width: 700px) {
  #sticker {
    margin-top: 100px;
    margin-left: 10px;
    width: 100%;
    max-width: 110px;
    transform: rotate(3deg);
  }
}
@media screen and (max-width: 550px) {
  #sticker {
    top: -30px;
    width: 100%;
    max-width: 100px;
  }
}

.wt-figure {
  margin: 3vw 0 3vw 0;
  width: 100%;
}

.wt-figure img {
  margin: auto;
}

.wt-figure figcaption {
  text-align: center;
}

.figure-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 10px 0 10px 0;
}

.figure-left figcaption {
  margin: 10px 0 0 0;
}

.figure-left figcaption a {
  font-family: "Asap-Regular";
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 400;
  color: #565656;
  border-bottom: 2px dotted red;
}
.figure-left figcaption a:hover {
  border-bottom: 2px solid red;
}

/* =======================  Gotchas Figure Index   ========================== */
.gotcha-figure figcaption {
  display: inline;
  width: 100%;
  margin-top: 10px;
  padding-left: 3%;
}

.gotcha-figure figcaption h3 {
  display: inline;
  margin: 0 5px 0 0;
  font-size: 1.7rem;
  line-height: 1.4;
}

.gotcha-figure figcaption p {
  display: inline;
  margin: 0 5px 0 0;
  font-size: 1.7rem;
  line-height: 1.4;
}

.grayscale {
  filter: grayscale(1);
}

/* =======================  Image centered   ========================== */
.image-box-centered {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-box {
  margin-top: 30px;
  margin-bottom: 30px;
  max-height: 500px;
  overflow: scroll;
  padding: 5px 6px 10px 6px;
  border-top: 1px solid #919090;
  border-left: 1px solid #bdbdbd;
  border-bottom: 1px solid #f0f0f0;
  border-right: 1px solid #bdbdbd;
  border-radius: 8px;
  box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.25), 0 2px 0 0 rgba(255, 255, 255, 0.9);
  width: 100%;
  max-width: 750px;
}
@media screen and (max-width: 750px) {
  .image-box {
    max-height: 100vw;
  }
}

.image-box-big {
  width: 100%;
  max-width: 900px;
}

.img-box-margin-medium {
  width: 100%;
  margin: 30px 0 40px 0;
}

.img-box-margin-large {
  width: 100%;
  margin: 70px 0 40px 0;
}
@media screen and (max-width: 500px) {
  .img-box-margin-large {
    margin: 20px 0 40px 0;
  }
}

/* =======================  Image Sizes   ========================== */
.img-very-small-portrait {
  width: 100%;
  max-height: 213px;
  max-width: 150px;
}

.img-small-portrait {
  width: 100%;
  max-width: 120px;
  height: auto;
}

.img-normal-portrait {
  width: 100%;
  max-width: 300px;
  height: auto;
}

.exclamation-mark {
  width: 30px;
  margin-left: 30px;
  transform: rotate(-170deg);
}

.img-very-small {
  max-width: 70px;
  height: auto;
  /* @media screen and (max-width:400px){
  max-width:200px;
  } */
}

.img-smaller {
  max-width: 170px;
  height: auto;
}

.img-small {
  max-width: 300px;
  height: auto;
}
@media screen and (max-width: 400px) {
  .img-small {
    max-width: 200px;
  }
}

.img-not-so-small {
  width: 100%;
  max-width: 400px;
  height: auto;
}
@media screen and (max-width: 400px) {
  .img-not-so-small {
    max-width: 200px;
  }
}

.img-normal {
  max-width: 500px;
  margin: 15px 0 35px 0;
  height: auto;
}

.img-medium {
  max-width: 600px;
  margin: 15px 0 35px 0;
  box-shadow: 0 5px 10px -3px rgba(0, 0, 0, 0.35);
  border-radius: 6px;
  height: auto;
}

.img-more-than-medium {
  max-width: 700px;
  border-radius: 6px;
  height: auto;
}

.img-medium-ecke {
  max-width: 650px;
  margin: 20px 0 25px 0;
  box-shadow: 0px 2px 3px -1px rgba(0, 0, 0, 0.35);
}

.img-larger {
  max-width: 1000px;
  margin: 20px 0 30px 0;
  box-shadow: 0 5px 10px -3px rgba(0, 0, 0, 0.35);
  border-radius: 6px;
}
@media screen and (max-width: 900px) {
  .img-larger {
    margin: 4vw 0 3vw 0;
  }
}
@media screen and (max-width: 500px) {
  .img-larger {
    margin: 5vw 0 3vw 0;
  }
}

.img-large {
  max-width: 1100px;
  margin: 50px 0 25px 0;
  border-radius: 6px;
}
@media screen and (max-width: 800px) {
  .img-large {
    max-width: 700px;
  }
}

.back-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 700px;
}
@media screen and (max-width: 750px) {
  .back-img {
    width: 100%;
  }
}

/* =======================  Image Shadows and stuff   ========================== */
.img-shadow {
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.5);
}

.very-small-shadow {
  box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.35);
}

.small-shadow {
  box-shadow: 0 3px 10px -2px rgba(0, 0, 0, 0.35);
}

.medium-shadow {
  box-shadow: 0 5px 10px -3px rgba(0, 0, 0, 0.35);
}

.large-shadow {
  box-shadow: 0 50px 150px -30px rgba(0, 0, 0, 0.65);
}

.big-ass-shadow {
  box-shadow: 0 2vmax 14vmax -3vmax rgba(5, 0, 30, 0.65);
}

/* ================================  Image Margins (Top) ================================ */
.img-no-margin-top {
  margin-top: 0;
}

/* ================================  Image Margins (Bottom)================================ */
.img-no-margin-bottom {
  margin-bottom: 0 !important;
}

.img-little-margin-bottom {
  margin-bottom: 10px;
}

.img-little-more-margin-bottom {
  margin-bottom: 30px;
}
@media screen and (max-width: 500px) {
  .img-little-more-margin-bottom {
    margin-bottom: 20px;
  }
}

.img-more-margin-bottom {
  margin-bottom: 3vw;
}
@media screen and (max-width: 500px) {
  .img-more-margin-bottom {
    margin-bottom: 3vh;
  }
}

.img-much-more-margin-bottom {
  margin-bottom: 5vw;
}
@media screen and (max-width: 500px) {
  .img-much-more-margin-bottom {
    margin-bottom: 5vh;
  }
}

.img-more-margin-top {
  margin-top: 3vw;
}

.img-much-more-margin-top {
  margin-top: 5vw;
}

.img-little-more-margin-top {
  margin-top: 10px;
}

/* ================================  Image Styles ================================ */
.img-portrait {
  width: 100%;
}

.img-portrait-medium {
  width: 100%;
  max-width: 300px;
  margin: 10px 0 30px 0;
}
@media screen and (max-width: 800px) {
  .img-portrait-medium {
    margin: 2vw 0 3vw 0;
  }
}

.img-portrait-medium-x {
  width: 100%;
  max-width: 500px;
  margin: 10px 0 30px 0;
}
@media screen and (max-width: 800px) {
  .img-portrait-medium-x {
    margin: 2vw 0 3vw 0;
  }
}

.img-medium-no-shadow {
  width: 100%;
  max-width: 600px;
  margin: 3vw 0 5vw 0;
  border-radius: 6px;
}

.rounded {
  border-radius: 6px;
}

/* =======================  diverse   ========================== */
#faq-icon-sidebar {
  width: 65px;
  position: relative;
  margin-left: auto;
  margin-right: 20px;
  margin-top: 0px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1200px) {
  #faq-icon-sidebar {
    margin-top: 0px;
    margin-right: 0px;
  }
}
@media screen and (max-width: 900px) {
  #faq-icon-sidebar {
    margin: auto;
    margin-top: 0px;
    margin-bottom: 20px;
  }
}

#wappen-icon-sidebar {
  position: relative;
  margin-left: auto;
  margin-right: 20px;
  margin-bottom: 10px;
  border-radius: 6px;
  box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.5);
  width: 150px;
}
@media screen and (max-width: 1200px) {
  #wappen-icon-sidebar {
    width: 120px;
    margin-top: 0px;
    margin-right: 0px;
  }
}
@media screen and (max-width: 900px) {
  #wappen-icon-sidebar {
    width: 150px;
    margin: auto;
    margin-top: 0px;
    margin-bottom: 15px;
  }
}

#taxidriver-in-sidebar {
  max-width: 65px;
  position: relative;
  margin-left: auto;
  margin-right: 65px;
  margin-top: 0px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1200px) {
  #taxidriver-in-sidebar {
    margin-top: 0px;
    margin-right: 0px;
  }
}
@media screen and (max-width: 900px) {
  #taxidriver-in-sidebar {
    margin: auto;
    margin-top: 0px;
    margin-bottom: 10px;
  }
}

#stempel-icon {
  max-width: 100px;
  position: relative;
  margin-left: auto;
  margin-right: 50px;
  margin-top: -20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1200px) {
  #stempel-icon {
    margin-top: 0px;
    margin-right: 0px;
  }
}
@media screen and (max-width: 900px) {
  #stempel-icon {
    margin: auto;
    margin-top: 0px;
    margin-bottom: 10px;
  }
}

.€-icon-sidebar {
  fill: #363636;
  margin: auto;
  width: 60px;
  margin-bottom: 10px;
  padding: 5px;
}
.€-icon-sidebar:hover {
  fill: #3276dd;
  stroke: 10px solid;
}

.helden-icon-sidebar {
  margin: auto;
  width: 90px;
  margin-bottom: 30px;
}

.helden-icon {
  margin: auto;
  width: 100%;
  max-width: 200px;
  margin-top: 30px;
  margin-bottom: 40px;
}
@media screen and (max-width: 800px) {
  .helden-icon {
    max-width: 130px;
    margin-top: 1vw;
    margin-bottom: 4vw;
  }
}
@media screen and (max-width: 500px) {
  .helden-icon {
    width: 100px;
    margin-top: 2vw;
    margin-bottom: 5vw;
  }
}

/* =======================   Icons Blog Posts   ========================== */
.post-icon {
  width: 100%;
  max-width: 100px;
  margin-top: 10px;
  margin-bottom: 30px;
}
@media screen and (max-width: 400px) {
  .post-icon {
    max-width: 80px;
    margin-top: 0px;
    margin-bottom: 20px;
  }
}

.post-icon-medium {
  width: 100%;
  max-width: 200px;
  margin-top: 10px;
  margin-bottom: 30px;
}
@media screen and (max-width: 400px) {
  .post-icon-medium {
    margin-top: 0px;
    margin-bottom: 20px;
  }
}

.post-icon-centered {
  align-self: centered;
  width: 100%;
  margin: auto;
  max-width: 100px;
  margin-top: 10px;
  margin-bottom: 30px;
}
@media screen and (max-width: 400px) {
  .post-icon-centered {
    max-width: 80px;
    margin-top: 0px;
    margin-bottom: 20px;
  }
}

.explosion {
  width: 100%;
  max-width: 300px;
  margin: auto;
  align-self: center;
}

.taxidriver {
  width: 100px;
}
@media screen and (max-width: 600px) {
  .taxidriver {
    width: 60px;
  }
}

.checkmark {
  display: inline-block;
  width: 25px;
  margin: 0 0 0 10px;
  transform: translateY(0px);
}
@media screen and (max-width: 400px) {
  .checkmark {
    width: 20px;
  }
}

.fck-one {
  max-width: 800px;
  background-color: white;
  padding: 25px;
  box-shadow: 0 3px 3px -1px rgba(0, 0, 0, 0.5);
}

.open-hand {
  width: 25px;
}

.bell {
  width: 30px;
}

.wagen {
  width: 100%;
  max-width: 250px;
}

.ring-bell-icon {
  width: 100%;
  max-width: 180px;
}

.pill-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.pill {
  max-width: 100px;
  margin: 0 30px 0 30px;
  transform: scale(1);
  transition: ease-out 0.1s;
}
.pill:hover {
  transform: scale(1.08);
  transition: ease-in 0.3s;
}

.hero {
  width: 90%;
  max-width: 600px;
  margin-top: 5vw;
  margin-bottom: 7vw;
}

.aspect-ratio-wrapper {
  height: 0;
  padding-bottom: 0;
}

#why-wrapper {
  background: linear-gradient(rgba(0, 255, 67, 0.45), rgba(0, 255, 67, 0.45)), url(/img/why.gif);
  height: 0;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 52.25%;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 3px 10px -2px rgba(0, 0, 0, 0.35);
  border-radius: 10px;
}

#why-wrapper > p {
  max-width: 100%;
  color: white;
  margin: auto;
  text-align: left;
  padding-top: 25%;
  padding-left: 10vw;
}

.verteiler-list {
  width: 100%;
  font-size: 1.9rem;
  font-weight: 400;
  color: #565656;
  line-height: 1.8;
  max-width: 700px;
  width: 100%;
  margin: 0px 0 10px 0;
  font-style: italic;
}
@media screen and (max-width: 500px) {
  .verteiler-list {
    line-height: 1.6;
  }
}

.verteiler-list a {
  color: #3c7bd6;
}
.verteiler-list a:hover {
  color: #e74c3c;
}

.link-list li {
  margin-bottom: 10px;
}

.bullet-list {
  font-family: inherit;
  font-size: 1.9rem;
  padding-left: 50px;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 800px) {
  .bullet-list {
    padding-left: 10px;
  }
}

.left-simple-list {
  width: 100%;
  font-family: inherit;
  line-height: 1.6;
  list-style: none;
  font-size: 2rem;
  color: #565656;
  margin-top: 1rem;
  margin-bottom: 1rem;
  max-width: 700px;
}

.simple-list {
  font-family: inherit;
  line-height: 1.6;
  list-style: none;
  font-size: 2rem;
  color: #565656;
  padding-left: 20px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  max-width: 700px;
}

.simple-list > li {
  margin-bottom: 2rem;
}

.simple-bullet-list {
  font-family: inherit;
  line-height: 1.6;
  list-style-type: disc;
  list-style-position: outside;
  font-size: 1.9rem;
  color: #565656;
  padding-left: 20px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  max-width: 700px;
}

.simple-bullet-list > li {
  margin-bottom: 2rem;
}

.left-simple-bullet-list {
  width: 100%;
  font-family: inherit;
  line-height: 1.8;
  list-style-type: disc;
  list-style-position: outside;
  font-size: 1.9rem;
  color: #565656;
  padding-left: 20px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  max-width: 700px;
}
@media screen and (max-width: 500px) {
  .left-simple-bullet-list {
    line-height: 1.6;
  }
}

.ordered-list {
  font-family: inherit;
  font-size: 2rem;
  color: #565656;
  width: 90%;
  max-width: 670px;
  margin: 10px 0 0 30px;
  list-style-type: lower-alpha;
  list-style-position: inside;
}
@media screen and (max-width: 800px) {
  .ordered-list {
    margin: 10px 0 0 20px;
  }
}
@media screen and (max-width: 500px) {
  .ordered-list {
    margin: 10px 0 0 10px;
  }
}

.ordered-list li {
  margin-bottom: 5px;
}

.numbered-list {
  font-family: inherit;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.5;
  color: #565656;
  width: 90%;
  max-width: 670px;
  margin: 10px 0 30px 30px;
  list-style-type: decimal;
  list-style-position: inside;
}
@media screen and (max-width: 800px) {
  .numbered-list {
    margin: 10px 0 20px 20px;
  }
}
@media screen and (max-width: 500px) {
  .numbered-list {
    margin: 10px 0 20px 10px;
  }
}

.numbered-list li {
  margin-bottom: 5px;
}

.a-b-list {
  font-family: inherit;
  line-height: 1.6;
  list-style-type: upper-alpha;
  list-style-position: outside;
  font-size: 1.9rem;
  color: #565656;
  padding-left: 20px;
  margin-top: 1rem;
  margin-bottom: 2rem;
  max-width: 700px;
}

.a-b-list > li {
  margin-bottom: 2rem;
}

.math-list {
  font-family: inherit;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.5;
  color: #565656;
  width: 90%;
  max-width: 670px;
  margin: 10px 0 30px 30px;
  list-style-type: decimal;
  list-style-position: inside;
}
@media screen and (max-width: 800px) {
  .math-list {
    margin: 10px 0 20px 20px;
  }
}
@media screen and (max-width: 500px) {
  .math-list {
    margin: 10px 0 20px 10px;
  }
}

.math-list li {
  margin-bottom: 5px;
}

.math-list li:last-child {
  font-family: "Asap-Bold";
  font-weight: 700;
  list-style-type: none;
}

.like-text {
  /* <----- extra für Ivicas Listen die eigentlich Text sind. */
  line-height: 1.6;
  max-width: 700px;
  padding-left: 0px;
}

.like-text li {
  margin-bottom: 10px;
}

.hidden {
  display: none;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.clearfix:after {
  content: ".";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}

.to-left {
  margin-right: auto;
}

.to-right {
  margin-left: auto;
}

.mitte {
  margin: auto;
}

.pointer {
  cursor: pointer;
}

.rotate {
  transform: rotate(-30deg);
}

.bindestrich {
  -webkit-hyphens: auto;
          hyphens: auto;
}

.shrug {
  font-size: 5rem;
  margin-top: 15px;
  margin-bottom: 15px;
}

.hr-short {
  width: 75%;
  max-width: 100px;
}
@media screen and (max-width: 900px) {
  .hr-short {
    width: 100%;
  }
}

#mumpitz > input {
  width: 100%;
  max-width: 500px;
  min-width: 250px;
  font-size: 1.6rem;
  padding: 5px;
  height: 40px;
  padding: 0 0 0 10px;
  font-family: "ASAP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #363636;
  background-color: #fdfdfd;
  border: 1px solid;
  border-radius: 4px;
  border-color: rgba(0, 0, 0, 0.3) rgba(0, 0, 0, 0.25) rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) inset;
}
#mumpitz > input:focus {
  outline-color: #66a2e0;
  outline-style: auto;
  outline-width: 3px;
  outline-offset: -2px;
}

.eingerueckt {
  display: inline-block;
  margin-top: 5vw;
  margin-left: 5vw;
}

cite {
  margin: 0 0 30px 0;
  font-size: 1.2rem;
}

cite > a {
  font-size: 1.2rem;
}

cite > .text-link {
  font-size: 1.2rem;
}

figcaption {
  font-size: 1.5rem;
  color: #565656;
  margin-top: 0;
  margin-bottom: 5px;
}

figcaption.center {
  text-align: center;
}

figcaption.left {
  display: block;
  width: 100%;
  max-width: 700px;
  margin: 5px 0 30px 0;
  color: #767676;
}

figcaption.right {
  display: block;
  width: 100%;
  max-width: 700px;
  text-align: right;
}

figcaption.zitat {
  margin-top: 2rem;
  font-size: 1.2rem;
  text-align: left;
}

br {
  display: block;
  /* makes it have a width */
  content: "";
  /* clears default height */
  margin-top: 1.5rem;
  /* change this to whatever height you want it */
}

br.big-break {
  content: "";
  margin: 0;
  margin-top: 3.5rem;
}

br.small-br {
  display: block;
  /* makes it have a width */
  content: "";
  /* clears default height */
  margin-top: 0.5rem;
  /* change this to whatever height you want it */
}

br.simple-break {
  content: "";
  margin: 0;
}

.big-break-margin-bottom-lg {
  margin-bottom: 5vw;
}

.no-margin-top {
  margin-top: 0;
}

.margin-top-xs {
  margin-top: 10px;
}

.margin-top-m {
  margin-top: 50px;
}

.more-margin-top {
  margin-top: 3vw;
}

.margin-top-lg {
  margin-top: 5vw;
}

.margin-top-xl {
  margin-top: 10vw;
}

.no-margin-bottom {
  margin-bottom: 0 !important;
}

.margin-bottom-xs {
  margin-bottom: 5px;
}

.margin-bottom-s {
  margin-bottom: 10px;
}

.margin-bottom-normal {
  margin-bottom: 20px;
}

.margin-bottom-m {
  margin-bottom: 50px;
}

.margin-bottom-lg {
  margin-bottom: 5vw;
}

.luecke {
  display: inline-block;
  width: 10px;
  opacity: 0;
}

.line-thru {
  text-transform: strike-through;
}

.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.inline {
  display: inline;
}

.kto-item > a {
  pointer-events: none;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 400;
  color: #565656;
}

.bold {
  font-family: "Asap-Bold";
  font-weight: 700 !important;
}

.span-black {
  color: #565656;
}

.span-bold {
  font-family: "Asap-Bold";
  font-weight: 700;
}

.span-normal {
  font-weight: 400;
}

.span-thin {
  font-weight: 400;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.in-klammern {
  display: inline;
  font-size: 1.8rem;
  font-weight: 400;
}

.line-thru {
  text-decoration: line-through;
  font-weight: 400;
}

.full-bleed-wrapper {
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}

.full-bleed {
  padding: 0 10vw 0 10vw;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 900px) {
  .full-bleed {
    padding: 0vw 3vw 0vw 3vw;
  }
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.6.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}
@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}
@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.wobble {
  animation-name: wobble;
}
@keyframes jello {
  from, 11.1%, to {
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-duration: 0.75s;
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-duration: 0.75s;
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-duration: 0.75s;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}
@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}
@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-duration: 2s;
  animation-name: hinge;
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}
@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}

.index-pong-ping {
  animation: index-pong-ping 5s infinite;
  animation-direction: alternate;
  position: relative;
  max-width: 50px;
  margin-bottom: 50px;
}
@media screen and (max-width: 500px) {
  .index-pong-ping {
    max-width: 40px;
    margin-bottom: 10vw;
  }
}

@keyframes index-pong-ping {
  0% {
    left: 0%;
    transition: cubic-bezier(0.65, 0.05, 0.36, 1);
    transform: rotate(-380deg);
  }
  100% {
    transition: cubic-bezier(0.85, 0.05, 0.38, 1);
    left: 100%;
    transform: rotate(380deg);
  }
}
.pong-ping {
  animation: pong-ping 5s infinite;
  animation-direction: alternate;
  position: relative;
  max-width: 60px;
  margin-bottom: 50px;
}
@media screen and (max-width: 500px) {
  .pong-ping {
    max-width: 50px;
    margin-bottom: 10vw;
  }
}

@keyframes pong-ping {
  0% {
    left: -40%;
    transition: cubic-bezier(0.65, 0.05, 0.36, 1);
    transform: rotate(-380deg);
  }
  100% {
    transition: cubic-bezier(0.85, 0.05, 0.38, 1);
    left: 40%;
    transform: rotate(380deg);
  }
}
/* ============================ xxxxx  =================================== */
.motion-thing-container {
  display: flex;
  /*flex-direction: column;*/
  align-items: center;
  justify-content: center;
  margin-top: -50px;
  width: 100%;
}

#MyMotionPath {
  height: 50px;
  margin: auto;
}

#myPath {
  opacity: 0;
}

.glitz {
  display: block;
  width: 80px;
}

.blam {
  display: block;
  width: 40px;
  margin-top: -10px;
}

.content-after-motion-thing {
  margin-top: 220px;
  width: 100%;
  max-width: 700px;
}

/* ============================ Pulse Animation  =================================== */
@keyframes pulse {
  0% {
    transform: scale(1) translateY(0);
  }
  60% {
    transform: scale(1.3) translateY(-2px);
  }
  100% {
    transform: scale(1) translateY(0);
  }
}
@media screen and (max-width: 500px) {
  @keyframes pulse {
    0% {
      transform: scale(1) translateY(0);
    }
    60% {
      transform: scale(1.3) translateY(-2px);
    }
    100% {
      transform: scale(1) translateY(0);
    }
  }
}
/* ============================ Blink Animation für Status Bubble Dinger  =================================== */
@keyframes blink {
  50% {
    opacity: 1;
  }
}
@keyframes bulge {
  50% {
    transform: scale(1.05);
  }
}
/* ========  Manning Artikel mit Geldsack ======= */
@keyframes moveAcross {
  0% {
    left: 150%;
  }
  100% {
    left: -150%;
  }
}
.law-container {
  width: 100%;
  border-top: 1px dashed;
  border-bottom: 1px dashed;
  border-color: #424242;
  margin: 1vw 0 2vw 0;
  padding: 1vw 0 1vw 0;
}
@media screen and (max-width: 800px) {
  .law-container {
    padding: 3vw 0 3vw 0;
    margin: 3vw 0 5vw 0;
  }
}

.law {
  position: relative;
  width: 160px;
  /* margin: 1vw 0 2vw 0; */
  animation: moveAcross 8s linear infinite;
}
@media screen and (max-width: 800px) {
  .law {
    width: 140px;
  }
}
@media screen and (max-width: 500px) {
  .law {
    width: 110px;
  }
}

/*! * * * * * * * * * * * * * * * * * * * *\  
  CSShake :: Package
  v1.5.0
  CSS classes to move your DOM
  (c) 2015 @elrumordelaluz
  http://elrumordelaluz.github.io/csshake/
  Licensed under MIT
\* * * * * * * * * * * * * * * * * * * * */
.shake, .shake-little, .shake-slow, .shake-hard, .shake-horizontal, .shake-vertical, .shake-rotate, .shake-opacity, .shake-crazy, .shake-chunk {
  display: inline-block;
  transform-origin: center center;
}

.shake-freeze,
.shake-constant.shake-constant--hover:hover,
.shake-trigger:hover .shake-constant.shake-constant--hover {
  animation-play-state: paused;
}

.shake-freeze:hover,
.shake-trigger:hover .shake-freeze, .shake:hover,
.shake-trigger:hover .shake, .shake-little:hover,
.shake-trigger:hover .shake-little, .shake-slow:hover,
.shake-trigger:hover .shake-slow, .shake-hard:hover,
.shake-trigger:hover .shake-hard, .shake-horizontal:hover,
.shake-trigger:hover .shake-horizontal, .shake-vertical:hover,
.shake-trigger:hover .shake-vertical, .shake-rotate:hover,
.shake-trigger:hover .shake-rotate, .shake-opacity:hover,
.shake-trigger:hover .shake-opacity, .shake-crazy:hover,
.shake-trigger:hover .shake-crazy, .shake-chunk:hover,
.shake-trigger:hover .shake-chunk {
  animation-play-state: running;
}

@keyframes shake {
  2% {
    transform: translate(-0.5px, -0.5px) rotate(0.5deg);
  }
  4% {
    transform: translate(2.5px, -1.5px) rotate(-0.5deg);
  }
  6% {
    transform: translate(2.5px, 0.5px) rotate(1.5deg);
  }
  8% {
    transform: translate(-0.5px, 2.5px) rotate(-0.5deg);
  }
  10% {
    transform: translate(1.5px, -0.5px) rotate(1.5deg);
  }
  12% {
    transform: translate(0.5px, -1.5px) rotate(-0.5deg);
  }
  14% {
    transform: translate(0.5px, -1.5px) rotate(0.5deg);
  }
  16% {
    transform: translate(-0.5px, 0.5px) rotate(0.5deg);
  }
  18% {
    transform: translate(-1.5px, 1.5px) rotate(0.5deg);
  }
  20% {
    transform: translate(-0.5px, -1.5px) rotate(-0.5deg);
  }
  22% {
    transform: translate(1.5px, 1.5px) rotate(0.5deg);
  }
  24% {
    transform: translate(-1.5px, 2.5px) rotate(1.5deg);
  }
  26% {
    transform: translate(-0.5px, 0.5px) rotate(0.5deg);
  }
  28% {
    transform: translate(-1.5px, 1.5px) rotate(-0.5deg);
  }
  30% {
    transform: translate(1.5px, 0.5px) rotate(0.5deg);
  }
  32% {
    transform: translate(1.5px, -0.5px) rotate(0.5deg);
  }
  34% {
    transform: translate(2.5px, 1.5px) rotate(-0.5deg);
  }
  36% {
    transform: translate(-1.5px, -0.5px) rotate(-0.5deg);
  }
  38% {
    transform: translate(1.5px, 2.5px) rotate(-0.5deg);
  }
  40% {
    transform: translate(-0.5px, -1.5px) rotate(0.5deg);
  }
  42% {
    transform: translate(0.5px, 0.5px) rotate(0.5deg);
  }
  44% {
    transform: translate(1.5px, 1.5px) rotate(-0.5deg);
  }
  46% {
    transform: translate(-1.5px, 0.5px) rotate(-0.5deg);
  }
  48% {
    transform: translate(1.5px, 1.5px) rotate(1.5deg);
  }
  50% {
    transform: translate(0.5px, -0.5px) rotate(0.5deg);
  }
  52% {
    transform: translate(-0.5px, 0.5px) rotate(1.5deg);
  }
  54% {
    transform: translate(1.5px, -1.5px) rotate(0.5deg);
  }
  56% {
    transform: translate(-0.5px, -1.5px) rotate(1.5deg);
  }
  58% {
    transform: translate(2.5px, 1.5px) rotate(0.5deg);
  }
  60% {
    transform: translate(-0.5px, -0.5px) rotate(1.5deg);
  }
  62% {
    transform: translate(1.5px, 2.5px) rotate(-0.5deg);
  }
  64% {
    transform: translate(-1.5px, 0.5px) rotate(-0.5deg);
  }
  66% {
    transform: translate(2.5px, 1.5px) rotate(-0.5deg);
  }
  68% {
    transform: translate(2.5px, 0.5px) rotate(1.5deg);
  }
  70% {
    transform: translate(-1.5px, -1.5px) rotate(0.5deg);
  }
  72% {
    transform: translate(-1.5px, -0.5px) rotate(-0.5deg);
  }
  74% {
    transform: translate(-0.5px, -1.5px) rotate(1.5deg);
  }
  76% {
    transform: translate(1.5px, 1.5px) rotate(0.5deg);
  }
  78% {
    transform: translate(1.5px, -0.5px) rotate(1.5deg);
  }
  80% {
    transform: translate(-0.5px, 1.5px) rotate(1.5deg);
  }
  82% {
    transform: translate(2.5px, 2.5px) rotate(0.5deg);
  }
  84% {
    transform: translate(-0.5px, 0.5px) rotate(1.5deg);
  }
  86% {
    transform: translate(1.5px, -0.5px) rotate(1.5deg);
  }
  88% {
    transform: translate(2.5px, -1.5px) rotate(0.5deg);
  }
  90% {
    transform: translate(0.5px, -1.5px) rotate(-0.5deg);
  }
  92% {
    transform: translate(-0.5px, -1.5px) rotate(1.5deg);
  }
  94% {
    transform: translate(2.5px, 0.5px) rotate(1.5deg);
  }
  96% {
    transform: translate(-0.5px, -1.5px) rotate(-0.5deg);
  }
  98% {
    transform: translate(-0.5px, -1.5px) rotate(0.5deg);
  }
  0%, 100% {
    transform: translate(0, 0) rotate(0);
  }
}
.shake:hover,
.shake-trigger:hover .shake, .shake.shake-freeze, .shake.shake-constant {
  animation-name: shake;
  animation-duration: 100ms;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes shake-little {
  2% {
    transform: translate(0px, 0px) rotate(0.5deg);
  }
  4% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  6% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  8% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  10% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  12% {
    transform: translate(0px, 1px) rotate(0.5deg);
  }
  14% {
    transform: translate(0px, 0px) rotate(0.5deg);
  }
  16% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  18% {
    transform: translate(0px, 0px) rotate(0.5deg);
  }
  20% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  22% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  24% {
    transform: translate(0px, 1px) rotate(0.5deg);
  }
  26% {
    transform: translate(0px, 0px) rotate(0.5deg);
  }
  28% {
    transform: translate(0px, 0px) rotate(0.5deg);
  }
  30% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  32% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  34% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  36% {
    transform: translate(0px, 0px) rotate(0.5deg);
  }
  38% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  40% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  42% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  44% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  46% {
    transform: translate(0px, 0px) rotate(0.5deg);
  }
  48% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  50% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  52% {
    transform: translate(0px, 0px) rotate(0.5deg);
  }
  54% {
    transform: translate(0px, 0px) rotate(0.5deg);
  }
  56% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  58% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  60% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  62% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  64% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  66% {
    transform: translate(0px, 0px) rotate(0.5deg);
  }
  68% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  70% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  72% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  74% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  76% {
    transform: translate(0px, 1px) rotate(0.5deg);
  }
  78% {
    transform: translate(0px, 0px) rotate(0.5deg);
  }
  80% {
    transform: translate(0px, 0px) rotate(0.5deg);
  }
  82% {
    transform: translate(0px, 0px) rotate(0.5deg);
  }
  84% {
    transform: translate(0px, 0px) rotate(0.5deg);
  }
  86% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  88% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  90% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  92% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  94% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  96% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  98% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  0%, 100% {
    transform: translate(0, 0) rotate(0);
  }
}
.shake-little:hover,
.shake-trigger:hover .shake-little, .shake-little.shake-freeze, .shake-little.shake-constant {
  animation-name: shake-little;
  animation-duration: 100ms;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes shake-slow {
  2% {
    transform: translate(4px, 4px) rotate(1.5deg);
  }
  4% {
    transform: translate(-5px, 10px) rotate(-1.5deg);
  }
  6% {
    transform: translate(7px, 2px) rotate(0.5deg);
  }
  8% {
    transform: translate(5px, -7px) rotate(1.5deg);
  }
  10% {
    transform: translate(-2px, 10px) rotate(2.5deg);
  }
  12% {
    transform: translate(-1px, -9px) rotate(-1.5deg);
  }
  14% {
    transform: translate(-1px, 5px) rotate(2.5deg);
  }
  16% {
    transform: translate(3px, 1px) rotate(2.5deg);
  }
  18% {
    transform: translate(6px, 7px) rotate(-0.5deg);
  }
  20% {
    transform: translate(2px, -7px) rotate(-1.5deg);
  }
  22% {
    transform: translate(-8px, 9px) rotate(-1.5deg);
  }
  24% {
    transform: translate(8px, 3px) rotate(-0.5deg);
  }
  26% {
    transform: translate(6px, 0px) rotate(-1.5deg);
  }
  28% {
    transform: translate(-2px, -3px) rotate(1.5deg);
  }
  30% {
    transform: translate(-5px, -9px) rotate(-1.5deg);
  }
  32% {
    transform: translate(-9px, -8px) rotate(-2.5deg);
  }
  34% {
    transform: translate(7px, 1px) rotate(-0.5deg);
  }
  36% {
    transform: translate(-3px, 10px) rotate(3.5deg);
  }
  38% {
    transform: translate(-4px, 10px) rotate(2.5deg);
  }
  40% {
    transform: translate(5px, 10px) rotate(-0.5deg);
  }
  42% {
    transform: translate(10px, -5px) rotate(0.5deg);
  }
  44% {
    transform: translate(2px, 7px) rotate(-0.5deg);
  }
  46% {
    transform: translate(6px, -5px) rotate(3.5deg);
  }
  48% {
    transform: translate(3px, -1px) rotate(-2.5deg);
  }
  50% {
    transform: translate(0px, -1px) rotate(2.5deg);
  }
  52% {
    transform: translate(-7px, -7px) rotate(3.5deg);
  }
  54% {
    transform: translate(-3px, 10px) rotate(-2.5deg);
  }
  56% {
    transform: translate(1px, 5px) rotate(-0.5deg);
  }
  58% {
    transform: translate(1px, 0px) rotate(-0.5deg);
  }
  60% {
    transform: translate(-9px, -1px) rotate(-0.5deg);
  }
  62% {
    transform: translate(2px, -3px) rotate(0.5deg);
  }
  64% {
    transform: translate(-5px, 8px) rotate(-2.5deg);
  }
  66% {
    transform: translate(-3px, 4px) rotate(2.5deg);
  }
  68% {
    transform: translate(5px, 9px) rotate(-2.5deg);
  }
  70% {
    transform: translate(-6px, 8px) rotate(1.5deg);
  }
  72% {
    transform: translate(-1px, 1px) rotate(2.5deg);
  }
  74% {
    transform: translate(2px, 6px) rotate(3.5deg);
  }
  76% {
    transform: translate(-5px, -7px) rotate(-1.5deg);
  }
  78% {
    transform: translate(-1px, -4px) rotate(-1.5deg);
  }
  80% {
    transform: translate(0px, 3px) rotate(2.5deg);
  }
  82% {
    transform: translate(4px, 10px) rotate(-2.5deg);
  }
  84% {
    transform: translate(1px, 8px) rotate(2.5deg);
  }
  86% {
    transform: translate(-9px, 5px) rotate(3.5deg);
  }
  88% {
    transform: translate(3px, 9px) rotate(1.5deg);
  }
  90% {
    transform: translate(0px, -2px) rotate(-2.5deg);
  }
  92% {
    transform: translate(-5px, 5px) rotate(-0.5deg);
  }
  94% {
    transform: translate(-6px, 0px) rotate(-0.5deg);
  }
  96% {
    transform: translate(5px, -6px) rotate(3.5deg);
  }
  98% {
    transform: translate(5px, 4px) rotate(-0.5deg);
  }
  0%, 100% {
    transform: translate(0, 0) rotate(0);
  }
}
.shake-slow:hover,
.shake-trigger:hover .shake-slow, .shake-slow.shake-freeze, .shake-slow.shake-constant {
  animation-name: shake-slow;
  animation-duration: 5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes shake-hard {
  2% {
    transform: translate(-4px, 2px) rotate(-2.5deg);
  }
  4% {
    transform: translate(-7px, 9px) rotate(-1.5deg);
  }
  6% {
    transform: translate(0px, 4px) rotate(-2.5deg);
  }
  8% {
    transform: translate(9px, -4px) rotate(-1.5deg);
  }
  10% {
    transform: translate(6px, 4px) rotate(1.5deg);
  }
  12% {
    transform: translate(-6px, -9px) rotate(-0.5deg);
  }
  14% {
    transform: translate(9px, -9px) rotate(-0.5deg);
  }
  16% {
    transform: translate(-2px, 2px) rotate(-2.5deg);
  }
  18% {
    transform: translate(8px, -2px) rotate(-1.5deg);
  }
  20% {
    transform: translate(-2px, -8px) rotate(1.5deg);
  }
  22% {
    transform: translate(3px, 8px) rotate(-2.5deg);
  }
  24% {
    transform: translate(2px, 10px) rotate(0.5deg);
  }
  26% {
    transform: translate(-3px, 8px) rotate(-0.5deg);
  }
  28% {
    transform: translate(10px, 0px) rotate(-1.5deg);
  }
  30% {
    transform: translate(7px, 5px) rotate(2.5deg);
  }
  32% {
    transform: translate(7px, 6px) rotate(1.5deg);
  }
  34% {
    transform: translate(0px, 9px) rotate(0.5deg);
  }
  36% {
    transform: translate(10px, -8px) rotate(0.5deg);
  }
  38% {
    transform: translate(-1px, 9px) rotate(3.5deg);
  }
  40% {
    transform: translate(-6px, 2px) rotate(2.5deg);
  }
  42% {
    transform: translate(-1px, -8px) rotate(-1.5deg);
  }
  44% {
    transform: translate(-9px, 4px) rotate(1.5deg);
  }
  46% {
    transform: translate(-8px, -6px) rotate(1.5deg);
  }
  48% {
    transform: translate(-2px, 8px) rotate(-2.5deg);
  }
  50% {
    transform: translate(3px, 9px) rotate(-2.5deg);
  }
  52% {
    transform: translate(7px, -9px) rotate(3.5deg);
  }
  54% {
    transform: translate(-6px, 4px) rotate(-2.5deg);
  }
  56% {
    transform: translate(2px, -4px) rotate(-2.5deg);
  }
  58% {
    transform: translate(4px, -9px) rotate(2.5deg);
  }
  60% {
    transform: translate(-1px, 4px) rotate(-1.5deg);
  }
  62% {
    transform: translate(-8px, -5px) rotate(-1.5deg);
  }
  64% {
    transform: translate(-5px, -6px) rotate(-2.5deg);
  }
  66% {
    transform: translate(9px, -7px) rotate(2.5deg);
  }
  68% {
    transform: translate(-6px, -3px) rotate(-0.5deg);
  }
  70% {
    transform: translate(6px, -8px) rotate(1.5deg);
  }
  72% {
    transform: translate(9px, 8px) rotate(0.5deg);
  }
  74% {
    transform: translate(7px, 1px) rotate(2.5deg);
  }
  76% {
    transform: translate(-9px, -4px) rotate(1.5deg);
  }
  78% {
    transform: translate(-8px, 0px) rotate(-0.5deg);
  }
  80% {
    transform: translate(6px, -7px) rotate(1.5deg);
  }
  82% {
    transform: translate(8px, -2px) rotate(2.5deg);
  }
  84% {
    transform: translate(4px, -5px) rotate(1.5deg);
  }
  86% {
    transform: translate(6px, 5px) rotate(-1.5deg);
  }
  88% {
    transform: translate(-2px, -2px) rotate(-1.5deg);
  }
  90% {
    transform: translate(-3px, 4px) rotate(-0.5deg);
  }
  92% {
    transform: translate(-6px, -4px) rotate(-0.5deg);
  }
  94% {
    transform: translate(6px, -7px) rotate(2.5deg);
  }
  96% {
    transform: translate(-5px, -3px) rotate(3.5deg);
  }
  98% {
    transform: translate(5px, 9px) rotate(-2.5deg);
  }
  0%, 100% {
    transform: translate(0, 0) rotate(0);
  }
}
.shake-hard:hover,
.shake-trigger:hover .shake-hard, .shake-hard.shake-freeze, .shake-hard.shake-constant {
  animation-name: shake-hard;
  animation-duration: 100ms;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes shake-horizontal {
  2% {
    transform: translate(0px, 0) rotate(0);
  }
  4% {
    transform: translate(4px, 0) rotate(0);
  }
  6% {
    transform: translate(-5px, 0) rotate(0);
  }
  8% {
    transform: translate(8px, 0) rotate(0);
  }
  10% {
    transform: translate(3px, 0) rotate(0);
  }
  12% {
    transform: translate(4px, 0) rotate(0);
  }
  14% {
    transform: translate(-6px, 0) rotate(0);
  }
  16% {
    transform: translate(9px, 0) rotate(0);
  }
  18% {
    transform: translate(-6px, 0) rotate(0);
  }
  20% {
    transform: translate(6px, 0) rotate(0);
  }
  22% {
    transform: translate(9px, 0) rotate(0);
  }
  24% {
    transform: translate(-1px, 0) rotate(0);
  }
  26% {
    transform: translate(-2px, 0) rotate(0);
  }
  28% {
    transform: translate(3px, 0) rotate(0);
  }
  30% {
    transform: translate(10px, 0) rotate(0);
  }
  32% {
    transform: translate(3px, 0) rotate(0);
  }
  34% {
    transform: translate(-9px, 0) rotate(0);
  }
  36% {
    transform: translate(8px, 0) rotate(0);
  }
  38% {
    transform: translate(-2px, 0) rotate(0);
  }
  40% {
    transform: translate(1px, 0) rotate(0);
  }
  42% {
    transform: translate(-5px, 0) rotate(0);
  }
  44% {
    transform: translate(-4px, 0) rotate(0);
  }
  46% {
    transform: translate(0px, 0) rotate(0);
  }
  48% {
    transform: translate(3px, 0) rotate(0);
  }
  50% {
    transform: translate(10px, 0) rotate(0);
  }
  52% {
    transform: translate(7px, 0) rotate(0);
  }
  54% {
    transform: translate(-8px, 0) rotate(0);
  }
  56% {
    transform: translate(-5px, 0) rotate(0);
  }
  58% {
    transform: translate(-4px, 0) rotate(0);
  }
  60% {
    transform: translate(7px, 0) rotate(0);
  }
  62% {
    transform: translate(-1px, 0) rotate(0);
  }
  64% {
    transform: translate(9px, 0) rotate(0);
  }
  66% {
    transform: translate(7px, 0) rotate(0);
  }
  68% {
    transform: translate(4px, 0) rotate(0);
  }
  70% {
    transform: translate(9px, 0) rotate(0);
  }
  72% {
    transform: translate(1px, 0) rotate(0);
  }
  74% {
    transform: translate(2px, 0) rotate(0);
  }
  76% {
    transform: translate(-9px, 0) rotate(0);
  }
  78% {
    transform: translate(0px, 0) rotate(0);
  }
  80% {
    transform: translate(0px, 0) rotate(0);
  }
  82% {
    transform: translate(6px, 0) rotate(0);
  }
  84% {
    transform: translate(-4px, 0) rotate(0);
  }
  86% {
    transform: translate(10px, 0) rotate(0);
  }
  88% {
    transform: translate(-5px, 0) rotate(0);
  }
  90% {
    transform: translate(-8px, 0) rotate(0);
  }
  92% {
    transform: translate(0px, 0) rotate(0);
  }
  94% {
    transform: translate(-5px, 0) rotate(0);
  }
  96% {
    transform: translate(-2px, 0) rotate(0);
  }
  98% {
    transform: translate(8px, 0) rotate(0);
  }
  0%, 100% {
    transform: translate(0, 0) rotate(0);
  }
}
.shake-horizontal:hover,
.shake-trigger:hover .shake-horizontal, .shake-horizontal.shake-freeze, .shake-horizontal.shake-constant {
  animation-name: shake-horizontal;
  animation-duration: 100ms;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes shake-vertical {
  2% {
    transform: translate(0, -5px) rotate(0);
  }
  4% {
    transform: translate(0, 3px) rotate(0);
  }
  6% {
    transform: translate(0, 0px) rotate(0);
  }
  8% {
    transform: translate(0, 3px) rotate(0);
  }
  10% {
    transform: translate(0, -1px) rotate(0);
  }
  12% {
    transform: translate(0, -4px) rotate(0);
  }
  14% {
    transform: translate(0, -3px) rotate(0);
  }
  16% {
    transform: translate(0, 0px) rotate(0);
  }
  18% {
    transform: translate(0, 5px) rotate(0);
  }
  20% {
    transform: translate(0, 9px) rotate(0);
  }
  22% {
    transform: translate(0, 7px) rotate(0);
  }
  24% {
    transform: translate(0, -3px) rotate(0);
  }
  26% {
    transform: translate(0, 10px) rotate(0);
  }
  28% {
    transform: translate(0, 1px) rotate(0);
  }
  30% {
    transform: translate(0, 8px) rotate(0);
  }
  32% {
    transform: translate(0, -7px) rotate(0);
  }
  34% {
    transform: translate(0, 5px) rotate(0);
  }
  36% {
    transform: translate(0, 2px) rotate(0);
  }
  38% {
    transform: translate(0, -7px) rotate(0);
  }
  40% {
    transform: translate(0, -2px) rotate(0);
  }
  42% {
    transform: translate(0, 10px) rotate(0);
  }
  44% {
    transform: translate(0, 2px) rotate(0);
  }
  46% {
    transform: translate(0, 0px) rotate(0);
  }
  48% {
    transform: translate(0, -5px) rotate(0);
  }
  50% {
    transform: translate(0, 10px) rotate(0);
  }
  52% {
    transform: translate(0, 1px) rotate(0);
  }
  54% {
    transform: translate(0, -7px) rotate(0);
  }
  56% {
    transform: translate(0, -7px) rotate(0);
  }
  58% {
    transform: translate(0, -9px) rotate(0);
  }
  60% {
    transform: translate(0, 6px) rotate(0);
  }
  62% {
    transform: translate(0, 5px) rotate(0);
  }
  64% {
    transform: translate(0, -9px) rotate(0);
  }
  66% {
    transform: translate(0, 3px) rotate(0);
  }
  68% {
    transform: translate(0, 3px) rotate(0);
  }
  70% {
    transform: translate(0, -5px) rotate(0);
  }
  72% {
    transform: translate(0, 9px) rotate(0);
  }
  74% {
    transform: translate(0, 8px) rotate(0);
  }
  76% {
    transform: translate(0, 1px) rotate(0);
  }
  78% {
    transform: translate(0, 8px) rotate(0);
  }
  80% {
    transform: translate(0, -1px) rotate(0);
  }
  82% {
    transform: translate(0, -6px) rotate(0);
  }
  84% {
    transform: translate(0, -4px) rotate(0);
  }
  86% {
    transform: translate(0, 2px) rotate(0);
  }
  88% {
    transform: translate(0, -5px) rotate(0);
  }
  90% {
    transform: translate(0, 10px) rotate(0);
  }
  92% {
    transform: translate(0, -4px) rotate(0);
  }
  94% {
    transform: translate(0, -1px) rotate(0);
  }
  96% {
    transform: translate(0, 2px) rotate(0);
  }
  98% {
    transform: translate(0, 2px) rotate(0);
  }
  0%, 100% {
    transform: translate(0, 0) rotate(0);
  }
}
.shake-vertical:hover,
.shake-trigger:hover .shake-vertical, .shake-vertical.shake-freeze, .shake-vertical.shake-constant {
  animation-name: shake-vertical;
  animation-duration: 100ms;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes shake-rotate {
  2% {
    transform: translate(0, 0) rotate(3.5deg);
  }
  4% {
    transform: translate(0, 0) rotate(-1.5deg);
  }
  6% {
    transform: translate(0, 0) rotate(-5.5deg);
  }
  8% {
    transform: translate(0, 0) rotate(0.5deg);
  }
  10% {
    transform: translate(0, 0) rotate(4.5deg);
  }
  12% {
    transform: translate(0, 0) rotate(-3.5deg);
  }
  14% {
    transform: translate(0, 0) rotate(5.5deg);
  }
  16% {
    transform: translate(0, 0) rotate(5.5deg);
  }
  18% {
    transform: translate(0, 0) rotate(0.5deg);
  }
  20% {
    transform: translate(0, 0) rotate(7.5deg);
  }
  22% {
    transform: translate(0, 0) rotate(-4.5deg);
  }
  24% {
    transform: translate(0, 0) rotate(-0.5deg);
  }
  26% {
    transform: translate(0, 0) rotate(4.5deg);
  }
  28% {
    transform: translate(0, 0) rotate(2.5deg);
  }
  30% {
    transform: translate(0, 0) rotate(-4.5deg);
  }
  32% {
    transform: translate(0, 0) rotate(4.5deg);
  }
  34% {
    transform: translate(0, 0) rotate(3.5deg);
  }
  36% {
    transform: translate(0, 0) rotate(-6.5deg);
  }
  38% {
    transform: translate(0, 0) rotate(5.5deg);
  }
  40% {
    transform: translate(0, 0) rotate(-4.5deg);
  }
  42% {
    transform: translate(0, 0) rotate(1.5deg);
  }
  44% {
    transform: translate(0, 0) rotate(1.5deg);
  }
  46% {
    transform: translate(0, 0) rotate(-4.5deg);
  }
  48% {
    transform: translate(0, 0) rotate(-1.5deg);
  }
  50% {
    transform: translate(0, 0) rotate(-4.5deg);
  }
  52% {
    transform: translate(0, 0) rotate(-3.5deg);
  }
  54% {
    transform: translate(0, 0) rotate(-6.5deg);
  }
  56% {
    transform: translate(0, 0) rotate(-3.5deg);
  }
  58% {
    transform: translate(0, 0) rotate(2.5deg);
  }
  60% {
    transform: translate(0, 0) rotate(3.5deg);
  }
  62% {
    transform: translate(0, 0) rotate(-0.5deg);
  }
  64% {
    transform: translate(0, 0) rotate(2.5deg);
  }
  66% {
    transform: translate(0, 0) rotate(0.5deg);
  }
  68% {
    transform: translate(0, 0) rotate(4.5deg);
  }
  70% {
    transform: translate(0, 0) rotate(-6.5deg);
  }
  72% {
    transform: translate(0, 0) rotate(-4.5deg);
  }
  74% {
    transform: translate(0, 0) rotate(4.5deg);
  }
  76% {
    transform: translate(0, 0) rotate(7.5deg);
  }
  78% {
    transform: translate(0, 0) rotate(-5.5deg);
  }
  80% {
    transform: translate(0, 0) rotate(1.5deg);
  }
  82% {
    transform: translate(0, 0) rotate(-5.5deg);
  }
  84% {
    transform: translate(0, 0) rotate(-1.5deg);
  }
  86% {
    transform: translate(0, 0) rotate(0.5deg);
  }
  88% {
    transform: translate(0, 0) rotate(-6.5deg);
  }
  90% {
    transform: translate(0, 0) rotate(4.5deg);
  }
  92% {
    transform: translate(0, 0) rotate(-4.5deg);
  }
  94% {
    transform: translate(0, 0) rotate(4.5deg);
  }
  96% {
    transform: translate(0, 0) rotate(-1.5deg);
  }
  98% {
    transform: translate(0, 0) rotate(7.5deg);
  }
  0%, 100% {
    transform: translate(0, 0) rotate(0);
  }
}
.shake-rotate:hover,
.shake-trigger:hover .shake-rotate, .shake-rotate.shake-freeze, .shake-rotate.shake-constant {
  animation-name: shake-rotate;
  animation-duration: 100ms;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes shake-opacity {
  10% {
    transform: translate(-4px, 2px) rotate(-0.5deg);
    opacity: 0.87;
  }
  20% {
    transform: translate(-1px, -3px) rotate(0.5deg);
    opacity: 0.01;
  }
  30% {
    transform: translate(-4px, -2px) rotate(1.5deg);
    opacity: 0.76;
  }
  40% {
    transform: translate(-1px, 1px) rotate(0.5deg);
    opacity: 0.4;
  }
  50% {
    transform: translate(-1px, -1px) rotate(2.5deg);
    opacity: 0.1;
  }
  60% {
    transform: translate(-1px, -1px) rotate(-1.5deg);
    opacity: 0.09;
  }
  70% {
    transform: translate(-2px, -1px) rotate(-1.5deg);
    opacity: 0.3;
  }
  80% {
    transform: translate(-1px, -3px) rotate(-0.5deg);
    opacity: 0.91;
  }
  90% {
    transform: translate(2px, 5px) rotate(-0.5deg);
    opacity: 0.76;
  }
  0%, 100% {
    transform: translate(0, 0) rotate(0);
  }
}
.shake-opacity:hover,
.shake-trigger:hover .shake-opacity, .shake-opacity.shake-freeze, .shake-opacity.shake-constant {
  animation-name: shake-opacity;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes shake-crazy {
  10% {
    transform: translate(16px, 11px) rotate(5deg);
    opacity: 0.14;
  }
  20% {
    transform: translate(17px, -8px) rotate(8deg);
    opacity: 0.46;
  }
  30% {
    transform: translate(9px, 8px) rotate(5deg);
    opacity: 0.22;
  }
  40% {
    transform: translate(16px, 14px) rotate(1deg);
    opacity: 0.92;
  }
  50% {
    transform: translate(1px, 11px) rotate(4deg);
    opacity: 0.2;
  }
  60% {
    transform: translate(13px, -10px) rotate(-4deg);
    opacity: 0.72;
  }
  70% {
    transform: translate(6px, -10px) rotate(-3deg);
    opacity: 0.2;
  }
  80% {
    transform: translate(11px, -18px) rotate(8deg);
    opacity: 0.7;
  }
  90% {
    transform: translate(-10px, -18px) rotate(9deg);
    opacity: 0.34;
  }
  0%, 100% {
    transform: translate(0, 0) rotate(0);
  }
}
.shake-crazy:hover,
.shake-trigger:hover .shake-crazy, .shake-crazy.shake-freeze, .shake-crazy.shake-constant {
  animation-name: shake-crazy;
  animation-duration: 100ms;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes shake-chunk {
  2% {
    transform: translate(-10px, -2px) rotate(8deg);
  }
  4% {
    transform: translate(5px, 12px) rotate(10deg);
  }
  6% {
    transform: translate(6px, 6px) rotate(0deg);
  }
  8% {
    transform: translate(-13px, -12px) rotate(-6deg);
  }
  10% {
    transform: translate(15px, 11px) rotate(15deg);
  }
  12% {
    transform: translate(-4px, -8px) rotate(2deg);
  }
  14% {
    transform: translate(0px, -11px) rotate(2deg);
  }
  16% {
    transform: translate(10px, 8px) rotate(9deg);
  }
  18% {
    transform: translate(3px, 12px) rotate(15deg);
  }
  20% {
    transform: translate(7px, 1px) rotate(10deg);
  }
  22% {
    transform: translate(10px, 15px) rotate(-13deg);
  }
  24% {
    transform: translate(3px, 5px) rotate(12deg);
  }
  26% {
    transform: translate(-5px, -11px) rotate(-11deg);
  }
  28% {
    transform: translate(11px, 11px) rotate(3deg);
  }
  30% {
    transform: translate(-3px, -1px) rotate(-6deg);
  }
  32% {
    transform: translate(11px, 5px) rotate(14deg);
  }
  34% {
    transform: translate(-11px, -7px) rotate(-2deg);
  }
  36% {
    transform: translate(3px, 6px) rotate(-14deg);
  }
  38% {
    transform: translate(10px, 11px) rotate(-5deg);
  }
  0%, 40%, 100% {
    transform: translate(0, 0) rotate(0);
  }
}
.shake-chunk:hover,
.shake-trigger:hover .shake-chunk, .shake-chunk.shake-freeze, .shake-chunk.shake-constant {
  animation-name: shake-chunk;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

body#grey {
  background: linear-gradient(-35deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
  background-size: 400% 400%;
  animation: Gradient 15s ease infinite;
}

@keyframes Gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.main-bs-o-meter {
  padding: 20px 0 5vw 0;
}
@media screen and (max-width: 800px) {
  .main-bs-o-meter {
    padding: 20px 0 8vh 0;
  }
}
@media screen and (max-width: 420px) {
  .main-bs-o-meter {
    padding: 10px 0 3vh 0;
  }
}

.kuppel {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100px;
  height: 70px;
  background-image: url(/img/kuppel.svg);
  background-repeat: no-repeat;
  background-size: 80px;
  background-position: bottom center;
  filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.2));
}
@media screen and (max-width: 420px) {
  .kuppel {
    width: 80px;
    height: 50px;
    background-size: 60px;
  }
}

.spinner {
  position: relative;
  height: 40px;
  width: 30px;
  margin: auto;
  visibility: hidden;
}

.spinner-spin {
  transform: translate(-50%, -15%);
  visibility: visible;
}
@media screen and (max-width: 420px) {
  .spinner-spin {
    transform: translate(-15%, 5%);
  }
}

.spinner span {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  display: block;
  position: absolute;
  opacity: 0.7;
}
@media screen and (max-width: 420px) {
  .spinner span {
    width: 20px;
    height: 20px;
  }
}

.spinner .ball-1 {
  z-index: 4;
  background-color: #D80D17;
  left: -20px;
  -webkit-transform: translate(50%, 50%) scale(0.5);
  animation: animateSway 2s infinite ease-in-out, animateScale 2s infinite ease-in-out;
}

.spinner .ball-2 {
  z-index: 3;
  background-color: #323232;
  left: -20px;
  -webkit-transform: translate(50%, 50%) scale(0.5);
  animation: animateSway 2s infinite ease-in-out 500ms, animateScale 2s infinite ease-in-out 500ms;
}

.spinner .ball-3 {
  z-index: 2;
  background-color: #FF7600;
  left: -20px;
  -webkit-transform: translate(50%, 50%) scale(0.5);
  animation: animateSway 2s infinite ease-in-out 1s, animateScale 2s infinite ease-in-out 1s;
}

.spinner .ball-4 {
  z-index: 1;
  background-color: #0097FF;
  left: -20px;
  -webkit-transform: translate(50%, 50%) scale(0.5);
  animation: animateSway 2s infinite ease-in-out 1.5s, animateScale 2s infinite ease-in-out 1.5s;
}

@keyframes animateSway {
  0% {
    left: -20px;
  }
  50% {
    left: 20px;
  }
  100% {
    left: -20px;
  }
}
@keyframes animateScale {
  0% {
    transform: translate(50%, 50%) scale(0.5);
    z-index: -1;
  }
  25% {
    transform: translate(50%, 50%) scale(1);
    z-index: 1;
  }
  50% {
    transform: translate(50%, 50%) scale(0.5);
    z-index: -1;
  }
  75% {
    transform: translate(50%, 50%) scale(0.25);
    z-index: -2;
  }
  100% {
    transform: translate(50%, 50%) scale(0.5);
    z-index: -1;
  }
}
.app {
  padding: 0px 0 25px 0;
  border: 1px solid;
  max-width: 320px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 12px solid black;
  border-radius: 10px;
  background: #717B84;
  box-shadow: 0px 7px 50px -3px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 420px) {
  .app {
    width: 255px;
    border: 6px solid black;
  }
}

.cooler-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-image: url(../img/bo_play_pattern.png);
  padding: 10px 0 50px 0;
  border-bottom: 7px solid black;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 420px) {
  .cooler-box {
    padding: 10px 0 30px 0;
  }
}

.label-bs-o-meter {
  text-align: center;
  font-size: 1rem;
  color: black;
  margin-top: 10px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@keyframes volume {
  0% {
    transform: rotate(130deg);
  }
  2% {
    transform: rotate(145deg);
  }
  4% {
    transform: rotate(210deg);
  }
  9% {
    transform: rotate(240deg);
  }
  15% {
    transform: rotate(230deg);
  }
  20% {
    transform: rotate(200deg);
  }
  22% {
    transform: rotate(180deg);
  }
  25% {
    transform: rotate(210deg);
  }
  30% {
    transform: rotate(230deg);
  }
  32% {
    transform: rotate(240deg);
  }
  35% {
    transform: rotate(200deg);
  }
  40% {
    transform: rotate(230deg);
  }
  43% {
    transform: rotate(210deg);
  }
  47% {
    transform: rotate(230deg);
  }
  50% {
    transform: rotate(200deg);
  }
  60% {
    transform: rotate(210deg);
  }
  80% {
    transform: rotate(230deg);
  }
  90% {
    transform: rotate(200deg);
  }
  100% {
    transform: rotate(230deg);
  }
}
.meter-box {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 250px;
  height: 150px;
  border: 5px solid #363636;
  border-radius: 4px;
  box-shadow: inset 0 0px 10px rgba(0, 0, 0, 0.5), 0 3px 3px 0 rgba(0, 0, 0, 0.7), 0 -1px 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  background-image: url(../img/pegel.svg);
  background-repeat: no-repeat;
  background-size: 200px;
  background-position: center center;
  background-color: #f1ebda;
  background-blend-mode: multiply;
}
@media screen and (max-width: 420px) {
  .meter-box {
    margin-top: 30px;
  }
}

.meter-display {
  position: relative;
  top: 150px;
  width: 100%;
}

.sockel {
  width: 50px;
  height: 50px;
  background-color: black;
  box-shadow: 0 0 200px 130px rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.sockel:after {
  height: 100px;
  background-color: black;
}

.pegel-anfang {
  transform: rotate(130deg);
}

.pegel-ausschlag {
  animation: volume 60s linear infinite;
}

.pegel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transform: rotate(130deg);
}

.pegel:after {
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  content: "";
  width: 4px;
  margin-left: -2px;
  transform-origin: top center;
}

.btn-label {
  color: white;
  text-align: center;
  text-shadow: 0 -1px 2px rgba(0, 0, 0, 0.5);
  margin-top: -5px;
}
@media screen and (max-width: 420px) {
  .btn-label {
    margin-top: -5px;
    text-shadow: none;
  }
}

.meter-btn {
  margin: auto;
  margin-top: 70px;
  margin-bottom: 50px;
  width: 120px;
  height: 50px;
  border: 3px solid #3d4852;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(-180deg, #00DB6F 1%, #01a54a 100%);
  box-shadow: 0 3px 3px -1px rgba(0, 0, 0, 0.9), inset 0 1px 1px rgba(0, 0, 0, 0.2), 0 5px 10px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 420px) {
  .meter-btn {
    width: 100px;
    height: 50px;
    margin-top: 40px;
    margin-bottom: 10px;
  }
}

.meter-btn-activ {
  background-image: linear-gradient(-180deg, #F5515F 0%, #9F041B 100%);
}

.bs-o-meter-home-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
  margin-bottom: 5vw;
}

.home-icon-bs-o-meter {
  fill: black;
  width: 50px;
}

.meter-nav {
  margin: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 450px;
  margin-bottom: 20vw;
}

.meter-nav-item {
  font-family: "Asap-Medium";
  font-weight: 500;
  font-size: 2rem;
  color: white;
  text-align: center;
  width: 100px;
  padding: 10px;
  border: 1px solid white;
  border-radius: 6px;
}
.meter-nav-item:hover {
  background-color: rgba(255, 255, 255, 0.25);
  color: black;
  border: 1px solid transparent;
}
.meter-nav-item:active {
  background-color: rgba(255, 255, 255, 0);
  color: black;
  border: 1px solid black;
}

/* ============================   Navigation ============================ */
.bs-o-nav {
  display: flex;
  padding: 0 0px 0 0;
  margin-bottom: 10vw;
}

.home-box-extra {
  width: 40px;
  margin: 10px 0 0 20px;
}

.bs-o-menu {
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  padding: 15px 10px 0 10px;
}
@media screen and (max-width: 768px) {
  .bs-o-menu {
    padding: 10px 10px 0 0;
  }
}
@media screen and (max-width: 550px) {
  .bs-o-menu {
    width: 100%;
    padding: 10px 10px 0 0;
  }
}

.bs-o-menu-item {
  color: #565656;
  font-size: 1.9rem;
  font-weight: 700;
  margin: 0 0 0 15px;
  padding: 5px 5px 5px 5px;
  border-bottom: 2px solid transparent;
}
.bs-o-menu-item:hover {
  color: #3C7BD6;
  border-bottom: 2px solid red;
}
@media screen and (max-width: 550px) {
  .bs-o-menu-item {
    margin: 0 0 0 0;
  }
}
@media screen and (max-width: 350px) {
  .bs-o-menu-item {
    font-size: 1.7rem;
    letter-spacing: -0.5px;
  }
}

/* ============================   3D Ding BS-O-Product ============================ */
.card-space {
  padding: 0;
  perspective: 1000px;
  transform-style: preserve-3d;
  margin-top: -4vw;
}

.card {
  position: relative;
  top: 0;
  padding: 0;
  margin: auto;
  transform: translateZ(0);
  transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  pointer-events: none;
}

.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  max-height: 600px;
  transform: rotateX(20deg);
}
@media screen and (max-width: 400px) {
  .card-content {
    max-height: 400px;
  }
}

/* -------------------------  Schatten BS-O-Product ----------------------- */
#bs-o-product {
  position: relative;
  z-index: 100;
  width: 100%;
  max-width: 300px;
}
@media screen and (max-width: 400px) {
  #bs-o-product {
    max-width: 200px;
  }
}

#bs-o-shadow {
  position: relative;
  margin: auto;
  width: 100%;
  max-width: 380px;
  top: 0px;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 1;
  transform: translateY(-450px);
  z-index: 0;
}
@media screen and (max-width: 400px) {
  #bs-o-shadow {
    transform: translateY(-290px);
    max-width: 250px;
  }
}

/* ============================   What is  ============================ */
.what-is-container {
  margin: auto;
  margin-bottom: 10vw;
}
@media screen and (max-width: 700px) {
  .what-is-container {
    margin-bottom: 15vw;
  }
}
@media screen and (max-width: 550px) {
  .what-is-container {
    margin-bottom: 12vh;
  }
}

.what-is-container > p {
  margin: auto;
  text-align: center;
  line-height: 1.8;
  font-size: 2.5rem;
  max-width: 80%;
}
@media screen and (max-width: 750px) {
  .what-is-container > p {
    font-size: 3.3vw;
  }
}
@media screen and (max-width: 650px) {
  .what-is-container > p {
    max-width: 90%;
    font-size: 2.6vh;
  }
}
@media screen and (max-width: 450px) {
  .what-is-container > p {
    max-width: 100%;
    font-size: 1.9rem;
  }
}

/* ============================   How it works  ============================ */
.feature-container {
  align-self: center;
  display: flex;
  justify-content: space-around;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .feature-container {
    flex-direction: column;
    margin-bottom: 5vw;
  }
}

.feature-box {
  width: 33.33%;
  max-width: 400px;
  margin: 0 25px 0 25px;
}
@media screen and (max-width: 768px) {
  .feature-box {
    width: 100%;
    max-width: 100%;
    margin: 0 0 10vh 0;
  }
}

.number {
  float: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  font-size: 2rem;
  margin-right: 10px;
  color: white;
}
@media screen and (max-width: 768px) {
  .number {
    float: none;
    margin: auto;
    margin-bottom: 10px;
    width: 50px;
    height: 50px;
  }
}

#no-one {
  background-color: #FF7600;
}

#no-two {
  background-color: #02A44A;
}

#no-three {
  background-color: #D80D17;
}

.gadget {
  max-width: 200px;
  max-height: 200px;
  margin: auto;
  display: block;
  margin-top: 30px;
}

.feature-image-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
  height: auto;
  width: auto;
}
@media screen and (max-width: 768px) {
  .feature-image-box {
    margin-top: 20px;
  }
}

#messung-image {
  width: 80px;
}

#signal-image {
  width: 100px;
}

@media screen and (max-width: 768px) {
  .feature-box > p {
    width: 80%;
    text-align: center;
    margin: auto;
  }
}
@media screen and (max-width: 550px) {
  .feature-box > p {
    width: 90%;
  }
}

/* -------------------------   More Infos Box  ------------------------- */
.more-info-box {
  align-self: center;
  display: flex;
  justify-content: space-around;
  width: 100%;
  max-width: 450px;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .more-info-box {
    margin-bottom: 15vw;
  }
}
@media screen and (max-width: 600px) {
  .more-info-box {
    flex-direction: column;
    align-items: center;
  }
}

.video-info-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 60px;
  padding: 10px 7px 10px 7px;
  font-family: inherit;
  font-size: 2rem;
  color: #3C7BD6;
  text-align: center;
  border: 2px solid #3C7BD6;
  border-radius: 6px;
}
@media screen and (max-width: 600px) {
  .video-info-btn {
    margin-bottom: 30px;
  }
}

/* ============================   Testimonials ============================ */
.testimonials-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 90px;
}
@media screen and (max-width: 1200px) {
  .testimonials-container {
    margin-bottom: 10vh;
  }
}
@media screen and (max-width: 768px) {
  .testimonials-container {
    margin-bottom: 10vh;
  }
}

.testimonials-container > h2 {
  text-align: center;
  max-width: 100%;
  margin-bottom: 50px;
}

/* ----------------------------  Avatare und Statements -------------------- */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 100%;
  max-width: 1500px;
  margin: 0 0 0 0;
}
@media screen and (max-width: 1000px) {
  .testimonials-grid {
    padding: 0 10vw 0 10vw;
  }
}
@media screen and (max-width: 550px) {
  .testimonials-grid {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }
}

.testimonials-grid > figure {
  width: 300px;
  justify-content: flex-start;
  margin: 0 1vw 50px 1vw;
}
@media screen and (max-width: 550px) {
  .testimonials-grid > figure {
    width: 90%;
    margin: 0px 1vw 30px 1vw;
  }
}

.testimonials-grid > figure > img {
  margin: auto;
  width: 200px;
  border-radius: 100%;
}
@media screen and (max-width: 550px) {
  .testimonials-grid > figure > img {
    max-width: 150px;
  }
}

.testimonials {
  font-size: 1.7rem;
  text-align: center;
  margin: 15px 0 0 0;
}
@media screen and (max-width: 768px) {
  .testimonials {
    font-size: 1.9;
    line-height: 1.6;
  }
}

/* ============================  Call To Action mit Button "Jetzt Messen" ============================ */
.cta-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: auto;
  margin-bottom: 12vw;
}
@media screen and (max-width: 768px) {
  .cta-box {
    margin-bottom: 15vh;
  }
}

.cta-box > h2 {
  text-align: center;
  margin-bottom: 1vw;
  width: 100%;
}

/* ---------------------------- Button-Box und Button -------------------- */
.cta-btn-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
}

.cta-btn {
  margin: 10px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 0 5px 0;
  width: 160px;
  height: 60px;
  font-size: 2rem;
  color: white;
  background-color: #FF813F;
  border-radius: 8px;
  border-radius: 3px;
  border: 1px solid transparent;
  box-shadow: 0 2px 8px 0 rgba(0, 134, 243, 0.35);
  transition: box-shadow 0.4s ease, background-color 0.4s ease, color 0.4s ease;
  background: linear-gradient(-35deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
  background-size: 400% 400%;
  animation: Gradient 15s ease infinite;
}
.cta-btn:hover {
  box-shadow: 0 7px 15px -3px rgba(0, 134, 243, 0.45);
  text-decoration: none;
}
.cta-btn:active {
  box-shadow: 0 1px 5px 0 rgba(0, 134, 243, 0.45);
}

.cta-btn-box-secondary {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10vw;
  margin-bottom: 10vw;
  text-align: center;
}

.cta-btn-secondary {
  width: 110px;
  height: 40px;
  font-size: 1.7rem;
  margin-top: 10px;
}

/* ============================   Travis und die Wahrheit | Truth Box ============================ */
.truth-box {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 0 12vw 0;
}

.truth-box > img {
  margin-left: 5%;
  margin-right: 50px;
}
@media screen and (max-width: 1000px) {
  .truth-box > img {
    margin-right: 3vw;
  }
}
@media screen and (max-width: 600px) {
  .truth-box > img {
    margin-right: 5%;
    width: 80px;
  }
}

.truth-quote {
  font-family: inherit;
  max-width: 500px;
  background: transparent;
  box-shadow: none;
  border-left: none;
}
@media screen and (max-width: 550px) {
  .truth-quote {
    padding: 0;
    margin: 5rem 0 0 0;
  }
}
.truth-quote.truth-quote:before {
  color: red;
}

.dave-link {
  font-size: 2.2rem;
  padding: 0 10px 0 5px;
  color: #DD0000;
}
.dave-link:hover {
  color: #3C7BD6;
}

#uncle-dave {
  display: block;
  color: initial;
  text-decoration: none;
  font-size: 1.1rem;
  margin: 100px 0 0 5%;
}

#uncle-dave > sup {
  font-size: 1.9rem;
}

/* ============================   Seite 2 | Erklär- und Video Seite  ============================ */
.top-nav-extra {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

#hero-small {
  width: 70vw;
  margin: auto;
  margin-bottom: 10vw;
  margin-top: -5vw;
}
@media screen and (max-width: 1200px) {
  #hero-small {
    width: 85vw;
    margin-bottom: 15vw;
    margin-top: -5vw;
  }
}
@media screen and (max-width: 1000px) {
  #hero-small {
    width: 90vw;
    margin-bottom: 5vw;
    margin-top: 0vw;
  }
}

.product-section {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.product-description-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 7vw;
}
@media screen and (max-width: 550px) {
  .product-description-container {
    margin-bottom: 8vh;
  }
}

.product-description-container > p {
  text-align: center;
  margin-bottom: 1vw;
  width: 100%;
  max-width: 800px;
}

/* ---------------------------   Erklär und Video ------------------------- */
.product-video-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .product-video-container {
    flex-direction: column;
    align-items: center;
  }
}

.homescreen-container {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .homescreen-container {
    flex-direction: column;
    align-items: center;
  }
}

#homescreen {
  max-width: 304px;
}

/* ---------------------------   demo Video ------------------------- */
.demo-video-container {
  display: block;
  width: 50%;
}
@media screen and (max-width: 1000px) {
  .demo-video-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 30px;
  }
}

.bs-o-demo-video {
  width: 100%;
  max-width: 450px;
  min-width: 300px;
}

.second-product-video-container {
  margin-top: 10vw;
}

#order-left {
  display: flex;
  justify-content: flex-end;
  order: 1;
}
@media screen and (max-width: 1000px) {
  #order-left {
    margin-left: 0;
    width: 100%;
    align-items: center;
  }
}

#order-right {
  display: flex;
  align-items: flex-start;
  order: 2;
  width: 50%;
}
@media screen and (max-width: 1000px) {
  #order-right {
    order: 1;
    width: 100%;
    align-items: center;
  }
}

/* ---------------------------  Demo Text ------------------------- */
.demo-text-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin: 3vw 0 0 0;
  width: 50%;
}
@media screen and (max-width: 1000px) {
  .demo-text-box {
    width: 100%;
    align-items: center;
    text-align: left;
    margin-top: 3vw;
    margin-right: 0;
  }
}

.demo-text-box > p {
  max-width: 500px;
}
@media screen and (max-width: 1000px) {
  .demo-text-box > p {
    max-width: 600px;
  }
}

.demo-text-box-one {
  margin-right: 50px;
}
@media screen and (max-width: 1000px) {
  .demo-text-box-one {
    margin-right: 0;
  }
}

.demo-text-box-one > h2 {
  text-align: right;
  width: 100%;
  max-width: 500px;
}
@media screen and (max-width: 1000px) {
  .demo-text-box-one > h2 {
    text-align: center;
  }
}

.demo-text-box-one > p {
  text-align: right;
}
@media screen and (max-width: 1000px) {
  .demo-text-box-one > p {
    text-align: left;
  }
}

.demo-text-box-two {
  margin-left: 50px;
}
@media screen and (max-width: 1000px) {
  .demo-text-box-two {
    margin-left: 0;
  }
}

.demo-text-box-two > h2 {
  text-align: left;
}
@media screen and (max-width: 1000px) {
  .demo-text-box-two > h2 {
    text-align: center;
  }
}

.demo-text-box-two > p {
  text-align: left;
}

.demo-text-box-three {
  margin-right: 50px;
}
@media screen and (max-width: 1000px) {
  .demo-text-box-three {
    margin-right: 0;
  }
}

.demo-text-box-three > h2 {
  text-align: right;
}
@media screen and (max-width: 1000px) {
  .demo-text-box-three > h2 {
    text-align: center;
  }
}

.demo-text-box-three > p {
  text-align: right;
}
@media screen and (max-width: 1000px) {
  .demo-text-box-three > p {
    text-align: left;
  }
}

/* ---------------------------   Datenblatt Tabelle ------------------------- */
.datenblatt-table {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 1.6rem;
  width: 100%;
  margin: auto;
  margin-bottom: 5vw;
  max-width: 800px;
  overflow-x: scroll;
  overflow-y: scroll;
}
@media screen and (max-width: 550px) {
  .datenblatt-table {
    max-width: 450px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 450px) {
  .datenblatt-table {
    max-width: 450px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 350px) {
  .datenblatt-table {
    max-width: 320px;
    font-size: 1.2rem;
  }
}

.datenblatt-table td {
  width: 33.33%;
  max-width: 145px;
  text-align: left;
  overflow-x: scroll;
  overflow-y: scroll;
}
@media screen and (max-width: 550px) {
  .datenblatt-table td {
    max-width: 100px;
  }
}

.elevator-button-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
  margin-top: 5vw;
  margin-left: auto;
  margin-right: 15vw;
}
@media screen and (max-width: 800px) {
  .elevator-button-box {
    margin-right: auto;
    width: 100%;
    margin-top: 10vw;
  }
}

.elevator-button {
  cursor: pointer;
  border-radius: 6px;
  background: 0 0;
  width: 50px;
  height: 50px;
  opacity: 0.7;
  text-shadow: none;
  border-radius: 11px;
  padding: 12.5px;
  transform-origin: bottom left;
  will-change: transform;
  transform: rotate(-11deg);
  transition: background-color 0.1s ease-out, transform 0.2s ease-out, opacity 0.1s ease-out;
  background-color: #666;
}
.elevator-button:hover {
  background-color: #282634;
  opacity: 1;
  transform: rotate(0deg);
}
@media screen and (max-width: 800px) {
  .elevator-button {
    width: 40px;
    height: 40px;
  }
}

.elevator-button-box img {
  width: 90px;
  height: auto;
  margin-top: 15px;
  margin-left: 10px;
  transform: rotate(0deg);
  opacity: 0.6;
}
.elevator-button-box img:hover {
  opacity: 1;
}
@media screen and (max-width: 800px) {
  .elevator-button-box img {
    width: 70px;
  }
}

.close {
  font-size: 40px;
  font-weight: bold;
  margin-left: auto;
  cursor: pointer;
  transition: ease-out 0.2s;
}
.close:hover {
  transform: scale(1.1);
  transition: ease-in 0.1s;
}
.close:active {
  transform: scale(0.5) rotate(-1080deg);
}

.modal-header h1 {
  text-align: center;
  margin-bottom: 2rem;
}

.modal-body h2 {
  text-align: center;
}

.modal-masthead {
  display: flex;
  width: 100%;
  margin-left: auto;
}

.modal-mask {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: table;
  transition: opacity 0.3s ease;
}

.modal-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  width: 100vw;
  padding-top: 50px;
}
@media screen and (max-width: 1100px) {
  .modal-wrapper {
    padding-top: 30px;
  }
}
@media screen and (max-width: 500px) {
  .modal-wrapper {
    padding-top: 10vw;
  }
}

.big-emoji {
  font-size: 5rem;
  text-align: center;
}

.modal-container {
  width: 80vw;
  max-width: 800px;
  padding: 50px 20px 20px 20px;
  background-color: #FFEC00;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
  transition: all 0.3s ease;
  font-family: Helvetica, Arial, sans-serif;
  border: 5px solid #CA301C;
  border-radius: 6px;
}
@media screen and (max-width: 500px) {
  .modal-container {
    width: 95vw;
    padding: 30px 10px 10px 10px;
  }
}

.modal-header {
  display: flex;
}

.modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal-body h1 {
  text-align: center;
}
@media screen and (max-width: 600px) {
  .modal-body h1 {
    font-size: 3rem;
    font-size: 7vw;
  }
}

.modal-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  padding-right: 5vw;
  margin-bottom: 2vw;
}
@media screen and (max-width: 750px) {
  .modal-footer {
    padding-right: 10px;
    margin-bottom: 5vw;
  }
}

.close-btn {
  width: 100px;
  padding: 5px 10px 5px 10px;
  font-size: 2rem;
  border-radius: 6px;
  color: white;
  background-color: #3c3c48;
  border-bottom: 3px solid black;
  cursor: pointer;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.35);
}
.close-btn:hover {
  transform: translatey(-2px);
  transition: ease-out 0.2s;
}
.close-btn:active {
  transform: translatey(2px);
  transition: ease-in 0.1s;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.15);
  border-bottom: 3px solid transparent;
}
@media screen and (max-width: 500px) {
  .close-btn {
    margin-top: 3vw;
    margin-bottom: 3vw;
  }
}

.modal-enter {
  opacity: 0;
}

.modal-leave-active {
  opacity: 0;
}

.modal-enter .modal-container,
.modal-leave-active .modal-container {
  transform: scale(1.1);
}

.glitz-box {
  width: 100%;
  padding: 10px 0 30px 0;
  border-radius: 6px;
}

/* JUMP */
.glitz-box h2 {
  cursor: default;
}

.glitz-box h2 span {
  position: relative;
  top: 10px;
  display: inline-block;
  -webkit-animation: glitz 0.3s ease infinite alternate;
  font-size: 80px;
  font-weight: 700;
  color: #565656;
  text-shadow: 0 1px 0 black, 0 2px 0 black, 0 3px 0 black, 0 4px 0 black, 0 5px 0 black, 0 6px 0 transparent, 0 7px 0 transparent, 0 8px 0 transparent, 0 9px 0 transparent, 0 10px 10px rgba(0, 0, 0, 0.4);
}

.glitz-box h2 span:nth-child(2) {
  -webkit-animation-delay: 0.15s;
}

.glitz-box h2 span:nth-child(3) {
  -webkit-animation-delay: 0.25s;
}

.glitz-box h2 span:nth-child(4) {
  -webkit-animation-delay: 0.35s;
}

.glitz-box h2 span:nth-child(5) {
  -webkit-animation-delay: 0.45s;
}

.glitz-box h2 span:nth-child(6) {
  -webkit-animation-delay: 0.55s;
}

/* ANIMATION */
/* ==========================   Gotchas Seite  ===========================  */
.hide {
  display: none;
}

.intro-to-gotchas {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 50px;
       column-gap: 50px;
  -moz-column-width: 300px;
       column-width: 300px;
  margin: 3vw 20px 3vw 20px;
}
@media screen and (max-width: 1000px) {
  .intro-to-gotchas {
    margin: 5vw 20px 5vw 20px;
  }
}

.gotcha-number {
  position: absolute;
  margin-top: -45px;
  margin-bottom: 10px;
  z-index: 1;
  background-color: black;
  color: #FCD48C;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 10px;
  font-size: 1.8rem;
  text-align: center;
  line-height: 1;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.25);
}

.hvv-special {
  position: absolute;
  padding: 5px 5px 5px 16px;
  background-color: #F6FF00;
  border: 3px solid #387B28;
  border-radius: 4px;
  font-size: 1.4rem;
  color: #387B28;
  font-weight: 500;
  margin-top: -42px;
  margin-bottom: 0px;
  margin-left: 25px;
}

.gotchas-card {
  padding: 20px 20px 30px 20px;
  margin-top: 50px;
  margin-bottom: 10px;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0px 2px 3px -1px rgba(0, 0, 0, 0.35);
  overflow-Y: scroll;
}
@media screen and (max-width: 500px) {
  .gotchas-card {
    padding: 10px 10px 20px 10px;
  }
}

.gotchas-card figure img {
  margin-bottom: 10px;
  box-shadow: 0 3px 10px -2px rgba(0, 0, 0, 0.35);
}

.gotchas-card figcaption {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 10px 0 0 0;
}

.gotchas-card figcaption span {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  margin: 0 5vw 10px 0;
}

.gotchas-card figcaption span h3 {
  width: auto;
  line-height: 1;
  margin: 0 5px 0 0;
}

.gotchas-card figcaption p {
  width: auto;
  line-height: 1;
}

.gotchas-card h3 {
  font-size: 1.7rem;
  line-height: 1.4;
  margin: 10px 0 0 0;
}

.gotchas-card p {
  font-size: 1.7rem;
  line-height: 1.4;
}

.gotchas-card a {
  font-size: 1.7rem;
  line-height: 1.4;
}

.gotchas-card header span h3 {
  display: inline;
}

.gotchas-card header span p {
  display: inline;
  margin: 0 10px 0 5px;
}

.gotchas-card aside header p {
  display: inline-block;
  width: auto;
  font-size: 1.4rem;
  font-weight: 500;
  color: grey;
  border-bottom: 1px solid grey;
  margin: 5px 0 5px 0;
}

.gotchas-card aside p {
  font-size: 1.4rem;
  color: grey;
}

.gotchas-card section h3 {
  margin-top: 10px;
  margin-bottom: 0;
}

.verteiler {
  width: 100%;
  font-family: inherit;
  line-height: 1.3;
  font-size: 1.7rem;
  color: #565656;
  margin-bottom: 10px;
}

.pop-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.pop-btn {
  display: block;
  color: white;
  font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 2.1rem);
  background-color: #00a5de;
  padding: 0.5em 1em;
  margin-top: 1.5rem;
  max-width: 200px;
  height: 50px;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 1px;
  -webkit-appearance: none;
}
.pop-btn:hover, .pop-btn:focus-visible {
  background-color: #00bd7a;
}
.pop-btn:active {
  background-color: #00bd7a;
}

.pop-box {
  display: none;
}

.pop-box-popped {
  display: block;
  margin-left: 20px;
}

.pop-emoji {
  display: block;
  transition: 0.5s ease;
  font-size: 7rem;
  text-align: center;
  line-height: 1;
  transition: 0.3s ease;
}

/* ================================   Site Header   ================================ */
.site-header {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 0 0px 0;
  -webkit-marquee-increment: 0vw;
  background-color: #fdfdfd;
  background-image: url("../img/soft-white-paper.png");
}
@media screen and (max-width: 900px) {
  .site-header {
    padding: 40px 0 0 0;
  }
}
@media screen and (max-width: 500px) {
  .site-header {
    padding: 40px 0 10px 0;
  }
}

.site-header:after {
  content: "";
  margin: auto;
  margin-top: 50px;
  height: 1px;
  width: 55%;
  background: #626262;
  background: linear-gradient(to right, transparent 0%, #929292 50%, transparent 100%);
}
@media screen and (max-width: 1100px) {
  .site-header:after {
    width: 65%;
  }
}
@media screen and (max-width: 800px) {
  .site-header:after {
    width: 75%;
    margin-top: 30px;
  }
}
@media screen and (max-width: 500px) {
  .site-header:after {
    margin-top: 5vw;
  }
}

/* -----------------------  Hamburger  ----------------------- */
.hamburger-btn {
  position: absolute;
  cursor: pointer;
  top: 0;
  right: 12px;
  display: none;
}
@media screen and (max-width: 900px) {
  .hamburger-btn {
    display: flex;
    align-self: flex-end;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
  }
}

.hamburger {
  width: 20px;
  height: 20px;
}

/* ================================  Menü ================================ */
.menu {
  margin: auto;
  display: flex;
  justify-content: center;
  padding: 20px 0 0 0;
  overflow: hidden;
  -webkit-marquee-increment: 0vw;
}
@media screen and (max-width: 800px) {
  .menu {
    flex-wrap: wrap;
    justify-content: space-evenly;
    max-height: 0;
  }
}

@supports (display: grid) {
  @media screen and (max-width: 900px) {
    .menu {
      max-height: 0;
      padding: 0;
      width: 100%;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      grid-gap: 10px;
      box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.1), inset 0 -5px 100px rgba(0, 0, 0, 0.15);
      transition: ease-out 0.4s;
      max-height: 0;
      visibility: hidden;
    }
  }
  @media screen and (max-width: 600px) {
    .menu {
      grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
  }
}
.menu-is-open {
  padding: 20px 0 20px 0;
  transition: ease-in 0.6s;
  max-height: 500px;
  visibility: visible;
}

/* ================================  Menü-Items ================================ */
.menu-item {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Asap-Regular";
  text-transform: uppercase;
  font-size: 1.5rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
  height: 70px;
  padding: 10px 25px 10px 25px;
  letter-spacing: 0.5px;
  text-align: center;
  color: #363636;
}
.menu-item:hover {
  background-color: lightgrey;
}
@media screen and (max-width: 800px) {
  .menu-item {
    font-family: "Asap-Medium";
    font-weight: 500;
    height: 50px;
    margin: auto;
    padding: 0;
    width: 100%;
    max-width: 100px;
  }
}

.menu-item--gotchas:after {
  content: " ";
  position: relative;
  margin-top: -20px;
  margin-left: 2px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #15ce31;
  opacity: 0;
  animation: pulse 2.5s infinite;
}

/* -----------------------  Home Icon BTN  ----------------------- */
.menu-item--home-btn > img {
  width: 30px;
}

/* -----------------------  Legal Sign ----------------------- */
.menu-item--legal > img {
  width: 15px;
  margin-top: -5px;
}

.menu-item--legal:after {
  content: " ";
  position: relative;
  margin-top: -50px;
  margin-left: 2px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #15ce31;
  opacity: 0;
  display: none;
}

/* -----------------------  Menu Search  ----------------------- */
.menu-item--search > img {
  width: 30px;
}

/* -----------------------  Sidebar Icon  ----------------------- */
.menu-sidebar-icon {
  display: none;
}
@media screen and (max-width: 1024px) {
  .menu-sidebar-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.menu-sidebar-icon > img {
  width: 50px;
}

/* ================================  Title Box   ================================ */
.title-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 5% 0 5%;
  -webkit-marquee-increment: 0vw;
}

.title-box h6 {
  /*   <-- Legal Movement auf den Seiten  */
  width: auto;
  font-size: 2rem;
  color: #6b6b6b;
  font-weight: 400;
  letter-spacing: 10px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 10px;
  padding: 0 20px 0 30px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  background-image: url("../img/wing-left.svg"), url("../img/wing-right.svg");
  background-repeat: no-repeat;
  background-position: left, right;
  background-size: 20px;
}
@media screen and (max-width: 800px) {
  .title-box h6 {
    background-image: none;
  }
}
@media screen and (max-width: 500px) {
  .title-box h6 {
    font-size: 1.5rem;
    background-size: 15px;
    padding: 0 20px 0 30px;
  }
}
@media screen and (max-width: 350px) {
  .title-box h6 {
    font-size: 3.5vw;
    background-size: 10px;
    padding: 0;
    padding: 0 10px 0 20px;
  }
}
@media screen and (max-width: 300px) {
  .title-box h6 {
    background-image: none;
    padding: 0;
  }
}

/* ============================ Status Bubble =================================== */
.status-indicator {
  position: absolute;
  cursor: pointer;
  z-index: 1;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: whitesmoke;
  box-shadow: inset 0 2px 6px 0 rgba(0, 0, 0, 0.5);
  border-radius: 100%;
  width: 65px;
  height: 65px;
}
@media screen and (max-width: 555px) {
  .status-indicator {
    top: 5px;
    left: 10px;
    width: 40px;
    height: 40px;
    border: 4px solid #4c6457;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.35);
  }
}

.status-indicator p {
  width: auto;
  -webkit-font-smoothing: subpixel-antialiased;
  font-size: 1.1rem;
  color: darkslategrey;
}
@media screen and (max-width: 555px) {
  .status-indicator p {
    display: none;
  }
}

.status-indicator:after {
  position: absolute;
  top: -5px;
  left: 35px;
  content: "+";
  color: white;
  font-size: 1.3rem;
  line-height: 0;
  padding-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 10px;
  background-color: #15ce31;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
  opacity: 1;
  box-shadow: inset 0 -2px 10px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 555px) {
  .status-indicator:after {
    width: 12px;
    height: 12px;
    left: 20px;
  }
}

/* ----------------------- Header demo-index  ----------------------- */
.header-index-demo {
  display: flex;
  justify-content: space-around;
  width: 100%;
  padding: 0 0 0px 0;
  background-color: #424242;
}

/* -----------------------  Hamburger index-demo  ----------------------- */
.hamburger-btn-index-demo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-top: 0px;
}
@media screen and (max-width: 700px) {
  .hamburger-btn-index-demo {
    margin-right: 0;
    margin-top: 0px;
  }
}

/*# sourceMappingURL=klage.css.map */