.has-poll .toast {
  margin-bottom: 30px;
}
.has-poll .toast .b1 {
  margin-left: 7px;
}
@media (max-width: 767px) {
  .has-poll .toast .b1 {
    margin-left: 4px;
  }
}
.has-poll .toast > * {
  margin: 0;
  line-height: 1.1;
}
.has-poll .stat {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--orange1);
  gap: 12px;
  margin: 48px 0 32px;
}
.has-poll .stat h2 {
  margin: 0;
}
.has-poll .answers {
  margin: 40px 0;
}
.has-poll .answer {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0.5em;
  position: relative;
  margin: 6px 0;
  padding: 1em 1.5em 1em 0.5em;
  color: white;
  z-index: 1;
  border-radius: 8px;
  position: relative;
}
.has-poll .answer.chosen {
  outline: 2px solid black;
}
.has-poll .answer.correct::before {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  background: white;
  padding: 0;
  right: 20px;
  height: 100%;
  -webkit-mask-image: url("/wp-content/themes/fsm/partials/poll/check2.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/wp-content/themes/fsm/partials/poll/check2.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  width: 36px;
  opacity: 0.66;
}
.has-poll .answer:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--rgb_orange1), 0.7);
  transition: background-color 0.4s;
  z-index: -2;
  border-radius: 8px;
}
.has-poll .answer.dark:after {
  background-color: var(--orange1);
}
.has-poll .answer .meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40px;
  flex-shrink: 0;
  gap: 2px;
}
.has-poll .answer .meta > * {
  line-height: 1;
}
.has-poll .answer .meta .percentage {
  font-variant-numeric: lining-nums;
}
.has-poll .answer .poll_count {
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  border-radius: 8px 0 0 8px;
  overflow: hidden;
  --duration: 5s;
}
.has-poll .answer .poll_count::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform-origin: left;
  transition: transform 0.4s;
  animation: var(--duration) linear 0s 1 growFromLeft;
  animation-fill-mode: forwards;
  background-color: var(--orange1);
}
@keyframes growFromLeft {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
/*# sourceMappingURL=https://fsm.kniff.at/wp-content/build/scss_library/d0e18efc9e99edb190a4b8ac16b06c3d2762cf1b.css.map */