.match-score-container {
    width: 90%;
}
.match-score-outer {
  position: relative;
  height: 10px;
  background-color: #ecf0f1;
  border-radius: 50px;
}
.innerSpan {
  display: flex;
  justify-content: center;
  align-items: center;
}
#helpLink {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}
#score-static {
 padding: 0 0.5em;
}
.match-score-bar {
  height: 100%;
  width: 0;
  transition: width 2s ease-in-out, background-color 2s linear;
  background-color: hsl(calc(74 + max(0, var(--m-value) - 80) * 2 + max(0, var(--m-value) - 90)),
    calc(62% - max(0, var(--m-value) - 90) * 2.1%),
    calc(86% - max(0, var(--m-value) - 80) * 0.4% - max(0, var(--m-value) - 90) * 0.7%)
  );
  border-radius: 50px;
}
.match-score-outer::after {
  position: absolute;
  content: "";
  top: -4px;
  left: var(--m-value-mod, -1%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #292828;
  transition: left 2s ease-in-out;
}
@media (prefers-reduced-motion) {
  .match-score-bar {
    transition: none;
  }
  .match-score-outer::after {
    left: var(--m-value-mod);
    transition: none;
    animation: visibleScore 4s linear;
  }
  #score-static::after {
   content: attr(m-value,0) "%";
  }
}
@keyframes visibleScore {
from {
   opacity: 0;
 }
 to {
   opacity: 1;
 }
}
.advice-carousel-container {
  text-align: center;
  overflow: hidden;
  width: 90%;
  @media screen and (max-width: 445px) {
    margin-top: auto;
  }
}
.advice-carousel-container > a:active {
  top: 1px;
}
.carousel-dot.active {
  background: rgb(0 0 0 / 27%);
}
.advice-carousel-contents {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  height: 6.5em;
  scrollbar-width: none;
}
@supports selector(::-webkit-scrollbar) {
    .advice-carousel-contents::-webkit-scrollbar {
        display: none;
    }
}
.carousel-dot {
  display: inline-flex;
  width: 0.8em;
  height: 0.8em;
  background: rgb(157 151 151 / 26%);
  text-decoration: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 0 0.5rem 0;
  position: relative;
  transition: cubic-bezier(0, 0, 0.2, 1) 1s;
}
.carousel-content {
  font-family: var(--paragraph-font-family);
  scroll-snap-align: start;
  flex-shrink: 0;
  margin-right: 10px;
  border-radius: 10px;
  transform-origin: center center;
  transform: scale(1);
  transition: transform 0.5s;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  width: 100%;
}
.advice-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25em;
  @media screen and (max-width: 445px) {
    margin: 1em 0 0;
  }
}