@keyframes pulse {
  0% {
    transform: scale(1, 1);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}
.Layout {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.Layout #navigation {
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  height: calc(50px + env(safe-area-inset-top));
  z-index: 100;
  overflow: hidden;
}
.Layout #content {
  position: relative;
  overflow: hidden;
  width: 100%;
  flex: 1;
  padding-top: env(safe-area-inset-top);
  padding-right: env(safe-area-inset-right);
  padding-bottom: env(safe-area-inset-bottom);
  padding-left: env(safe-area-inset-left);
  transition: padding-left 0.25s ease-in-out;
}
.Layout #content.flex-column, .Layout #content.flex-row {
  display: flex;
}
.Layout #content .flex-column {
  flex-direction: column;
}
.Layout #content .flex-row {
  flex-direction: row;
}
.Layout.dark-mode #content {
  background-color: #222222;
}
@media screen and (min-width: 1024px) {
  .Layout.me-open #content {
    padding-left: 320px;
  }
}
.Layout.navigation-enabled #content {
  padding-top: 0;
}
.Layout.banner-open #navigation {
  height: 50px;
}

.Menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: fixed;
  top: calc(50px + env(safe-area-inset-top));
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
}
.Menu .menu-contents {
  display: flex;
  flex-direction: column;
  width: 250px;
  color: black;
  background-color: white;
  padding: 20px 30px;
  overflow-y: auto;
  box-shadow: -5px 5px 4px 0px rgba(0, 0, 0, 0.1), -5px -2px 4px 0 rgba(0, 0, 0, 0.1);
}
.Menu .menu-contents .yoyo-logo-img {
  align-self: center;
  width: 50px;
  height: 45px;
}
.Menu .menu-contents .sign-out-button,
.Menu .menu-contents .sign-in-button,
.Menu .menu-contents .sign-up-button {
  width: 100%;
  max-width: 100%;
}
.Menu .menu-contents .menu-list {
  padding: 20px 0;
}
.Menu .sale-wrapper {
  position: relative;
}
.Menu .sale {
  position: absolute;
  right: 0;
  top: calc(50% - 7px);
  background-color: #fc4b49;
  padding: 2px 4px;
  border-radius: 8px;
  font-size: 10px;
  font-family: "semiBold", sans-serif;
  z-index: 1;
  color: #ffffff;
}
.Menu .auth-button-wrapper .sign-in-button {
  margin-top: 10px;
}
.Menu.dark-mode .menu-contents {
  color: #ffffff;
  background-color: #555555;
}

.CurrentStreak {
  display: flex;
  min-height: fit-content;
  width: 100%;
  padding: 30px 30px;
  border-bottom: 1px solid #666666;
  font-size: 16px;
}
@media screen and (max-width: 819px) {
  .CurrentStreak {
    padding: 20px 30px;
  }
}
.CurrentStreak .streak {
  width: 50%;
}
.CurrentStreak .streak .streak-display {
  display: flex;
  align-items: center;
  height: 20px;
}
.CurrentStreak .streak .streak-display .flame-icon {
  margin-right: 8px;
  color: #f4593e;
  font-size: 20px;
}
.CurrentStreak .streak .streak-display .streak-number {
  margin-right: 5px;
  color: #f4593e;
  font-family: "semiBold", sans-serif;
}
.CurrentStreak .streak .streak-display .day-label {
  color: white;
  font-family: "regular", sans-serif;
}
.CurrentStreak .streak .streak-label {
  margin-top: 8px;
  color: #d8d8d8;
  font-family: "regular", sans-serif;
  font-size: 13px;
}
.CurrentStreak .complete-status {
  width: 50%;
  text-align: right;
}
.CurrentStreak .complete-status .completed-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  height: 100%;
}
.CurrentStreak .complete-status .completed-container .completed-icon-background {
  position: relative;
  height: 16px;
  width: 16px;
  margin-right: 0;
  border-radius: 50%;
  background: #d8d8d8;
}
.CurrentStreak .complete-status .completed-container .completed-icon-background .completed-icon {
  position: absolute;
  top: -2px;
  left: -2px;
  font-size: 20px;
  color: #63b768;
}
.CurrentStreak .complete-status .incomplete-icon {
  font-size: 20px;
  color: #faa80f;
}
.CurrentStreak .complete-status .incomplete-label,
.CurrentStreak .complete-status .complete-label {
  margin-top: 8px;
  color: #d8d8d8;
  font-family: "regular", sans-serif;
  font-size: 13px;
}

.DailyGoalDisplay .goal-label {
  display: flex;
  justify-content: space-between;
  height: 20px;
  font-family: "regular", sans-serif;
  font-size: 15px;
  color: #d8d8d8;
}
.DailyGoalDisplay .goal-label .completed-icon-background {
  position: relative;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #d8d8d8;
}
.DailyGoalDisplay .goal-label .completed-icon-background .check-mark {
  position: absolute;
  top: -2px;
  left: -2px;
  font-size: 20px;
  color: #63b768;
}
.DailyGoalDisplay .goal-label .fraction .earned-number {
  font-family: "semiBold", sans-serif;
  color: white;
}
.DailyGoalDisplay .progress-bar {
  height: auto;
  margin: 8px 0 0;
}
@media screen and (max-width: 599px) {
  .DailyGoalDisplay .progress-bar {
    margin: 8px 0 0;
  }
}
.DailyGoalDisplay .progress-bar .MuiLinearProgress-colorPrimary {
  background-color: #666666;
}
.DailyGoalDisplay .progress-bar.is-complete .MuiLinearProgress-barColorPrimary {
  background-color: #63b768;
}

.DailyGoals {
  min-height: fit-content;
  width: 100%;
  padding: 30px 30px;
  border-bottom: 1px solid #666666;
}
.DailyGoals > * {
  margin-bottom: 30px;
}
.DailyGoals :last-child {
  margin-bottom: 0px;
}
.DailyGoals .title {
  color: white;
  font-family: "semiBold", sans-serif;
  font-size: 17px;
  margin-bottom: 20px;
}
.DailyGoals .subscribe-button {
  width: 100% !important;
  background-color: #555555 !important;
  color: #ffffff !important;
  font-size: 15px !important;
}
@media screen and (max-width: 819px) {
  .DailyGoals {
    padding: 20px 30px;
  }
  .DailyGoals > * {
    margin-bottom: 20px;
  }
}

.MasteredStat {
  display: flex;
}
.MasteredStat .path {
  width: 100px;
}
.MasteredStat .percentage-display {
  margin-bottom: 9px;
  text-align: center;
  font-size: 13px;
}
.MasteredStat .percentage-display h2 {
  font-family: "semiBold", sans-serif;
  color: white;
}
.MasteredStat .percentage-display p {
  font-family: "regular", sans-serif;
  color: #d8d8d8;
}
.MasteredStat .stats {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: calc(100% - 100px);
  margin-left: 20px;
}
.MasteredStat .stats .stat {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 8px;
  font-size: 13px;
}
.MasteredStat .stats .stat.last-stat {
  margin-bottom: 0;
}
.MasteredStat .stats .stat .label {
  font-family: "regular", sans-serif;
  color: #d8d8d8;
}
.MasteredStat .stats .stat .number {
  font-family: "semiBold", sans-serif;
  color: white;
}

.StatBar {
  height: 56px;
  width: 100%;
  margin-bottom: 20px;
}
.StatBar.last-bar {
  margin-bottom: 0;
}
.StatBar .fraction,
.StatBar .label {
  font-family: "regular", sans-serif;
  font-size: 15px;
  color: #d8d8d8;
}
.StatBar .fraction .earned-number,
.StatBar .label .earned-number {
  font-family: "semiBold", sans-serif;
  color: white;
}
.StatBar .stat-bar {
  height: auto;
  margin: 8px 0 0;
}
@media screen and (max-width: 599px) {
  .StatBar .stat-bar {
    margin: 8px 0 0;
  }
}
.StatBar .stat-bar .MuiLinearProgress-colorPrimary {
  background-color: #666666;
}
.StatBar .stat-bar.is-complete .MuiLinearProgress-barColorPrimary {
  background-color: #63b768;
}

.StudyStat {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 76px;
  transition: height 0.2s ease-in;
  padding-bottom: 20px;
  border-bottom: 1px solid #666666;
  overflow-y: hidden;
}
.StudyStat .top-level {
  display: flex;
  align-items: center;
  background: #444444;
  padding-top: 20px;
  height: 56px;
  width: 100%;
  z-index: 20;
}
.StudyStat .top-level .logo-container {
  display: flex;
  justify-content: center;
  width: 36px;
}
.StudyStat .top-level .logo-container .logo-background {
  position: relative;
  height: 28px;
  width: 28px;
  border-radius: 50%;
  background: #d8d8d8;
}
.StudyStat .top-level .logo-container .logo-background .logo {
  position: absolute;
  top: -2px;
  left: -2px;
  font-size: 32px;
}
.StudyStat .top-level .stat-container {
  flex-grow: 2;
  margin-left: 16px;
}
.StudyStat .top-level .stat-container h2 {
  margin-bottom: 2px;
  font-family: "semiBold", sans-serif;
  font-size: 21px;
}
.StudyStat .top-level .stat-container p {
  font-family: "regular", sans-serif;
  font-size: 13px;
  color: #d8d8d8;
}
.StudyStat .top-level .chevron-container {
  display: flex;
  align-items: center;
  height: 100%;
}
.StudyStat .top-level .chevron-container .chevron {
  color: #666666;
  font-size: 20px;
  cursor: pointer;
}
.StudyStat .drop-down {
  position: absolute;
  bottom: 20px;
  width: 100%;
  padding-top: 20px;
  z-index: 10;
}
.StudyStat.streak .top-level .stat-container h2 {
  color: #f4593e;
}
.StudyStat.streak .top-level .logo-background {
  background: #444444;
}
.StudyStat.streak .top-level .logo-background .logo {
  color: #f4593e;
}
.StudyStat.lessons .top-level .stat-container h2 {
  color: #63b768;
}
.StudyStat.lessons .top-level .logo-background .logo {
  left: -3px;
  color: #63b768;
}
.StudyStat.gold-medals .top-level .stat-container h2 {
  color: #faa80f;
}
.StudyStat.gold-medals .top-level .logo-background {
  background: #444444;
}
.StudyStat.gold-medals .top-level .logo-background .gold-medals {
  position: absolute;
  top: -5px;
  left: -5px;
  height: 38px;
}
.StudyStat.flashcards .top-level .stat-container h2 {
  color: #00c7ce;
}
.StudyStat.flashcards .top-level .logo-background {
  background: #444444;
}
.StudyStat.flashcards .top-level .logo-background .flashcards {
  position: absolute;
  top: 0px;
  left: -3px;
  height: 28px;
}
.StudyStat.questions .top-level .stat-container h2 {
  color: #ee4ef4;
}
.StudyStat.questions .top-level .logo-background {
  border-radius: 0;
  height: 26px;
  width: 23px;
}
.StudyStat.questions .top-level .logo-background .logo {
  color: #ee4ef4;
  height: 32px;
}

.StudyStats {
  min-height: fit-content;
  width: 100%;
  padding: 30px 30px;
}
@media screen and (max-width: 819px) {
  .StudyStats {
    padding: 20px 30px;
  }
}
.StudyStats .title {
  color: white;
  font-family: "semiBold", sans-serif;
  font-size: 17px;
}

.UserSection {
  display: flex;
  min-height: fit-content;
  width: 100%;
  padding: 35px 30px;
  position: relative;
  border-top: 1px solid #666666;
  border-bottom: 1px solid #666666;
}
@media screen and (max-width: 819px) {
  .UserSection {
    padding: 20px 30px;
  }
}
.UserSection .close-button {
  position: absolute;
  width: 100px;
  top: 15px;
  right: 20px;
  color: white;
  cursor: pointer;
}
.UserSection .avatar-progress {
  display: flex;
  width: 45%;
}
.UserSection .avatar-progress .avatar-display {
  position: relative;
  cursor: pointer;
}
.UserSection .avatar-progress .avatar-display .avatar-path {
  height: 100px;
}
.UserSection .avatar-progress .avatar-display .avatar-image {
  height: 80px;
  margin-bottom: 9px;
}
.UserSection .avatar-progress .avatar-display .current-level-circle {
  position: absolute;
  top: 68px;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  width: 30px;
  background-color: #faa80f;
  border-radius: 50%;
}
.UserSection .avatar-progress .avatar-display .current-level-circle.complete {
  background-color: #63b768;
}
.UserSection .avatar-progress .avatar-display .current-level-circle .current-level-number {
  padding-top: 2px;
  font-family: "semiBold", sans-serif;
  color: white;
  font-size: 17px;
}
.UserSection .avatar-progress .avatar-display .current-level-circle .current-level-number.three-digit {
  padding-top: 0;
  font-size: 13px;
}
.UserSection .user-info {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  width: 55%;
  color: #d8d8d8;
  font-family: "regular", sans-serif;
  font-size: 13px;
}
.UserSection .user-info .username {
  width: 100%;
  margin-bottom: 8px;
  color: white;
  font-family: "semiBold", sans-serif;
  font-size: 19px;
}
.UserSection .user-info .settings-link {
  display: flex;
  align-items: center;
  height: 15px;
  width: fit-content;
  cursor: pointer;
}
.UserSection .user-info .settings-link .settings-cog {
  font-size: 13px;
  margin-right: 5px;
}
.UserSection .user-info .experience {
  margin-top: 23px;
}
.UserSection .user-info .experience .progress {
  margin-top: 8px;
}
.UserSection .user-info .experience .progress .xp {
  color: #faa80f;
  font-family: "bold", sans-serif;
  margin-right: 5px;
}
.UserSection .user-info .experience .progress .earned-points {
  color: white;
  font-family: "semiBold", sans-serif;
}

.Navigation {
  position: relative;
  display: flex;
  justify-content: center;
  height: 50px;
  box-sizing: content-box;
  flex: 1;
  font-family: "regular";
  background: #f2f3ee;
  border: 1px solid #dadbd5;
  padding-top: env(safe-area-inset-top);
  /* start */
  /* end */
}
.Navigation.banner-open {
  padding-top: 0;
}
.Navigation.dark-mode {
  background: #444444;
  border: 1px solid black;
  color: white;
}
.Navigation a {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}
.Navigation .nav-item {
  font-size: 20px;
  line-height: 50px;
  color: inherit;
  overflow: hidden;
  text-align: center;
}
.Navigation .nav-item,
.Navigation .nav-item.is-logo,
.Navigation .nav-item.is-menu {
  width: 65px;
}
.Navigation .nav-label {
  display: none;
}
.Navigation .nav-icon.icon-only {
  display: inline;
}
.Navigation .nav-icon.icon-with-title {
  display: none;
}
.Navigation .nav-menu-spacer,
.Navigation .nav-logo-spacer {
  display: none;
}
.Navigation .nav-spacer {
  flex: 1;
}
.Navigation .nav-item.is-active {
  font-family: "semiBold";
  color: #00c7ce;
}
.Navigation .nav-item.is-subscribed {
  font-family: "semiBold";
  color: #fc4b49;
}
.Navigation .nav-item.is-logo img {
  height: 100%;
  padding: 8px 0;
}
@media (min-width: 1024px) {
  .Navigation .nav-item {
    width: 200px;
  }
  .Navigation .nav-label {
    display: inline;
    padding-left: 15px;
  }
}
@media (min-width: 1250px) {
  .Navigation {
    /* logo and menu item width need to balance each other out */
  }
  .Navigation .nav-item.is-logo {
    width: 275px;
  }
  .Navigation .nav-item.is-menu {
    width: 65px;
  }
  .Navigation .nav-logo-spacer {
    display: block;
    width: 15px;
  }
  .Navigation .nav-menu-spacer {
    display: block;
    width: 210px;
  }
  .Navigation .nav-icon.icon-only {
    display: none;
  }
  .Navigation .nav-icon.icon-with-title {
    display: inline;
  }
}

.Comment {
  color: #444444;
  font-size: 13px;
  font-family: "regular", sans-serif;
  line-height: 19px;
  position: relative;
}
.Comment.Comment__question {
  width: 100%;
  padding: 20px;
  color: #000000;
  font-size: 15px;
}
.Comment.Comment__question .Comment__chevron {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #0582ca;
}
.Comment.Comment__question .Comment__attribution {
  order: -1;
  padding-bottom: 15px;
  color: #444444;
  font-size: 13px;
  max-width: 78%;
}
.Comment.Comment__question img {
  width: 30px;
  height: 30px;
  position: absolute;
  left: -37px;
  top: -3px;
  border-radius: 50%;
}
.Comment.Comment__answer {
  width: 100%;
  padding: 20px;
  font-family: "regular", sans-serif;
  background-color: #ffffff;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.Comment.Comment__answer .Comment__attribution {
  display: flex;
  align-items: center;
  padding-top: 15px;
  color: #000000;
  font-size: 13px;
  font-family: "semiBold", sans-serif;
}
.Comment.Comment__answer img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 10px;
}
.Comment .Comment__lessonLink {
  font-family: "semiBold";
}
.Comment .Comment__content {
  cursor: pointer;
  position: relative;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  font-family: "regular", sans-serif;
}
.Comment .Comment__attribution {
  font-size: 11px;
  font-family: "regular", sans-serif;
}
.Comment.dark-mode.Comment__question {
  color: #ffffff;
}
.Comment.dark-mode.Comment__question .Comment__chevron {
  color: #0582ca;
}
.Comment.dark-mode.Comment__question .Comment__attribution {
  order: -1;
  padding-bottom: 15px;
  color: #d8d8d8;
  font-size: 13px;
  max-width: 78%;
}
.Comment.dark-mode.Comment__answer {
  color: #d8d8d8;
  background-color: #222222;
}
.Comment.dark-mode.Comment__answer .Comment__attribution {
  color: #ffffff;
}

.SaveButton {
  position: absolute;
  right: 0;
  top: 0;
}
.SaveButton.SaveButton--active i {
  color: #fc4b49;
  animation-duration: 0.7s;
  animation-name: favorite;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-timing-function: linear;
}
@keyframes favorite {
  0% {
    transform: scale(1);
  }
  /*12%   { transform: scale(1.1); }
  24%   { transform: scale(1.2); }
  36%   { transform: scale(1.3); }
  48%  { transform: scale(1.4); }*/
  50% {
    transform: scale(1.4);
  }
  /*60%  { transform: scale(1.3); }
  72%  { transform: scale(1.2); }
  84%  { transform: scale(1.1); }
  96% { transform: scale(1); }*/
  100% {
    transform: scale(1);
  }
}

.NotifyTab {
  position: absolute;
  top: 0;
  right: 70px;
  font-family: "semiBold";
  background-color: #2a798a;
  padding: 15px;
  border-radius: 0 0 4px 4px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}
.NotifyTab.NotifyTab--is-editing {
  height: unset;
  padding: 10px;
  z-index: 1;
}

.Discussion {
  width: 100%;
  color: #444444;
  font-size: 13px;
  font-family: "regular", sans-serif;
  line-height: 19px;
  margin-top: 40px;
  margin-left: 7px;
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
}
.Discussion .Discussion__title-container h1 {
  font-family: "semiBold", sans-serif;
  font-size: 17px;
  padding-bottom: 10px;
  color: #000000;
}
.Discussion .Discussion__title-container p {
  padding-bottom: 10px;
}
.Discussion .Discussion__ask-button-container {
  display: flex;
  flex: 1;
  justify-content: flex-end;
}
@media screen and (max-width: 599px) {
  .Discussion .Discussion__ask-button-container {
    justify-content: center;
  }
}
.Discussion .Discussion__ask-input-container {
  width: 100%;
  margin-top: 30px;
}
.Discussion .Discussion__ask-input-container.Discussion__ask-input-container--close {
  display: none;
}
.Discussion .Discussion__ask-input-container.Discussion__ask-input-container--open {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.Discussion .Discussion__items-container {
  width: 100%;
  margin-top: 40px;
}
.Discussion .Discussion__item {
  width: 100%;
  background-color: #f2f3ee;
  border: 2px solid #f2f3ee;
  margin-bottom: 8px;
  border-radius: 8px;
}
.Discussion .Discussion__item__answers {
  width: 100%;
  overflow-y: hidden;
}
.Discussion .Discussion__item__answers.Discussion__item__answers--is-open {
  max-height: min-content;
}
.Discussion .Discussion__item__answers.Discussion__item__answers--is-closed {
  max-height: 0;
}
@media screen and (max-width: 599px) {
  .Discussion {
    margin-top: 20px;
  }
  .Discussion .Discussion__items-container {
    margin-top: 20px;
  }
}
.Discussion.dark-mode .Discussion__title-container h1 {
  color: #ffffff;
}
.Discussion.dark-mode .Discussion__title-container p {
  color: #ffffff;
}
.Discussion.dark-mode .Discussion__item {
  background-color: #444444;
  border: 2px solid #444444;
}

.AuthPageBackButton {
  position: absolute;
  top: 15px;
  left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: #444444;
  font-size: 20px;
}

.AuthPageHeaderText {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.AuthPageHeaderText h1 {
  font-family: "semiBold", sans-serif;
  font-size: 29px;
  text-align: center;
}
.AuthPageHeaderText h2 {
  margin-bottom: 35px;
  font-size: 19px;
  font-family: "regular", sans-serif;
  color: #444444;
  text-align: center;
  line-height: 30px;
}
@media screen and (max-width: 599px) {
  .AuthPageHeaderText h2 {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 40px;
  }
}

.LoginPage {
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  align-self: center;
}
.LoginPage .forgot-password {
  margin-top: 25px;
}

.PasswordResetPostEmail {
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  align-self: stretch;
}
.PasswordResetPostEmail .reset-password-container {
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 740px;
  width: 100%;
  padding: 32px;
  background-color: #ffffff;
  border-radius: 28px;
  box-shadow: 0px 0px 36px -20px #515151;
  z-index: 10;
}
@media (max-width: 740px) {
  .PasswordResetPostEmail .reset-password-container {
    padding-top: 15%;
    box-shadow: 0 0 0 0;
  }
}
.PasswordResetPostEmail .reset-password-container h1 {
  font-family: "semiBold", sans-serif;
  font-size: 29px;
  text-align: center;
}
@media (max-width: 740px) {
  .PasswordResetPostEmail .reset-password-container h1 {
    font-size: 25px;
  }
}
.PasswordResetPostEmail .reset-password-container form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 50px;
}
.PasswordResetPostEmail .reset-password-container form .password-container {
  display: flex;
}
@media (max-width: 740px) {
  .PasswordResetPostEmail .reset-password-container form .password-container {
    width: 100%;
  }
}
.PasswordResetPostEmail .reset-password-container form .password-container input {
  width: 247px;
  height: 48px;
  margin-bottom: 25px;
  padding-left: 20px;
  font-family: "regular", sans-serif;
  font-size: 15px;
  background-color: #f2f3ee;
  border: 2px solid #dadbd5;
  border-right: none;
  border-radius: 8px 0 0 8px;
}
.PasswordResetPostEmail .reset-password-container form .password-container input ::placeholder {
  color: #444444;
  opacity: 1;
}
@media (max-width: 740px) {
  .PasswordResetPostEmail .reset-password-container form .password-container input {
    width: calc(100% - 50px);
  }
}
.PasswordResetPostEmail .reset-password-container form .password-container .eye-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 48px;
  background-color: #f2f3ee;
  border: 2px solid #dadbd5;
  border-left: none;
  border-radius: 0 8px 8px 0;
}
.PasswordResetPostEmail .reset-password-container form .password-container .eye-container .eye {
  color: #00c7ce;
  font-size: 20px;
  cursor: pointer;
}
.PasswordResetPostEmail .reset-password-container form button {
  width: 300px;
  height: 60px;
  margin-top: 65px;
  font-size: 21px;
  background: #d8d8d8;
  border-radius: 34px;
  color: white;
  font-family: "bold", sans-serif;
}
.PasswordResetPostEmail .reset-password-container form button.ready {
  background-color: #faa80f;
}
.PasswordResetPostEmail .reset-password-container form button.ready.disabled {
  pointer-events: none;
  background-color: #d8d8d8;
}
.PasswordResetPostEmail .reset-password-container .response {
  height: 15px;
  width: 100%;
  margin-top: 10px;
  text-align: center;
  font-family: "semiBold", sans-serif;
  font-size: 15px;
  color: red;
}
@media (max-width: 740px) {
  .PasswordResetPostEmail .return-container {
    padding-top: 25%;
  }
}
.PasswordResetPostEmail .return-container .prompt {
  margin-bottom: 30px;
  text-align: center;
  font-size: 25px;
  font-family: "semiBold", sans-serif;
}
.PasswordResetPostEmail .return-container .prompt.error {
  font-size: 25px;
  color: red;
}
@media (max-width: 740px) {
  .PasswordResetPostEmail .return-container .prompt {
    margin-bottom: 100px;
  }
}
.PasswordResetPostEmail .return-container .return-span {
  width: 100%;
  text-align: center;
}
.PasswordResetPostEmail .return-container .return-span span {
  font-size: 21px;
  font-family: "regular", sans-serif;
}
.PasswordResetPostEmail .return-container .return-span span.link {
  margin-left: 5px;
  font-family: "semiBold", sans-serif;
  color: #faa80f;
  cursor: pointer;
}

