.tool__content {
   display: flex !important;
   justify-content: center !important;
   align-items: center !important;
   /* background-color: #a2c7e5; */
   background-color: #e7f0f8;
   margin: 0 !important;
   width: 100vw !important; 
}

.spacebug {
  --radius: 18px;
  --pink: #ff0060;
  --light-pink: #ffe5ef;
  --green: #00dfa2;
  --light-green: #e5fcf6;
  --blue: #0079ff;
  --light-blue: #e5f1ff;
  --orange: #ff862f;
  --light-orange: #fff3ea;
  --black: black;
  --light-black: #e5e5e5;
  --message-font-color: #5a5a5a;
  --primary-font-color: #2d2d2d;
  --grey: #9f9f9f;
  --light-grey: #d3d3d3;

  width: 100%;
  font: 14px/1.2 "Segoe UI", "Lucida Grande", sans-serif !important;
  margin: 5px 0; 

}

.untertitel {
  display: flex; 
  justify-content: center;
  align-items: center; 
}

.untertitel > span {
   color: rgba(0,0,0,0.5);
   font-size: 0.8rem; 
   margin-bottom: 6px; 
}

.untertitel img {
  margin: 10px 20px; 
  height: 22px; 
}

.untertitel > a, a:hover, a:visited, a:active  {
  background-color: transparent; 
  cursor: pointer; 
}

#logo_trier {
  margin-bottom: 14px; 
  margin-left: 0; 
}

p {
  display: block; 
}

article .spacebug button {
  background-color: transparent; 
  border: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
  transition: none;
}

article .spacebug button:hover {
  background-color: transparent; 
  box-shadow: none;
}

article .spacebug img {
  display: block;
  margin: 0 auto;
}

.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #979797 !important;
  gap: 10px !important;
  margin-bottom: 40px; 
}

.loader__animation {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: #979797;
  border-radius: 50%;
  animation: pulse 1.2s infinite ease-in-out;
}

.dot:nth-child(1) {
  animation-delay: 0s;
}
.dot:nth-child(2) {
  animation-delay: 0.2s;
}
.dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes pulse {
  0%,
  80%,
  100% {
    transform: scale(0.6);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}