@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500&family=Roboto:wght@400;700&display=swap');

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 99999999px;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #121212;
    color: #ffffff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
    overflow-x: hidden;
}

.container {
    width: 90%;
    padding: 20px;
    text-align: center;
}
.fixed-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #121212;
  box-shadow: 0 0 10px #0053b3;
  width: 100%;
  text-align: center;
  z-index: 10;
  margin: 0;
  padding: 10px 0;
}
@media (min-width: 800px) { /* Mobile devices */
  #text{
    display: block;
  }
  #notext{
    display: none;
  }
}
@media (max-width: 799px) { /* Mobile devices */
  #text{
    display: none;
  }
  #notext{
    display: block;
  }
}

h1 {
    margin-bottom: 40px;
    font-size: 2.5em;
}

#cover-container-recommendations {
  display: flex;
  gap: 20px;
  justify-content: center; /* Center items by default */
  align-items: center;
  margin-top: 0px;
  margin-left: -18px;
  margin-right: -18px;

  padding-top: 40px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 20px;
  overflow-x: auto; /* Allow horizontal scrolling */
  overflow-y: hidden; /* Prevent vertical scrolling */
  flex-wrap: nowrap;
  /*border: 1px solid #fff;*/
}

#cover-container-recommendations.scrollable {
  justify-content: flex-start; /* Align items to the start when able to scroll */
}

#cover-container-recommendations > * {
  min-width: 200px; /* Ensure each item has a minimum width */
  flex: 1 1 auto; /* Allow items to shrink and grow as needed */
}

/* Responsive adjustments */
@media (max-width: 768px) { /* Tablets and small devices */
  #cover-container-recommendations {
    gap: 10px; /* Reduce gap for smaller screens */
  }

  #cover-container-recommendations > * {
    min-width: 150px; /* Adjust min-width for better readability */
  }
}

@media (max-width: 480px) { /* Mobile devices */
  #cover-container-recommendations > * {
    min-width: 100px; /* Further adjust min-width */
  }
}

#cover-container-charts {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 0px;
  margin-left: -18px;
  margin-right: -18px;

  padding-top: 40px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 20px;
  overflow-x: auto; /* Allow horizontal scrolling */
  overflow-y: hidden; /* Prevent vertical scrolling */
  flex-wrap: nowrap;
  /*border: 1px solid #fff;*/
}

#cover-container-charts > * {
  min-width: 200px; /* Ensure each item has a minimum width */
  flex: 1 1 auto; /* Allow items to shrink and grow as needed */
}

/* Responsive adjustments */
@media (max-width: 768px) { /* Tablets and small devices */
  #cover-container-charts {
    gap: 10px; /* Reduce gap for smaller screens */
  }

  #cover-container-charts > * {
    min-width: 150px; /* Adjust min-width for better readability */
  }
}

@media (max-width: 480px) { /* Mobile devices */
  #cover-container-charts > * {
    min-width: 100px; /* Further adjust min-width */
  }
}

#cover-container-newest {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 0px;
  margin-left: -18px;
  margin-right: -18px;

  padding-top: 40px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 20px;
  overflow-x: auto; /* Allow horizontal scrolling */
  overflow-y: hidden; /* Prevent vertical scrolling */
  flex-wrap: nowrap;
  /*border: 1px solid #fff;*/
}

#cover-container-newest > * {
  min-width: 200px; /* Ensure each item has a minimum width */
  flex: 1 1 auto; /* Allow items to shrink and grow as needed */
}

/* Responsive adjustments */
@media (max-width: 768px) { /* Tablets and small devices */
  #cover-container-newest {
    gap: 10px; /* Reduce gap for smaller screens */
  }

  #cover-container-newest > * {
    min-width: 150px; /* Adjust min-width for better readability */
  }
}

@media (max-width: 480px) { /* Mobile devices */
  #cover-container-newest > * {
    min-width: 100px; /* Further adjust min-width */
  }
}

#cover-container-last {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 0px;
  margin-left: -18px;
  margin-right: -18px;

  padding-top: 40px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 20px;
  overflow-x: auto; /* Allow horizontal scrolling */
  overflow-y: hidden; /* Prevent vertical scrolling */
  flex-wrap: nowrap;
  /*border: 1px solid #fff;*/
}

#cover-container-last > * {
  min-width: 200px; /* Ensure each item has a minimum width */
  flex: 1 1 auto; /* Allow items to shrink and grow as needed */
}