.ResetPasswordPage {
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  align-self: stretch;
}
.ResetPasswordPage .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.ResetPasswordPage .email-sent p {
  font-family: "regular", sans-serif;
  font-size: 19px;
  padding: 10px 0;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .ResetPasswordPage .email-sent p {
    font-size: 15px;
  }
}

.EmailVerificationPopup {
  background: rgba(1, 1, 1, 0.5);
}
.EmailVerificationPopup .popup-content {
  position: absolute;
  top: 10%;
  left: 27%;
  bottom: 10%;
  right: 27%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 40px;
  background: white;
  z-index: 4000;
  color: #444444;
}
@media screen and (max-width: 599px) {
  .EmailVerificationPopup .popup-content {
    top: 10%;
    left: 10%;
    bottom: 10%;
    right: 10%;
    padding: 40px 20px;
  }
}
.EmailVerificationPopup .popup-content .exit-button {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 25px;
  cursor: pointer;
}
.EmailVerificationPopup .popup-content h1 {
  text-align: center;
  font-size: 19px;
  font-family: "bold", sans-serif;
  line-height: 24px;
  margin-bottom: 30px;
}
.EmailVerificationPopup .popup-content h2 {
  text-align: center;
  font-size: 17px;
  font-family: "regular", sans-serif;
  line-height: 20px;
  margin-bottom: 30px;
}
.EmailVerificationPopup .popup-content button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  max-width: calc(100% - 40px);
  height: 60px;
  padding: 0 20px;
  color: white;
  font-family: "bold", sans-serif;
  font-size: 17px;
  line-height: 20px;
  background-color: #faa80f;
  border-radius: 34px;
  cursor: pointer;
}
.EmailVerificationPopup .popup-content button.disabled {
  background: #d8d8d8;
  pointer-events: none;
}
@media screen and (max-width: 599px) {
  .EmailVerificationPopup .popup-content button {
    width: 210px;
    bottom: 20px;
  }
}
.EmailVerificationPopup .popup-content .error {
  margin-top: 20px;
  text-align: center;
  color: red;
  font-family: "semiBold", sans-serif;
  font-size: 17px;
  line-height: 20px;
}

.AuthForm {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.AuthForm .email-input,
.AuthForm .password-input {
  margin-bottom: 15px;
  padding-left: 20px;
  font-family: "regular", sans-serif;
  font-size: 15px;
  background-color: #f2f3ee;
  border: 2px solid #dadbd5;
  border-radius: 8px;
}
.AuthForm .email-input ::placeholder,
.AuthForm .password-input ::placeholder {
  color: #444444;
  opacity: 1;
}
.AuthForm .password-input {
  margin-bottom: 25px;
}
.AuthForm .password-container {
  display: flex;
  width: 100%;
}
.AuthForm .password-container input {
  border-right: none;
  border-radius: 8px 0 0 8px;
}
.AuthForm .password-container .eye-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 48px;
  background-color: #f2f3ee;
  border: 2px solid #dadbd5;
  border-left: none;
  border-radius: 0 8px 8px 0;
}
.AuthForm .password-container .eye-container .eye {
  color: #00c7ce;
  font-size: 20px;
  cursor: pointer;
}
.AuthForm .error-message {
  height: 15px;
  width: 100%;
  margin: 25px 0;
  text-align: center;
  font-family: "semiBold", sans-serif;
  font-size: 15px;
  color: red;
}

.AuthOptions {
  display: flex;
}
@media screen and (max-width: 599px) {
  .AuthOptions {
    flex-direction: column;
    width: 100%;
    margin-bottom: 0;
  }
}
.AuthOptions .email-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex: 1;
  width: 100%;
  padding-left: 20px;
  border-left: 2px dashed #dadbd5;
  margin-bottom: 15px;
}
@media screen and (max-width: 599px) {
  .AuthOptions .email-section {
    width: 100%;
    padding-top: 10px;
    padding-left: 0;
    border-left: none;
    align-items: center;
  }
}
@media screen and (max-width: 599px) {
  .AuthOptions .email-section.login-page {
    padding-top: 15px;
  }
}

.AuthPageBackButton {
  position: absolute;
  top: 15px;
  left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: #444444;
  font-size: 20px;
  z-index: 30;
}

.AuthTextWithLink {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 50px;
}
.AuthTextWithLink p {
  font-size: 17px;
  font-family: "regular", sans-serif;
  margin-right: 6px;
}
@media screen and (max-width: 599px) {
  .AuthTextWithLink p {
    font-size: 13px;
  }
}
.AuthTextWithLink a:link,
.AuthTextWithLink a:visited {
  font-size: 17px;
  font-family: "semiBold", sans-serif;
  color: #faa80f;
  text-decoration: none;
  cursor: pointer;
}
@media screen and (max-width: 599px) {
  .AuthTextWithLink a:link,
  .AuthTextWithLink a:visited {
    font-size: 13px;
  }
}

@media screen and (min-width: 600px) {
  .SocialAuthButtons {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
    height: 100%;
    padding-right: 20px;
  }
  .SocialAuthButtons .social-link {
    display: flex;
    align-items: center;
    border-radius: 34px;
    margin-bottom: 15px;
    height: 48px;
    min-width: 280px;
    text-decoration: none;
  }
  .SocialAuthButtons .social-link p {
    font-family: "semiBold", sans-serif;
    font-size: 17px;
  }
  .SocialAuthButtons .social-link img.logo-only {
    display: none;
  }
  .SocialAuthButtons .social-link.google-button {
    border: 2px solid #dadbd5;
    background-color: white;
    color: #444444;
  }
  .SocialAuthButtons .social-link.google-button img.logo-with-text {
    padding-left: 10px;
    width: 38px;
    margin-right: 22px;
  }
  .SocialAuthButtons .social-link.google-button p {
    color: #444444;
    padding-right: 18px;
  }
  .SocialAuthButtons .social-link.facebook-button {
    border: 2px solid #dadbd5;
    background-color: white;
    color: #444444;
  }
  .SocialAuthButtons .social-link.facebook-button img.logo-with-text {
    padding-left: 10px;
    width: 38px;
    padding-top: 1px;
    margin-right: 22px;
  }
  .SocialAuthButtons .social-link.facebook-button p {
    color: #444444;
    padding-right: 18px; /* half of the image width */
  }
  .SocialAuthButtons .social-link.apple-button {
    background-color: black;
    overflow: hidden;
  }
  .SocialAuthButtons .social-link.apple-button img.logo-with-text {
    padding-left: 3px;
    width: 46px;
    margin-right: 14px;
  }
  .SocialAuthButtons .social-link.apple-button p {
    color: white;
    padding-right: 23px; /* half of the image width */
  }
}
@media screen and (max-width: 599px) {
  .SocialAuthButtons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    padding-bottom: 7vh;
    border-bottom: 2px dashed #dadbd5;
    margin-bottom: calc(7vh + 2px);
  }
  .SocialAuthButtons p {
    display: none;
  }
  .SocialAuthButtons .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 30%;
    height: 48px;
    background-color: white;
    border: 2px solid #dadbd5;
    border-radius: 34px;
    text-decoration: none;
    color: #444444;
  }
  .SocialAuthButtons .social-link img.logo-with-text {
    display: none;
  }
  .SocialAuthButtons .social-link img.logo-only {
    width: 28px;
  }
  .SocialAuthButtons .social-link.facebook-button img.logo-only {
    width: 29px;
    padding-top: 1px;
  }
  .SocialAuthButtons .social-link.apple-button {
    background-color: black;
    border: 0;
    overflow: hidden;
  }
  .SocialAuthButtons .social-link.apple-button img.logo-only {
    width: 60px;
  }
}
.SignUpAvatar form {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
@media (max-width: 740px) {
  .SignUpAvatar form {
    height: 100%;
    min-height: 344px;
    align-self: stretch;
  }
}
.SignUpAvatar form input {
  width: 250px;
  margin-bottom: 2vh;
}
@media (max-width: 740px) {
  .SignUpAvatar form input {
    width: 100%;
    margin: auto 0 10px;
  }
}
.SignUpAvatar form button {
  margin-top: 20px;
  width: 200px;
  height: 60px;
  font-size: 21px;
}
@media (max-width: 740px) {
  .SignUpAvatar form button {
    width: calc(100% - 80px);
  }
}

.SignUpHeaderText {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.SignUpHeaderText h1 {
  font-family: "semiBold", sans-serif;
  font-size: 29px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .SignUpHeaderText h1 {
    margin: 20px 0 10px;
    font-size: 19px;
  }
}
.SignUpHeaderText h2 {
  font-family: "regular", sans-serif;
  font-size: 17px;
  color: #555555;
  line-height: 29px;
  margin: 0 10% 40px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .SignUpHeaderText h2 {
    font-size: 13px;
    margin: 0;
  }
}

.SignUpNewsletter {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
}
.SignUpNewsletter button:first-of-type {
  background: #dadbd5 !important;
  color: white;
}
.SignUpNewsletter button {
  margin-top: 20px;
  width: 40%;
  height: 60px;
  font-size: 21px;
}
@media (max-width: 740px) {
  .SignUpNewsletter {
    flex-direction: column;
    align-items: center;
  }
  .SignUpNewsletter button {
    width: calc(100% - 80px);
  }
}

.SignUpUsername {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 820px) {
  .SignUpUsername {
    min-width: 450px;
  }
}
.SignUpUsername .next-button {
  min-width: 150px;
}
@media screen and (min-width: 820px) {
  .SignUpUsername .username-input {
    width: 400px;
  }
}
.SignUpUsername .existing-account {
  margin-top: 75px;
}

.ZodiacAuthForm .birth-year-input {
  margin-bottom: 40px;
}
.ZodiacAuthForm .submit-button {
  width: 250px;
  margin-top: 40px;
}

.DeletedAccountPage {
  flex: 1;
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.DeletedAccountPage .deleted-account-modal {
  width: 100%;
  max-width: 500px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.DeletedAccountPage .deleted-account-modal p {
  margin: 20px;
}
.DeletedAccountPage .deleted-account-modal .delete-button {
  margin-top: 40px;
}

.ExploreMediaPage .explore-media h1 {
  font-weight: "semiBold";
}

.ExplorePage {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  font-family: "regular", sans-serif;
}
.ExplorePage .page-title {
  font-size: 21px;
  font-weight: "semiBold";
  margin-bottom: 60px;
}
.ExplorePage .series {
  width: 900px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 40px;
}
.ExplorePage .series .header {
  display: flex;
  justify-content: space-between;
}
.ExplorePage .series .header h1 {
  font-size: 19px;
  font-family: "semiBold", sans-serif;
}
.ExplorePage .series .header a {
  text-decoration: underline;
}
.ExplorePage .series .medias {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}
.ExplorePage .series .medias .media {
  width: 33%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 10px;
  background-color: #f2f3ee;
  border-radius: 8px;
}
.ExplorePage .series .medias .media:first-child {
  margin-left: 0;
}
.ExplorePage .series .medias .media:last-child {
  margin-right: 0;
}
.ExplorePage .series .medias .media .head {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  color: #ffffff;
  background-color: #555555;
}
.ExplorePage .series .medias .media .head img {
  width: 100%;
  border-radius: 8px 8px 0 0;
}
.ExplorePage .series .medias .media .body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 150px;
  width: 100%;
  padding: 24px;
}
.ExplorePage .series .medias .media .body .heading p {
  margin-bottom: 4px;
}
.ExplorePage .series .medias .media .body .heading h2 {
  font-size: 17px;
  font-family: "semiBold", sans-serif;
}
.ExplorePage .series .medias .media .body .details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.ExplorePage .series .series-divider {
  margin-top: 20px;
}

.ExploreSeriesPage {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "regular", sans-serif;
}
.ExploreSeriesPage .section-content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 900px;
}
.ExploreSeriesPage .section-content-wrapper .series-header {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 20px;
}
.ExploreSeriesPage .section-content-wrapper .series-header .progress-pane {
  padding: 20px;
}
.ExploreSeriesPage .section-content-wrapper .series-header .progress-pane .progress-icon {
  width: 180px;
  height: 180px;
  border-radius: 90px;
  background-color: #555555;
}
.ExploreSeriesPage .section-content-wrapper .series-header .info-pane {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: left;
  height: 180px;
  padding: 20px;
}
.ExploreSeriesPage .section-content-wrapper .series-header .info-pane .breadcrumb {
  font-family: "semiBold", sans-serif;
}
.ExploreSeriesPage .section-content-wrapper .series-header .info-pane .series-info .title {
  font-size: 29px;
  font-family: "semiBold", sans-serif;
}
.ExploreSeriesPage .section-content-wrapper .series-header .info-pane .series-info .description {
  margin-top: 14px;
  color: #777777;
}
.ExploreSeriesPage .section-content-wrapper .series-content {
  width: 100%;
}
.ExploreSeriesPage .section-content-wrapper .series-content .media {
  display: flex;
  width: 100%;
  margin-top: 20px;
  background-color: #f2f3ee;
}
.ExploreSeriesPage .section-content-wrapper .series-content .media .body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 70%;
  padding: 20px;
}
.ExploreSeriesPage .section-content-wrapper .series-content .media .body .heading {
  width: 100%;
}
.ExploreSeriesPage .section-content-wrapper .series-content .media .body .details {
  width: 100%;
}
.ExploreSeriesPage .section-content-wrapper .series-content .media .watched {
  display: flex;
  justify-content: center;
  align-items: center;
}

.CoursesPage {
  width: 100%;
  max-width: 794px;
  margin: 0 auto;
  padding: 40px 20px;
}
.CoursesPage .section-heading {
  font-family: "semiBold", sans-serif;
  font-size: 21px;
  margin-bottom: 30px;
  text-align: center;
  color: black;
}
.CoursesPage .continue-container {
  margin-bottom: 60px;
}
.CoursesPage .course-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 20px;
  row-gap: 20px;
}
.CoursesPage .cta {
  margin-bottom: 40px;
}
.CoursesPage.dark-mode .section-heading {
  color: white;
}

.CourseNavItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  width: 150px;
  height: 150px;
  padding: 10px;
  border-radius: 8px;
  font-family: "semiBold", sans-serif;
  color: #ffffff;
  text-align: center;
  line-height: 18px;
  text-decoration: none;
  cursor: pointer;
}
.CourseNavItem h2 {
  font-size: 13px;
}
.CourseNavItem span {
  font-style: italic;
  font-family: "regular", sans-serif;
  font-size: 11px;
}
.CourseNavItem img {
  width: 40px;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .CourseNavItem {
    width: 230px;
    height: 230px;
    line-height: 28px;
  }
  .CourseNavItem h2 {
    font-size: 21px;
  }
  .CourseNavItem span {
    font-size: 19px;
  }
}

.LessonPage {
  display: grid;
  grid-template-rows: min-content 1fr;
}
.LessonPage.dark-mode {
  background: #222222;
}
.LessonPage .loading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
}
.LessonPage .scrollable-container {
  overflow-y: auto;
}
.LessonPage .scrollable-content {
  position: relative;
  width: 100%;
  margin-bottom: 80px;
}
.LessonPage .movie-div {
  min-height: 400px;
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (min-width: 600px) and (max-width: 819px) {
  .LessonPage .movie-div {
    min-height: 300px;
  }
}
@media screen and (max-width: 599px) {
  .LessonPage .movie-div {
    min-height: 220px;
    margin: 0 -20px 20px;
    width: calc(100% + 40px);
  }
}
.LessonPage .cta {
  margin-top: 20px;
  margin-bottom: 20px;
}

.LessonVideo {
  width: 100%;
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  .LessonVideo {
    margin-bottom: 30px;
  }
}

.LessonVideoInnerWrapper {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.LessonVideoInnerWrapper video {
  width: 100%;
  min-height: 100%;
  border-radius: 8px;
  background-color: black;
}
@media screen and (max-width: 599px) {
  .LessonVideoInnerWrapper video {
    border-radius: 0;
  }
}

.LevelPage {
  width: 100%;
  background: #ffffff;
}
.LevelPage.dark-mode {
  background: #222222;
}
.LevelPage .level-content {
  flex: 1;
  display: flex;
  flex-direction: row;
  min-height: 100%;
}
@media screen and (max-width: 599px) {
  .LevelPage .level-content {
    flex-direction: column;
  }
}
.LevelPage .level-content section {
  flex: 1;
}
.LevelPage .course-nav-container {
  width: 0;
  height: 0;
  overflow-y: auto;
  z-index: 100;
}
.LevelPage .course-nav-container.open {
  width: 315px;
  height: unset;
}
@media screen and (max-width: 599px) {
  .LevelPage .course-nav-container.open {
    width: 100%;
  }
}

.LevelTab {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-color: transparent;
}
.LevelTab .grid {
  display: grid;
  grid-template-rows: 30% 20% 50% 2px;
  cursor: pointer;
  width: auto;
  height: calc(100% - 2px);
}
.LevelTab .grid.no-click-events {
  pointer-events: none;
}
@media screen and (max-width: 819px) {
  .LevelTab .grid {
    grid-template-rows: 30% 20% 50% 6px;
    height: calc(100% - 6px);
  }
}
@media screen and (max-width: 599px) {
  .LevelTab .grid {
    width: 100%;
  }
}
.LevelTab .grid .circle-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.LevelTab .grid .circle-icon.enlarge {
  animation-name: enlarge-circle;
  animation-delay: 2500ms;
  animation-duration: 1500ms;
  animation-fill-mode: both;
}
.LevelTab .grid p {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-family: "regular", sans-serif;
}
.LevelTab .grid p.dark-mode {
  color: #d8d8d8;
}
.LevelTab .grid p.dark-mode.active {
  font-family: "bold", sans-serif;
  color: white;
}
.LevelTab .grid p.active {
  font-family: "bold", sans-serif;
}
@keyframes enlarge-circle {
  0% {
    transform: none;
  }
  50% {
    transform: scale(2);
  }
  100% {
    transform: none;
  }
}

.LevelsBar {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: 100%;
  max-width: 835px;
  background: transparent;
}
@media screen and (max-width: 819px) {
  .LevelsBar {
    position: absolute;
    left: 0;
    transition: transform 0.25s ease-in;
    grid-template-columns: repeat(6, 16.6666666667%);
  }
}

.LevelsProgressPath {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  z-index: 5;
}
.LevelsProgressPath .segment {
  display: flex;
}
.LevelsProgressPath .segment > * {
  width: 50%;
}
.LevelsProgressPath .segment.first-segment {
  justify-content: flex-end;
}
@media screen and (max-width: 819px) {
  .LevelsProgressPath {
    grid-template-columns: repeat(6, 16.6666666667%);
  }
}

.UnitLink {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}
.UnitLink a {
  text-decoration: none;
  color: inherit;
}
.UnitLink .icon-link {
  border-radius: 50%;
}
.UnitLink .icon-link .unit-icon {
  width: 126px;
  height: 126px;
}
.UnitLink .icon-link .unit-icon .unit-image {
  width: 101px;
}
.UnitLink .text-link {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 60px;
  padding-top: 5px;
}
.UnitLink .text-link.locked {
  color: #aaaaaa;
}
.UnitLink .text-link.dark-mode, .UnitLink .text-link.dark-mode.locked {
  color: #d8d8d8;
}
.UnitLink .text-link .number {
  font-family: "semiBold", sans-serif;
  font-size: 17px;
}
.UnitLink .text-link .name {
  font-family: "regular", sans-serif;
  font-size: 13px;
  line-height: 18px;
}
.UnitLink .icon-medal {
  position: relative;
}
.UnitLink .icon-medal .medal {
  position: absolute;
  top: 61%;
  right: 0;
  height: 3rem;
  font-size: 2.5rem;
  z-index: 5;
}
.UnitLink .icon-medal .medal img {
  width: 3rem;
}
.UnitLink .icon-medal .gold {
  top: 65%;
  right: 0;
}

.UnitProgressFrame {
  position: relative;
  height: 226px;
}
.UnitProgressFrame .segment {
  position: absolute;
  width: 50%;
  opacity: 60%;
}
.UnitProgressFrame .segment.top-left, .UnitProgressFrame .segment.top-right {
  height: calc(36% + 2px);
  top: 0;
}
.UnitProgressFrame .segment.bottom-left, .UnitProgressFrame .segment.bottom-right {
  height: 64%;
  bottom: 0;
}
.UnitProgressFrame .segment.top-left, .UnitProgressFrame .segment.bottom-left {
  left: 0;
}
.UnitProgressFrame .segment.top-right, .UnitProgressFrame .segment.bottom-right {
  right: 0;
}
.UnitProgressFrame.first-unit .segment.top-right.completed {
  border-bottom: 2px solid #d8d8d8;
}
.UnitProgressFrame.first-unit .segment.top-right.next-unit-completed {
  border-bottom: 2px solid #d8d8d8;
}
.UnitProgressFrame.last-unit .segment.top-left.in-progress {
  border-bottom: 2px solid #d8d8d8;
}
.UnitProgressFrame.last-unit .segment.top-left.completed {
  border-bottom: 2px solid #d8d8d8;
}
.UnitProgressFrame.last-unit-new-row .segment.top-right {
  height: calc(36% + 4px);
  margin-top: -2px;
}
.UnitProgressFrame.last-unit-new-row .segment.top-right.in-progress {
  border-top: 2px solid #d8d8d8;
}
.UnitProgressFrame.last-unit-new-row .segment.top-right.completed {
  border-top: 2px solid #d8d8d8;
}
.UnitProgressFrame.last-unit-new-row .segment.top-left {
  height: calc(36% + 4px);
  margin-top: -2px;
  border-radius: 50% 0 0 50%/50% 0 0 50%;
}
.UnitProgressFrame.last-unit-new-row .segment.top-left.in-progress {
  border-top: 2px solid #d8d8d8;
  border-left: 2px solid #d8d8d8;
  border-bottom: 2px solid #d8d8d8;
}
.UnitProgressFrame.last-unit-new-row .segment.top-left.completed {
  border-top: 2px solid #d8d8d8;
  border-left: 2px solid #d8d8d8;
  border-bottom: 2px solid #d8d8d8;
}
.UnitProgressFrame.first .segment.top-right {
  height: calc(36% + 4px);
  margin-top: -2px;
}
.UnitProgressFrame.first .segment.top-right.in-progress {
  border-top: 2px solid #d8d8d8;
}
.UnitProgressFrame.first .segment.top-right.completed {
  border-top: 2px solid #d8d8d8;
  border-bottom: 2px solid #d8d8d8;
}
.UnitProgressFrame.first .segment.top-right.next-unit-completed {
  border-bottom: 2px solid #d8d8d8;
}
.UnitProgressFrame.first .segment.top-left {
  height: calc(36% + 4px);
  margin-top: -2px;
  border-radius: 50% 0 0 50%/50% 0 0 50%;
}
.UnitProgressFrame.first .segment.top-left.in-progress {
  border-top: 2px solid #d8d8d8;
  border-left: 2px solid #d8d8d8;
  border-bottom: 2px solid #d8d8d8;
}
.UnitProgressFrame.first .segment.top-left.completed {
  border-top: 2px solid #d8d8d8;
  border-left: 2px solid #d8d8d8;
  border-bottom: 2px solid #d8d8d8;
}
.UnitProgressFrame.middle .segment.top-left.in-progress {
  border-bottom: 2px solid #d8d8d8;
}
.UnitProgressFrame.middle .segment.top-left.completed {
  border-bottom: 2px solid #d8d8d8;
}
.UnitProgressFrame.middle .segment.top-right.completed {
  border-bottom: 2px solid #d8d8d8;
}
.UnitProgressFrame.middle .segment.top-right.next-unit-completed {
  border-bottom: 2px solid #d8d8d8;
}
.UnitProgressFrame.middle.active-bottom .segment.bottom-left, .UnitProgressFrame.middle.active-bottom .segment.bottom-right {
  border-bottom: 2px solid #d8d8d8;
}
.UnitProgressFrame.middle.active-bottom .segment.bottom-left.completed-bottom, .UnitProgressFrame.middle.active-bottom .segment.bottom-right.completed-bottom {
  border-bottom: 2px solid #d8d8d8;
}
.UnitProgressFrame.last .segment.top-left.in-progress {
  border-bottom: 2px solid #d8d8d8;
}
.UnitProgressFrame.last .segment.top-left.completed {
  border-bottom: 2px solid #d8d8d8;
}
.UnitProgressFrame.last .segment.bottom-right.completed {
  border-top: 2px solid #d8d8d8;
  border-right: 2px solid #d8d8d8;
  border-bottom: 2px solid #d8d8d8;
  border-radius: 0 75% 75% 0/0 50% 50% 0;
}
.UnitProgressFrame.last .segment.bottom-right.next-unit-completed {
  border-top: 2px solid #d8d8d8;
  border-right: 2px solid #d8d8d8;
  border-bottom: 2px solid #d8d8d8;
}
.UnitProgressFrame.last .segment.bottom-left.completed {
  border-bottom: 2px solid #d8d8d8;
}
.UnitProgressFrame.last .segment.bottom-left.next-unit-completed {
  border-bottom: 2px solid #d8d8d8;
}

.Units {
  position: relative;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .Units {
    max-width: 410px;
  }
}
.Units ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  text-align: center;
  width: 100%;
  height: min-content;
}
@media screen and (max-width: 599px) {
  .Units ul {
    grid-template-columns: 1fr 1fr;
    grid-gap: 0 10px;
  }
}

.UnitsProgressPath {
  position: absolute;
  top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 226px;
  width: 100%;
}
@media screen and (max-width: 599px) {
  .UnitsProgressPath {
    grid-template-columns: 1fr 1fr;
    padding: 0 15px;
  }
}

.LessonListItem {
  text-decoration: none;
  color: black;
}
.LessonListItem.dark-mode .lesson-info {
  background: #444444;
  border: 2px solid #333333;
}
.LessonListItem.dark-mode .lesson-info article h1 {
  color: white;
}
.LessonListItem.dark-mode .lesson-info article p {
  color: #d8d8d8;
}
.LessonListItem .lesson-info {
  display: grid;
  grid-template-columns: auto 1fr auto;
  padding: 20px;
  background: #f2f3ee;
  border-radius: 8px;
  border: 2px solid #d8d8d8;
}
@media screen and (max-width: 599px) {
  .LessonListItem .lesson-info {
    padding: 15px;
  }
}
.LessonListItem .lesson-info .movie-thumbnail {
  height: 101px;
  width: 180px;
  margin-right: 20px;
}
.LessonListItem .lesson-info .movie-thumbnail img {
  height: 100%;
}
@media screen and (min-width: 600px) and (max-width: 819px) {
  .LessonListItem .lesson-info .movie-thumbnail {
    height: 90px;
    width: 160px;
  }
}
@media screen and (max-width: 599px) {
  .LessonListItem .lesson-info .movie-thumbnail {
    height: 56px;
    width: 100px;
    margin-right: 15px;
  }
}
.LessonListItem .lesson-info article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: "regular", sans-serif;
}
.LessonListItem .lesson-info article h1 {
  margin-bottom: 10px;
  font-family: "semiBold", sans-serif;
  font-size: 17px;
}
@media screen and (max-width: 599px) {
  .LessonListItem .lesson-info article h1 {
    font-size: 13px;
  }
}
.LessonListItem .lesson-info article p {
  font-family: "regular", sans-serif;
  font-size: 15px;
  line-height: 15px;
}
@media screen and (max-width: 599px) {
  .LessonListItem .lesson-info article p {
    position: relative;
    font-size: 11px;
    width: 70%;
    padding-right: 7px;
  }
}

.LessonProgressIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 100%;
}
.LessonProgressIcon .perfect-score {
  width: auto;
  height: 54px;
}

.LessonsList {
  position: relative;
  margin-bottom: 0;
  height: auto;
}
.LessonsList ul {
  list-style-type: none;
}
.LessonsList li {
  margin-bottom: 20px;
  height: 141px;
  width: 100%;
  max-width: 780px;
}
@media screen and (min-width: 600px) and (max-width: 819px) {
  .LessonsList li {
    height: 130px;
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .LessonsList li {
    height: 86px;
    width: 100%;
  }
}

.UnitDetail {
  position: relative;
  display: grid;
  grid-template-columns: 190px calc(100% - 190px);
  max-height: 170px;
  font-size: 13px;
  margin: 10px 0 50px;
}
.UnitDetail.dark-mode {
  color: #d8d8d8;
}
.UnitDetail.dark-mode h1 {
  color: white;
}
.UnitDetail .unit-circle {
  margin-right: 20px;
}
.UnitDetail .unit-circle .unit-icon {
  width: 170px;
  height: 170px;
}
.UnitDetail .unit-circle .unit-icon img {
  width: 140px;
}
.UnitDetail .unit-details {
  display: grid;
  grid-template-rows: auto auto auto;
  height: 100%;
  padding: 10px 0;
}
@media screen and (max-width: 599px) {
  .UnitDetail .unit-details {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
}
.UnitDetail .unit-details .mobile-details {
  height: 100%;
  padding: 10px 0;
}
.UnitDetail .unit-details .unit-info {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.UnitDetail .unit-details .unit-info h1 {
  font-family: "semiBold", sans-serif;
  font-size: 29px;
}
@media screen and (max-width: 599px) {
  .UnitDetail .unit-details .unit-info h1 {
    font-size: 19px;
  }
}
.UnitDetail .unit-details .unit-info .unit-title {
  padding-bottom: 10px;
  font-family: "regular", sans-serif;
  font-size: 15px;
  line-height: 18px;
}
@media screen and (max-width: 599px) {
  .UnitDetail .unit-details .unit-info .unit-title {
    padding-bottom: 0;
  }
}
.UnitDetail .unit-details .completions {
  font-family: "regular", sans-serif;
  font-size: 15px;
  display: flex;
  flex-wrap: wrap;
  height: 20px;
}
@media screen and (max-width: 599px) {
  .UnitDetail .unit-details .completions > * {
    height: 100%;
    display: flex;
    align-items: center;
  }
  .UnitDetail .unit-details .completions .lesson-count {
    padding-right: 5px;
  }
  .UnitDetail .unit-details .completions .completed {
    display: block;
    padding-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.UnitDetail .bread-crumb {
  display: flex;
  align-items: center;
  font-family: "semiBold", sans-serif;
  font-size: 13px;
}
.UnitDetail .bread-crumb > * {
  margin-right: 6px;
  white-space: nowrap;
}

.UnitHeader {
  box-shadow: 0px 3px 5px 5px rgba(177, 177, 177, 0.29);
  border: none;
}
.UnitHeader.dark-mode {
  box-shadow: 0px 3px 5px 5px rgba(0, 0, 0, 0.29);
}
.UnitHeader .cms-button {
  width: 150px;
  justify-self: flex-end;
  align-self: center;
  justify-content: center;
}
.UnitHeader .back-button {
  color: #ffffff;
  width: auto;
}
.UnitHeader .back-button .icon {
  padding: 0 13px;
}

.UnitPage {
  display: grid;
  grid-template-rows: min-content 1fr;
}
.UnitPage.dark-mode {
  background: #222222;
}
.UnitPage .loading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
}
.UnitPage .scrollable-container {
  overflow-y: auto;
  z-index: 1;
}
.UnitPage .scrollable-content {
  position: relative;
  width: 100%;
}
.UnitPage .unit-content {
  padding: 40px 33px 0 33px;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .UnitPage .unit-content {
    padding: 20px 20px 0 20px;
  }
}
.UnitPage .cta {
  margin-bottom: 50px;
}

.UnitSelector select {
  font-family: "semiBold", sans-serif;
  font-size: 21px;
  color: white;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .UnitSelector select {
    font-size: 13px;
  }
}

.MasteryLandingLink {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  width: 170px;
  height: 180px;
  margin: 20px;
  padding: 0 8px;
  background: #f2f3ee;
  border-radius: 8px;
  cursor: pointer;
}
.MasteryLandingLink img {
  width: 80px;
}
.MasteryLandingLink .icon {
  font-size: 80px;
}
.MasteryLandingLink h2 {
  font-family: "semiBold", sans-serif;
  font-size: 15px;
  text-align: center;
}
.MasteryLandingLink.hidden {
  display: none;
}
@media screen and (max-width: 599px) {
  .MasteryLandingLink {
    margin: 10px;
  }
  .MasteryLandingLink h2 {
    line-height: 18px;
  }
  .MasteryLandingLink.small {
    width: 110px;
    height: 110px;
    margin: 10px;
  }
  .MasteryLandingLink.small img {
    width: 40px;
  }
  .MasteryLandingLink.small .icon {
    font-size: 40px;
  }
  .MasteryLandingLink.small h2 {
    font-size: 13px;
  }
}
.MasteryLandingLink.dark-mode {
  background: #444444;
}
.MasteryLandingLink.dark-mode h2 {
  color: #ffffff;
}

.MasteryPage {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  overflow-y: scroll;
}
.MasteryPage .link-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 660px;
}
.MasteryPage.dark-mode {
  background: #222222;
}
.MasteryPage.dark-mode .header {
  color: #ffffff;
}

.Category {
  width: 100%;
  width: 100%;
}
.Category .category-title {
  width: 100%;
  padding: 20px 15px;
  font-family: "semiBold", sans-serif;
  font-size: 17px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.Category .category-title > span {
  flex: 1;
  padding-right: 10px;
}
.Category .category-title > span > .file-count {
  font-family: "regular", sans-serif;
}
.Category .category-title .category-logo-container {
  width: 40px;
  height: 25px;
  padding-right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.Category .category-title .category-logo-container .category-icon {
  height: 25px;
  font-size: 25px;
}
.Category.category-closed .sections {
  display: none;
}
.Category:not(.dark-mode) {
  border-bottom: 2px dotted #f2f3ee;
}
.Category:not(.dark-mode):first-of-type {
  border-top: 2px dotted #f2f3ee;
}
.Category:not(.dark-mode) .category-icon {
  color: #00c7ce;
}
.Category.dark-mode {
  border-bottom: 2px dotted #444444;
}
.Category.dark-mode:first-of-type {
  border-top: 2px dotted #444444;
}
.Category.dark-mode .category-icon {
  color: #00c7ce;
}

.DownloadCenterPage {
  min-width: 100%;
  min-height: 100%;
}
.DownloadCenterPage .categories {
  max-width: 720px;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: auto;
}
.DownloadCenterPage .categories > h2 {
  font-size: 19px;
  font-family: "semiBold", sans-serif;
  margin: 50px 0 20px;
}
.DownloadCenterPage.dark-mode {
  color: white;
  background-color: #222222;
}
@media screen and (max-width: 819px) {
  .DownloadCenterPage {
    padding: 15px 15px 50px;
  }
  .DownloadCenterPage .categories h2 {
    align-self: flex-start;
  }
}

.File {
  padding: 15px;
  display: flex;
  justify-content: space-between;
}
.File > .icon {
  margin-right: 15px;
}

.Section {
  border-radius: 8px;
  border-width: 2px;
  border-style: solid;
  margin: 20px 0;
}
.Section:first-of-type {
  margin-top: 0;
}
.Section .section-title {
  width: 100%;
  padding: 15px;
  font-family: "semiBold", sans-serif;
  font-size: 15px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.Section .section-title > span {
  flex: 1;
  padding-right: 10px;
}
.Section .section-title > span > .file-count {
  font-family: "regular", sans-serif;
}
.Section.section-closed .files {
  display: none;
}
.Section:not(.dark-mode) {
  border-color: #f2f3ee;
}
.Section:not(.dark-mode) .section-title {
  background-color: #f2f3ee;
}
.Section.dark-mode {
  border-color: #444444;
}
.Section.dark-mode .section-title {
  background-color: #444444;
}

.FlashcardsMasteryHeader {
  display: grid;
  grid-template-columns: min-content 1fr min-content;
  width: 100%;
  color: black;
  margin-bottom: 20px;
}
.FlashcardsMasteryHeader.dark-mode {
  background-color: #222222;
  color: white;
}
.FlashcardsMasteryHeader .button-container {
  display: flex;
  align-items: center;
  padding-left: 40px;
}
.FlashcardsMasteryHeader .button-container .back-button {
  width: auto;
  cursor: pointer;
}
.FlashcardsMasteryHeader .title {
  display: flex;
  justify-content: center;
}
.FlashcardsMasteryHeader .title img {
  width: 30px;
  margin: 0 10px;
}
.FlashcardsMasteryHeader .title h1 {
  font-family: "semiBold", sans-serif;
  font-size: 21px;
}
.FlashcardsMasteryHeader .manage {
  display: flex;
  justify-self: end;
  padding-right: 20px;
}
.FlashcardsMasteryHeader .manage > a {
  padding-right: 20px;
}

.DeckCollection {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 200px;
  height: 140px;
  margin: 20px;
  background: #f2f3ee;
  border-radius: 8px;
  cursor: pointer;
}
@media screen and (max-width: 599px) {
  .DeckCollection {
    width: 100%;
    height: 150px;
    margin: 10px 40px;
  }
}
.DeckCollection.dark-mode {
  background: #444444;
}
.DeckCollection.dark-mode .check-mark-background {
  background: #444444;
}
.DeckCollection.dark-mode .info {
  width: 100%;
}
.DeckCollection.dark-mode .info .stat-line {
  color: #d8d8d8;
}
.DeckCollection.dark-mode .info .stat-line .icon {
  color: #d8d8d8;
}
.DeckCollection .deck-header {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
  height: 40px;
  padding: 10px 15px;
  font-family: "semiBold", sans-serif;
  font-size: 13px;
  color: white;
  background-color: #00c7ce;
  border-radius: 8px 8px 0 0;
}
.DeckCollection .deck-header .course-icon,
.DeckCollection .deck-header .deck-icon {
  margin-right: 10px;
}
.DeckCollection .deck-header .course-icon {
  height: 20px;
}
.DeckCollection .deck-header .deck-icon {
  font-size: 20px;
}
.DeckCollection .check-mark-background {
  position: absolute;
  top: 30px;
  right: 5px;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  background: #f2f3ee;
}
.DeckCollection .check-mark-background .correct-check-mark {
  height: 20px;
  width: 20px;
}
.DeckCollection .check-mark-background .correct-check-mark .background {
  top: 3px;
  bottom: unset;
  left: unset;
  height: 16px;
  width: 16px;
}
.DeckCollection .check-mark-background .correct-check-mark .background > * {
  height: 20px;
  width: 20px;
}
.DeckCollection .info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  width: 100%;
  padding: 5px;
}
.DeckCollection .info .stat-line {
  display: flex;
  margin: 5px 10px;
  font-family: "regular", sans-serif;
  font-size: 13px;
  color: #444444;
}
.DeckCollection .info .stat-line .icon {
  width: 23px;
  margin-right: 5px;
  color: #444444;
}
.DeckCollection .info .stat-line .quiz-icon {
  align-self: center;
}
.DeckCollection .info .stat-line .stat {
  line-height: 15px;
}
.DeckCollection .info .stat-line .stat.deck-stat {
  padding-top: 3px;
}
.DeckCollection .info .stat-line .stat .deck-number {
  font-family: "semiBold", sans-serif;
  margin-right: 3px;
}
.DeckCollection .info .progress-bar {
  height: fit-content;
  margin: 0;
}
.DeckCollection .info .progress-bar.is-complete .MuiLinearProgress-barColorPrimary {
  background-color: #63b768;
}
.DeckCollection .info .progress-bar > * {
  margin: 0;
}

.FlashcardsMasteryDeckCollectionsPage {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: min-content;
  min-height: 100%;
  padding-top: 20px;
  padding-bottom: 40px;
}
.FlashcardsMasteryDeckCollectionsPage.dark-mode {
  background-color: #222222;
}
.FlashcardsMasteryDeckCollectionsPage.dark-mode .collection-title {
  color: #d8d8d8;
}
.FlashcardsMasteryDeckCollectionsPage .deck-collections-container {
  max-width: 720px;
}
.FlashcardsMasteryDeckCollectionsPage .deck-collections-container .collection-title {
  width: 100%;
  padding-left: 20px;
  color: #888888;
  font-family: "semiBold", sans-serif;
  font-size: 15px;
}
.FlashcardsMasteryDeckCollectionsPage .deck-collections-container .collections-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 20px;
}

.FlashcardsMasteryDeck {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  width: 170px;
  height: 230px;
  background-color: #f2f3ee;
  border-radius: 8px;
  color: black;
  margin: 20px;
  padding: 10px;
}
.FlashcardsMasteryDeck.locked.dark-mode {
  color: #dadbd5;
}
.FlashcardsMasteryDeck.locked:not(.dark-mode) {
  color: #555555;
}
.FlashcardsMasteryDeck:not(.locked) {
  cursor: pointer;
}
@media screen and (max-width: 599px) {
  .FlashcardsMasteryDeck {
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
    height: 180px;
    margin: 10px 40px;
  }
  .FlashcardsMasteryDeck .path {
    width: 140px;
  }
}
.FlashcardsMasteryDeck.dark-mode {
  background-color: #444444;
  color: white;
}
.FlashcardsMasteryDeck.dark-mode .lock > div {
  border-color: #444444;
}
.FlashcardsMasteryDeck .deck-title {
  margin-bottom: 7px;
  font-family: "semiBold", sans-serif;
  font-size: 15px;
  text-align: center;
}
.FlashcardsMasteryDeck .path {
  position: relative;
  width: 100px;
}
.FlashcardsMasteryDeck .percentage {
  margin-bottom: 9px;
  text-align: center;
  font-size: 19px;
  font-family: "regular", sans-serif;
}
.FlashcardsMasteryDeck .flashcard-icon {
  position: absolute;
  top: 10px;
  right: 10px;
}
.FlashcardsMasteryDeck .lock {
  position: absolute;
  top: 61%;
  right: 0;
  height: 42px;
  width: 42px;
  z-index: 5;
}
.FlashcardsMasteryDeck .lock > div {
  border-color: #f2f3ee;
}

.message-modal .content h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.message-modal .content p {
  padding: 0.25rem;
}
.message-modal button {
  margin: 1.5rem auto 0;
}

.FlashcardsMasteryDecksPage {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: fit-content;
  min-height: 100%;
  padding-top: 20px;
  padding-bottom: 40px;
}
.FlashcardsMasteryDecksPage.dark-mode {
  background-color: #222222;
}
.FlashcardsMasteryDecksPage .decks-container {
  max-width: 660px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 20px;
}
.FlashcardsMasteryDecksPage .cta-container {
  width: calc(100% - 40px);
}

.FilterControls {
  display: grid;
  justify-content: space-between;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 10px 25px;
  font-family: "regular", sans-serif;
  font-size: 13px;
}
.FilterControls select:last-of-type {
  margin-right: 0;
}
@media screen and (max-width: 599px) {
  .FilterControls {
    grid-template-columns: 1fr 1fr;
  }
}

.FlashcardsMasteryManageHeader {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  width: 100%;
  color: black;
  margin-bottom: 20px;
}
.FlashcardsMasteryManageHeader.dark-mode {
  background-color: #222222;
  color: white;
}
.FlashcardsMasteryManageHeader .button-container {
  display: flex;
  align-items: center;
  padding-left: 40px;
}
.FlashcardsMasteryManageHeader .button-container .back-button {
  width: auto;
  cursor: pointer;
}
.FlashcardsMasteryManageHeader .title {
  display: flex;
}
.FlashcardsMasteryManageHeader .title img {
  width: 30px;
  margin: 0 10px;
}
.FlashcardsMasteryManageHeader .title h1 {
  font-family: "semiBold", sans-serif;
  font-size: 21px;
}

.FlashcardsMasteryManagePage {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0 20px;
}
.FlashcardsMasteryManagePage.dark-mode {
  background-color: #222222;
}
.FlashcardsMasteryManagePage.dark-mode .summary-container {
  color: #d8d8d8;
}
.FlashcardsMasteryManagePage.dark-mode .total-container {
  color: #d8d8d8;
}
.FlashcardsMasteryManagePage.dark-mode .pagination-link {
  color: white;
}
.FlashcardsMasteryManagePage.dark-mode .pagination-item {
  background-color: unset;
}
.FlashcardsMasteryManagePage.dark-mode .pagination-active {
  background-color: #f2f3ee;
}
.FlashcardsMasteryManagePage.dark-mode .pagination-active .pagination-link {
  color: #444444;
}
.FlashcardsMasteryManagePage .header-container {
  margin: 20px 0;
}
.FlashcardsMasteryManagePage .filter-container,
.FlashcardsMasteryManagePage .total-container,
.FlashcardsMasteryManagePage .settings-container,
.FlashcardsMasteryManagePage .list-container,
.FlashcardsMasteryManagePage .pagination-container {
  width: 100%;
  max-width: 843px;
  margin: auto;
}
.FlashcardsMasteryManagePage .total-container {
  margin: 15px auto 0;
  font-size: 15px;
  text-align: center;
  padding: 5px;
  color: #444444;
  font-family: "regular", sans-serif;
  border-radius: 2px;
}
.FlashcardsMasteryManagePage .list-container {
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}
.FlashcardsMasteryManagePage .result-info {
  font-size: 15px;
  text-align: center;
  color: #d8d8d8;
  font-family: "regular", sans-serif;
}
.FlashcardsMasteryManagePage .pagination-container,
.FlashcardsMasteryManagePage .summary-container {
  animation: fadein 2s;
}
.FlashcardsMasteryManagePage .pagination-container {
  margin: 20px auto;
}
.FlashcardsMasteryManagePage .summary-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 30px;
  margin-bottom: 50px;
  height: 50px;
  color: #444444;
  font-size: 15px;
  line-height: 17px;
}
@media screen and (max-width: 819px) {
  .FlashcardsMasteryManagePage .summary-container {
    height: 70px;
  }
}
.FlashcardsMasteryManagePage .pagination {
  display: flex;
  list-style: none;
  justify-content: space-between;
  text-align: center;
  font-family: "regular", sans-serif;
}
.FlashcardsMasteryManagePage .pagination-item {
  flex: 1;
  padding: 8px 0;
  margin: 0 8px;
  border: 1px solid #dadbd5;
}
.FlashcardsMasteryManagePage .pagination-item:first-of-type {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
.FlashcardsMasteryManagePage .pagination-item:last-of-type {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}
.FlashcardsMasteryManagePage .pagination-link {
  text-decoration: unset;
  color: #444444;
  font-size: 15px;
}
.FlashcardsMasteryManagePage .pagination-active {
  font-weight: bold;
  background-color: #f2f3ee;
}
.FlashcardsMasteryManagePage .pagination-item:hover {
  cursor: pointer;
}
.FlashcardsMasteryManagePage .pagination-active:hover {
  cursor: initial;
}
.FlashcardsMasteryManagePage .pagination-prev,
.FlashcardsMasteryManagePage .pagination-next {
  display: none;
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.QuizMasteryPage {
  flex: 1;
}
.QuizMasteryPage .quiz-collection-cards {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 720px;
  margin: 0 auto 20px;
  justify-content: space-around;
}
.QuizMasteryPage > h2 {
  display: block;
  width: 100%;
  max-width: 720px;
  margin: 20px auto 0;
  padding-left: 20px;
  color: #888888;
  font-family: "semiBold", sans-serif;
  font-size: 15px;
}
.QuizMasteryPage.dark-mode > h2 {
  color: #d8d8d8;
}
.QuizMasteryPage .quiz-mastery-collection-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  width: 170px;
  height: 230px;
  background-color: #f2f3ee;
  border-radius: 8px;
  color: black;
  margin: 20px;
  padding: 10px;
}
.QuizMasteryPage .quiz-mastery-collection-card.locked.dark-mode {
  color: #dadbd5;
}
.QuizMasteryPage .quiz-mastery-collection-card.locked:not(.dark-mode) {
  color: #555555;
}
.QuizMasteryPage .quiz-mastery-collection-card:not(.locked) {
  cursor: pointer;
}
@media screen and (max-width: 599px) {
  .QuizMasteryPage .quiz-mastery-collection-card {
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
    height: 180px;
    margin: 10px 40px;
  }
  .QuizMasteryPage .quiz-mastery-collection-card .path {
    width: 140px;
  }
}
.QuizMasteryPage .quiz-mastery-collection-card.dark-mode {
  background-color: #444444;
  color: white;
}
.QuizMasteryPage .quiz-mastery-collection-card.dark-mode .lock > div {
  border-color: #444444;
}
.QuizMasteryPage .quiz-mastery-collection-card .deck-title {
  margin-bottom: 7px;
  font-family: "semiBold", sans-serif;
  font-size: 15px;
  text-align: center;
}
.QuizMasteryPage .quiz-mastery-collection-card .path {
  position: relative;
  width: 100px;
}
.QuizMasteryPage .quiz-mastery-collection-card .percentage {
  margin-bottom: 9px;
  text-align: center;
  font-size: 19px;
  font-family: "regular", sans-serif;
}
.QuizMasteryPage .quiz-mastery-collection-card .quiz-icon {
  position: absolute;
  top: 10px;
  right: 10px;
}
.QuizMasteryPage .quiz-mastery-collection-card .lock {
  position: absolute;
  top: 61%;
  right: 0;
  height: 42px;
  width: 42px;
  z-index: 5;
}
.QuizMasteryPage .quiz-mastery-collection-card .lock > div {
  border-color: #f2f3ee;
}

.QuizMasterySessionPage {
  width: 100%;
  max-width: 777px;
  margin: 0 auto;
}
.QuizMasterySessionPage .quiz-page-footer {
  height: 160px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .QuizMasterySessionPage .quiz-page-footer {
    height: 125px;
  }
}

.QuizMasteryResultsCard {
  height: 100%;
  max-height: 850px;
  width: 580px;
  margin: auto;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .QuizMasteryResultsCard {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-height: none;
    width: calc(100% - 20px);
    max-width: 580px;
  }
}
.QuizMasteryResultsCard.dark-mode .card {
  background: #444444;
  color: white;
}
.QuizMasteryResultsCard .card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-items: space-around;
  width: 100%;
  height: 100%;
  max-height: calc(100% - 80px);
  padding: 50px 30px 15px;
  margin-bottom: 30px;
  background: #f2f3ee;
  border-radius: 8px;
  animation-name: fly-in-right;
  animation-duration: 500ms;
  animation-timing-function: cubic-bezier(0.42, 0, 0.62, 1.43);
  animation-delay: 100ms;
  animation-fill-mode: both;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .QuizMasteryResultsCard .card {
    height: auto;
    min-height: 465px;
    max-height: calc(100% - 70px);
    margin: 0 auto 10px;
    padding: 10px 20px 0;
  }
}
@keyframes fly-in-right {
  0% {
    transform: translateX(200%);
  }
  100% {
    transform: none;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.QuizMasteryResultsDeck {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  width: 100%;
  height: 100%;
  background: white;
}
.QuizMasteryResultsDeck.dark-mode {
  background: #222222;
}
.QuizMasteryResultsDeck .view-port {
  max-width: 777px;
}
.QuizMasteryResultsDeck .view-port .gradient {
  top: 0;
  bottom: 0;
  width: max((100% - 720px) / 2, 20px);
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .QuizMasteryResultsDeck .view-port .gradient {
    width: max((100vw - 720px) / 2, 20px);
  }
}
.QuizMasteryResultsDeck .view-port .results-card-container {
  display: grid;
  grid-template-columns: repeat(3, 100%);
  grid-gap: 200px;
  transition: transform 0.5s ease-in-out;
}

.OrderPage {
  padding: 20px;
  display: grid;
  column-gap: 10px;
  row-gap: 10px;
  grid-template-areas: "yoyo ." "customer date" "items items" ". total";
  font-family: "regular", sans-serif;
  font-size: 13px;
}
.OrderPage img {
  display: inline;
  width: 50px;
}
.OrderPage h1 {
  font-size: 21px;
  font-family: "bold", sans-serif;
  display: inline;
  padding-left: 10px;
}
.OrderPage h2 {
  font-size: 19px;
  font-family: "bold", sans-serif;
  padding-bottom: 5px;
}
.OrderPage h3 {
  font-family: "semiBold", sans-serif;
  padding-bottom: 5px;
}
.OrderPage .invoice-yoyo {
  grid-area: yoyo;
  display: flex;
  align-items: center;
  padding-bottom: 40px;
}
.OrderPage .invoice-customer {
  grid-area: customer;
}
.OrderPage .invoice-date {
  grid-area: date;
  text-align: right;
}
.OrderPage .invoice-items {
  grid-area: items;
  padding-top: 40px;
}
.OrderPage .invoice-items table {
  width: 100%;
}
.OrderPage .invoice-items table th {
  text-transform: uppercase;
  font-family: "semiBold", sans-serif;
}
.OrderPage .invoice-items table th,
.OrderPage .invoice-items table td {
  text-align: left;
}
.OrderPage .invoice-items table th:last-of-type,
.OrderPage .invoice-items table td:last-of-type {
  text-align: right;
}
.OrderPage .invoice-total {
  grid-area: total;
  padding-top: 40px;
  display: flex;
  justify-content: flex-end;
}
.OrderPage .invoice-total table {
  width: max-content;
}
.OrderPage .invoice-total table tr:last-of-type {
  border-top: 1px solid black;
}
.OrderPage .invoice-total table th {
  font-family: "semiBold", sans-serif;
  text-align: right;
  padding-left: 40px;
}
.OrderPage .invoice-total table td {
  font-family: "semiBold", sans-serif;
  text-align: right;
  padding-left: 40px;
}

.NoInvoices {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.OrdersPage {
  min-height: 100%;
}
.OrdersPage.dark-mode {
  color: #ffffff;
  background-color: #222222;
}

.OrdersTable {
  min-height: 100%;
}
.OrdersTable.dark-mode {
  color: #ffffff;
  background-color: #222222;
}
.OrdersTable .table-headings {
  display: flex;
  text-align: center;
  font-family: "regular", sans-serif;
}
.OrdersTable .table-heading {
  font-family: "semiBold", sans-serif;
  text-align: center;
  padding: 20px;
}
.OrdersTable .table-heading:first-of-type {
  flex: 1;
  text-align: left;
}

.Order {
  display: flex;
  text-align: center;
  font-family: "regular", sans-serif;
}
.Order .table-cell {
  padding: 20px;
  text-align: center;
}
.Order .table-cell:first-of-type {
  flex: 1;
  text-align: left;
}

.ActivitiesBar {
  display: grid;
  width: 100%;
  height: 44px;
  margin: 10px 0 20px 0;
}
.ActivitiesBar.dark-mode a {
  background: #444444;
  border-right: 1px solid #333333;
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
}
.ActivitiesBar.dark-mode a:first-child {
  border-left: 1px solid #333333;
}
.ActivitiesBar.dark-mode a.selected {
  color: white;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .ActivitiesBar {
    height: 32px;
    margin-top: 0;
  }
}
.ActivitiesBar a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #979797;
  border-top: 1px solid #979797;
  border-bottom: 1px solid #979797;
  font-family: "semiBold", sans-serif;
  font-size: 15px;
  background: white;
  text-decoration: none;
}
.ActivitiesBar a:first-child {
  border-left: 1px solid #979797;
  border-radius: 3px 0 0 3px;
}
.ActivitiesBar a:last-child {
  border-radius: 0 3px 3px 0;
}
.ActivitiesBar a.selected {
  color: white;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .ActivitiesBar a {
    font-size: 13px;
  }
}
@media screen and (max-width: 599px) {
  .ActivitiesBar a {
    font-size: 11px;
  }
}

.PinyinListItem {
  height: 152px;
  width: 30%;
  min-width: 220px;
  padding: 20px;
  margin: 0 5px 10px;
  border-radius: 8px;
  background-color: #f2f3ee;
  cursor: pointer;
}
.PinyinListItem.dark-mode {
  background-color: #444444;
  color: #d8d8d8;
}
.PinyinListItem.only-audio-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.PinyinListItem.only-audio-icon .audio-icon {
  margin: 0;
}
.PinyinListItem .grid {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.PinyinListItem .grid .audio-icon {
  margin-bottom: 13px;
}
@media screen and (max-width: 599px) {
  .PinyinListItem .grid .audio-icon {
    margin-bottom: 0;
  }
}
.PinyinListItem .grid .words {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.PinyinListItem .grid .words .pinyin,
.PinyinListItem .grid .words .tone-numbers {
  font-family: "semiBold", sans-serif;
  font-size: 19px;
}
.PinyinListItem .grid .words .pinyin {
  height: auto;
  margin-top: 10px;
}
@media screen and (max-width: 599px) {
  .PinyinListItem .grid .words .pinyin {
    margin-top: 0;
  }
}
.PinyinListItem .grid .words .tone-marks img {
  height: 12px;
  margin: 0 12px;
}
.PinyinListItem .grid .words .tone-marks.only-marks img {
  margin-top: 12px;
}
.PinyinListItem .grid .words .tone-numbers {
  display: flex;
}
.PinyinListItem .grid .words .tone-numbers p {
  text-align: center;
  width: 14px;
  margin: 0 12px;
}
.PinyinListItem .grid .words .tone-numbers.only-numbers {
  margin-top: 10px;
}
@media screen and (max-width: 599px) {
  .PinyinListItem {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: auto;
    min-height: 62px;
    width: 100%;
    min-width: 100%;
    padding: 10px;
    margin: 0 0 5px;
  }
  .PinyinListItem .grid {
    display: grid;
    grid-template-columns: 30px calc(100% - 60px);
  }
  .PinyinListItem .grid .audio-icon {
    display: flex;
    align-items: center;
    margin: 0;
  }
  .PinyinListItem .grid .words {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
  }
}

.PlayAllButton {
  justify-self: start;
  height: 50px;
  width: 50px;
  line-height: 50px;
  font-size: 25px;
  text-align: center;
  border-radius: 50%;
  background-color: #faa80f;
  color: white;
}
@media screen and (max-width: 599px) {
  .PlayAllButton {
    height: 40px;
    width: 40px;
    font-size: 20px;
    line-height: 40px;
  }
}

.PracticeBar {
  display: flex;
  width: 100%;
  height: 44px;
  margin: 10px 0 20px 0;
}
.PracticeBar.dark-mode a {
  background: #444444;
  border-right: 1px solid #333333;
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
}
.PracticeBar.dark-mode a:first-child {
  border-left: 1px solid #333333;
}
.PracticeBar.dark-mode a.selected {
  color: white;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .PracticeBar {
    height: 32px;
    margin-top: 0;
  }
}
.PracticeBar a {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #979797;
  border-top: 1px solid #979797;
  border-bottom: 1px solid #979797;
  font-family: "semiBold", sans-serif;
  font-size: 15px;
  background: white;
  text-decoration: none;
}
.PracticeBar a:first-child {
  border-left: 1px solid #979797;
  border-radius: 3px 0 0 3px;
}
.PracticeBar a:last-child {
  border-radius: 0 3px 3px 0;
}
.PracticeBar a.selected {
  color: white;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .PracticeBar a {
    font-size: 13px;
  }
}
@media screen and (max-width: 599px) {
  .PracticeBar a {
    font-size: 11px;
  }
}

.PracticeList ul {
  height: fit-content;
  width: 100%;
  padding-top: 10px;
  list-style: none;
}
.PracticeList ul.pinyin-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-start;
}
@media screen and (max-width: 599px) {
  .PracticeList ul.pinyin-list {
    display: block;
  }
}

.PracticeListItem {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 80px;
  width: 100%;
  padding: 15px 20px;
  margin-bottom: 5px;
  border-radius: 8px;
  background-color: #f2f3ee;
  cursor: pointer;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .PracticeListItem {
    min-height: 62px;
    padding: 10px;
  }
}
.PracticeListItem.dark-mode {
  background: #444444;
}
.PracticeListItem.dark-mode .grid .words {
  color: #d8d8d8;
}
.PracticeListItem.dark-mode .grid .words .english {
  color: #d8d8d8;
}
.PracticeListItem .grid {
  display: grid;
  grid-template-columns: 44px auto minmax(auto, max-content) minmax(auto, max-content);
  grid-template-rows: minmax(50px, 100%);
}
@media screen and (max-width: 599px) {
  .PracticeListItem .grid {
    grid-template-columns: 33px auto minmax(auto, max-content) minmax(auto, max-content);
    grid-template-rows: minmax(60px, 100%);
  }
}
.PracticeListItem .grid.toggles-off {
  grid-template-columns: 33px auto minmax(auto, max-content) minmax(auto, max-content);
}
.PracticeListItem .grid .mastery-level-container {
  width: 33px;
  height: 33px;
  align-self: center;
}
.PracticeListItem .grid .audio-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.PracticeListItem .grid .words {
  display: flex;
  align-items: center;
  padding: 0 20px;
}
@media screen and (max-width: 599px) {
  .PracticeListItem .grid .words {
    flex-direction: column;
    align-items: normal;
    justify-content: center;
    padding: 0 2px 0 10px;
  }
}
.PracticeListItem .grid .words .chinese {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: calc(50% - 10px);
  margin-right: 10px;
}
.PracticeListItem .grid .words .chinese.no-english {
  width: 100%;
  margin-right: 0;
}
.PracticeListItem .grid .words .chinese.no-english .characters {
  margin-right: 10px;
}
.PracticeListItem .grid .words .chinese.no-english .characters.only-text-visible {
  margin-right: 0;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .PracticeListItem .grid .words .chinese {
    width: 100%;
    margin-right: 0;
  }
}
.PracticeListItem .grid .words .chinese p {
  font-family: "regular", sans-serif;
  font-size: 21px;
  line-height: 24px;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .PracticeListItem .grid .words .chinese p {
    font-size: 19px;
    line-height: 22px;
  }
}
.PracticeListItem .grid .words .chinese p.only-text-visible {
  width: 100%;
}
.PracticeListItem .grid .words .chinese p.pinyin {
  margin-top: 5px;
  font-size: 15px;
  line-height: 18px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .PracticeListItem .grid .words .chinese p.pinyin {
    margin-top: 3px;
    font-size: 13px;
    line-height: 16px;
  }
}
.PracticeListItem .grid .words .chinese p.pinyin.no-characters {
  margin-top: 0;
}
.PracticeListItem .grid .words .english {
  display: flex;
  align-items: center;
  height: 100%;
  width: 50%;
  color: #444444;
  font-size: 15px;
  font-family: "regular", sans-serif;
  line-height: 18px;
  overflow-wrap: anywhere;
}
.PracticeListItem .grid .words .english.only-text-visible {
  width: 100%;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .PracticeListItem .grid .words .english {
    width: 100%;
    margin-top: 3px;
    font-size: 13px;
    line-height: 16px;
  }
}
.PracticeListItem .grid .reveal-notes-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 20px;
  padding-right: 20px;
}
.PracticeListItem .grid .reveal-notes-button button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 20px;
  color: #979797;
}
.PracticeListItem .grid .reveal-notes-button button img {
  height: 23px;
  width: 20px;
}

.PracticeSection {
  height: fit-content;
  width: 100%;
  background: white;
}
.PracticeSection.dark-mode {
  background: #222222;
}
.PracticeSection .page-content {
  height: 100%;
  max-width: 843px;
  padding: 20px 33px 0;
  margin: 0 auto;
}
@media screen and (min-width: 600px) and (max-width: 819px) {
  .PracticeSection .page-content {
    padding: 20px 33px 0;
  }
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .PracticeSection .page-content {
    padding: 20px 20px 0;
  }
}
@media screen and (max-width: 599px) {
  .PracticeSection .page-content {
    padding: 20px 0 0;
    width: calc(100% + 18px);
    margin-left: -9px;
  }
}
.PracticeSection .page-content .activity-container {
  height: calc(100% - 206px);
  width: 100%;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .PracticeSection .page-content .activity-container {
    height: calc(100% - 160px);
  }
}
.PracticeSection .page-content .activity-container.audio {
  height: calc(100% - 190px);
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .PracticeSection .page-content .activity-container.audio {
    height: calc(100% - 120px);
  }
}
.PracticeSection .page-content .activity-container.audio.only-notes {
  height: calc(100% - 179px);
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .PracticeSection .page-content .activity-container.audio.only-notes {
    height: calc(100% - 120px);
  }
}

.ReviewButtonContainer {
  position: sticky;
  bottom: 20px;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 60px;
  margin: 0 60px;
  z-index: 10;
}
@media screen and (max-width: 599px) {
  .ReviewButtonContainer {
    height: 50px;
    margin: 0 10px;
  }
}

.SettingsSubheader {
  display: grid;
  grid-template-columns: auto 1fr auto;
  height: 40px;
  width: 100%;
  margin-bottom: 10px;
  font-family: "regular", sans-serif;
  font-size: 11px;
  background-color: white;
}
.SettingsSubheader.dark-mode {
  background-color: #222222;
}
.SettingsSubheader .toggles-container {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 820px) and (max-height: 720px) {
  .SettingsSubheader .toggles-container {
    padding-left: 20px;
  }
}
@media screen and (min-width: 820px) and (max-height: 720px) {
  .SettingsSubheader .audio-speed-container {
    padding-right: 20px;
  }
}
@media screen and (min-width: 820px) and (max-height: 720px) {
  .SettingsSubheader.default-toggle-settings .toggles-container {
    padding-left: 0px;
  }
}
@media screen and (min-width: 820px) and (max-height: 720px) {
  .SettingsSubheader.default-toggle-settings .audio-speed-container {
    padding-right: 0px;
  }
}

.AudioReviewFooter {
  position: sticky;
  bottom: 25px;
  border: 2px solid #faa80f;
  border-radius: 8px;
  /* COURSE COLORS */
  /* END COURSE COLORS */
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .AudioReviewFooter {
    width: 100%;
    margin: 0;
  }
}
.AudioReviewFooter.BCC {
  border: 2px solid #00b5a7;
}
.AudioReviewFooter.BCC .audio-controls-container {
  background: #00b5a7;
}
.AudioReviewFooter.ICC {
  border: 2px solid #0582ca;
}
.AudioReviewFooter.ICC .audio-controls-container {
  background: #0582ca;
}
.AudioReviewFooter.CCC {
  border: 2px solid #c246c4;
}
.AudioReviewFooter.CCC .audio-controls-container {
  background: #c246c4;
}
.AudioReviewFooter.UICC {
  border: 2px solid #7e60de;
}
.AudioReviewFooter.UICC .audio-controls-container {
  background: #7e60de;
}
.AudioReviewFooter.CCCII {
  border: 2px solid #ec4c7b;
}
.AudioReviewFooter.CCCII .audio-controls-container {
  background: #ec4c7b;
}
.AudioReviewFooter.CCR {
  border: 2px solid #ff785b;
}
.AudioReviewFooter.CCR .audio-controls-container {
  background: #ff785b;
}
.AudioReviewFooter.dark-mode .audio-controls-container .time {
  color: #d8d8d8;
}
.AudioReviewFooter.dark-mode .audio-controls-container .adjust-play-button {
  color: #d8d8d8;
}
.AudioReviewFooter .audio-controls-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #faa80f;
  width: 100%;
  height: 75px;
}
.AudioReviewFooter .audio-controls-container .time {
  display: flex;
  justify-content: flex-start;
  align-self: flex-start;
  height: 15px;
  width: 60px;
  font-family: "regular", sans-serif;
  font-size: 13px;
  color: #444444;
}
.AudioReviewFooter .audio-controls-container .time.current-time {
  justify-content: flex-end;
}
.AudioReviewFooter .audio-controls-container .controls {
  display: flex;
  align-items: center;
}
.AudioReviewFooter .audio-controls-container .controls .play-pause-button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 60px;
  margin: 0 20px;
  font-size: 24px;
  background: #faa80f;
  color: white;
  border-radius: 50%;
}
.AudioReviewFooter .audio-controls-container .adjust-play-button {
  position: relative;
  padding-top: 5px;
  color: #444444;
  font-size: 30px;
}
.AudioReviewFooter .audio-controls-container .adjust-play-button p {
  position: absolute;
  top: 18px;
  right: 9px;
  font-size: 9px;
  font-family: "semiBold", sans-serif;
}

.QuizHeader .quiz-header-box {
  width: 100%;
  border: none;
  background: white;
  color: black;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .QuizHeader .quiz-header-box {
    height: auto;
    padding: 0 12px;
  }
}
.QuizHeader .quiz-header-box .exit-button {
  display: flex;
  align-items: center;
  width: auto;
  height: 100%;
  color: black;
  cursor: pointer;
  text-decoration: none;
}
.QuizHeader .quiz-header-box .icon {
  display: flex;
  align-items: center;
  height: 20px;
  font-size: 20px;
}
.QuizHeader .quiz-header-box .title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "semiBold", sans-serif;
  font-size: 21px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .QuizHeader .quiz-header-box .title {
    font-size: 13px;
  }
}
.QuizHeader .quiz-header-box .title h1 {
  padding: 0;
}
.QuizHeader.dark-mode .quiz-header-box {
  background: #222222;
  color: white;
}
.QuizHeader.dark-mode .quiz-header-box .exit-button {
  color: white;
}

.QuizPage {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 843px;
  min-height: 100%;
  padding: 20px 33px 0 33px;
  margin: 0 auto;
}
.QuizPage .quiz-page-header {
  height: 72px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .QuizPage .quiz-page-header {
    height: 50px;
  }
}
.QuizPage .quiz-page-quiz {
  flex: 1;
}
.QuizPage .quiz-page-footer {
  height: 160px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .QuizPage .quiz-page-footer {
    height: 125px;
  }
}

.Quiz {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.Quiz__progress-bar {
  height: 65px;
}
@media screen and (max-width: 819px) {
  .Quiz__progress-bar {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.Quiz__footer-actions {
  position: absolute;
  bottom: 0;
  right: 15px;
  z-index: -1;
  transition: bottom 0.18s ease-in;
  display: flex;
}
.Quiz__footer-actions.Quiz__footer-actions--drawer-open {
  bottom: 140px;
  z-index: 12;
}
.Quiz__footer-actions.Quiz__footer-actions--drawer-close {
  bottom: 80px;
  z-index: 12;
}

.FooterActions .FooterActions__action-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  font-size: 18px;
  padding: 14px;
  box-sizing: content-box;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 5px;
  color: #ffffff;
}
.FooterActions.FooterActions--correct .FooterActions__action-icon {
  background-color: #63b768;
}
.FooterActions.FooterActions--incorrect .FooterActions__action-icon {
  background-color: #f75856;
}
.FooterActions.dark-mode {
  color: #222222;
}

.WordBubble {
  position: relative;
  height: auto;
  width: auto;
  max-width: calc(100% - 100px);
  margin-bottom: 20px;
  padding: 3px 12px 3px 5px;
  border-radius: 8px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .WordBubble {
    width: auto;
    max-width: calc(100% - 60px);
    margin-bottom: 0;
    margin-top: 6px;
  }
}
.WordBubble.Q {
  left: 9px;
  margin-right: 20px;
  background: #bff1f3;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .WordBubble.Q {
    margin-right: 15px;
  }
}
.WordBubble.A {
  right: 9px;
  align-self: flex-end;
  margin-left: 20px;
  background: #fee9c3;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .WordBubble.A {
    margin-left: 15px;
  }
}
.WordBubble .triangle {
  position: absolute;
  top: calc(50% - 10px);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.WordBubble .triangle.Q {
  left: -8px;
  border-right: 10px solid #bff1f3;
}
.WordBubble .triangle.A {
  left: calc(100% - 1px);
  border-left: 10px solid #fee9c3;
}

.bubble {
  height: fit-content;
  width: fit-content;
  padding: 5px 0;
  font-size: 21px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .bubble {
    font-size: 19px;
  }
}
.bubble.A {
  text-align: right;
}
.bubble .words {
  display: inline-block;
  width: auto;
  margin: 5px 0;
}
.bubble .words.pinyin {
  margin-left: 7px;
  font-size: 21px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .bubble .words.pinyin {
    font-size: 19px;
  }
}
.bubble .answer-span {
  display: inline-flex;
  vertical-align: middle;
  justify-content: center;
  min-height: 40px;
  border-radius: 8px;
  margin: 5px 7px;
  padding: 8px 5px 5px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .bubble .answer-span {
    min-height: 34px;
  }
}
.bubble .answer-span.pinyin {
  padding: 5px;
  margin-right: 0;
  font-size: 21px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .bubble .answer-span.pinyin {
    font-size: 19px;
  }
}
.bubble .answer-span.Q {
  left: 10px;
  border: 2px dashed #00c7ce;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .bubble .answer-span.Q {
    left: 5px;
  }
}
.bubble .answer-span.A {
  right: 10px;
  justify-self: flex-end;
  border: 2px dashed #faa80f;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .bubble .answer-span.A {
    right: 5px;
  }
}
.bubble .answer-span .incorrect-answer {
  margin-right: 10px;
}

