section.character .content-wrapper {
  margin-bottom: 100px;
}
@media screen and (min-width: 64em) {
  section.character .content-wrapper {
    -ms-grid-row: 1;
    grid-row: 1;
  }
}
@media screen and (max-width: 63.9375em) {
  section.character .content-wrapper {
    margin-bottom: -80px;
  }
}
section.character .content-wrapper p {
  font: var(--quote-font);
  font-size: 1.5rem;
  line-height: 2rem;
}
@media screen and (max-width: 63.9375em) {
  section.character .content-wrapper p {
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 64em) {
  section.character .content-wrapper.left .audio-player {
    padding-left: 10%;
  }
  section.character .content-wrapper.left .audio-player .seek-obj-container {
    width: 90%;
  }
}
section.character .img-wrapper {
  pointer-events: none;
  overflow: hidden;
  border-radius: 1.25rem;
}
@media screen and (min-width: 64em) {
  section.character .img-wrapper {
    -ms-grid-row: 1;
    grid-row: 1;
    border-radius: 2.5rem;
  }
}
section.character .content {
  background: var(--white);
  padding: var(--column);
  border-radius: 2.5rem;
}
@media screen and (max-width: 63.9375em) {
  section.character .content {
    padding: 1.875rem;
    padding-bottom: 5rem;
  }
}
section.character .content h3,
section.character .content h4,
section.character .content h5,
section.character .content h6 {
  margin-bottom: -1.25rem;
}
section.character .audio-player {
  border-radius: 40px;
  overflow: hidden;
}
@media screen and (max-width: 63.9375em) {
  section.character .audio-player {
    -ms-grid-row: 1;
    grid-row: 1;
  }
}
section.character .audio-player .player-controls {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
}
section.character .audio-player .title {
  z-index: 1;
  position: relative;
  font: var(--button-font);
}
section.character .audio-player .play-audio {
  z-index: 1;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border: 2px solid transparent;
  border-radius: 100%;
  background: var(--chapter-color);
}
section.character .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.character .audio-player .play-audio:hover {
  background-color: var(--black);
}
section.character .audio-player .play-audio:hover::after {
  background-color: var(--chapter-color);
}
section.character .audio-player .play-audio.pause {
  background-color: var(--black);
}
section.character .audio-player .play-audio.pause::after {
  -webkit-mask-image: url("/wp-content/themes/ung-face-it-live/assets/stop.svg");
          mask-image: url("/wp-content/themes/ung-face-it-live/assets/stop.svg");
  -webkit-mask-size: 40%;
          mask-size: 40%;
  background-color: var(--chapter-color);
}
section.character .audio-player .current-time {
  opacity: 0;
  display: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  z-index: 1;
  position: relative;
  font: var(--button-font);
  font-weight: 400;
  font-size: 16px;
}
section.character .audio-player .seek-obj-container {
  width: 80%;
  pointer-events: none;
  z-index: 0;
  border-radius: 100px;
  height: 8px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 63.9375em) {
  section.character .audio-player .seek-obj-container {
    width: 100%;
  }
}
section.character .audio-player .seek-obj-container .seek-obj {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: var(--grey);
}
section.character .audio-player .seek-obj-container .seek-obj .percentage {
  pointer-events: none;
  right: 100%;
  opacity: 0;
  border-radius: 40px;
  position: absolute;
  left: auto;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--chapter-color);
  -webkit-transition: 0.25s linear;
  transition: 0.25s linear;
}
section.character .audio-player .seek-obj-container .seek-obj .percentage.active {
  opacity: 1;
}
section.character.tips h3 {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font: var(--h2-font);
}
section.character.tips h3 span {
  background-color: var(--black);
  height: 44px;
  width: 44px;
  border-radius: 100%;
  overflow: hidden;
}
section.character.tips h3 span::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url("/wp-content/themes/ung-face-it-live/assets/bulb.svg");
          mask-image: url("/wp-content/themes/ung-face-it-live/assets/bulb.svg");
  -webkit-mask-size: 55%;
          mask-size: 55%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--chapter-color);
}