/* Responsive adjustments */
@media (max-width: 768px) { /* Tablets and small devices */
  #cover-container-last {
    gap: 10px; /* Reduce gap for smaller screens */
  }

  #cover-container-last > * {
    min-width: 150px; /* Adjust min-width for better readability */
  }
}

@media (max-width: 480px) { /* Mobile devices */
  #cover-container-last > * {
    min-width: 100px; /* Further adjust min-width */
  }
}

#cover-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 60px; /* Space below the header */
}

.cover-item {
  perspective: 1000px;
  width: 200px;
  max-width: 200px;
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 6;
  padding: 0px;
  border: none;
  background: none;
}

.cover-item:hover {
  transform: scale(1.1);
}

.cover-item img {
  width: 100%;
  border-radius: 10px;
  padding: 0px;
  transition: transform 0.1s ease-out;
  transform-style: preserve-3d;
  will-change: transform;
}

.futuristic {
    font-family: 'Orbitron', sans-serif;
}

.hidden {
    display: none !important;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: #222;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px #0053b3;
    text-align: center;
    position: relative;
    max-width: 600px;
    max-height: 80svh;
    width: 80%;
}

.popup-content img {
    border-radius: 10px;
    height: 40svh;
    text-align: left;
    object-fit: contain;
}

.popup-content h2 {
    margin: 20px 0;
    font-size: 1.5em;
}

.popup-content p {
    overflow-y: scroll;
    max-height: calc(40svh - 40px - 40px - 100px);
    margin: 0px;
}

.nbtn {
  background: none; 
  color: #e8eaed; 
  border: none; 
  padding: none; 
  margin: none;
}

.close-btn, .open-btn, .open-new-btn, .watchlist-toggle, .subscribe-btn {
    position: absolute;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5em;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn {
    top: 10px;
    right: 10px;
}

.open-btn {
    top: 10px;
    left: 10px;
}

.open-new-btn {
    top: 10px;
    left: 60px;
}

.subscribe-btn {
    top: 10px;
    left: 60px;
}

.watchlist-toggle {
  top: 10px;
  right: 60px
}

.close-btn svg, .open-btn svg, .open-new-btn svg, .watchlist-toggle svg, .subscribe-btn svg {
    fill: currentColor;
    transition: fill 0.3s ease;
}

.close-btn:hover svg, .open-btn:hover svg, .open-new-btn:hover svg, .subscribe-btn:hover svg {
    fill: #0053b3;
}

.watchlist-active:hover svg {
  fill: #b30000;
}

.watchlist-passive:hover svg {
  fill: #0053b3;
}

#search { 
    position: fixed;
    top: 15px;
    right: 98px;
    cursor: pointer;
    z-index: 11;
}

#search svg {
    fill: currentColor;
    transition: fill 0.3s ease;
}

#search:hover svg {
    fill: #0053b3;
}

#search-input {
    position: fixed;
    top: 10px;
    right: 50px;
    z-index: 20;
    display:none;
    padding: 10px;
    font-size: 2.5em;
    color: #fff;
    border: none;
    border-radius: 5px;

    outline: none;
    font-family: 'Orbitron', sans-serif;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #121212;
    width: 100%;
    text-align: center;
    margin: 0;
}

#search-input:-webkit-autofill,
#search-input:-webkit-autofill:hover,
#search-input:-webkit-autofill:focus,
#search-input:-webkit-autofill:active {
    background: #121212 !important; /* Hintergrundfarbe */
    color: #fff !important; /* Textfarbe */
    -webkit-box-shadow: 0 0 0 1000px #121212 inset !important;
    box-shadow: 0 0 0 1000px #121212 inset !important;
    -webkit-text-fill-color: #fff !important; /* Textfarbe für Autofill */
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5em;
}

.not-found {
    height: 50svh;
    width: 50svw;
    padding: 5rem;
    background-color: #000;
    box-shadow: 0 0 50px 50px rgba(0, 0, 0, 255);
}

.not-found:hover {
    height: 50svh;
    width: 50svw;
    padding: 5rem;
    background-color: #000;
    box-shadow: 0 0 50px 50px rgba(0, 0, 0, 255);
}

.not-found-img {
    object-fit: contain;
}