.WordBubbleContainer {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  padding-top: 10px;
}
.WordBubbleContainer.dark-mode {
  color: #444444;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .WordBubbleContainer {
    max-height: 100%;
    padding: 0;
    overflow-x: hidden;
  }
}
.WordBubbleContainer .audio-bubble-container {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .WordBubbleContainer .audio-bubble-container {
    align-items: center;
  }
}
.WordBubbleContainer .audio-bubble-container.Q {
  flex-direction: row-reverse;
}
.WordBubbleContainer .audio-bubble-container .audio-container {
  margin-top: 6px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .WordBubbleContainer .audio-bubble-container .audio-container {
    margin-top: 0;
  }
}

.MCOptions {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 5px;
}
.MCOptions.ImgMC {
  margin: 0 0 20px;
}
.MCOptions.ImgMC .button-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
.MCOptions.ImgMC button {
  width: auto;
  min-width: 100px;
  margin: 10px;
}
.MCOptions .button-grid {
  display: grid;
  grid-template-columns: minmax(100px, max-content);
}
.MCOptions .button-grid.PicMC {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.MCOptions .image-button {
  max-height: 100%;
  width: 50%;
  margin: 0 10px;
  padding: 5px;
  border-width: 5px;
  color: inherit;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .MCOptions .image-button {
    justify-self: center;
    width: calc(50% - 30px);
    margin: 10px 0;
    padding: 0;
  }
}
.MCOptions .image-button img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.MCOptions .image-button.img-selected {
  background: #faa80f;
  border: 5px solid #faa80f;
  color: white;
}
.MCOptions .image-button.correct {
  background: #63b768;
  border: 5px solid #63b768;
  color: white;
}
.MCOptions .image-button.incorrect {
  background: #f75856;
  border: 5px solid #f75856;
  color: white;
}
.MCOptions .button {
  width: 100%;
  margin: 13px auto 0;
  padding: 8px 20px;
  font-size: 17px;
  line-height: 20px;
}
.MCOptions .button.correct {
  background-color: #63b768;
  border: 1px solid #63b768;
  color: white;
}
.MCOptions .button.incorrect {
  background-color: #f75856;
  border: 1px solid #f75856;
  color: white;
}

.MCPrompts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "regular", sans-serif;
}
.MCPrompts .Ch2EnMC {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px;
}
.MCPrompts .Ch2EnMC .audio-container {
  margin-right: 5px;
}
.MCPrompts .image-container {
  max-width: 300px;
  max-height: 100%;
  width: calc(100% - 40px);
  margin: 10px auto;
}
.MCPrompts .image-container img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.MCPrompts .text-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  line-height: 40px;
  font-size: 29px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .MCPrompts .text-container {
    line-height: 30px;
    font-size: 21px;
  }
}
.MCPrompts .text-container span {
  margin: 5px 3.5px 5px 3.5px;
}
.MCPrompts .text-container .answer-span {
  min-height: 50px;
  padding: 0 5px;
  border: 2px dashed #00c7ce;
  border-radius: 8px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .MCPrompts .text-container .answer-span {
    min-height: 40px;
  }
}
.MCPrompts .text-container .answer-span .correct,
.MCPrompts .text-container .answer-span .incorrect-answer,
.MCPrompts .text-container .answer-span .correct-answer {
  margin: 0 3.5px;
}

