#mprjs {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  z-index: -1;
}

#masthead {
  border-bottom: 1px solid #007eff;
  -webkit-box-shadow: -1px 7px 10px 0px rgba(0, 0, 0, 0.49);
  box-shadow: -1px 7px 10px 0px rgba(0, 0, 0, 0.49);
}

.uagb-modal-popup.active .uagb-modal-popup-close {
  top: 5px !important;
  right: 5px !important;
}

.sw-button {
  min-width: 250px;
  margin-right: 15px;
  margin-top: 15px;
}

.desabled.sw-button {
  border: 1px solid #999999;
  background-color: #cccccc;
  color: #666666;
  cursor: not-allowed;
}

.sw-button-outer {
  margin-top: 40px;
}

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

.sw-questionbox {
  text-align: center;
}

.sw-questionbox input {
  width: 350px;
  height: 52px;
  max-width: 100%;
}

.sw-button-outer {
  text-align: center;
}

.sw-yes-no {
  display: flex;
  justify-content: space-evenly;
}

.sw-icon-center span:hover {
  color: #03558a !important;
  cursor: pointer;
}

.sw-icon-center .selected {
  color: #03558a !important;
}

.selected.sw-button {
  background: #0274be;
  color: white;
}

.sw-button.navigation {
  background-color: #02a614;
  border-color: #02a614;
  color: black;
}

.sw-button.navigation:hover {
  background-color: rgba(2, 166, 21, 0);
  border-color: #02a614;
  color: #02a614;
}

button.navigation.nav-back {
  background-color: #b0b0b0;
  border-color: #b0b0b0;
  color: #000;
}

button.navigation.nav-back:hover {
  background-color: rgba(176, 176, 176, 0);
  border-color: #b0b0b0;
  color: #000;
}