#release { 
    position: fixed;
    top: 15px;
    left: 10px;
    cursor: pointer;
    z-index: 11;
    color: #fff
}

#release svg {
    fill: #fff;
    transition: fill 0.3s ease;
}

#release:hover svg {
    fill: #0053b3;
}

#statistics { 
  position: fixed;
  top: 15px;
  right: 54px;
  cursor: pointer;
  z-index: 11;
  color: #fff
}

#statistics svg {
  fill: #fff;
  transition: fill 0.3s ease;
}

#statistics:hover svg {
  fill: #0053b3;
}

#admin { 
  position: fixed;
  top: 15px;
  right: 142px;
  cursor: pointer;
  z-index: 11;
  color: #fff
}

#admin svg {
  fill: #fff;
  transition: fill 0.3s ease;
}

#admin:hover svg {
  fill: #0053b3;
}

#requestnew { 
  position: fixed;
  top: 15px;
  left: 54px;
  cursor: pointer;
  z-index: 11;
  color: #fff
}

#requestnew svg {
  fill: #fff;
  transition: fill 0.3s ease;
}

#requestnew:hover svg {
  fill: #0053b3;
}

#settings { 
  position: fixed;
  top: 15px;
  right: 10px;
  cursor: pointer;
  z-index: 11;
  color: #fff
}

#settings svg {
  fill: #fff;
  transition: fill 0.3s ease;
}

#settings:hover svg {
  fill: #0053b3;
}

#login { 
  position: fixed;
  top: 15px;
  left: 134px;
  cursor: pointer;
  z-index: 11;
  color: #fff
}

#login svg {
  fill: #fff;
  transition: fill 0.3s ease;
}

#login:hover svg {
  fill: #0053b3;
}

#favorite { 
  position: fixed;
  top: 15px;
  left: 94px;
  cursor: pointer;
  z-index: 11;
  color: #fff
}

#favorite svg {
  fill: #fff;
  transition: fill 0.3s ease;
}

#favorite:hover svg {
  fill: #0053b3;
}