.MultipleChoice {
  display: grid;
  grid-template-rows: 10% 10% auto 1fr;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .MultipleChoice {
    grid-template-rows: 34px 10% auto 1fr;
    height: calc(100% - 2px);
  }
}
.MultipleChoice.no-pinyin {
  grid-template-rows: 10% auto 1fr;
}

.Pair {
  display: grid;
  grid-template-rows: min-content min-content 1fr;
}

.PairOptions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 17px;
}
.PairOptions.no-click {
  pointer-events: none;
}
.PairOptions button {
  flex-direction: column;
  width: auto;
  min-width: 50px;
  margin: 5px;
  padding: 10px 20px;
  color: #000000;
}
.PairOptions button p {
  opacity: 1;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .PairOptions button {
    padding: 8px 10px;
  }
}
.PairOptions button.not-visible {
  opacity: 0;
  pointer-events: none;
}
.PairOptions button.visible {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.2s ease-in;
}
.PairOptions button.incorrect {
  color: #444444;
  animation: flash-red 0.75s forwards;
}
.PairOptions button.pair1 {
  background-color: #f8b667;
  border: 1px solid #f8b667;
  color: white;
  transition: background-color 0.2s ease-in, border 0.2s ease-in;
}
.PairOptions button.pair2 {
  background-color: #00c7ce;
  border: 1px solid #00c7ce;
  color: white;
  transition: background-color 0.2s ease-in, border 0.2s ease-in;
}
.PairOptions button.pair3 {
  background-color: #5194ae;
  border: 1px solid #5194ae;
  color: white;
  transition: background-color 0.2s ease-in, border 0.2s ease-in;
}
.PairOptions button.pair4 {
  background-color: #ff8fd8;
  border: 1px solid #ff8fd8;
  color: white;
  transition: background-color 0.2s ease-in, border 0.2s ease-in;
}
.PairOptions button.pair5 {
  background-color: #7e60de;
  border: 1px solid #7e60de;
  color: white;
  transition: background-color 0.2s ease-in, border 0.2s ease-in;
}
.PairOptions button.correct {
  animation: flash-green 0.75s forwards;
}

@keyframes flash-red {
  0% {
    background-color: #f2f3ee;
  }
  50% {
    background-color: #f75856;
  }
  100% {
    background-color: #f2f3ee;
  }
}
@keyframes flash-green {
  0% {
    border: 1px solid #dadbd5;
    background-color: #f2f3ee;
  }
  100% {
    border: 1px solid #41894d;
    background-color: #63b768;
  }
}
.Tones {
  display: grid;
  grid-template-rows: 20% 30% 50%;
}
.Tones .prompt-answer {
  flex-wrap: wrap;
  height: max-content;
  font-size: 37px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .Tones .prompt-answer {
    font-size: 21px;
  }
}
.Tones .prompt-answer .audio-container {
  margin-right: 10px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .Tones .prompt-answer .audio-container {
    margin-right: 5px;
  }
}
.Tones .prompt-answer span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  margin-right: 15px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .Tones .prompt-answer span {
    height: 36px;
    margin-right: 10px;
  }
}
.Tones .prompt-answer span.current {
  font-family: "bold", sans-serif;
  border-bottom: 2px dashed #00c7ce;
}

.TonesOptions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: max-content;
  font-size: 17px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .TonesOptions {
    font-size: 13px;
  }
}
.TonesOptions button {
  flex-direction: column;
  width: auto;
  min-width: 50px;
  margin: 5px;
  padding: 10px;
}
.TonesOptions button img {
  height: 10px;
}
.TonesOptions button p {
  padding-top: 7px;
}

.Typing {
  display: grid;
  grid-template-rows: 20% auto 1fr;
  padding: 0 20px 20px 20px;
}
.Typing.dark-mode .input input {
  background: #222222;
  color: #d8d8d8;
}
.Typing .prompt {
  align-items: center;
  font-size: 37px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .Typing .prompt {
    font-size: 21px;
    align-items: normal;
  }
}
.Typing .prompt .characters {
  line-height: 40px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .Typing .prompt .characters {
    line-height: 30px;
  }
}
.Typing .prompt .image-container {
  max-width: 300px;
  max-height: 100%;
  width: calc(100% - 40px);
  margin: 10px auto;
}
.Typing .prompt .image-container img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.Typing .input {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  height: 100%;
  font-size: 21px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .Typing .input {
    font-size: 19px;
  }
}
.Typing .input input {
  height: 40px;
  width: 100%;
  max-width: 295px;
  overflow: visible;
  border: none;
  border-bottom: 2px dashed #00c7ce;
  line-height: 40px;
  text-align: center;
}
.Typing .input ::placeholder {
  color: #d8d8d8;
}

.WordOrder {
  display: grid;
  grid-template-rows: 10% 10% auto auto 1fr;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .WordOrder {
    grid-template-rows: 10% 10% auto auto 1fr;
  }
}
.WordOrder .prompt {
  min-height: 100px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .WordOrder .prompt {
    min-height: auto;
    margin-bottom: 12px;
  }
}
.WordOrder .prompt p {
  font-size: 25px;
  text-align: center;
  line-height: 40px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .WordOrder .prompt p {
    font-size: 19px;
    line-height: 25px;
  }
}
.WordOrder .sen2-prompt {
  align-items: center;
  height: auto;
  width: auto;
}
.WordOrder .sen2-prompt p {
  font-size: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  line-height: 40px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .WordOrder .sen2-prompt p {
    font-size: 19px;
    line-height: 25px;
    margin-left: 0;
  }
}
.WordOrder .user-answer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px auto;
  font-size: 21px;
  text-align: center;
  line-height: 40px;
  border-bottom: 2px dashed #00c7ce;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .WordOrder .user-answer {
    padding: 5px;
    min-width: 30%;
    border: 2px dashed #00c7ce;
    border-radius: 8px;
    font-size: 19px;
    line-height: 25px;
  }
}
.WordOrder .user-answer.not-pinyin {
  font-size: 25px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .WordOrder .user-answer.not-pinyin {
    font-size: 21px;
  }
}
.WordOrder .user-answer span {
  min-height: 40px;
  height: 100%;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .WordOrder .user-answer span {
    min-height: 25px;
  }
}

.WordOrderOptions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 550px;
  font-family: "regular", sans-serif;
  font-size: 17px;
  line-height: 20px;
}
.WordOrderOptions button {
  width: auto;
  padding: 0 20px;
  margin: 5px;
}

.AccountInformation {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-top: 23px;
  font-family: "regular", sans-serif;
}
.AccountInformation input {
  font-family: "regular", sans-serif;
  font-size: 15px;
}
@media screen and (max-width: 819px) {
  .AccountInformation {
    padding-top: 0;
    border-top: none;
  }
}
.AccountInformation .forgot-password {
  font-family: "semiBold", sans-serif;
  font-size: 21px;
  color: #2a798a;
  cursor: pointer;
}
.AccountInformation .forgot-password:hover {
  color: #196373;
}
.AccountInformation .submit-button {
  align-self: center;
  margin-top: 30px;
  width: 240px;
}
.AccountInformation.dark-mode {
  color: #ffffff;
}
.AccountInformation.dark-mode .forgot-password {
  color: #007b80;
}
.AccountInformation.dark-mode .forgot-password:hover {
  color: #bff1f3;
}

.DeleteAccount {
  width: 100%;
  font-family: "regular", sans-serif;
}
.DeleteAccount.dark-mode {
  color: #ffffff;
}
.DeleteAccount h1 {
  font-family: "semiBold", sans-serif;
  font-size: 21px;
  margin-bottom: 30px;
  text-align: center;
}
.DeleteAccount a {
  text-decoration: none;
}
.DeleteAccount p {
  margin: 0 0 30px;
  line-height: 22px;
}
.DeleteAccount .delete-button {
  margin: 0 auto;
  background-color: #fc4b49 !important;
}
.DeleteAccount .delete-error {
  color: #fc4b49;
}

.EmailNewsletter {
  width: 100%;
  font-family: "regular", sans-serif;
}
.EmailNewsletter.dark-mode {
  color: #ffffff;
}
.EmailNewsletter h1 {
  font-family: "semiBold", sans-serif;
  font-size: 21px;
  margin-bottom: 30px;
  text-align: center;
}
.EmailNewsletter .content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  line-height: 22px;
}
.EmailNewsletter .content:first-child {
  padding-right: 30px;
}

.MembershipInformation {
  width: 100%;
  font-family: "regular", sans-serif;
}
.MembershipInformation .buttons {
  text-align: center;
}
.MembershipInformation.dark-mode {
  color: #ffffff;
}
.MembershipInformation h1 {
  font-family: "semiBold", sans-serif;
  font-size: 21px;
  margin-bottom: 30px;
  text-align: center;
}
.MembershipInformation h2 {
  font-family: "semiBold", sans-serif;
  font-size: 17px;
  padding-top: 30px;
  padding-bottom: 15px;
}
.MembershipInformation a {
  text-decoration: none;
}
.MembershipInformation .subscription-body {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.MembershipInformation .subscription-body .subscription-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}
.MembershipInformation .subscription-body .subscription-item .metric {
  font-family: "semiBold", sans-serif;
}
.MembershipInformation .subscription-body:first-child {
  padding-top: 0;
}
.MembershipInformation .subscription-body:last-child {
  padding-bottom: 0;
}
.MembershipInformation .progress-bar-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.MembershipInformation .progress-bar-container .progress-bar-section {
  height: 10px;
  flex-grow: 1;
  margin: 2px;
  background-color: #f2f3ee;
}
.MembershipInformation .progress-bar-container .progress-bar-section.filled {
  background-color: #faa80f;
}
.MembershipInformation .progress-bar-container .progress-bar-section:first-child {
  border-radius: 5px 0 0 5px;
}
.MembershipInformation .progress-bar-container .progress-bar-section:last-child {
  border-radius: 0 5px 5px 0;
}
.MembershipInformation .progress-items {
  display: flex;
  flex-direction: column;
}
.MembershipInformation .progress-items .progress-item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}
.MembershipInformation .progress-items .progress-item .metric {
  font-size: 15px;
  font-family: "semiBold", sans-serif;
}
.MembershipInformation .progress-items .progress-item .data {
  font-size: 15px;
  font-family: "regular", sans-serif;
}
.MembershipInformation .membership-items {
  display: flex;
  justify-content: space-between;
}
.MembershipInformation .confirm-email-button,
.MembershipInformation .restore-purchases-button {
  margin: 0 auto;
}
.MembershipInformation .confirm-email-button {
  margin-top: 25px;
}

.MigrateButton {
  align-self: center;
  margin-top: 15px;
  width: 95%;
  max-width: 240px;
}

.SettingsAvatar.dark-mode h2 {
  color: #d8d8d8;
}
.SettingsAvatar.dark-mode .birth-year {
  background: #444444;
  color: #d8d8d8;
  border: 2px solid #333333;
}
.SettingsAvatar h2 {
  font-family: "semiBold", sans-serif;
  font-size: 17px;
  margin-bottom: 10px;
}
.SettingsAvatar .birth-year {
  width: 200px;
  height: 48px;
  margin: 10px 0 20px;
  text-align: center;
  background: #f2f3ee;
  border-radius: 8px;
  border: 2px solid #d8d8d8;
}

.UserInfoForm {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 25px;
}
.UserInfoForm .info-text {
  font-size: 16px;
  text-align: center;
  font-family: "regular";
}

.SettingsPreferences {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 23px 0 40px;
}
.SettingsPreferences.dark-mode .label,
.SettingsPreferences.dark-mode h2 {
  color: #d8d8d8;
}
.SettingsPreferences.dark-mode select {
  background: #444444;
  color: #d8d8d8;
  border: 2px solid #333333;
}
.SettingsPreferences.dark-mode .toggle-div .toggle-container {
  border: 2px solid #333333;
}
.SettingsPreferences.dark-mode .toggle-div .toggle-container .toggle,
.SettingsPreferences.dark-mode .toggle-div .toggle-container .toggle {
  background: #007b80;
  color: #00c7ce;
}
.SettingsPreferences.dark-mode .toggle-div .toggle-container .toggle.active,
.SettingsPreferences.dark-mode .toggle-div .toggle-container .toggle.active {
  color: #222222;
  background: #00c7ce;
  border: 2px solid #00c7ce;
}
.SettingsPreferences .characters,
.SettingsPreferences .toggle-div,
.SettingsPreferences .lesson-goal,
.SettingsPreferences .video-format,
.SettingsPreferences .medal-goal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  margin-bottom: 15px;
}
.SettingsPreferences .label,
.SettingsPreferences h2 {
  font-family: "semiBold", sans-serif;
  font-size: 17px;
}
.SettingsPreferences select {
  width: 150px;
  height: 48px;
  padding: 0 15px;
  background: #f2f3ee;
  border-radius: 8px;
  border: 2px solid #d8d8d8;
  font-family: "regular", sans-serif;
}
.SettingsPreferences .lesson-goal select,
.SettingsPreferences .medal-goal select {
  width: 75px;
}
.SettingsPreferences .toggle-div .toggle-container {
  display: flex;
  width: 150px;
  height: 48px;
  border-radius: 8px;
  border: 2px solid #d8d8d8;
  overflow: hidden;
  cursor: pointer;
}
.SettingsPreferences .toggle-div .toggle-container .toggle,
.SettingsPreferences .toggle-div .toggle-container .toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 50%;
}
.SettingsPreferences .toggle-div .toggle-container .toggle.left,
.SettingsPreferences .toggle-div .toggle-container .toggle.left {
  border-radius: 5px 0 0 5px;
}
.SettingsPreferences .toggle-div .toggle-container .toggle.right,
.SettingsPreferences .toggle-div .toggle-container .toggle.right {
  border-radius: 0 5px 5px 0;
}
.SettingsPreferences .toggle-div .toggle-container .toggle.active,
.SettingsPreferences .toggle-div .toggle-container .toggle.active {
  color: white;
  background: #00c7ce;
  border: 2px solid #00c7ce;
}
.SettingsPreferences .submit-button {
  align-self: center;
  margin-top: 30px;
  width: 240px;
}
.SettingsPreferences .not-logged-in {
  text-align: center;
  padding-top: 18px;
}
.SettingsPreferences .not-logged-in p {
  font-family: "regular", sans-serif;
}

.DefaultToggleSettings {
  width: 100%;
}
.DefaultToggleSettings h2 {
  margin: 23px 0 20px;
}

.StoreSuccessPage {
  min-width: 100%;
  min-height: 100%;
  display: flex;
  justify-content: stretch;
  align-items: stretch;
}
@media screen and (min-width: 500px) {
  .StoreSuccessPage {
    justify-content: center;
    align-items: flex-start;
    margin-top: 40px;
  }
}
.StoreSuccessPage .modal {
  width: 100%;
  max-width: 500px;
}
.StoreSuccessPage .keep-learning-button {
  margin: 35px auto 0;
}
.StoreSuccessPage img {
  width: 80%;
  max-width: 250px;
}

.AudioSpeed {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.AudioSpeed.dark-mode {
  color: #d8d8d8;
}
.AudioSpeed.dark-mode .audio-button {
  background-color: #007b80;
  color: #00c7ce;
}
.AudioSpeed.dark-mode .audio-button.active {
  background-color: #00c7ce;
  color: black;
}
.AudioSpeed .audio-button {
  height: 24px;
  width: 60px;
  margin-top: 0.2rem;
  border: 1px solid #00c7ce;
  background-color: #bff1f3;
  color: #00c7ce;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .AudioSpeed .audio-button {
    width: 40px;
  }
}
.AudioSpeed .audio-button.left {
  border-radius: 3px 0 0 3px;
}
.AudioSpeed .audio-button.right {
  border-radius: 0 3px 3px 0;
}
.AudioSpeed .active {
  background-color: #00c7ce;
  color: white;
}

.ButtonGroup {
  width: 100%;
  display: flex;
  border: 1px solid #dadbd5;
  border-radius: 6px;
  overflow: hidden;
  font-family: "regular", sans-serif;
  font-size: 11px;
}
.ButtonGroup.dark-mode {
  border: 1px solid #979797;
}
.ButtonGroup.dark-mode button {
  background-color: #444444;
  color: white;
}
.ButtonGroup.dark-mode button.active {
  background-color: #00c7ce;
}
.ButtonGroup button {
  flex: 1;
  padding: 5px;
  background-color: #f2f3ee;
  color: #444444;
  height: 24px;
}
.ButtonGroup button.active {
  background-color: #00c7ce;
  color: white;
}

.CallToAction {
  border: 1px solid #faa80f;
  border-radius: 8px;
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "regular", sans-serif;
  font-size: 13px;
  color: #000000;
}
.CallToAction h1 {
  font-family: "semiBold", sans-serif;
  font-size: 15px;
  padding-bottom: 10px;
}
.CallToAction p {
  font-family: "regular", sans-serif;
}
.CallToAction .stars {
  color: #faa80f;
  margin-right: 10px;
  height: 15px;
}
.CallToAction .description-container {
  padding-right: 20px;
}
.CallToAction .action-container {
  width: 150px;
}
.CallToAction .action-button {
  width: 100%;
}
@media screen and (max-width: 819px) {
  .CallToAction {
    flex-direction: column;
    text-align: center;
  }
  .CallToAction .description-container {
    padding-right: unset;
    padding-bottom: 20px;
  }
}
.CallToAction.dark-mode {
  color: #ffffff;
}

.Divider {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  /* STYLE */
  /* WIDTH */
  /* COLOR */
}
.Divider .line {
  width: 100%;
  border-top: 3px solid #777777;
}
.Divider.dashed .line {
  border-top-style: dashed;
}
.Divider.hidden .line {
  display: none;
}
.Divider.thin .line {
  border-top-width: 1px;
}
.Divider.thick .line {
  border-top-width: 5px;
}
.Divider.white .line {
  border-top-color: #ffffff;
}
.Divider.lightest .line {
  border-top-color: #f2f3ee;
}
.Divider.lighter .line {
  border-top-color: #d8d8d8;
}
.Divider.light .line {
  border-top-color: #dadbd5;
}
.Divider.dark .line {
  border-top-color: #555555;
}
.Divider.darker .line {
  border-top-color: #444444;
}
.Divider.darkest .line {
  border-top-color: #222222;
}
.Divider.black .line {
  border-top-color: #000000;
}
.Divider.dark-mode .line {
  border-top-color: #f2f3ee;
}

.ErrorBoundary {
  text-align: center;
  margin: 45px 30px;
  font-family: "regular";
  color: #000000;
}
.ErrorBoundary.dark-mode {
  color: #ffffff;
}
.ErrorBoundary p {
  margin: 15px;
}

.FileUploadForm {
  font-family: "regular", sans-serif;
  font-size: 15px;
  /* Navigation at bottom of screen */
}
.FileUploadForm ol {
  list-style-position: inside;
  margin: 25px 0;
}
.FileUploadForm li {
  margin: 3px 0;
}
.FileUploadForm form {
  margin: 25px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.FileUploadForm .description {
  font-style: italic;
  font-size: 13px;
  font-family: "regular", sans-serif;
  margin: 0 0 12px 0;
}
.FormInput {
  /* Navigation at bottom of screen */
}
.FormInput.dark-mode label {
  color: #d8d8d8;
}
.FormInput.dark-mode input {
  background: #444444;
  color: #d8d8d8;
  border: 2px solid #333333;
}
.FormInput label {
  font-family: "semiBold", sans-serif;
  font-size: 17px;
  margin-bottom: 10px;
  display: block;
}
.FormInput input {
  width: 100%;
  height: 48px;
  padding: 0 15px;
  margin-bottom: 25px;
  background: #f2f3ee;
  border-radius: 8px;
  border: 2px solid #d8d8d8;
}
.Gradient {
  position: absolute;
  top: 100px;
  bottom: 0;
  z-index: 20;
  width: max((100% - 596px) / 2, 20px);
  pointer-events: none;
  cursor: pointer;
}
@media screen and (max-width: 599px) {
  .Gradient {
    top: 70px;
  }
}
.Gradient.left {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) min(100px, 100%), rgb(255, 255, 255) 100%);
}
.Gradient.right {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) min(100px, 100%), rgb(255, 255, 255) 100%);
}
.Gradient.dark-mode.left {
  background: linear-gradient(to left, rgba(34, 34, 34, 0) 0%, rgb(34, 34, 34) min(100px, 100%), rgb(34, 34, 34) 100%);
}
.Gradient.dark-mode.right {
  background: linear-gradient(to right, rgba(34, 34, 34, 0) 0%, rgb(34, 34, 34) min(100px, 100%), rgb(34, 34, 34) 100%);
}