/* HTML: <div class="loader"></div> */
.loader {
  width: 45px;
  aspect-ratio: 1;
  --c: no-repeat linear-gradient(#007eff 0 0);
  background: var(--c) 0% 50%, var(--c) 50% 50%, var(--c) 100% 50%;
  background-size: 20% 100%;
  animation: l1 1s infinite linear;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes l1 {
  0% {
    background-size: 20% 100%, 20% 100%, 20% 100%;
  }
  33% {
    background-size: 20% 10%, 20% 100%, 20% 100%;
  }
  50% {
    background-size: 20% 100%, 20% 10%, 20% 100%;
  }
  66% {
    background-size: 20% 100%, 20% 100%, 20% 10%;
  }
  100% {
    background-size: 20% 100%, 20% 100%, 20% 100%;
  }
}
.loader-outer {
  background-color: rgba(200, 200, 200, 0.5098039216);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.progress {
  position: relative;
  display: flex;
  width: 100%;
  height: 30px;
  margin-bottom: 20px;
  border-radius: 8px;
  font-size: 12px;
  overflow: hidden;
  font-weight: bold;
}

.progress::before {
  content: var(--progresscontent);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #f1f3f5;
  color: #828992;
}

.front {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgb(32, 141, 255);
  color: white;
  clip-path: inset(0 100% 0 0 round 8px);
  -webkit-clip-path: inset(0 100% 0 0 round 8px);
  transition: clip-path 1s ease-out;
}

/* Glowing Cards */
.sw-container-glow {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 40px 0;
}

.sw-container-glow .sw-box {
  position: relative;
  width: 300px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 30px;
  transition: 0.5s;
}
.sw-container-glow .sw-box h3 {
  color: #ffffff;
}
.sw-container-glow .sw-box p {
  color: #000000 !important;
}

.sw-container-glow .sw-box::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 50px;
  width: 50%;
  height: 100%;
  text-decoration: none;
  background: #fff;
  border-radius: 8px;
  transform: skewX(15deg);
  transition: 0.5s;
}

.sw-container-glow .sw-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50;
  width: 50%;
  height: 100%;
  background: #fff;
  border-radius: 8px;
  transform: skewX(15deg);
  transition: 0.5s;
  filter: blur(30px);
}

.sw-container-glow .sw-box:hover:before,
.sw-container-glow .sw-box:hover:after {
  transform: skewX(0deg);
  left: 20px;
  width: calc(100% - 90px);
}

.sw-container-glow .sw-box:nth-child(1):before,
.sw-container-glow .sw-box:nth-child(1):after {
  background: linear-gradient(315deg, #ffbc00, #ff0058);
}

.sw-container-glow .sw-box:nth-child(2):before,
.sw-container-glow .sw-box:nth-child(2):after {
  background: linear-gradient(315deg, #00699a, #ff0058);
}

.sw-container-glow .sw-box:nth-child(3):before,
.sw-container-glow .sw-box:nth-child(3):after {
  background: linear-gradient(315deg, #4dff03, #007a96);
}

.sw-container-glow .sw-box:nth-child(4):before,
.sw-container-glow .sw-box:nth-child(4):after {
  background: linear-gradient(315deg, #aa13c9, #2c67f2);
}

.sw-container-glow .sw-box span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  pointer-events: none;
}

.sw-container-glow .sw-box span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: 0.1s;
  animation: animate 2s ease-in-out infinite;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.sw-container-glow .sw-box:hover span::before {
  top: -50px;
  left: 50px;
  width: 100px;
  height: 100px;
  opacity: 1;
}

.sw-container-glow .sw-box span::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: 0.5s;
  animation: animate 2s ease-in-out infinite;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  animation-delay: -1s;
}

.sw-container-glow .sw-box:hover span:after {
  bottom: -50px;
  right: 50px;
  width: 100px;
  height: 100px;
  opacity: 1;
}

@keyframes animate {
  0%, 100% {
    transform: translateY(10px);
  }
  50% {
    transform: translate(-10px);
  }
}
.sw-container-glow .sw-box .sw-content {
  position: relative;
  left: 0;
  padding: 20px 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 1;
  transform: 0.5s;
  color: #fff;
}

.sw-container-glow .sw-box:hover .sw-content {
  left: 0px;
  padding: 60px 20px;
}

.sw-container-glow .sw-box .sw-content h2 {
  font-size: 2em;
  color: #fff;
  margin-bottom: 10px;
}

.sw-container-glow .sw-box .sw-content p {
  font-size: 1.1em;
  margin-bottom: 10px;
  line-height: 1.4em;
}

.sw-container-glow .sw-box .sw-content a {
  display: inline-block;
  font-size: 1.1em;
  color: #111;
  background: #fff;
  padding: 10px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  margin-top: 5px;
}

.sw-container-glow .sw-box .sw-content a:hover {
  background: #ffcf4d;
  border: 1px solid rgba(255, 0, 88, 0.4);
  box-shadow: 0 1px 15px rgba(1, 1, 1, 0.2);
}

/* Button Glow anim*/
.sw-btn-glow {
  padding: 16px 24px;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.01);
  z-index: 1;
}
.sw-btn-glow::after {
  position: absolute;
  content: "";
  top: 15px;
  left: 0;
  right: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  transform: scale(0.9) translateZ(0);
  filter: blur(15px);
  background: linear-gradient(to left, #ff5770, #e4428d, #c42da8, #9e16c3, #6501de, #9e16c3, #c42da8, #e4428d, #ff5770);
  background-size: 200% 200%;
  animation: animateGlow 8.25s linear infinite;
}
.sw-btn-glow:hover::after {
  position: absolute;
  content: "";
  top: 15px;
  left: 0;
  right: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  transform: scale(0.9) translateZ(0);
  filter: blur(15px);
  background: linear-gradient(to left, #ff5770, #e4428d, #c42da8, #9e16c3, #6501de, #9e16c3, #c42da8, #e4428d, #ff5770);
  background-size: 200% 200%;
  animation: animateGlow 4.25s linear infinite;
}

.sw-btn-glow-green {
  padding: 16px 24px;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.01);
  z-index: 1;
}
.sw-btn-glow-green::after {
  position: absolute;
  content: "";
  top: 15px;
  left: 0;
  right: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  transform: scale(0.9) translateZ(0);
  filter: blur(15px);
  background: linear-gradient(to left, #aeff57, #9ee442, #32c42d, #16c344, #01de47, #16c36a, #2dc430, #42e44d, #57ff79);
  background-size: 200% 200%;
  animation: animateGlow 8.25s linear infinite;
}
.sw-btn-glow-green:hover::after {
  position: absolute;
  content: "";
  top: 15px;
  left: 0;
  right: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  transform: scale(0.9) translateZ(0);
  filter: blur(15px);
  background: linear-gradient(to left, #aeff57, #9ee442, #32c42d, #16c344, #01de47, #16c36a, #2dc430, #42e44d, #57ff79);
  background-size: 200% 200%;
  animation: animateGlow 4.25s linear infinite;
}

@keyframes animateGlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
.uagb-post__inner-wrap {
  border-radius: 15px;
  display: flex !important;
  flex-direction: column;
  justify-content: flex-start;
}

.uagb-post__text.uagb-post__cta.wp-block-button {
  margin-top: auto;
}

.uagb-post-pagination-wrap a, .uagb-post-pagination-wrap span {
  border-radius: 8px;
  min-width: 40px;
  min-height: 40px;
  display: flex !important;
  justify-content: center;
  color: #007eff !important;
  border-color: #007eff !important;
}
.uagb-post-pagination-wrap a.current, .uagb-post-pagination-wrap span.current {
  font-weight: bold;
  background-color: #007eff !important;
  color: #fff !important;
}
.uagb-post-pagination-wrap a:hover, .uagb-post-pagination-wrap span:hover {
  background-color: #007eff !important;
  color: #fff !important;
}

/*page speed*/
/* Container */
.sw-outer {
  max-width: 1000px;
  margin: auto;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.sw-inner {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  padding: 30px;
  transition: all 0.3s ease;
}

/* Eingabeformular */
.sw-questionbox input[type=text] {
  width: 100%;
  padding: 12px 16px;
  font-size: 1.05em;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 16px;
  outline: none;
  transition: border 0.3s ease;
}

.sw-questionbox input[type=text]:focus {
  border-color: #007BFF;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.sw-questionbox button {
  padding: 12px 24px;
  font-weight: bold;
  background-color: #007BFF;
  border: none;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
}

.sw-questionbox button:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

/* Kategorien (Performance, Accessibility, etc.) */
.categories {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.category {
  flex: 1 1 22%;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.score-circle {
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 1.2em;
  font-weight: bold;
  color: white;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.score-circle:hover {
  transform: scale(1.1);
}

.category.good .score-circle {
  background-color: #28a745;
}

.category.average .score-circle {
  background-color: #ffc107;
}

.category.bad .score-circle {
  background-color: #dc3545;
}

.category.unknown .score-circle {
  background-color: #6c757d;
}

/* Performance Section */
.performance-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 30px;
}

.large-circle {
  width: 140px;
  height: 140px;
  line-height: 140px;
  border-radius: 50%;
  font-size: 2.5em;
  font-weight: bold;
  color: white;
  background-color: #007BFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
  transition: transform 0.3s ease;
}

.large-circle:hover {
  transform: scale(1.05);
}

.performance-section p {
  font-size: 1.5em;
  font-weight: bold;
  margin: 8px 0 4px;
}

.performance-section small {
  font-size: 0.9em;
  color: #666;
}

.performance-section small a {
  color: #007BFF;
  text-decoration: underline;
}

/* Metriken Tabelle */
.metrics table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fafafa;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.metrics th,
.metrics td {
  padding: 12px 16px;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s ease;
}

.metrics tr:hover {
  background-color: #f1f1f1;
}

.metrics th {
  background-color: #f1f1f1;
  font-weight: 600;
  color: #555;
}

.metrics strong {
  font-size: 1em;
}

.metrics td:nth-child(2) {
  font-size: 1.2em;
  font-weight: bold;
  color: #333;
}

.metric-box {
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 6px;
  color: white;
  font-weight: bold;
}

.metric-box.good {
  background-color: #28a745;
}

.metric-box.average {
  background-color: #ffc107;
}

.metric-box.bad {
  background-color: #dc3545;
}

.metric-box.unknown {
  background-color: #6c757d;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
  .categories {
    flex-direction: column;
    align-items: center;
  }
  .performance-section {
    flex-direction: column;
    align-items: center;
  }
  .performance-section .large-circle {
    margin-bottom: 16px;
  }
  .category {
    flex: 1 1 100%;
  }
}
.optimization-offer {
  margin-top: 40px;
  padding: 20px;
  background-color: #e9f7ef;
  border-left: 6px solid #28a745;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.optimization-offer h4 {
  margin-top: 0;
  color: #155724 !important;
}

.optimization-offer p {
  margin-bottom: 15px;
  font-size: 1em;
  line-height: 1.5;
}

.optimization-offer .offer-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #28a745;
  color: white !important;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.optimization-offer .offer-link:hover {
  background-color: #1e7e34;
}

.sw-button.navigation:disabled {
  background-color: #cccccc;
  color: #666666 !important;
  cursor: not-allowed;
}

.related-slimweb-news {
  margin: 40px 0;
  padding: 20px;
  border-top: 1px solid #eee;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.related-post-item a {
  text-decoration: none;
  color: #333;
  display: block;
}

.related-post-item a:hover h4 {
  color: #0073aa;
}

.related-post-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
}

.no-thumb {
  display: block;
  width: 100%;
  height: 120px;
  background: #f0f0f0;
  color: #999;
  font-size: 30px;
  text-align: center;
  line-height: 120px;
  border-radius: 6px;
}

.cta-button-sidebar a {
  background-color: var(--ast-global-color-0) !important;
  color: black !important;
}

.cta-button-sidebar a:hover {
  background-color: rgba(255, 255, 255, 0) !important;
}

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