html,
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  margin: 0;
  padding: 0;
}
a {
  color: #3580ff;
  text-decoration: none;
}
a:hover {
  cursor: pointer;
  text-decoration: underline;
}
a:visited {
  color: #3580ff;
  text-decoration: none;
}
.rightwrapper {
  min-height: 100vh;
  margin-left: 22rem;
}
.board {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: fex-start;
  justify-items: center;
  align-items: center;
  flex-direction: column;
}
.innerbox {
  padding-top: 5rem;
  width: 90%;
  display: flex;
  justify-content: center;
  justify-items: center;
  align-items: center;
  flex-direction: column;
}
/* HTML: <div class="loader"></div> */
.loader {
  --r1: 154%;
  --r2: 68.5%;
  width: 60px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(var(--r1) var(--r2) at top, #0000 79.5%, #2e29d5 80%),
    radial-gradient(var(--r1) var(--r2) at bottom, #2e29d5 79.5%, #0000 80%),
    radial-gradient(var(--r1) var(--r2) at top, #0000 79.5%, #2e29d5 80%),
    #d6d4f7;
  background-size: 50.5% 220%;
  background-position:
    -100% 0%,
    0% 0%,
    100% 0%;
  background-repeat: no-repeat;
  animation: l9 2s infinite linear;
}
@keyframes l9 {
  33% {
    background-position:
      0% 33%,
      100% 33%,
      200% 33%;
  }
  66% {
    background-position:
      -100% 66%,
      0% 66%,
      100% 66%;
  }
  100% {
    background-position:
      0% 100%,
      100% 100%,
      200% 100%;
  }
}
.uploadscreenloader {
  position: fixed;
  height: 100lvh;
  width: 100%;
  z-index: 10000;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  justify-items: center;
  align-items: center;
}
.profil_information_wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  justify-items: center;
  align-items: flex-start;
}
.info_board {
  width: 70%;
  display: flex;
  justify-content: flex-start;
  justify-items: center;
  align-items: center;
  flex-direction: column;
  gap: 0.8rem;
}
.addvertise {
  width: 30%;
  height: 70rem;
  display: flex;
  justify-content: center;
  justify-items: center;
  align-items: flex-start;
  /*ausblenden werbestreifen*/
  pointer-events: none;
  visibility: hidden;
}
.adddiv {
  display: flex;
  justify-content: center;
  justify-items: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  width: 20rem;
  height: 40rem;
  background-color: grey;
  border-radius: 40px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background-image: url(../bilder/showadd.jpg);
  background-size: cover;
}
#tooltip {
  position: absolute;
  background-color: #333;
  color: #fff;
  padding: 5px;
  border-radius: 5px;
  font-size: 12px;
  display: none;
  z-index: 1000;
}
.tooltip {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  padding: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  z-index: 10000;
  white-space: normal; /* Ändert das Verhalten des Textumbruchs */
  max-width: 400px; /* Begrenzung der Breite der Tooltip-Box */
  word-wrap: break-word; /* Bricht lange Wörter um */
  left: 50%;
  transform: translateX(-50%);
}

.infopic {
  z-index: 1000;
  cursor: help;
  width: 1.3rem;
  transform: translateY(5px);
  margin-left: 0.4rem;
}
.textnlj {
  background: -webkit-linear-gradient(12deg, #2e29d5, #df6f24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.seehide {
  font-size: 2rem;
  position: absolute;
  right: 30px;
  bottom: 50%;
  transform: translateY(50%);
  cursor: pointer;
}
.createjob_questlabel:hover .tooltip {
  display: block;
}
.botstatus {
  color: white;
  display: flex;
  justify-content: center;
  justify-items: center;
  align-items: center;
  position: fixed;
  top: 30px;
  right: 50%;
  transform: translate(50%, 0);
  border-radius: 4px;
  width: 50lvw;
  height: 2rem;
  background-color: /*#F79844*/ #2e29d5;
  border: 1px solid rgb(122, 122, 122);
  animation: inout 7s forwards;
  z-index: 10000;
}
@keyframes inout {
  0% {
    opacity: 0;
    margin-top: -4rem;
  }
  10% {
    opacity: 1;
    margin-top: 0rem;
  }
  90% {
    opacity: 1;
    margin-top: 0rem;
  }
  100% {
    opacity: 0;
    margin-top: -4rem;
  }
}

@media only screen and (max-width: 1200px) {
  /*.profil_information_wrapper{
		width: 95%;
	}*/
  .addvertise {
    display: none;
  }
  .info_board {
    width: 95%;
  }
  .profil_information_wrapper {
    justify-content: center;
  }
}

@media only screen and (max-width: 1000px) {
  .tooltip {
    transform: translate(0);
    left: 0;
  }
}
@media only screen and (max-width: 800px) {
  .botstatus {
    width: 80lvw;
  }
  .seehide {
    font-size: 1.4rem;
  }
}

.announcement-bar a:visited,
footer a:visited {
  color: inherit;
}

footer {
  margin-top: 50px;
}