@keyframes flyInRight {
  0% {
    transform: translateX(120%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes flyRight {
  0% {
    transform: translateX(0);
    opacity: 1;
    margin: 0px;
    max-height: 200px;
  }
  50% {
    transform: translateX(120%);
    opacity: 0;
    margin: 0px;
    max-height: 200px;
  }
  100% {
    transform: translateX(120%);
    max-height: 0px;
    margin: -5px;
    padding: 0px;
  }
}

.callout-container {
  position: fixed;
  bottom: 35px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  z-index: 100000;
  transition: transform 0.5s ease;
}

.callout {
  width: 250px;
  max-height: 500px;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out, max-height 0.5s ease-in-out, margin 0.5s ease-in-out, padding 0.5s ease-in-out;
  animation: flyInRight 1.5s forwards;
  position: relative;
  z-index: 100000;
}

.callout.hide {
  animation: flyRight 1s forwards;
  opacity: 0;
  pointer-events: none;
}

.callout-content {
  padding: 1px;
  padding-left: 15px;
  padding-right: 15px;
  background-color: #ccc;
  color: #000;
  border-radius: 25px;
  position: relative;
  z-index: 100000;
}

.dark-mode .callout-content {
  background-color: #444;
  color: #ddd;
}

.closebtnco {
  position: absolute;
  top: 5px;
  right: 15px;
  color: white;
  font-size: 30px;
  cursor: pointer;
  z-index: 100010;
}

.closebtnco.svg:hover {
  color: lightgrey;
}

.closebtnco2 {
  position: absolute;
  top: 5px;
  right: 35px;
  color: white;
  font-size: 30px;
  cursor: pointer;
  z-index: 100010;
}

.closebtnco2.svg:hover {
  color: lightgrey;
}

#hideCalloutContainer svg {
  transition: transform 0.5s ease;
  z-index: 100010;
}

.hideCallout {
  position: fixed;
  bottom: 8px;
  right: 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100010;
}

.red {
  background-color: #b31111 !important;
  color: white !important;
  transition: 0.3s ease;
}
.red:hover {
  box-shadow: 0 0 10px #b31111;
}

.blu {
    background-color: #0053b3 !important;
    color: white !important;
    transition: 0.3s ease;
}
.blu:hover {
  box-shadow: 0 0 10px #0053b3;
}

.grn {
    background-color: #11b311 !important;
    color: white !important;
    box-shadow: 0 0 10px #11b311;
    transition: 0.3s ease;
}
.grn:hover {
  box-shadow: 0 0 20px #11b311;
}

.orn {
    background-color: #dd6700 !important;
    color: white !important;
    transition: 0.3s ease;
}
.orn:hover {
  box-shadow: 0 0 10px #dd6700;
}

.vio {
  background-color: #b3119d !important;
  color: white !important;
  transition: 0.3s ease;
}
.vio:hover {
  box-shadow: 0 0 10px #b3119d;
}

select {
  color: #ddd;
  background-color: #333;
  padding: 5px;
  border-radius: 5px;
}

.gold-glow {
  padding: 0px;
  border-radius: 10px;
  box-shadow: 0 0 15px #FFD700;
  background-color: #a08800;
  z-index: 4;
}

.silv-glow {
  padding: 0px;
  border-radius: 10px;
  box-shadow: 0 0 15px #C0C0C0;
  background-color: #7e7e7e;
  z-index: 4;
}

.bron-glow {
  padding: 0px;
  border-radius: 10px;
  box-shadow: 0 0 15px #CD7F32 ;
  background-color: #b9732c;
  z-index: 4;
}

.main-container .cover-item .gold-glow {
  box-shadow: 0 0 100px #FFD700;
  transition: box-shadow 0.3s ease;
  z-index: 4;
}

.main-container .cover-item .silv-glow {
  box-shadow: 0 0 100px #C0C0C0;
  transition: box-shadow 0.3s ease;
  z-index: 4;
}

.main-container .cover-item .bron-glow {
  box-shadow: 0 0 100px #CD7F32 ;
  transition: box-shadow 0.3s ease;
  z-index: 4;
}

.main-container .cover-item .gold-glow:hover {
  box-shadow: 0 0 25px #FFD700;
  transition: box-shadow 0.3s ease;
  z-index: 6;
}

.main-container .cover-item .silv-glow:hover {
  box-shadow: 0 0 25px #C0C0C0;
  transition: box-shadow 0.3s ease;
  z-index: 6;
}

.main-container .cover-item .bron-glow:hover {
  box-shadow: 0 0 25px #CD7F32 ;
  transition: box-shadow 0.3s ease;
  z-index: 6;
}

/* Allgemeine Stile für Sticker */
.image-sticker {
  position: absolute;
  top: -10px; /* Leicht schräg oben */
  right: -10px; /* Leicht schräg rechts */
  width: 25px; /* Größe des Icons */
  height: 25px;
  z-index: 10; /* Sicherstellen, dass der Sticker über dem Bild liegt */
}

/* Bilder umschließen, um eine relative Positionierung zu ermöglichen */
.image-container {
  position: relative;
  display: inline-block; /* Stellt sicher, dass das Bild und der Sticker zusammen bleiben */
}

/* Spezifische Sticker für gold-glow, silv-glow und bron-glow */
.gold-glow .image-sticker {
  content: url('/img/1.png');
}

.silv-glow .image-sticker {
  content: url('/img/2.png');
}

.bron-glow .image-sticker {
  content: url('/img/3.png');
}

a {
  color: #0080ff;
}

.center {
  text-align: center;
}

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

.hlink {
  color: #00f;
}

.dark-mode .hlink {
  color: #aaf;
}

/* Loading version 1*/
.loading1,
.loading1:after {
    box-sizing: border-box;
}
.loading1 {
    display: inline-block;
    width: 80px;
    height: 80px;
}
.loading1:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6.4px solid currentColor;
    border-color: transparent currentColor transparent currentColor;
    animation: loading1 1.2s linear infinite;
}

@keyframes loading1 {
0% {
    transform: rotate(0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
50% {
    transform: rotate(180deg);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
100% {
    transform: rotate(360deg);
}
}
/* Loading version 2*/
.loading2,
.loading2 div {
  box-sizing: border-box;
}
.loading2 {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.loading2 div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid currentColor;
  border-radius: 50%;
  animation: loading2 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: currentColor transparent transparent transparent;
}
.loading2 div:nth-child(1) {
  animation-delay: -0.45s;
}
.loading2 div:nth-child(2) {
  animation-delay: -0.3s;
}
.loading2 div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes loading2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/* Loading version 3*/

.loading3,
.loading3 div,
.loading3 div:after {
  box-sizing: border-box;
}
.loading3 {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.loading3 div {
  animation: loading3 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.loading3 div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7.2px;
  height: 7.2px;
  border-radius: 50%;
  background: currentColor;
  margin: -3.6px 0 0 -3.6px;
}
.loading3 div:nth-child(1) {
  animation-delay: -0.036s;
}
.loading3 div:nth-child(1):after {
  top: 62.62742px;
  left: 62.62742px;
}
.loading3 div:nth-child(2) {
  animation-delay: -0.072s;
}
.loading3 div:nth-child(2):after {
  top: 67.71281px;
  left: 56px;
}
.loading3 div:nth-child(3) {
  animation-delay: -0.108s;
}
.loading3 div:nth-child(3):after {
  top: 70.90963px;
  left: 48.28221px;
}
.loading3 div:nth-child(4) {
  animation-delay: -0.144s;
}
.loading3 div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.loading3 div:nth-child(5) {
  animation-delay: -0.18s;
}
.loading3 div:nth-child(5):after {
  top: 70.90963px;
  left: 31.71779px;
}
.loading3 div:nth-child(6) {
  animation-delay: -0.216s;
}
.loading3 div:nth-child(6):after {
  top: 67.71281px;
  left: 24px;
}
.loading3 div:nth-child(7) {
  animation-delay: -0.252s;
}
.loading3 div:nth-child(7):after {
  top: 62.62742px;
  left: 17.37258px;
}
.loading3 div:nth-child(8) {
  animation-delay: -0.288s;
}
.loading3 div:nth-child(8):after {
  top: 56px;
  left: 12.28719px;
}
@keyframes loading3 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/* Loading version 4*/

.loading4,
.loading4 div {
  box-sizing: border-box;
}
.loading4 {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.loading4 div {
  display: inline-block;
  position: absolute;
  left: 8px;
  width: 16px;
  background: currentColor;
  animation: loading4 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
.loading4 div:nth-child(1) {
  left: 8px;
  animation-delay: -0.24s;
}
.loading4 div:nth-child(2) {
  left: 32px;
  animation-delay: -0.12s;
}
.loading4 div:nth-child(3) {
  left: 56px;
  animation-delay: 0s;
}
@keyframes loading4 {
  0% {
    top: 8px;
    height: 64px;
  }
  50%, 100% {
    top: 24px;
    height: 32px;
  }
}


/* Loading version 5*/

.loading5,
.loading5 div {
  box-sizing: border-box;
}
.loading5 {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.loading5 div {
  position: absolute;
  width: 6.4px;
  height: 6.4px;
  background: currentColor;
  border-radius: 50%;
  animation: loading5 1.2s linear infinite;
}
.loading5 div:nth-child(1) {
  animation-delay: 0s;
  top: 36.8px;
  left: 66.24px;
}
.loading5 div:nth-child(2) {
  animation-delay: -0.1s;
  top: 22.08px;
  left: 62.29579px;
}
.loading5 div:nth-child(3) {
  animation-delay: -0.2s;
  top: 11.30421px;
  left: 51.52px;
}
.loading5 div:nth-child(4) {
  animation-delay: -0.3s;
  top: 7.36px;
  left: 36.8px;
}
.loading5 div:nth-child(5) {
  animation-delay: -0.4s;
  top: 11.30421px;
  left: 22.08px;
}
.loading5 div:nth-child(6) {
  animation-delay: -0.5s;
  top: 22.08px;
  left: 11.30421px;
}
.loading5 div:nth-child(7) {
  animation-delay: -0.6s;
  top: 36.8px;
  left: 7.36px;
}
.loading5 div:nth-child(8) {
  animation-delay: -0.7s;
  top: 51.52px;
  left: 11.30421px;
}
.loading5 div:nth-child(9) {
  animation-delay: -0.8s;
  top: 62.29579px;
  left: 22.08px;
}
.loading5 div:nth-child(10) {
  animation-delay: -0.9s;
  top: 66.24px;
  left: 36.8px;
}
.loading5 div:nth-child(11) {
  animation-delay: -1s;
  top: 62.29579px;
  left: 51.52px;
}
.loading5 div:nth-child(12) {
  animation-delay: -1.1s;
  top: 51.52px;
  left: 62.29579px;
}
@keyframes loading5 {
  0%, 20%, 80%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
}


/* Loading version 6*/


.loading6,
.loading6 div {
  box-sizing: border-box;
}
.loading6 {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.loading6 div {
  position: absolute;
  top: 33.33333px;
  width: 13.33333px;
  height: 13.33333px;
  border-radius: 50%;
  background: currentColor;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.loading6 div:nth-child(1) {
  left: 8px;
  animation: loading61 0.6s infinite;
}
.loading6 div:nth-child(2) {
  left: 8px;
  animation: loading62 0.6s infinite;
}
.loading6 div:nth-child(3) {
  left: 32px;
  animation: loading62 0.6s infinite;
}
.loading6 div:nth-child(4) {
  left: 56px;
  animation: loading63 0.6s infinite;
}
@keyframes loading61 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes loading63 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes loading62 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
/* Loading version 7 */

.loading7,
.loading7 div,
.loading7 div:after {
  box-sizing: border-box;
}
.loading7 {
  color: currentColor;
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.loading7 div {
  transform-origin: 40px 40px;
  animation: loading7 1.2s linear infinite;
}
.loading7 div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3.2px;
  left: 36.8px;
  width: 6.4px;
  height: 17.6px;
  border-radius: 20%;
  background: currentColor;
}
.loading7 div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.loading7 div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.loading7 div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.loading7 div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.loading7 div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.loading7 div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.loading7 div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.loading7 div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.loading7 div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.loading7 div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.loading7 div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.loading7 div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes loading7 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Loading version 8 */

.loading8,
.loading8 div {
  box-sizing: border-box;
}
.loading8 {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.loading8 div {
  position: absolute;
  border: 4px solid currentColor;
  opacity: 1;
  border-radius: 50%;
  animation: loading8 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.loading8 div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes loading8 {
  0% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 0;
  }
  4.9% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 0;
  }
  5% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 1;
  }
  100% {
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    opacity: 0;
  }
}

/* Loading version 9 */

@keyframes loading9 {
    0% { transform: rotate(0deg) }
    50% { transform: rotate(180deg) }
    100% { transform: rotate(360deg) }
  }
  .loading9 div {
    position: absolute;
    animation: loading9 1s linear infinite;
    width: 64px;
    height: 64px;
    top: 10px;
    left: 10px;
    border-radius: 50%;
    box-shadow: 0 4px 0 0;
    transform-origin: 32px 32.8px;
  }
  .loading9-1 {
    width: 80px;
    height: 80px;
    display: inline-block;
    overflow: hidden;
  }
  .loading9 {
    width: 100%;
    height: 100%;
    position: relative;
    transform: translateZ(0) scale(1);
    backface-visibility: hidden;
    transform-origin: 0 0;
  }
  .loading9 div { box-sizing: content-box; }

  .btn {
    margin: 2px;
    margin-top: 6px;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
    text-decoration: none;
    display: inline-block;
    width: 138px;
    /* Feste Breite für beide Buttons */
    text-align: center;
    /* Zentriert den Text horizontal */
    font-size: 14px;
    /* Schriftgröße festlegen */
    font-weight: normal;
    /* Standard Schriftgewicht */
}

.btn:hover {
    filter: brightness(1.2);
}

.fbtn {
  margin: 2px;
  margin-top: 6px;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease;
  text-decoration: none;
  flex: 1;
  min-width: 160px;
  /* Feste Breite für beide Buttons */
  text-align: center;
  /* Zentriert den Text horizontal */
  font-size: 14px;
  /* Schriftgröße festlegen */
  font-weight: normal;
  /* Standard Schriftgewicht */
}

.fbtn:hover {
  filter: brightness(1.2);
}

.fc {
  display: flex;
  flex-wrap: wrap;
  flex-grow: row;
}

.tooltip,
.tt {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext,
.tt .ttt,
.tt .dttt {
  visibility: hidden;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  left: clamp(5px, 50%, calc(100% - 5px));
}

.tooltip-buttom .tooltiptext,
.ttb .ttt {
  visibility: hidden;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
}

.tooltip:hover .tooltiptext,
.tt:hover .ttt,
.tooltip-buttom:hover .tooltiptext,
.ttb:hover .ttt {
  visibility: visible;
}

.tt:hover .dttt {
  visibility: visible;
  animation-delay: 3s;
}

.tooltip .tooltiptext::after,
.tt .ttt::after,
.tt .dttt::after  {
  content: " ";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}