.InputWithTickCross {
  display: flex;
  height: 20px;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  /* Navigation at bottom of screen */
}
.InputWithTickCross input {
  width: 60px;
  text-align: center;
}
.InputWithTickCross .tick-icon-container {
  width: 40px;
  text-align: center;
}
.InputWithTickCross .tick-icon-container.has-changes {
  cursor: pointer;
}
.LearnSelector {
  /* Navigation at bottom of screen */
}
.LearnSelector .learn-selector-select {
  width: 100%;
  height: 48px;
  font-family: "regular", sans-serif;
  margin-bottom: 5px;
}
.LearnSelector .learn-selector-buttons-container {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.LoadingSpinner {
  position: absolute;
  top: 30%;
  left: 50%;
  z-index: 10;
}

.spinner_OSmW {
  transform-origin: center;
  animation: spinner_T6mA 0.75s step-end infinite;
}

@keyframes spinner_T6mA {
  8.3% {
    transform: rotate(30deg);
  }
  16.6% {
    transform: rotate(60deg);
  }
  25% {
    transform: rotate(90deg);
  }
  33.3% {
    transform: rotate(120deg);
  }
  41.6% {
    transform: rotate(150deg);
  }
  50% {
    transform: rotate(180deg);
  }
  58.3% {
    transform: rotate(210deg);
  }
  66.6% {
    transform: rotate(240deg);
  }
  75% {
    transform: rotate(270deg);
  }
  83.3% {
    transform: rotate(300deg);
  }
  91.6% {
    transform: rotate(330deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.Lock {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  color: #555555;
  border: 2px solid #ffffff;
  background-color: #dadbd5;
  border-radius: 50%;
  padding: 10px;
}
.Lock.dark-mode {
  background-color: #555555;
  color: #dadbd5;
  border-color: #222222;
}

.MasteryLevel {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.MasteryLevel .space {
  flex: 2;
}
.MasteryLevel .bar {
  flex: 5;
  background-color: #dadbd5;
  border-radius: 5px;
}
.MasteryLevel .bar.hard {
  background-color: #f75856;
}
.MasteryLevel .bar.ok {
  background-color: #faa80f;
}
.MasteryLevel .bar.good {
  background-color: #63b768;
}
.MasteryLevel.dark-mode .bar.hard {
  background-color: #b94140;
}
.MasteryLevel.dark-mode .bar.good {
  background-color: #41894d;
}
.MasteryLevel .bar:nth-child(1) {
  height: 20%;
}
.MasteryLevel .bar:nth-child(3) {
  height: 40%;
}
.MasteryLevel .bar:nth-child(5) {
  height: 60%;
}
.MasteryLevel .bar:nth-child(7) {
  height: 80%;
}
.MasteryLevel .bar:nth-child(9) {
  height: 100%;
}

.NotesContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: -320px;
  width: calc(100% - 42px);
  height: auto;
  min-height: 131px;
  max-height: 300px;
  padding: 20px;
  background: #f2f3ee;
  border: 2px solid #dadbd5;
  border-radius: 8px;
  overflow-y: scroll;
  transition: transform 0.2s ease-in;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.174);
}
.NotesContainer.dark-mode {
  background: #333333;
  border: 2px solid #222222;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.6);
}
.NotesContainer.dark-mode .note {
  color: #d8d8d8;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .NotesContainer {
    max-height: 220px;
    padding: 10px;
  }
}
.NotesContainer.visible {
  transform: translateY(-340px);
}
.NotesContainer .note-img {
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: calc(100% - 40px);
  max-width: calc(100% - 40px);
  padding: 20px;
}
.NotesContainer .note-img img {
  max-width: calc(100% - 40px);
  max-height: calc(100% - 40px);
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .NotesContainer .note-img {
    max-height: calc(100% - 20px);
    max-width: calc(100% - 20px);
    padding: 10px;
  }
  .NotesContainer .note-img img {
    max-width: calc(100% - 20px);
    max-height: calc(100% - 20px);
  }
}
.NotesContainer .note {
  max-width: 100%;
  font-family: "regular", sans-serif;
  font-size: 15px;
  color: #444444;
  font-style: italic;
  line-height: 18px;
  text-align: left;
  overflow: scroll;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .NotesContainer .note {
    font-size: 13px;
  }
}

.PracticeListNotesContainer {
  width: 100%;
  padding: 30px 40px 10px 64px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .PracticeListNotesContainer {
    padding: 20px 22px 10px 40px;
  }
}
.PracticeListNotesContainer.dark-mode .note {
  color: #d8d8d8;
}
.PracticeListNotesContainer .note {
  max-width: 100%;
  font-family: "regular", sans-serif;
  font-size: 15px;
  color: #444444;
  font-style: italic;
  line-height: 18px;
  text-align: left;
  overflow-x: scroll;
}
.PracticeListNotesContainer .note-img {
  max-height: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
}
.PracticeListNotesContainer .note-img img {
  max-width: 100%;
  max-height: 100%;
}

.PanelCollapsible {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  margin-bottom: 6px;
  border: 2px solid #f2f3ee;
  border-radius: 8px;
  font-family: "regular", sans-serif;
  font-size: 13px;
}
.PanelCollapsible .shiny-corner {
  position: absolute;
  left: 0;
  top: 0;
  width: 38px;
  height: 38px;
  border-radius: 8px 0px 38px 0px;
  background-color: rgba(255, 255, 255, 0.15);
}
.PanelCollapsible .header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 18px;
  color: #444444;
  background-color: #f2f3ee;
  font-size: 17px;
  font-family: "semiBold", sans-serif;
  cursor: pointer;
}
.PanelCollapsible .header .title {
  display: flex;
  justify-content: left;
  align-items: center;
  width: 100%;
}
.PanelCollapsible .header .title .logo {
  max-height: 24px;
  max-width: 24px;
  margin-right: 18px;
}
.PanelCollapsible .header .icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.PanelCollapsible .header div {
  width: max-content;
  padding: 0;
}
.PanelCollapsible .body {
  width: 100%;
  padding: 20px 30px;
  line-height: 20px;
}

.PinyinToggle {
  display: flex;
  justify-content: center;
}
.PinyinToggle.hidden {
  display: none;
}
.PinyinToggle.dark-mode span .toggle-button {
  background: #007b80;
}
.PinyinToggle.dark-mode span .toggle-button.active {
  background-color: #00c7ce;
  color: #222222;
}
.PinyinToggle span {
  display: flex;
  justify-content: center;
  width: 112px;
  font-family: "regular", sans-serif;
  font-size: 11px;
}
.PinyinToggle span .toggle-button {
  background: #bff1f3;
  color: #00c7ce;
  height: 24px;
  width: 56px;
}
.PinyinToggle span .left {
  border-radius: 6px 0 0 6px;
}
.PinyinToggle span .right {
  border-radius: 0 6px 6px 0;
  font-size: 13px;
}
.PinyinToggle span .active {
  background-color: #00c7ce;
  color: white;
}
.PinyinToggle span button {
  display: flex;
  justify-content: center;
  align-items: center;
}

.PlayAudioCue {
  display: flex;
  align-items: center;
  height: 100%;
  cursor: pointer;
}

.ProgressBar {
  width: 100%;
  height: 35px;
  margin: 10px 0px 20px;
}
@media screen and (max-width: 599px) {
  .ProgressBar {
    margin: 5px 0px 10px;
  }
}
.ProgressBar .meta-data-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.ProgressBar.dark-mode .progress,
.ProgressBar.dark-mode .children {
  color: #d8d8d8;
}
.ProgressBar.dark-mode .MuiLinearProgress-colorPrimary {
  background-color: #666666;
}
.ProgressBar .progress,
.ProgressBar .children {
  font-family: "bold", sans-serif;
  font-size: 15px;
}
@media screen and (max-width: 599px) {
  .ProgressBar .progress,
  .ProgressBar .children {
    font-size: 13px;
  }
}
.ProgressBar .html-progress {
  background-color: #dadbd5;
  border-radius: 10px;
  margin-bottom: 10px;
  width: 100%;
  height: 8px;
  position: relative;
  display: block;
}
.ProgressBar .html-progress.dark-mode {
  background-color: #666666;
}
.ProgressBar .html-progress > span {
  background-color: #faa80f;
  border-radius: 10px;
  display: block;
  text-indent: -9999px;
  height: 8px;
}

.ProgressBarClickable {
  width: 100%;
  height: 8px;
}
.ProgressBarClickable.dark-mode progress::-webkit-progress-bar {
  background: #dadbd5;
}
.ProgressBarClickable.dark-mode progress::-moz-progress-bar {
  background: #dadbd5;
}
.ProgressBarClickable progress::-webkit-progress-value {
  background: #faa80f;
  border-radius: 10px 10px 10px 10px;
}
.ProgressBarClickable progress::-webkit-progress-bar {
  background: #dadbd5;
  border-radius: 10px 10px 10px 10px;
}
.ProgressBarClickable progress::-moz-progress-value {
  background: #faa80f;
  border-radius: 10px 10px 10px 10px;
}
.ProgressBarClickable progress::-moz-progress-bar {
  background: #dadbd5;
  border-radius: 10px 10px 10px 10px;
}
.ProgressBarClickable .progress {
  background-color: #faa80f;
  width: 100%;
  height: 8px;
  position: absolute;
  left: 0;
  border-radius: 10px 10px 10px 10px;
}
.ProgressBarClickable.audio-review .progress {
  width: calc(100% - 20px);
  left: 10px;
}

.QuizFooter {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 160px;
  background-color: #f2f3ee;
  font-family: "bold", sans-serif;
  font-size: 19px;
}
@media screen and (min-width: 600px) and (max-width: 819px) {
  .QuizFooter {
    justify-content: space-between;
  }
}
@media screen and (max-width: 599px) {
  .QuizFooter {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .QuizFooter {
    height: 85px;
    font-size: 17px;
  }
}

.ResultsFooter {
  flex-direction: column;
  justify-content: center;
  bottom: -160px;
  transition: bottom 0.18s ease-in;
  z-index: 10;
}
.ResultsFooter.dark-mode .buttons-section .button-container button.correct, .ResultsFooter.dark-mode .buttons-section .button-container button.incorrect {
  background-color: #222222;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .ResultsFooter {
    display: flex;
    grid-template-columns: none;
    bottom: -85px;
  }
}
.ResultsFooter.answered {
  bottom: 0;
}
.ResultsFooter.correct {
  background-color: #63b768;
}
.ResultsFooter.incorrect {
  background-color: #f75856;
}
.ResultsFooter.feedback {
  justify-content: flex-end;
  height: calc(160px - 30px);
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .ResultsFooter.feedback {
    height: calc(85px - 16px);
  }
}
.ResultsFooter.feedback.answered {
  box-shadow: none;
}
.ResultsFooter.feedback .buttons-section {
  margin-bottom: 50px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .ResultsFooter.feedback .buttons-section {
    margin-bottom: 24px;
  }
}
.ResultsFooter .buttons-section {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100vw;
}
@media screen and (min-width: 600px) and (max-width: 819px) {
  .ResultsFooter .buttons-section {
    justify-content: space-between;
  }
}
@media screen and (max-width: 599px) {
  .ResultsFooter .buttons-section {
    display: grid;
    grid-template-columns: 50% 50%;
  }
}
.ResultsFooter .buttons-section .mobile-result,
.ResultsFooter .buttons-section .wide-result,
.ResultsFooter .buttons-section .short-desktop {
  display: flex;
  align-items: center;
  border-radius: 30px;
  color: white;
}
.ResultsFooter .buttons-section .mobile-result.correct,
.ResultsFooter .buttons-section .wide-result.correct,
.ResultsFooter .buttons-section .short-desktop.correct {
  background-color: #41894d;
}
.ResultsFooter .buttons-section .mobile-result.incorrect,
.ResultsFooter .buttons-section .wide-result.incorrect,
.ResultsFooter .buttons-section .short-desktop.incorrect {
  justify-content: center;
  background-color: #b94140;
  padding: 0;
}
.ResultsFooter .buttons-section .short-desktop,
.ResultsFooter .buttons-section .mobile-result {
  width: 120px;
  height: 35px;
}
.ResultsFooter .buttons-section .short-desktop.correct,
.ResultsFooter .buttons-section .mobile-result.correct {
  justify-content: center;
}
.ResultsFooter .buttons-section .mobile-result {
  margin-left: 20px;
}
.ResultsFooter .buttons-section .short-desktop {
  margin-left: 70px;
}
.ResultsFooter .buttons-section .wide-result {
  width: 200px;
  height: 60px;
  margin-left: 60px;
}
@media screen and (min-width: 600px) and (max-width: 819px) {
  .ResultsFooter .buttons-section .wide-result {
    margin-left: 82px;
  }
}
.ResultsFooter .buttons-section .wide-result.correct {
  justify-content: space-between;
  padding: 0px 35px 0 10px;
}
.ResultsFooter .buttons-section .wide-result.correct .check-mark .background {
  height: 40px;
  width: 40px;
}
.ResultsFooter .buttons-section .button-container {
  margin-right: 60px;
}
@media screen and (min-width: 600px) and (max-width: 819px) {
  .ResultsFooter .buttons-section .button-container {
    margin-right: 82px;
  }
}
@media screen and (max-width: 599px) {
  .ResultsFooter .buttons-section .button-container {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    padding-right: 20px;
  }
}
.ResultsFooter .buttons-section .button-container button {
  width: 200px;
  height: 60px;
  border-radius: 30px;
  color: white;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .ResultsFooter .buttons-section .button-container button {
    width: 120px;
    height: 35px;
  }
}
@media screen and (max-width: 599px) {
  .ResultsFooter .buttons-section .button-container button {
    margin-right: 0;
  }
}
.ResultsFooter .buttons-section .button-container button.correct {
  background-color: white;
  color: #63b768;
}
.ResultsFooter .buttons-section .button-container button.incorrect {
  background-color: white;
  color: #f75856;
}

.SubmitFooter {
  border-top: 1px solid #979797;
}
.SubmitFooter.dark-mode {
  border-top: 1px solid #333333;
  background: #444444;
}
.SubmitFooter.dark-mode .undo-button-container button {
  color: #d8d8d8;
}
.SubmitFooter.dark-mode .undo-button-container button p {
  color: #d8d8d8;
}
.SubmitFooter.dark-mode .check-button-container button {
  color: #222222;
}
.SubmitFooter.dark-mode .check-button-container button.ready {
  color: white;
}
.SubmitFooter .undo-button-container {
  display: flex;
  justify-content: center;
  width: 200px;
  height: 60px;
  margin-left: 60px;
}
@media screen and (max-width: 819px) {
  .SubmitFooter .undo-button-container {
    justify-content: flex-start;
  }
}
@media screen and (min-width: 600px) and (max-width: 819px) {
  .SubmitFooter .undo-button-container {
    margin-left: 82px;
  }
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .SubmitFooter .undo-button-container {
    margin-left: 50px;
  }
}
@media screen and (max-width: 599px) {
  .SubmitFooter .undo-button-container {
    width: auto;
    margin-left: 20px;
  }
}
.SubmitFooter .undo-button-container button {
  display: flex;
  align-items: center;
  width: auto;
  height: 60px;
}
.SubmitFooter .undo-button-container button :first-child {
  margin-right: 10px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .SubmitFooter .undo-button-container button :first-child {
    margin-right: 5px;
  }
}
.SubmitFooter .undo-button-container button p {
  font-family: "regular", sans-serif;
  font-size: 17px;
  color: black;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .SubmitFooter .undo-button-container button p {
    font-size: 13px;
  }
}
.SubmitFooter .undo-button-container button.inactive {
  opacity: 50%;
}
.SubmitFooter .check-button-container {
  display: flex;
  justify-content: center;
  padding-right: 60px;
}
@media screen and (min-width: 600px) and (max-width: 819px) {
  .SubmitFooter .check-button-container {
    padding-right: 82px;
  }
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .SubmitFooter .check-button-container {
    padding-right: 80px;
  }
}
@media screen and (max-width: 599px) {
  .SubmitFooter .check-button-container {
    padding-right: 20px;
    justify-content: flex-end;
  }
}
.SubmitFooter .check-button-container button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 60px;
  background-color: #dadbd5;
  border-radius: 30px;
  color: white;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .SubmitFooter .check-button-container button {
    width: 120px;
    height: 35px;
  }
}
.SubmitFooter .check-button-container button.ready {
  background-color: #faa80f;
}

.SettingsToggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px 0 6px;
}
.SettingsToggle.dark-mode label {
  color: #d8d8d8;
}
.SettingsToggle.dark-mode .toggle.on {
  background-color: #007b80;
}
.SettingsToggle.dark-mode .toggle.off {
  background-color: #444444;
}
.SettingsToggle label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
}
.SettingsToggle .toggle {
  position: relative;
  width: calc(24px * 1.6);
  height: 24px;
  margin-top: 4px;
  transition: background-color 110ms ease;
  border-radius: 20%;
  z-index: 1;
  cursor: pointer;
}
.SettingsToggle .toggle:before, .SettingsToggle .toggle:after {
  content: "";
  position: absolute;
  top: 0;
  width: 24px;
  height: 24px;
  background-color: inherit;
  border-radius: 50%;
  z-index: 2;
}
.SettingsToggle .toggle:before {
  left: -6px;
}
.SettingsToggle .toggle:after {
  right: -7px;
}
.SettingsToggle .toggle .toggle-button {
  position: absolute;
  width: 24px;
  height: 24px;
  transition: transform 100ms ease-in-out;
  border-radius: 50%;
  z-index: 3;
}
.SettingsToggle .toggle .toggle-button.left {
  transform: translateX(-6px);
}
.SettingsToggle .toggle .toggle-button.right {
  transform: translateX(24px);
}

.UnitIcon {
  border-radius: 50%;
  background: white;
}
.UnitIcon.dark-mode {
  background: #222222;
}
.UnitIcon.dark-mode-light {
  background: #444444;
}
.UnitIcon img {
  margin-top: -9px;
  padding: 1px;
  max-width: 160px;
}

.UnitIconDisplay {
  position: relative;
}
.UnitIconDisplay .UnitIconDisplay__lock {
  position: absolute;
  top: 61%;
  right: 0;
  height: 42px;
  width: 42px;
  z-index: 5;
}
.UnitIconDisplay .UnitIconDisplay__medal {
  position: absolute;
  top: 61%;
  right: -14px;
  height: 3rem;
  font-size: 2.5rem;
  z-index: 5;
  height: 47px;
  width: 47px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: white;
}
.UnitIconDisplay .UnitIconDisplay__gold-medal {
  position: absolute;
  top: 44%;
  right: -12%;
  height: 54px;
}
.UnitIconDisplay.dark-mode .UnitIconDisplay__medal {
  background-color: #222222;
}

.ZodiacList {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 510px;
}

.ZodiacListItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
.ZodiacListItem .background {
  width: 75px;
  height: 75px;
}
.ZodiacListItem.not-selected > * {
  opacity: 0.5;
}
.ZodiacListItem.dark-mode .background {
  background-color: #222222;
}
.ZodiacListItem.dark-mode p {
  color: #d8d8d8;
}
.ZodiacListItem .background {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: white;
}
.ZodiacListItem .background.selected {
  background-color: #00c7ce;
}
.ZodiacListItem .background img {
  width: 65px;
  height: 65px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-callout: none;
  -webkit-touch-callout: none;
}
.ZodiacListItem p {
  width: 100%;
  margin-top: 5px;
  text-align: center;
  font-family: "regular", sans-serif;
  font-size: 15px;
  color: #444444;
}

.AdminContentTable {
  width: 100%;
  font-family: "regular", sans-serif;
  font-size: 17px;
  /* Navigation at bottom of screen */
}
.AdminContentTable thead {
  background-color: #ffffff;
}
.AdminContentTable thead th {
  padding: 20px;
  text-align: left;
  font-family: bold;
}
.AdminContentTable thead th#publish-toggle-head {
  text-align: center;
}
.AdminContentTable tbody tr {
  color: #000000;
  background-color: #ffffff;
}
.AdminContentTable tbody tr td {
  padding: 14px 20px;
}
.AdminContentTable tbody tr:nth-child(even) {
  background-image: linear-gradient(to right, #f2f3ee, #ffffff);
}
.AdminCreateButton {
  /* Navigation at bottom of screen */
}
.AdminDeleteButton {
  /* Navigation at bottom of screen */
}
.CmsAttributes .attributes-container {
  display: flex;
  font-family: "regular", sans-serif;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}
.CmsAttributes .attributes-container .attribute-toggle {
  width: 250px;
  margin: 10px;
}
.CmsAttributes .attributes-container .attribute-toggle label {
  width: unset !important;
}

.InputLabel {
  display: block;
  font-family: "semiBold", sans-serif;
  font-size: 17px;
  cursor: pointer;
  margin-bottom: 10px;
}
.InputLabel.dark-mode {
  color: #d8d8d8;
}

.TextArea {
  width: 100%;
  height: 150px;
  padding: 15px;
  margin-bottom: 25px;
  background: #f2f3ee;
  border-radius: 8px;
  border: 2px solid #d8d8d8;
  /* Navigation at bottom of screen */
}
.TextArea.dark-mode {
  background: #444444;
  color: #d8d8d8;
  border: 2px solid #333333;
}
.TextInput {
  width: 100%;
  height: 48px;
  padding: 0 15px;
  margin-bottom: 25px;
  background: #f2f3ee;
  border-radius: 8px;
  border: 2px solid #d8d8d8;
  font-family: "regular", sans-serif;
  font-size: 15px;
  /* Navigation at bottom of screen */
}
.TextInput.dark-mode {
  background: #444444;
  color: #d8d8d8;
  border: 2px solid #333333;
}
.ActivitiesAudioSymbol {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  width: 44px;
  padding-right: 9px;
  border-radius: 50%;
  border: 1px solid #dadbd5;
  color: #dadbd5;
}
.ActivitiesAudioSymbol i {
  font-size: 19px;
}
.ActivitiesAudioSymbol.ActivitiesAudioSymbol--active {
  border: 1px solid #faa80f;
  color: white;
  background-color: #faa80f;
  padding: 0;
}
.ActivitiesAudioSymbol > * {
  height: 20px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .ActivitiesAudioSymbol {
    height: 30px;
    width: 30px;
  }
  .ActivitiesAudioSymbol > * {
    height: 15px;
  }
}

.AudioSymbol {
  position: relative;
  height: 50px;
  width: 50px;
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  .AudioSymbol {
    height: 34px;
    width: 34px;
  }
}
.AudioSymbol .background {
  position: absolute;
  top: 7px;
  right: 7px;
  height: 36px;
  width: 36px;
  border-radius: 50%;
  border: 2px solid #00c7ce;
}
@media screen and (max-width: 599px) {
  .AudioSymbol .background {
    top: 5px;
    right: 5px;
    height: 24px;
    width: 24px;
  }
}
.AudioSymbol .background > i {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 22px;
  width: 22px;
  margin: auto;
  color: #00c7ce;
  font-size: 17px;
  line-height: 22px;
}
@media screen and (max-width: 599px) {
  .AudioSymbol .background > i {
    height: 14px;
    width: 14px;
    font-size: 11px;
    line-height: 14px;
  }
}
.AudioSymbol .pulse-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-self: center;
  height: 50px;
  width: 50px;
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  .AudioSymbol .pulse-container {
    height: 34px;
    width: 34px;
  }
}
.AudioSymbol.active .pulse {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  animation: pulse 1.4s ease-out infinite;
  background-color: #bff1f3;
}
@media screen and (max-width: 599px) {
  .AudioSymbol.active .pulse {
    height: 34px;
    width: 34px;
  }
}
.AudioSymbol.active .background {
  border: none;
  background-color: #00c7ce;
}
.AudioSymbol.active .background > i {
  color: white;
}
.AudioSymbol.active.dark-mode .pulse {
  background-color: #007b80;
}
.AudioSymbol.active.dark-mode .background > i {
  color: #222222;
}

.LevelTabIcon {
  background: white;
  font-size: 22px;
}
.LevelTabIcon.dark-mode {
  background: #222222;
}
.LevelTabIcon.dark-mode-light {
  background: #444444;
}
@media screen and (max-width: 599px) {
  .LevelTabIcon {
    font-size: 18px;
  }
}
.LevelTabIcon.active {
  font-size: 28px;
}
@media screen and (max-width: 599px) {
  .LevelTabIcon.active {
    font-size: 24px;
  }
}
.LevelTabIcon.completed-icon .background {
  position: relative;
  height: 18px;
  width: 18px;
  background: white;
  border-radius: 50%;
}
.LevelTabIcon.completed-icon .background > * {
  position: absolute;
  top: -1px;
  right: -1px;
}
@media screen and (max-width: 599px) {
  .LevelTabIcon.completed-icon .background {
    height: 16px;
    width: 16px;
  }
  .LevelTabIcon.completed-icon .background > * {
    position: absolute;
    top: -1px;
    right: -1px;
  }
}
.LevelTabIcon.completed-icon.active .background {
  height: 24px;
  width: 24px;
}
.LevelTabIcon.completed-icon.active .background > * {
  position: absolute;
  top: -1px;
  right: -1px;
}
@media screen and (max-width: 599px) {
  .LevelTabIcon.completed-icon.active .background {
    height: 22px;
    width: 22px;
  }
  .LevelTabIcon.completed-icon.active .background > * {
    position: absolute;
    top: -1px;
    right: -1px;
  }
}

