section.slider .carousel {
  overflow: hidden;
  position: relative;
  padding-bottom: 40px;
}
@media screen and (max-width: 63.9375em) {
  section.slider .carousel {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -ms-flex-line-pack: start;
        align-content: start;
  }
}
section.slider .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.slider .carousel .slides {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -ms-flex-line-pack: start;
        align-content: start;
  }
}
section.slider .carousel .slides li {
  list-style: none;
  padding: calc(var(--gutter) * 2);
  padding-left: 0;
  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;
}
@media screen and (max-width: 63.9375em) {
  section.slider .carousel .slides li {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -ms-flex-line-pack: start;
        align-content: start;
    row-gap: 0;
  }
  section.slider .carousel .slides li .img-wrapper {
    margin-bottom: -30px;
  }
}
section.slider .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.slider .carousel .slides li.active.playing .slide-progress .percentage {
  -webkit-animation: slide-progress 8s linear forwards;
          animation: slide-progress 8s linear forwards;
}
section.slider .carousel .slides li .img-wrapper {
  position: relative;
  height: 0;
  padding-bottom: 62.9719853837%;
  overflow: hidden;
}
section.slider .carousel .slides li .img-wrapper img,
section.slider .carousel .slides li .img-wrapper .lottie {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: translate(-50%, -50%) !important;
          transform: translate(-50%, -50%) !important;
}
section.slider .carousel .slides li .content {
  background: var(--white);
  position: relative;
  z-index: 1;
  padding: 2.5rem;
  border-radius: 2.5rem;
  text-align: left;
}
@media screen and (max-width: 63.9375em) {
  section.slider .carousel .slides li .content {
    border-radius: 1.875rem;
  }
  section.slider .carousel .slides li .content .text {
    -ms-grid-row: 2;
    grid-row: 2;
  }
}
section.slider .carousel .slides li .content .pages {
  background: var(--chapter-color-light);
  padding: 5px 20px;
  border-radius: 100px;
  font-size: 16px;
}
section.slider .carousel .slides li .slide-progress {
  height: 8px;
  width: 100%;
  position: relative;
  grid-column: 1/-1;
  overflow: hidden;
  border-radius: 100px;
  background: var(--white);
  display: none;
}
section.slider .carousel .slides li .slide-progress .percentage {
  position: absolute;
  width: 100%;
  height: 100%;
  right: 100%;
  background: var(--chapter-color);
  border-radius: 100px;
}
section.slider .carousel .slides li .seek-obj-container {
  display: none;
}
section.slider .carousel .slides li .audio-player .current-time {
  display: none;
}
section.slider .carousel .slides li .audio-player .play-audio {
  z-index: 1;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 100%;
}
section.slider .carousel .slides li .audio-player .play-audio::after {
  display: block;
  content: "";
  height: 100%;
  width: 100%;
  -webkit-mask-image: url("/wp-content/themes/ung-face-it-live/assets/play.svg");
          mask-image: url("/wp-content/themes/ung-face-it-live/assets/play.svg");
  -webkit-mask-size: 50%;
          mask-size: 50%;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background: var(--black);
}
section.slider .carousel .slides li .audio-player .play-audio:hover {
  background-color: var(--black);
}
section.slider .carousel .slides li .audio-player .play-audio:hover::after {
  background-color: var(--black);
}
section.slider .carousel .slides li .audio-player .play-audio.pause {
  background-color: var(--black);
}
section.slider .carousel .slides li .audio-player .play-audio.pause::after {
  -webkit-mask-image: url("/wp-content/themes/ung-face-it-live/assets/mute.svg");
          mask-image: url("/wp-content/themes/ung-face-it-live/assets/mute.svg");
  -webkit-mask-size: 50%;
          mask-size: 50%;
  background-color: var(--black);
}
section.slider .carousel button {
  height: 44px;
  width: 44px;
  z-index: 99;
  cursor: pointer;
  border-radius: 100%;
  background-color: var(--chapter-color) !important;
}
section.slider .carousel button.hide {
  opacity: 0.5;
  pointer-events: none;
}
section.slider .carousel button::after {
  width: 24px;
  height: 16px;
}
section.slider .carousel button.next::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
section.slider .carousel button.prev {
  left: 0px;
}
section.slider .carousel .pagination {
  width: auto;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  display: none;
}
section.slider .carousel .pagination li {
  list-style: none;
  cursor: pointer;
  height: 12px;
  width: 12px;
  border-radius: 100px;
}
section.slider .carousel .pagination li.active {
  background-color: #000;
}