section.choice .number {
  font: var(--h2-font);
  width: 80px !important;
  height: 80px;
  border-radius: 100%;
  color: var(--black);
  background-color: var(--chapter-color);
}
section.choice .answers.no-correct .answer button.choice::before {
  display: none !important;
}
section.choice .answer button.choice {
  width: 100%;
  border-radius: 40px;
  background-color: var(--chapter-color);
  font-weight: 500;
  padding: 20px !important;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
section.choice .answer button.choice.active {
  background: transparent !important;
  border: 0 !important;
}
section.choice .answer button.choice.active::before {
  height: 20px;
  content: "";
  background: var(--black);
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
  margin-top: 5px;
}
section.choice .answer button.choice.active[data-choice=not-correct]::before {
  width: 20px;
  -webkit-mask-image: url("/wp-content/themes/ung-face-it-live/assets/cross.svg");
          mask-image: url("/wp-content/themes/ung-face-it-live/assets/cross.svg");
}
section.choice .answer button.choice.active[data-choice=correct]::before {
  width: 24px;
  -webkit-mask-image: url("/wp-content/themes/ung-face-it-live/assets/correct.svg");
          mask-image: url("/wp-content/themes/ung-face-it-live/assets/correct.svg");
}
section.choice .answer button.choice.inactive {
  background: transparent !important;
  border: 0 !important;
  pointer-events: none;
}
section.choice .answer .carousel {
  overflow: hidden;
  position: relative;
  opacity: 0;
  height: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
section.choice .answer .carousel.active {
  opacity: 1;
}
@media screen and (max-width: 63.9375em) {
  section.choice .answer .carousel {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -ms-flex-line-pack: start;
        align-content: start;
  }
}
section.choice .answer .carousel button {
  height: 44px;
  width: 44px;
  z-index: 99;
  cursor: pointer;
  border-radius: 100%;
  background-color: var(--chapter-color) !important;
}
section.choice .answer .carousel button.hide {
  opacity: 0.5;
}
section.choice .answer .carousel button::after {
  width: 24px;
  height: 16px;
}
section.choice .answer .carousel button.next::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
section.choice .answer .carousel button.prev {
  left: 0px;
}
section.choice .answer .carousel .slides {
  max-width: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 63.9375em) {
  section.choice .answer .carousel .slides {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -ms-flex-line-pack: start;
        align-content: start;
  }
}
section.choice .answer .carousel .slides > li {
  list-style: none;
  text-align: center;
  -ms-grid-rows: auto 1fr;
  grid-template-rows: auto 1fr;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s 0s ease-in-out, visibility 0s 0.4s;
  transition: opacity 0.4s 0s ease-in-out, visibility 0s 0.4s;
  width: 100% !important;
}
@media screen and (max-width: 63.9375em) {
  section.choice .answer .carousel .slides > li {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -ms-flex-line-pack: start;
        align-content: start;
  }
}
section.choice .answer .carousel .slides > li.active {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.4s 0s ease-in-out, visibility 0s 0s;
  transition: opacity 0.4s 0s ease-in-out, visibility 0s 0s;
}
section.choice .answer .carousel .slides > li .content {
  position: relative;
  z-index: 1;
  border-radius: 2.5rem;
  background: var(--white);
  padding: 40px;
}
section.choice .answer .carousel .slides > li .content ul {
  display: -ms-grid;
  display: grid;
  row-gap: 10px;
}
section.choice .answer .carousel .slides > li .content li {
  list-style-type: disc;
}
section.choice .answer .carousel .slides > li .content * {
  text-align: center;
}
section.choice .answer .carousel .slides > li .content .pages {
  background: var(--chapter-color-light);
  padding: 5px 20px;
  border-radius: 100px;
  font-size: 16px;
}
section.choice .answer .carousel .slides > li .arrows {
  -ms-grid-row: 1;
  grid-row: 1;
}
section.choice .answer .carousel .pagination {
  display: none;
}