.CorrectCheckMark {
  position: relative;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.CorrectCheckMark > i {
  position: relative;
  z-index: 2;
  font-size: 40px;
  color: #63b768;
}
.CorrectCheckMark .CorrectCheckMark__background {
  position: absolute;
  top: 9px;
  left: 9px;
  z-index: 1;
  width: 22px;
  height: 22px;
}
.CorrectCheckMark.CorrectCheckMark__not-started > i {
  color: #dadbd5;
}
.CorrectCheckMark.dark-mode:not(.not-started) .CorrectCheckMark__background {
  background-color: white;
}
.CorrectCheckMark.dark-mode.CorrectCheckMark__not-started .CorrectCheckMark__background {
  background-color: #444444;
}
.CorrectCheckMark.dark-mode.CorrectCheckMark__not-started > i {
  color: #333333;
}
.CorrectCheckMark.dark-mode-light .CorrectCheckMark__background {
  background-color: #444444;
}

.MasteredDueStats {
  font-family: "semiBold", sans-serif;
  font-size: 13px;
  color: #444444;
  width: 100%;
  margin-top: 20px;
}
.MasteredDueStats.dark-mode {
  color: #ffffff;
}
.MasteredDueStats.centered {
  text-align: center;
}
.MasteredDueStats .row {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.MasteredFractionStat {
  font-family: "regular", sans-serif;
  font-size: 13px;
  color: #444444;
  line-height: 17px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.MasteredFractionStat.dark-mode {
  color: #d8d8d8;
}
.MasteredFractionStat.centered {
  text-align: center;
}
.MasteredFractionStat.label {
  display: block;
}
.MasteredFractionStat > .icon {
  margin-right: 10px;
}
.MasteredFractionStat .mastered-number {
  font-family: "semiBold", sans-serif;
}
.MasteredFractionStat .mastered-number.in-progress {
  color: #faa80f;
}
.MasteredFractionStat .mastered-number.complete {
  color: #63b768;
}

.Modal {
  padding: 60px 40px;
  font-family: "regular", sans-serif;
  color: #666666;
  text-align: center;
  position: relative;
  border-radius: 8px;
  z-index: 100001;
}
.Modal h1 {
  font-size: 21px;
  font-family: "semiBold", sans-serif;
  color: #000000;
  padding: 35px 0 25px;
}
.Modal .close-button {
  position: absolute;
  color: #000000;
  top: 20px;
  right: 20px;
}
.Modal.light-mode {
  background-color: #f2f3ee;
}
.Modal.dark-mode {
  background-color: #f2f3ee;
}

.QuizResultsDeck {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  width: 100%;
  height: 100%;
  background: white;
}
.QuizResultsDeck.dark-mode {
  background: #222222;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .QuizResultsDeck {
    padding: 20px;
  }
}
.QuizResultsDeck .view-port {
  max-width: 777px;
}
.QuizResultsDeck .view-port .gradient {
  top: 0;
  bottom: 0;
  width: max((100% - 720px) / 2, 20px);
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .QuizResultsDeck .view-port .gradient {
    width: max((100vw - 720px) / 2, 20px);
  }
}
.QuizResultsDeck .view-port .results-card-container {
  display: grid;
  grid-template-columns: repeat(3, 100%);
  grid-gap: 200px;
  transition: transform 0.5s ease-in-out;
}

.CourseCompleteCard {
  height: 100%;
  max-height: 850px;
  width: 580px;
  margin: auto;
  overflow: hidden;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .CourseCompleteCard {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-height: none;
    width: calc(100% - 20px);
    max-width: 580px;
  }
}
.CourseCompleteCard.dark-mode .card {
  background: #444444;
  color: white;
}
.CourseCompleteCard .card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  height: 100%;
  max-height: calc(100% - 80px);
  padding: 30px 30px 15px;
  margin-bottom: 30px;
  background: #f2f3ee;
  border-radius: 8px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .CourseCompleteCard .card {
    height: auto;
    min-height: 465px;
    max-height: calc(100% - 60px);
    margin: 0 auto 10px;
    padding: 20px 20px 0;
  }
}
.CourseCompleteCard .card.fly-in-right {
  animation-name: fly-in-right;
  animation-duration: 500ms;
  animation-timing-function: cubic-bezier(0.42, 0, 0.62, 1.43);
  animation-delay: 750ms;
  animation-fill-mode: both;
}
.CourseCompleteCard .card .course-logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 40px 0 10px;
}
.CourseCompleteCard .card .course-logo-container .course-title {
  margin-top: 35px;
  width: 100%;
  text-align: center;
  font-size: 22px;
  font-family: "semiBold", sans-serif;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .CourseCompleteCard .card .course-logo-container .course-title {
    margin-top: 25px;
    font-size: 20px;
  }
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .CourseCompleteCard .card .course-logo-container {
    margin-top: 20px;
  }
  .CourseCompleteCard .card .levels-bar-container {
    margin-bottom: 30px;
  }
}
.CourseCompleteCard .card .text {
  display: flex;
  flex-direction: column;
  align-content: center;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .CourseCompleteCard .card .text {
    width: 100%;
  }
}
.CourseCompleteCard .card .text h1 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 26px;
  font-family: "semiBold", sans-serif;
  opacity: 0;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .CourseCompleteCard .card .text h1 {
    margin-bottom: 10px;
    font-size: 22px;
  }
}
.CourseCompleteCard .card .text h2 {
  line-height: 19px;
  text-align: center;
  font-size: 17px;
  font-family: "regular", sans-serif;
  opacity: 0;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .CourseCompleteCard .card .text h2 {
    width: 100%;
    margin-bottom: 20px;
    line-height: 17px;
    font-size: 15px;
  }
}
.CourseCompleteCard .card .text.fade-in h1 {
  animation-name: fade-in;
  animation-duration: 1500ms;
  animation-fill-mode: both;
}
.CourseCompleteCard .card .text.fade-in h2 {
  animation-name: fade-in;
  animation-delay: 500ms;
  animation-duration: 1500ms;
  animation-fill-mode: both;
}
@keyframes fly-in-right {
  0% {
    transform: translateX(200%);
  }
  100% {
    transform: none;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.FlashcardMasteryResultsCard {
  height: 100%;
  max-height: 850px;
  width: 580px;
  margin: auto;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .FlashcardMasteryResultsCard {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-height: none;
    width: calc(100% - 20px);
    max-width: 580px;
  }
}
.FlashcardMasteryResultsCard.dark-mode .card {
  background: #444444;
  color: white;
}
.FlashcardMasteryResultsCard .card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-items: space-around;
  width: 100%;
  height: 100%;
  max-height: calc(100% - 80px);
  padding: 50px 30px 15px;
  margin-bottom: 30px;
  background: #f2f3ee;
  border-radius: 8px;
  animation-name: fly-in-right;
  animation-duration: 500ms;
  animation-timing-function: cubic-bezier(0.42, 0, 0.62, 1.43);
  animation-delay: 100ms;
  animation-fill-mode: both;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .FlashcardMasteryResultsCard .card {
    height: auto;
    min-height: 465px;
    max-height: calc(100% - 70px);
    margin: 0 auto 10px;
    padding: 10px 20px 30px;
  }
}
@keyframes fly-in-right {
  0% {
    transform: translateX(200%);
  }
  100% {
    transform: none;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.LevelCompleteCard {
  height: 100%;
  max-height: 850px;
  width: 580px;
  margin: auto;
  overflow: hidden;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .LevelCompleteCard {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-height: none;
    width: calc(100% - 20px);
    max-width: 580px;
  }
}
.LevelCompleteCard.dark-mode .card {
  background: #444444;
  color: white;
}
.LevelCompleteCard .card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  height: 100%;
  max-height: calc(100% - 80px);
  padding: 30px 30px 15px;
  margin-bottom: 30px;
  background: #f2f3ee;
  border-radius: 8px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .LevelCompleteCard .card {
    height: auto;
    min-height: 465px;
    max-height: calc(100% - 60px);
    margin: 0 auto 10px;
    padding: 20px 20px 0;
  }
}
.LevelCompleteCard .card.fly-in-right {
  animation-name: fly-in-right;
  animation-duration: 500ms;
  animation-timing-function: cubic-bezier(0.42, 0, 0.62, 1.43);
  animation-delay: 750ms;
  animation-fill-mode: both;
}
.LevelCompleteCard .card .course-logo-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 40px 0 10px;
}
.LevelCompleteCard .card .levels-bar-container {
  height: 100px;
  width: 100%;
  margin-bottom: 50px;
  opacity: 0;
}
.LevelCompleteCard .card .levels-bar-container.fade-in {
  animation-name: fade-in;
  animation-delay: 1800ms;
  animation-duration: 700ms;
  animation-fill-mode: both;
}
.LevelCompleteCard .card .levels-bar-container .levels-bar {
  height: 100px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .LevelCompleteCard .card .course-logo-container {
    margin-top: 20px;
  }
  .LevelCompleteCard .card .levels-bar-container {
    margin-bottom: 30px;
  }
}
.LevelCompleteCard .card .text {
  display: flex;
  flex-direction: column;
  align-content: center;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .LevelCompleteCard .card .text {
    width: 100%;
  }
}
.LevelCompleteCard .card .text h1 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 26px;
  font-family: "semiBold", sans-serif;
  opacity: 0;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .LevelCompleteCard .card .text h1 {
    margin-bottom: 10px;
    font-size: 22px;
  }
}
.LevelCompleteCard .card .text h2 {
  line-height: 19px;
  text-align: center;
  font-size: 17px;
  font-family: "regular", sans-serif;
  opacity: 0;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .LevelCompleteCard .card .text h2 {
    width: 100%;
    margin-bottom: 20px;
    line-height: 17px;
    font-size: 15px;
  }
}
.LevelCompleteCard .card .text.fade-in h1 {
  animation-name: fade-in;
  animation-duration: 1500ms;
  animation-fill-mode: both;
}
.LevelCompleteCard .card .text.fade-in h2 {
  animation-name: fade-in;
  animation-delay: 500ms;
  animation-duration: 1500ms;
  animation-fill-mode: both;
}
@keyframes fly-in-right {
  0% {
    transform: translateX(200%);
  }
  100% {
    transform: none;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.LevelUpCard {
  height: 100%;
  max-height: 850px;
  width: 580px;
  margin: auto;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .LevelUpCard {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-height: none;
    width: calc(100% - 20px);
    max-width: 580px;
  }
}
.LevelUpCard.dark-mode .card {
  background: #444444;
  color: white;
}
.LevelUpCard .card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  max-height: calc(100% - 80px);
  padding: 30px;
  margin-bottom: 30px;
  background: #f2f3ee;
  border-radius: 8px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .LevelUpCard .card {
    height: auto;
    min-height: 465px;
    max-height: calc(100% - 60px);
    margin: 0 auto 10px;
    padding: 20px;
  }
}
.LevelUpCard .card.fly-in-right {
  animation-name: fly-in-right;
  animation-duration: 500ms;
  animation-timing-function: cubic-bezier(0.42, 0, 0.62, 1.43);
  animation-delay: 1000ms;
  animation-fill-mode: both;
}
.LevelUpCard .card .text {
  display: flex;
  flex-direction: column;
  align-content: center;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .LevelUpCard .card .text {
    margin: 30px auto 0;
  }
}
.LevelUpCard .card .text h1 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 26px;
  font-family: "semiBold", sans-serif;
  opacity: 0;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .LevelUpCard .card .text h1 {
    margin-bottom: 15px;
    font-size: 24px;
  }
}
.LevelUpCard .card .text h2 {
  line-height: 19px;
  text-align: center;
  font-size: 17px;
  font-family: "regular", sans-serif;
  opacity: 0;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .LevelUpCard .card .text h2 {
    width: 100%;
    margin-bottom: 20px;
    line-height: 17px;
    font-size: 15px;
  }
}
.LevelUpCard .card .text.fade-in h1 {
  animation-name: fade-in;
  animation-duration: 1500ms;
  animation-fill-mode: both;
}
.LevelUpCard .card .text.fade-in h2 {
  animation-name: fade-in;
  animation-delay: 1000ms;
  animation-duration: 1500ms;
  animation-fill-mode: both;
}
@keyframes fly-in-right {
  0% {
    transform: translateX(200%);
  }
  100% {
    transform: none;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.ResultsCard {
  height: 100%;
  max-height: 850px;
  width: 580px;
  margin: auto;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .ResultsCard {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-height: none;
    width: calc(100% - 20px);
    max-width: 580px;
  }
}
.ResultsCard.dark-mode .card {
  background: #444444;
  color: white;
}
.ResultsCard .card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  max-height: calc(100% - 80px);
  padding: 50px 30px 15px;
  margin-bottom: 30px;
  background: #f2f3ee;
  border-radius: 8px;
  animation-name: fly-in-right;
  animation-duration: 500ms;
  animation-timing-function: cubic-bezier(0.42, 0, 0.62, 1.43);
  animation-delay: 100ms;
  animation-fill-mode: both;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .ResultsCard .card {
    height: auto;
    min-height: 465px;
    max-height: calc(100% - 70px);
    margin: 0 auto 10px;
    padding: 10px 20px 0;
  }
}
@keyframes fly-in-right {
  0% {
    transform: translateX(200%);
  }
  100% {
    transform: none;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.UnitCompleteCard {
  height: 100%;
  max-height: 850px;
  width: 580px;
  margin: auto;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .UnitCompleteCard {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-height: none;
    width: calc(100% - 20px);
    max-width: 580px;
  }
}
.UnitCompleteCard.dark-mode .card {
  background: #444444;
  color: white;
}
.UnitCompleteCard .card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  height: 100%;
  max-height: calc(100% - 80px);
  padding: 30px 30px 15px;
  margin-bottom: 30px;
  background: #f2f3ee;
  border-radius: 8px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .UnitCompleteCard .card {
    height: fit-content;
    min-height: 465px;
    max-height: calc(100% - 60px);
    margin: 0 auto 10px;
    padding: 20px 20px 0;
  }
}
.UnitCompleteCard .card.fly-in-right {
  animation-name: fly-in-right;
  animation-duration: 500ms;
  animation-timing-function: cubic-bezier(0.42, 0, 0.62, 1.43);
  animation-delay: 1000ms;
  animation-fill-mode: both;
}
.UnitCompleteCard .card .unit-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .UnitCompleteCard .card .unit-info {
    margin-bottom: 15px;
  }
}
.UnitCompleteCard .card .unit-info h1 {
  margin-top: 20px;
  text-align: center;
  font-size: 22px;
  font-family: "semiBold", sans-serif;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .UnitCompleteCard .card .unit-info h1 {
    margin-top: 25px;
    font-size: 20px;
  }
}
.UnitCompleteCard .card .unit-info h2 {
  margin-top: 10px;
  line-height: 19px;
  text-align: center;
  font-size: 17px;
  font-family: "regular", sans-serif;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .UnitCompleteCard .card .unit-info h2 {
    width: 100%;
    margin-top: 5px;
    line-height: 17px;
    font-size: 15px;
  }
}
.UnitCompleteCard .card .text {
  display: flex;
  flex-direction: column;
  align-content: center;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .UnitCompleteCard .card .text {
    width: 100%;
  }
}
.UnitCompleteCard .card .text h1 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 26px;
  font-family: "semiBold", sans-serif;
  opacity: 0;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .UnitCompleteCard .card .text h1 {
    margin-bottom: 10px;
    font-size: 22px;
  }
}
.UnitCompleteCard .card .text h2 {
  line-height: 19px;
  text-align: center;
  font-size: 17px;
  font-family: "regular", sans-serif;
  opacity: 0;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .UnitCompleteCard .card .text h2 {
    width: 100%;
    margin-bottom: 20px;
    line-height: 17px;
    font-size: 15px;
  }
}
.UnitCompleteCard .card .text.fade-in h1 {
  animation-name: fade-in;
  animation-duration: 1500ms;
  animation-fill-mode: both;
}
.UnitCompleteCard .card .text.fade-in h2 {
  animation-name: fade-in;
  animation-delay: 500ms;
  animation-duration: 1500ms;
  animation-fill-mode: both;
}
@keyframes fly-in-right {
  0% {
    transform: translateX(200%);
  }
  100% {
    transform: none;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.CourseCompleteIcon {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.CourseCompleteIcon.fade-in .check-mark-icon {
  animation-name: fade-in-icon;
  animation-duration: 1500ms;
  animation-fill-mode: both;
}
.CourseCompleteIcon .check-mark-icon {
  position: absolute;
  top: 136px;
  right: 15px;
  height: 54px;
  font-size: 2.5rem;
  z-index: 5;
  opacity: 0;
}
.CourseCompleteIcon .check-mark-icon .background {
  background-color: #f2f3ee;
  height: 60px;
  width: 60px;
}
.CourseCompleteIcon .check-mark-icon .background > * {
  top: 0px;
  right: -1px;
  bottom: 0;
  left: 0;
  height: 51px;
  width: 52px;
}
.CourseCompleteIcon .check-mark-icon.dark-mode-light .background {
  background-color: #444444;
}
.CourseCompleteIcon .check-mark-icon.dark-mode-light .background .check-mark-background {
  top: 0px;
  right: -1px;
  bottom: 0;
  left: 0;
  height: 40px;
  width: 40px;
}
.CourseCompleteIcon .check-mark-icon.dark-mode-light .background .check-mark-background > * {
  right: -4px;
  height: 49px;
  width: 48px;
}
.CourseCompleteIcon h1 {
  margin-top: 35px;
  width: 100%;
  text-align: center;
  font-size: 22px;
  font-family: "semiBold", sans-serif;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .CourseCompleteIcon h1 {
    margin-top: 25px;
    font-size: 20px;
  }
}

.CourseIcon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  width: 200px;
  border-radius: 50%;
}
.CourseIcon img {
  width: 100px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .CourseIcon.narrow-change {
    height: 150px;
    width: 150px;
  }
  .CourseIcon.narrow-change img {
    width: 75px;
  }
}

.ResultsDivider {
  width: 80%;
  margin: 0 auto;
  border-top: 2px solid #dadbd5;
  margin: 25px auto;
  animation-name: fade-in;
  animation-duration: 500ms;
  animation-delay: 4500ms;
  animation-fill-mode: both;
}
.ResultsDivider.mastery {
  animation-delay: 3000ms;
}
.ResultsDivider.dark-mode {
  border-top: 2px solid #333333;
}

.FlashcardSummary {
  font-family: "regular", sans-serif;
  font-size: 17px;
  color: #444444;
  line-height: 19px;
  animation-name: fadein;
  animation-duration: 1000ms;
  animation-delay: 3000ms;
  animation-fill-mode: both;
}
.FlashcardSummary.dark-mode {
  color: #ffffff;
}
.FlashcardSummary.dark-mode ul {
  color: #d8d8d8;
}
.FlashcardSummary h3 {
  margin: 0;
}
.FlashcardSummary h3 span {
  font-size: 13px;
  font-style: italic;
}
.FlashcardSummary ul {
  list-style-position: inside;
  margin: 7px 0 10px 20px;
  padding: 0;
}
.FlashcardSummary .padding {
  height: 10px;
  width: 100%;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .FlashcardSummary {
    font-size: 15px;
    line-height: 17px;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.LevelUpUserProgress {
  position: relative;
  display: flex;
  opacity: 0;
  margin-bottom: 90px;
  z-index: 2000;
}
.LevelUpUserProgress.fade-in {
  animation-name: fade-in;
  animation-duration: 1500ms;
  animation-fill-mode: both;
}
.LevelUpUserProgress.enlarge {
  opacity: 1;
  animation-name: enlarge;
  animation-duration: 1000ms;
  animation-fill-mode: both;
}
.LevelUpUserProgress.final-position {
  opacity: 1;
  animation-name: progress-final-position;
  animation-duration: 1000ms;
  animation-fill-mode: both;
}
.LevelUpUserProgress .avatar-path {
  height: 240px;
}
.LevelUpUserProgress .avatar-image {
  height: 200px;
  margin-bottom: 10px;
}
.LevelUpUserProgress .current-level-circle-background {
  position: absolute;
  top: 170px;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 60px;
  background-color: #f2f3ee;
  border-radius: 50%;
}
.LevelUpUserProgress .current-level-circle-background.dark-mode {
  background-color: #444444;
}
.LevelUpUserProgress .current-level-circle-background.enlarge {
  animation-name: enlarge;
  animation-duration: 1000ms;
  animation-fill-mode: both;
}
.LevelUpUserProgress .current-level-circle-background .current-level-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  width: 48px;
  border-radius: 50%;
  background-color: #faa80f;
  transition: background-color 0.5s;
}
.LevelUpUserProgress .current-level-circle-background .current-level-circle.complete {
  background-color: #63b768;
  transition: background-color 0.5s;
}
.LevelUpUserProgress .current-level-circle-background .current-level-circle .current-level-number {
  padding-top: 2px;
  font-family: "semiBold", sans-serif;
  color: white;
  font-size: 30px;
}
.LevelUpUserProgress .current-level-circle-background .current-level-circle .current-level-number.three-digit {
  padding-top: 0;
  font-size: 22px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .LevelUpUserProgress {
    margin-bottom: 40px;
  }
  .LevelUpUserProgress .avatar-path {
    height: 160px;
  }
  .LevelUpUserProgress .avatar-image {
    height: 120px;
    margin-bottom: 10px;
  }
  .LevelUpUserProgress .current-level-circle-background {
    top: 108px;
    height: 50px;
    width: 50px;
  }
  .LevelUpUserProgress .current-level-circle-background .current-level-circle {
    height: 40px;
    width: 40px;
  }
  .LevelUpUserProgress .current-level-circle-background .current-level-circle .current-level-number {
    font-size: 22px;
  }
  .LevelUpUserProgress .current-level-circle-background .current-level-circle .current-level-number.three-digit {
    padding-top: 0;
    font-size: 18px;
  }
}
@keyframes enlarge {
  0% {
    transform: none;
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: none;
  }
}
@keyframes progress-final-position {
  0% {
    transform: none;
  }
  100% {
    transform: scale(0.7);
  }
}

.ResultLine {
  display: flex;
  min-height: 30px;
  width: 100%;
  opacity: 0;
  animation-duration: 500ms;
  animation-fill-mode: both;
  margin-bottom: 20px;
}
.ResultLine.dark-mode .grey-out-xp-days {
  background: #444444;
  border: 2px solid #222222;
  color: #222222;
}
.ResultLine .icon {
  display: flex;
  align-items: center;
  height: 100%;
}
.ResultLine .icon .flashcard-icon {
  width: 22px;
  margin: 0 17px 0 -3px;
}
.ResultLine .icon .check-mark-icon-container {
  position: relative;
  height: 22px;
  width: 22px;
  margin-right: 17px;
  font-size: 26px;
  border-radius: 100%;
  background: white;
}
.ResultLine .icon .check-mark-icon-container .lesson-complete {
  position: absolute;
  top: -2px;
  left: -2px;
  color: #63b768;
}
.ResultLine .icon .medal-earned {
  margin-left: -5px;
  margin-right: 12px;
  height: 32px;
}
.ResultLine .icon .streak-increased {
  margin-left: -2px;
  margin-right: 19px;
  font-size: 26px;
  color: #f4593e;
}
.ResultLine p {
  display: flex;
  align-items: center;
  height: 100%;
  font-family: "regular", sans-serif;
  font-size: 19px;
}
.ResultLine .xp,
.ResultLine .grey-out-xp-days {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 30px;
  margin-left: auto;
  border-radius: 34px;
  font-family: "semiBold", sans-serif;
}
.ResultLine .xp {
  background: #faa80f;
  color: white;
  font-size: 15px;
  transform-origin: center right;
  animation-name: shrink;
  animation-delay: 7500ms;
  animation-duration: 1500ms;
  animation-fill-mode: both;
}
.ResultLine .xp.mastery {
  animation-delay: 5000ms;
}
.ResultLine .grey-out-xp-days {
  background: #f2f3ee;
  border: 2px solid #d8d8d8;
  color: #d8d8d8;
  font-size: 13px;
  animation-name: fade-in;
  animation-duration: 500ms;
  animation-delay: 1000ms;
  animation-fill-mode: both;
}
.ResultLine .grey-out-xp-days.four-digit-days {
  font-size: 11px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .ResultLine {
    display: grid;
    grid-template-columns: auto 1fr 70px;
    margin-bottom: 10px;
  }
  .ResultLine .icon {
    height: auto;
  }
  .ResultLine .icon .check-mark-icon-container {
    height: 16px;
    width: 16px;
    font-size: 20px;
  }
  .ResultLine .icon .medal-earned {
    height: 26px;
  }
  .ResultLine .icon .streak-increased {
    font-size: 20px;
  }
  .ResultLine p {
    font-size: 15px;
    min-height: fit-content;
  }
  .ResultLine .xp {
    width: 100%;
  }
}
@keyframes shrink {
  0% {
    opacity: 1;
    transform: none;
  }
  70% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    border-radius: 100%;
    transform: scale(0.2, 0.5);
    opacity: 0;
  }
}

.ResultsInformation {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 2;
}
.ResultsInformation.dark-mode h3 {
  color: #d8d8d8;
}
.ResultsInformation h1 {
  font-size: 25px;
  font-family: "semiBold", sans-serif;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .ResultsInformation h1 {
    align-self: flex-start;
    width: calc(100% - 70px);
    margin-bottom: 20px;
    font-size: 19px;
  }
}
.ResultsInformation .thumbs-up-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  margin-bottom: 15px;
  border: 15px solid #00c7ce;
  border-radius: 50%;
  animation-name: fade-in-drop;
  animation-duration: 1000ms;
  animation-delay: 1000ms;
  animation-fill-mode: both;
}
.ResultsInformation .thumbs-up-container .thumbs-up {
  margin-bottom: 18px;
  font-size: 100px;
  color: #00c7ce;
}
.ResultsInformation .progress-circle {
  position: absolute;
  top: 115px;
  left: calc(50% - 100px);
}
.ResultsInformation .progress-circle .score-path {
  height: 200px;
}
.ResultsInformation .progress-circle .percentage {
  margin-bottom: 10px;
  font-size: 48px;
  font-family: "regular", sans-serif;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .ResultsInformation .progress-circle {
    top: 80px;
    left: calc(50% - 50px);
    animation-name: fade-out-small;
    animation-duration: 1000ms;
    animation-delay: 3000ms;
    animation-fill-mode: forwards;
  }
  .ResultsInformation .progress-circle .score-path {
    height: 100px;
  }
  .ResultsInformation .progress-circle .percentage {
    font-size: 28px;
    margin-bottom: 7px;
  }
}
.ResultsInformation .medal {
  display: flex;
  align-items: center;
  flex-grow: 2;
  height: 150px;
  margin: 30px 0;
}
.ResultsInformation .medal .medal-img {
  height: 150px;
}
.ResultsInformation .medal .check-mark-container {
  position: relative;
  height: 140px;
  width: 140px;
  margin-top: 5px;
  background: white;
  border-radius: 100%;
}
.ResultsInformation .medal .check-mark-container .check-mark {
  position: absolute;
  top: -3px;
  left: -4px;
  height: 150px;
  width: 150px;
  font-size: 150px;
  color: #63b768;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .ResultsInformation .medal {
    height: 100px;
    margin: 15px 0;
    animation-name: fade-in-drop;
    animation-duration: 1000ms;
    animation-delay: 3000ms;
    animation-fill-mode: both;
  }
  .ResultsInformation .medal .medal-img {
    height: 100px;
  }
  .ResultsInformation .medal .check-mark-container {
    height: 90px;
    width: 90px;
  }
  .ResultsInformation .medal .check-mark-container .check-mark {
    height: 100px;
    width: 100px;
    font-size: 100px;
  }
}
.ResultsInformation h2 {
  margin-bottom: 20px;
  font-size: 35px;
  font-family: "semiBold", sans-serif;
  animation-name: fade-in;
  animation-duration: 1000ms;
  animation-delay: 4000ms;
  animation-fill-mode: both;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .ResultsInformation h2 {
    margin-bottom: 15px;
    font-size: 24px;
  }
}
.ResultsInformation h2.mastery {
  animation-delay: 2500ms;
}
.ResultsInformation .score-fraction {
  margin-bottom: 15px;
  height: 26px;
  font-size: 26px;
  font-family: "regular", sans-serif;
  animation-name: fade-in;
  animation-duration: 1000ms;
  animation-delay: 4000ms;
  animation-fill-mode: both;
}
.ResultsInformation .score-fraction .fraction-number {
  font-family: "bold", sans-serif;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .ResultsInformation .score-fraction {
    margin-bottom: 10px;
    font-size: 20px;
  }
}
.ResultsInformation h3 {
  width: 90%;
  margin-bottom: 40px;
  text-align: center;
  line-height: 19px;
  color: #444444;
  font-size: 17px;
  font-family: "regular", sans-serif;
  animation-name: fade-in;
  animation-duration: 500ms;
  animation-delay: 4500ms;
  animation-fill-mode: both;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .ResultsInformation h3 {
    width: 100%;
    margin-bottom: 10px;
    line-height: 17px;
    font-size: 15px;
  }
}
.ResultsInformation h3.mastery {
  margin-bottom: 15px;
  animation-delay: 3000ms;
}
@keyframes fade-out-small {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(0);
  }
}
@keyframes fade-in-drop {
  0% {
    opacity: 0;
    transform: scale(0) translateY(-300px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

.ResultsLines {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: calc(100% - 410px);
  max-height: 190px;
  width: 100%;
  padding: 0 10px;
}
.ResultsLines .result-lines-container {
  display: flex;
  flex-direction: column;
  margin-bottom: -20px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .ResultsLines {
    height: calc(100% - 285px);
    max-height: 190px;
  }
  .ResultsLines .result-lines-container {
    margin-bottom: -10px;
  }
}

.UnitProgressResult {
  width: 200px;
  height: 200px;
  position: relative;
}
.UnitProgressResult.enlarge {
  animation-name: enlarge-with-translate;
  animation-duration: 1500ms;
  animation-fill-mode: both;
}
.UnitProgressResult .unit-icon {
  background: #f2f3ee;
}
.UnitProgressResult .unit-icon.dark-mode-light {
  background: #444444;
}
.UnitProgressResult .unit-icon img {
  width: 174px;
  height: 174px;
  margin-top: -10px;
  padding: 0;
}
.UnitProgressResult .check-mark-icon {
  position: absolute;
  top: 135px;
  right: 15px;
  height: 54px;
  font-size: 2.5rem;
  z-index: 5;
  opacity: 0;
}
.UnitProgressResult .check-mark-icon.fade-in-icon {
  animation-name: fade-in-icon;
  animation-duration: 1500ms;
  animation-fill-mode: both;
}
.UnitProgressResult .check-mark-icon .background {
  background-color: #f2f3ee;
  height: 60px;
  width: 60px;
}
.UnitProgressResult .check-mark-icon .background > * {
  top: 0px;
  right: -1px;
  bottom: 0;
  left: 0;
  height: 51px;
  width: 52px;
}
.UnitProgressResult .check-mark-icon.dark-mode-light .background {
  background-color: #444444;
}
.UnitProgressResult .check-mark-icon.dark-mode-light .background .check-mark-background {
  top: 0px;
  right: -1px;
  bottom: 0;
  left: 0;
  height: 40px;
  width: 40px;
}
.UnitProgressResult .check-mark-icon.dark-mode-light .background .check-mark-background > * {
  right: -4px;
  height: 50px;
  width: 50px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .UnitProgressResult {
    width: 150px;
    height: 150px;
  }
  .UnitProgressResult.enlarge {
    animation-name: enlarge;
    animation-duration: 1500ms;
    animation-fill-mode: both;
  }
  .UnitProgressResult .unit-icon img {
    width: 124px;
    height: 124px;
  }
  .UnitProgressResult .check-mark-icon {
    top: 102px;
    right: 1px;
  }
  .UnitProgressResult .check-mark-icon .background {
    height: 46px;
    width: 46px;
  }
  .UnitProgressResult .check-mark-icon .background > * {
    top: 0px;
    right: 0px;
    bottom: 0;
    left: 0;
    height: 36px;
    width: 36px;
  }
}
@keyframes enlarge-with-translate {
  0% {
    transform: none;
  }
  50% {
    transform: scale(1.3) translateY(-15px);
  }
  100% {
    transform: none;
  }
}
@keyframes enlarge {
  0% {
    transform: none;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: none;
  }
}
@keyframes fade-in-icon {
  0% {
    opacity: 0;
    transform: scale(2);
  }
  100% {
    opacity: 100;
    transform: none;
  }
}

.UserContainer {
  position: absolute;
  top: -10px;
  right: -10px;
  height: 100px;
  width: 100px;
  background: white;
  border-radius: 50% 0 50% 50%;
}
.UserContainer.dark-mode {
  background: #222222;
}
.UserContainer.enlarge {
  animation-name: enlarge;
  animation-duration: 1000ms;
}
.UserContainer .user-path {
  position: absolute;
  top: 7px;
  left: 7px;
  height: 86px;
}
.UserContainer .avatar-image {
  position: absolute;
  top: 119px;
  height: 62px;
}
.UserContainer .xp-dot {
  position: absolute;
  bottom: 3px;
  right: 42px;
  height: 15px;
  width: 15px;
  border-radius: 100%;
  background: #faa80f;
  opacity: 0;
  animation-duration: 2750ms;
  animation-fill-mode: none;
  transition: transform 1.6s ease-in-out;
}
@keyframes dot-fade {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes enlarge {
  0% {
    transform: none;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: none;
  }
}

.ReviewDeck {
  background: white;
}
.ReviewDeck.mastery .page-content {
  grid-template-rows: 125px calc(100% - 155px + 30px - 160px) 160px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .ReviewDeck.mastery .page-content {
    grid-template-rows: 115px calc(100% - 145px + 30px - 85px) 85px;
  }
}
.ReviewDeck .audio-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  max-height: 100%;
  min-height: 100%;
  max-width: 777px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  background: #f2f3ee;
  border-radius: 8px;
  overflow: hidden;
  user-select: none;
  font-family: "regular", sans-serif;
}
.ReviewDeck .audio-card h1 {
  font-family: "semiBold", sans-serif;
  font-size: 19px;
}
.ReviewDeck .audio-card h1,
.ReviewDeck .audio-card .lecture {
  color: black;
}
.ReviewDeck .audio-card .lecture {
  display: flex;
}
.ReviewDeck .audio-card .lecture p {
  margin-left: 20px;
}
.ReviewDeck .audio-card .audio-footer {
  width: 100%;
}
.ReviewDeck.dark-mode {
  background: #222222;
}
.ReviewDeck.dark-mode h1,
.ReviewDeck.dark-mode .lecture {
  color: white;
}
.ReviewDeck.dark-mode .audio-card {
  background: #444444;
}
.ReviewDeck .page-content {
  display: grid;
  grid-template-rows: 155px calc(100% - 155px - 160px) 160px;
  height: 100%;
  max-height: calc(155px + 700px + 160px);
  max-width: 843px;
  padding: 20px 33px 0 33px;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .ReviewDeck .page-content {
    grid-template-rows: 145px calc(100% - 145px - 85px) 85px;
    width: calc(100vw - 66px);
    padding: 0;
  }
}
.ReviewDeck .page-content .view-port {
  margin: auto;
  width: 100%;
  height: 100%;
  max-width: 512px;
  max-height: 700px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .ReviewDeck .page-content .view-port {
    width: calc(100vw - 66px);
  }
}
.ReviewDeck .page-content .view-port .card-container {
  position: relative;
  display: grid;
  grid-gap: 200px;
  width: 100%;
  transition: transform 0.5s ease-in-out;
}
.ReviewDeck .page-content .view-port .card-container .recorder-container {
  max-width: 512px;
  position: absolute;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
}
.ReviewDeck .page-content .view-port .card-container .recorder-container.isSideTwo {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.2s ease-in;
}
.ReviewDeck .page-content .view-port .card-container .recorder-container.note-revealed {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .ReviewDeck .page-content .view-port .card-container .recorder-container {
    bottom: 15px;
  }
}
.ReviewDeck .page-content .view-port .card-container .recorder-container.no-recorder {
  display: none;
}
.ReviewDeck .page-content .footer-container {
  display: flex;
  align-items: flex-start;
  width: 100%;
  height: 100%;
}

.ReviewDeckHeader {
  width: 100%;
  border: none;
  background: white;
  color: black;
}
.ReviewDeckHeader .skip-to-quiz {
  cursor: pointer;
  color: #2a798a;
}
.ReviewDeckHeader .skip-to-quiz:hover {
  color: #196373;
}
.ReviewDeckHeader .pane-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0;
  height: 25px;
}
.ReviewDeckHeader .pane-2,
.ReviewDeckHeader .pane-3 {
  height: 40px;
}
.ReviewDeckHeader.dark-mode {
  background: #222222;
  color: white;
}
.ReviewDeckHeader.dark-mode .exit-button,
.ReviewDeckHeader.dark-mode .settings-button {
  color: white;
}
.ReviewDeckHeader.dark-mode .skip-to-quiz {
  color: #00c7ce !important;
}
.ReviewDeckHeader.dark-mode .skip-to-quiz:hover {
  color: #23d9e0 !important;
}
.ReviewDeckHeader .exit-button,
.ReviewDeckHeader .settings-button {
  display: flex;
  align-items: center;
  width: auto;
  color: black;
  cursor: pointer;
  font-family: "regular", sans-serif;
  font-size: 15px;
  text-decoration: none;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .ReviewDeckHeader .exit-button,
  .ReviewDeckHeader .settings-button {
    font-size: 13px;
  }
}
.ReviewDeckHeader .exit-button p,
.ReviewDeckHeader .settings-button p {
  display: flex;
  align-items: center;
  height: 20px;
  padding-left: 8px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .ReviewDeckHeader .exit-button p,
  .ReviewDeckHeader .settings-button p {
    padding-left: 5px;
  }
}
.ReviewDeckHeader .exit-button .icon,
.ReviewDeckHeader .settings-button .icon {
  display: flex;
  align-items: center;
  width: auto;
  height: 20px;
}
.ReviewDeckHeader .exit-button p {
  padding-left: 8px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .ReviewDeckHeader .exit-button p {
    padding-left: 5px;
  }
}
.ReviewDeckHeader .settings-button p {
  padding-right: 8px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .ReviewDeckHeader .settings-button p {
    padding-right: 5px;
  }
}
.ReviewDeckHeader .settings-button .cog {
  font-size: 18px;
}
.ReviewDeckHeader .title {
  font-family: "semiBold", sans-serif;
  font-size: 21px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .ReviewDeckHeader .title {
    font-size: 13px;
  }
}
.ReviewDeckHeader .title h1 {
  text-align: center;
  line-height: 15px;
}

.MasteryDeckFooter {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 160px;
  width: 100%;
  background: white;
  font-family: "bold", sans-serif;
  font-size: 19px;
}
.MasteryDeckFooter.dark-mode {
  background: #222222;
}
.MasteryDeckFooter button {
  width: 200px;
  height: 60px;
  border-radius: 30px;
  color: white;
  background: #faa80f;
  margin: 0 auto;
  cursor: pointer;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .MasteryDeckFooter button {
    width: 130px;
    height: 45px;
  }
}
.MasteryDeckFooter button.hard {
  background: #f75856;
}
.MasteryDeckFooter button.easy {
  background: #63b768;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .MasteryDeckFooter {
    height: 85px;
    font-size: 17px;
  }
}
.MasteryDeckFooter .reveal-button-container {
  display: flex;
  justify-content: center;
  width: 100%;
}
.MasteryDeckFooter .grading-buttons-container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .MasteryDeckFooter .grading-buttons-container button {
    width: 84px;
  }
}

.PracticeDeckFooter {
  position: relative;
  background: white;
  height: 100%;
  width: 100%;
}
.PracticeDeckFooter.dark-mode {
  background: #222222;
}
.PracticeDeckFooter.dark-mode .back-button-container .back-button {
  color: #d8d8d8;
}
.PracticeDeckFooter button {
  cursor: pointer;
}
.PracticeDeckFooter .back-button-container {
  width: 31px;
  height: 60px;
}
@media screen and (min-width: 600px) and (max-width: 819px) {
  .PracticeDeckFooter .back-button-container {
    padding-left: 62px;
  }
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .PracticeDeckFooter .back-button-container {
    display: flex;
    justify-content: flex-start;
    height: 45px;
  }
}
.PracticeDeckFooter .back-button-container .back-button {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 35px;
  color: #444444;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .PracticeDeckFooter .back-button-container .back-button {
    font-size: 27px;
  }
}
.PracticeDeckFooter .action-button-container button {
  width: 200px;
  height: 60px;
  border-radius: 30px;
  color: white;
  background: #faa80f;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .PracticeDeckFooter .action-button-container button {
    width: 130px;
    height: 45px;
  }
}
@media screen and (min-width: 600px) and (max-width: 819px) {
  .PracticeDeckFooter .action-button-container {
    padding-right: 62px;
  }
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .PracticeDeckFooter .action-button-container {
    display: flex;
    justify-content: flex-end;
  }
}

.AudioContainer {
  height: auto;
  margin: 15px 0;
  opacity: 0;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .AudioContainer {
    margin: 5px 0 15px;
  }
}
.AudioContainer.visible {
  opacity: 1;
  transition: opacity 0.2s ease-in;
}

.RecorderPlaceHolder {
  position: fixed;
  bottom: 30px;
  height: 101px;
  width: 100%;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .RecorderPlaceHolder {
    height: 83px;
    bottom: 15px;
  }
}
.RecorderPlaceHolder.no-recorder {
  display: none;
}

.ReviewCard {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 100%;
  min-height: 100%;
  max-width: 777px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  background: #f2f3ee;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-callout: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.ReviewCard.dark-mode {
  background: #444444;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .ReviewCard {
    margin: 0;
    padding: 10px 20px;
    overflow-y: scroll;
  }
}

.ReviewCardContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  height: calc(100% - 124px - 111px);
  width: 100%;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .ReviewCardContent {
    height: calc(100% - 100px - 111px);
  }
}
.ReviewCardContent.no-recorder {
  height: calc(100% - 124px);
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .ReviewCardContent.no-recorder {
    height: calc(100% - 100px);
  }
}
.ReviewCardContent.dark-mode {
  color: white;
}
.ReviewCardContent.dark-mode .chinese .chinese-pinyin {
  color: #d8d8d8;
}
.ReviewCardContent.dark-mode .pinyin {
  color: #d8d8d8;
}
.ReviewCardContent .chinese {
  height: auto;
}
.ReviewCardContent .chinese .characters {
  font-family: "semiBold", sans-serif;
  font-size: 29px;
  line-height: 32px;
  text-align: center;
  opacity: 0;
}
.ReviewCardContent .chinese .characters.visible {
  opacity: 1;
  transition: opacity 0.2s ease-in;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .ReviewCardContent .chinese .characters {
    font-size: 21px;
    line-height: 30px;
  }
}
.ReviewCardContent .chinese .chinese-pinyin {
  margin-top: 20px;
  font-family: "regular", sans-serif;
  font-size: 17px;
  color: #444444;
  text-align: center;
  line-height: 18px;
  opacity: 0;
}
.ReviewCardContent .chinese .chinese-pinyin.visible {
  opacity: 1;
  transition: opacity 0.2s ease-in;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .ReviewCardContent .chinese .chinese-pinyin {
    margin-top: 10px;
    font-size: 15px;
    line-height: 16px;
  }
}
.ReviewCardContent .pinyin {
  margin-bottom: 15px;
  font-family: "semiBold", sans-serif;
  font-size: 25px;
  text-align: center;
  line-height: 28px;
  opacity: 0;
}
.ReviewCardContent .pinyin.visible {
  opacity: 1;
  transition: opacity 0.2s ease-in;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .ReviewCardContent .pinyin {
    margin-bottom: 5px;
    font-size: 21px;
    line-height: 20px;
  }
}
.ReviewCardContent .english {
  opacity: 0;
}
.ReviewCardContent .english.visible {
  opacity: 1;
  transition: opacity 0.2s ease-in;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .ReviewCardContent .english {
    min-height: auto;
  }
}
.ReviewCardContent .english .english-1 {
  font-family: "regular", sans-serif;
  font-size: 17px;
  text-align: center;
  line-height: 18px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .ReviewCardContent .english .english-1 {
    font-size: 15px;
    line-height: 16px;
  }
}
.ReviewCardContent .english .english-1.pinyin-card {
  font-style: italic;
}
.ReviewCardContent .english .english-2 {
  margin-top: 20px;
  font-family: "regular", sans-serif;
  font-size: 15px;
  font-style: italic;
  text-align: center;
  line-height: 16px;
}
@media screen and (max-width: 599px), screen and (max-height: 720px) {
  .ReviewCardContent .english .english-2 {
    margin-top: 10px;
    font-size: 13px;
    line-height: 14px;
  }
}

.ReviewCardHeader {
  display: grid;
  grid-template-columns: 53px auto 20px 33px;
  height: 50px;
  width: 100%;
}
.ReviewCardHeader.dark-mode .audio-speed-container {
  color: #d8d8d8;
}
.ReviewCardHeader.dark-mode .mastery-new {
  color: #d8d8d8;
}
.ReviewCardHeader .audio-speed-container {
  font-family: "regular", sans-serif;
  font-size: 12px;
  color: #444444;
  opacity: 0;
}
.ReviewCardHeader .audio-speed-container.visible {
  opacity: 1;
  transition: opacity 0.2s ease-in;
}
.ReviewCardHeader .report-mistake button {
  width: 20px;
  box-sizing: content-box;
  color: #979797;
  padding: 15px 10px;
  cursor: pointer;
}
.ReviewCardHeader .report-mistake .icon {
  width: 100%;
  height: 100%;
}
.ReviewCardHeader .reveal-notes-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  width: auto;
  padding-right: 20px;
}
.ReviewCardHeader .reveal-notes-button button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 23px;
  width: 20px;
  color: #979797;
}
.ReviewCardHeader .reveal-notes-button button img {
  height: 23px;
  width: 20px;
}
.ReviewCardHeader .reveal-notes-button i {
  font-size: 20px;
}
.ReviewCardHeader .mastery-level {
  justify-self: flex-end;
  align-self: center;
  width: 33px;
  height: 24px;
}
.ReviewCardHeader .mastery-new {
  font-family: "regular", sans-serif;
  font-size: 12px;
  color: #444444;
  padding: 5px 0;
  text-align: center;
  width: 100%;
}

@keyframes pulse {
  0% {
    transform: scale(1, 1);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}
/* cyrillic-ext */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(../woff2/jtuqjig1_i6t8kchkm459wxrxc7m0dr9pboi.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(../woff2/jtuqjig1_i6t8kchkm459wxrzs7m0dr9pboi.woff2) format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(../woff2/jtuqjig1_i6t8kchkm459wxrxi7m0dr9pboi.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(../woff2/jtuqjig1_i6t8kchkm459wxrxy7m0dr9pboi.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(../woff2/jtuqjig1_i6t8kchkm459wxrys7m0dr9pa.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(../woff2/jtuqjig1_i6t8kchkm459wxrxc7m0dr9pboi.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(../woff2/jtuqjig1_i6t8kchkm459wxrzs7m0dr9pboi.woff2) format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(../woff2/jtuqjig1_i6t8kchkm459wxrxi7m0dr9pboi.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(../woff2/jtuqjig1_i6t8kchkm459wxrxy7m0dr9pboi.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(../woff2/jtuqjig1_i6t8kchkm459wxrys7m0dr9pa.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(../woff2/jtuqjig1_i6t8kchkm459wxrxc7m0dr9pboi.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(../woff2/jtuqjig1_i6t8kchkm459wxrzs7m0dr9pboi.woff2) format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(../woff2/jtuqjig1_i6t8kchkm459wxrxi7m0dr9pboi.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(../woff2/jtuqjig1_i6t8kchkm459wxrxy7m0dr9pboi.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(../woff2/jtuqjig1_i6t8kchkm459wxrys7m0dr9pa.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../woff2/jtusjig1_i6t8kchkm459wrhyyth89znpq.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../woff2/jtusjig1_i6t8kchkm459w1hyyth89znpq.woff2) format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../woff2/jtusjig1_i6t8kchkm459wzhyyth89znpq.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../woff2/jtusjig1_i6t8kchkm459wdhyyth89znpq.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../woff2/jtusjig1_i6t8kchkm459wlhyyth89y.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../woff2/jtusjig1_i6t8kchkm459wrhyyth89znpq.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../woff2/jtusjig1_i6t8kchkm459w1hyyth89znpq.woff2) format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../woff2/jtusjig1_i6t8kchkm459wzhyyth89znpq.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../woff2/jtusjig1_i6t8kchkm459wdhyyth89znpq.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../woff2/jtusjig1_i6t8kchkm459wlhyyth89y.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../woff2/jtusjig1_i6t8kchkm459wrhyyth89znpq.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../woff2/jtusjig1_i6t8kchkm459w1hyyth89znpq.woff2) format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../woff2/jtusjig1_i6t8kchkm459wzhyyth89znpq.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../woff2/jtusjig1_i6t8kchkm459wdhyyth89znpq.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../woff2/jtusjig1_i6t8kchkm459wlhyyth89y.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* 500 */
/* cyrillic-ext */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(../woff2/jtufjig1_i6t8kchkm459wx7xqyxk0vooz6jq5z9wxv0ppc8mlnbtrvk.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(../woff2/jtufjig1_i6t8kchkm459wx7xqyxk0vooz6jq5z9wxx0ppc8mlnbtrvk.woff2) format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(../woff2/jtufjig1_i6t8kchkm459wx7xqyxk0vooz6jq5z9wxd0ppc8mlnbtrvk.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(../woff2/jtufjig1_i6t8kchkm459wx7xqyxk0vooz6jq5z9wxz0ppc8mlnbtrvk.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(../woff2/jtufjig1_i6t8kchkm459wx7xqyxk0vooz6jq5z9wxh0ppc8mlnbtg.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(../woff2/jtuhjig1_i6t8kchkm4532vjot5-qnfgpctz6hw0axp-p7k4kljztg.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(../woff2/jtuhjig1_i6t8kchkm4532vjot5-qnfgpctz6hw9axp-p7k4kljztg.woff2) format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(../woff2/jtuhjig1_i6t8kchkm4532vjot5-qnfgpctz6hw2axp-p7k4kljztg.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(../woff2/jtuhjig1_i6t8kchkm4532vjot5-qnfgpctz6hw3axp-p7k4kljztg.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(../woff2/jtuhjig1_i6t8kchkm4532vjot5-qnfgpctz6hw5axp-p7k4klg.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@keyframes pulse {
  0% {
    transform: scale(1, 1);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}
