:root {
  --npp-navy: #07111f;
  --npp-navy-2: #101a2c;
  --npp-blue: #1f6fff;
  --npp-green: #35d399;
  --npp-gold: #f5c95b;
  --npp-text: #182236;
  --npp-muted: #5d6980;
  --npp-line: #dfe7f1;
  --npp-soft: #f5f8fb;
  --npp-white: #ffffff;
  --npp-radius: 8px;
  --npp-shadow: 0 18px 50px rgba(11, 30, 54, .12);
}

/* MasterStudy chat: keep the messages component inside the account layout. */
body.npp-theme.npp-account-chat #masterstudy-account-messages,
body.npp-theme.npp-account-chat .masterstudy-account-messages {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  overflow-x: hidden !important;
  box-sizing: border-box !important;
}

body.npp-theme.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__layout {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 18px !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
  box-sizing: border-box !important;
}

body.npp-theme.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__list,
body.npp-theme.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__panel,
body.npp-theme.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__chat-container,
body.npp-theme.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__empty {
  position: relative !important;
  inset: auto !important;
  transform: none !important;
  flex: 0 0 auto !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

body.npp-theme.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__list {
  order: 1 !important;
}

body.npp-theme.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__panel,
body.npp-theme.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__chat-container,
body.npp-theme.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__empty {
  order: 2 !important;
}

body.npp-theme.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__list-inner {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 14px !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

body.npp-theme.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__panel-card {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 520px !important;
  height: auto !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

body.npp-theme.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__thread,
body.npp-theme.npp-account-chat #masterstudy-account-messages #masterstudy-account-messages_chat {
  flex: 1 1 auto !important;
  min-height: 320px !important;
  max-height: 58vh !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  box-sizing: border-box !important;
}

body.npp-theme.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__composer {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  flex: 0 0 auto !important;
  position: relative !important;
  box-sizing: border-box !important;
}

body.npp-theme.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__input {
  display: block !important;
  flex: 1 1 auto !important;
  width: auto !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

body.npp-theme.npp-account-chat #masterstudy-account-messages select,
body.npp-theme.npp-account-chat #masterstudy-account-messages input,
body.npp-theme.npp-account-chat #masterstudy-account-messages textarea,
body.npp-theme.npp-account-chat #masterstudy-account-messages button {
  max-width: 100% !important;
  box-sizing: border-box !important;
}

@media (max-width: 760px) {
  body.npp-theme.npp-account-chat #masterstudy-account-messages,
  body.npp-theme.npp-account-chat .masterstudy-account-messages {
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-inline: 0 !important;
  }

  body.npp-theme.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__layout {
    gap: 14px !important;
  }

  body.npp-theme.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__panel-card {
    min-height: 430px !important;
  }

  body.npp-theme.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__thread,
  body.npp-theme.npp-account-chat #masterstudy-account-messages #masterstudy-account-messages_chat {
    min-height: 260px !important;
    max-height: 46vh !important;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.npp-theme {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  color: var(--npp-text);
  background: var(--npp-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.screen-reader-text,
.npp-skip {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.npp-skip:focus {
  z-index: 9999;
  left: 18px;
  top: 18px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: #fff;
  background: #000;
}

.npp-container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.npp-main {
  flex: 1 0 auto;
  min-width: 0;
}

.npp-footer {
  flex-shrink: 0;
}

.npp-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  color: #fff;
  background: linear-gradient(180deg, rgba(7, 17, 31, .97), rgba(8, 20, 36, .94));
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(16px);
}

.npp-menu-open {
  overflow: auto;
}

.npp-header.is-scrolled {
  box-shadow: 0 14px 38px rgba(0, 0, 0, .18);
}

.npp-header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.npp-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  min-width: 245px;
}

.npp-brand-text {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.npp-brand-text:has(.npp-brand-img) {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.npp-brand-img {
  display: block;
  width: 215px;
  max-width: 48vw;
  height: auto;
}

.npp-brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #07111f;
  background: linear-gradient(135deg, var(--npp-green), #7ce7ff);
  font-size: 22px;
  font-weight: 800;
}

.npp-brand-text strong {
  display: block;
  color: #fff;
  font-size: 22px;
  line-height: 1;
}

.npp-brand-text strong span {
  color: var(--npp-green);
}

.npp-brand-text small {
  display: block;
  margin-top: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
}

.npp-logo img {
  width: auto;
  max-height: 58px;
}

.npp-header .npp-brand-img {
  width: 245px;
  min-width: 245px;
  max-width: none;
  image-rendering: auto;
  backface-visibility: hidden;
}

.npp-footer .npp-brand-img {
  width: 215px;
  min-width: 0;
}

.npp-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.npp-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.npp-menu li {
  position: relative;
}

.npp-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 12px;
  border-radius: var(--npp-radius);
  color: rgba(255, 255, 255, .84);
  font-weight: 750;
  font-size: 14px;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: color .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.npp-menu a:hover,
.npp-menu .current-menu-item > a {
  color: #fff;
  background: rgba(53, 211, 153, .11);
  border-color: rgba(53, 211, 153, .2);
  box-shadow: inset 0 -2px 0 rgba(53, 211, 153, .85);
}

.npp-menu .menu-item-has-children > a::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: .7;
}

.npp-menu .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 20;
  min-width: 250px;
  padding: 10px;
  margin: 0;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  background: rgba(7, 17, 31, .98);
  box-shadow: 0 20px 46px rgba(0, 0, 0, .28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.npp-menu .sub-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}

.npp-menu li:hover > .sub-menu,
.npp-menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.npp-menu .sub-menu a {
  width: 100%;
  justify-content: flex-start;
  min-height: 40px;
  color: rgba(255, 255, 255, .78);
}

.npp-nav-actions,
.npp-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media (min-width: 1181px) {
  .npp-header-inner {
    gap: 16px;
  }

  .npp-nav {
    gap: 10px;
  }

  .npp-menu {
    gap: 4px;
  }

  .npp-menu a {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 13.5px;
  }

  .npp-nav-actions {
    flex-wrap: nowrap;
    gap: 8px;
  }

  .npp-header .npp-nav-actions .npp-btn {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 13px;
  }
}

.npp-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--npp-radius);
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.npp-btn:hover {
  transform: translateY(-1px);
}

.npp-btn:focus-visible,
.npp-menu a:focus-visible,
.npp-menu-toggle:focus-visible {
  outline: 3px solid rgba(53, 211, 153, .45);
  outline-offset: 3px;
}

.npp-btn-primary {
  color: #06111f;
  background: linear-gradient(135deg, var(--npp-green), #57e0b5);
  box-shadow: 0 16px 35px rgba(53, 211, 153, .25);
}

.npp-btn-primary:hover {
  color: #03111f;
  background: linear-gradient(135deg, #49e5aa, #88f0ca);
  box-shadow: 0 18px 42px rgba(53, 211, 153, .34);
}

.npp-btn-outline {
  color: #063d32;
  border-color: rgba(53, 211, 153, .36);
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 12px 28px rgba(7, 20, 38, .06);
}

.npp-btn-outline:hover {
  color: #06111f;
  border-color: rgba(53, 211, 153, .72);
  background: rgba(53, 211, 153, .16);
  box-shadow: 0 16px 34px rgba(53, 211, 153, .16);
}

.npp-btn-ghost,
.npp-btn-light {
  color: #fff;
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .06);
}

.npp-btn-ghost:hover,
.npp-btn-light:hover {
  color: #fff;
  border-color: rgba(53, 211, 153, .72);
  background: rgba(53, 211, 153, .13);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .18);
}

.npp-menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--npp-radius);
  background: rgba(255, 255, 255, .06);
}

.npp-menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  border-radius: 10px;
  transition: transform .18s ease, opacity .18s ease;
}

.npp-menu-open .npp-menu-toggle span:not(.screen-reader-text):nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.npp-menu-open .npp-menu-toggle span:not(.screen-reader-text):nth-child(2) {
  opacity: 0;
}

.npp-menu-open .npp-menu-toggle span:not(.screen-reader-text):nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.npp-hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  color: #fff;
  background-image: linear-gradient(90deg, rgba(7, 17, 31, .9), rgba(7, 17, 31, .64), rgba(7, 17, 31, .88)), var(--npp-hero-image);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.npp-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 38%, rgba(53, 211, 153, .22), transparent 34%);
  pointer-events: none;
}

.npp-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  align-items: center;
  gap: clamp(28px, 5vw, 58px);
  padding: 88px 0;
}

.npp-pill,
.npp-eyebrow {
  color: var(--npp-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.npp-pill {
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--npp-green);
}

.npp-hero .npp-pill {
  color: var(--npp-green) !important;
}

.npp-hero h1,
.npp-page-hero h1 {
  margin: 18px 0;
  font-size: clamp(42px, 6vw, 82px);
  line-height: .98;
  letter-spacing: -0.04em;
  overflow-wrap: anywhere;
}

.npp-hero h1 span {
  color: var(--npp-green);
}

.npp-hero p {
  max-width: 660px;
  color: rgba(255, 255, 255, .82);
  font-size: 20px;
}

.npp-hero-panel {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(9, 20, 35, .88), rgba(7, 17, 31, .78));
  box-shadow: 0 30px 80px rgba(0, 0, 0, .28);
}

.npp-lesson-card {
  position: relative;
  overflow: hidden;
}

.npp-lesson-card::before {
  content: "";
  position: absolute;
  inset: auto -80px -110px auto;
  width: 230px;
  height: 230px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(53, 211, 153, .24), transparent 64%);
  pointer-events: none;
}

.npp-lesson-top,
.npp-lesson-footer,
.npp-lesson-steps {
  position: relative;
}

.npp-lesson-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.npp-lesson-top span {
  color: var(--npp-green);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.npp-lesson-top strong {
  padding: 8px 13px;
  border: 1px solid rgba(255, 214, 95, .55);
  border-radius: 12px;
  color: #06111f;
  background: linear-gradient(135deg, #ffd65f 0%, #54e7b6 58%, #35d399 100%);
  box-shadow: 0 12px 28px rgba(53, 211, 153, .22), 0 0 0 1px rgba(255, 255, 255, .08) inset;
  font-size: 12px;
  letter-spacing: .02em;
}

.npp-window-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}

.npp-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: -2px 0 16px;
}

.npp-panel-badge,
.npp-panel-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.npp-panel-badge {
  color: #06111f;
  background: linear-gradient(135deg, var(--npp-green), #7ce7ff);
}

.npp-panel-status {
  color: var(--npp-green);
  border: 1px solid rgba(53, 211, 153, .28);
  background: rgba(53, 211, 153, .1);
}

.npp-window-bar span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #ff5f57;
}

.npp-window-bar span:nth-child(2) {
  background: #ffbd2e;
}

.npp-window-bar span:nth-child(3) {
  background: #28c840;
}

.npp-hero-panel h2 {
  margin: 0 0 18px;
  font-size: 28px;
  line-height: 1.1;
}

.npp-hero-panel .npp-panel-lead {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
  line-height: 1.55;
}

.npp-lesson-steps {
  display: grid;
  gap: 10px;
}

.npp-lesson-steps div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 2px 12px;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--npp-radius);
  background: rgba(255, 255, 255, .07);
}

.npp-lesson-steps span {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #07111f;
  background: var(--npp-green);
  font-size: 12px;
  font-weight: 900;
}

.npp-lesson-steps strong {
  color: #fff;
  line-height: 1.1;
}

.npp-lesson-steps small {
  color: rgba(255, 255, 255, .62);
}

.npp-lesson-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 14px;
  align-items: center;
  margin-top: 16px;
  padding: 14px;
  border-radius: var(--npp-radius);
  background: rgba(53, 211, 153, .1);
}

.npp-lesson-footer span {
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
}

.npp-lesson-footer strong {
  color: var(--npp-green);
  font-size: 22px;
  line-height: 1;
}

.npp-lesson-footer .npp-progress-track {
  grid-column: 1 / -1;
  margin: 0;
}

.home .npp-lesson-steps span {
  grid-row: span 2;
}

.home .npp-lesson-footer {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.home .npp-lesson-footer .npp-progress-track {
  width: 100%;
  min-width: 0;
}

.npp-study-list {
  display: grid;
  gap: 10px;
}

.npp-study-list div,
.npp-progress-card,
.npp-feature,
.npp-rich-card,
.npp-course-card,
.npp-path-grid div,
.npp-faq-item,
.npp-post-card {
  border: 1px solid var(--npp-line);
  border-radius: var(--npp-radius);
  background: #fff;
}

.npp-study-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 16px;
  color: #fff;
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .07);
}

.npp-study-list strong {
  font-size: 17px;
}

.npp-study-list div > * {
  min-width: 0;
}

.npp-study-list span,
.npp-progress-card small {
  color: rgba(255, 255, 255, .66);
}

.npp-progress-card {
  margin-top: 14px;
  padding: 16px;
  color: #fff;
  border-color: rgba(255, 255, 255, .12);
  background: rgba(53, 211, 153, .1);
}

.npp-progress-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.npp-progress-head strong {
  color: var(--npp-green);
  font-size: 22px;
  line-height: 1;
}

.npp-progress-track {
  height: 10px;
  margin: 12px 0 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .15);
}

.npp-progress-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--npp-green), var(--npp-gold));
}

.npp-section {
  padding: 88px 0;
}

.npp-section-muted {
  background:
    radial-gradient(circle at 15% 18%, rgba(53, 211, 153, .16), transparent 30%),
    radial-gradient(circle at 85% 70%, rgba(255, 214, 95, .12), transparent 28%),
    var(--npp-soft);
}

.npp-section-muted .npp-container {
  position: relative;
}

.npp-section-head {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.npp-section h2,
.npp-page-hero h1 {
  color: var(--npp-navy);
}

.npp-section-head h2,
.npp-split h2,
.npp-cta h2 {
  margin: 10px 0 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.npp-feature-grid,
.npp-course-grid,
.npp-guide-grid,
.npp-two-columns,
.npp-contact-grid {
  display: grid;
  gap: 22px;
}

.npp-feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.npp-feature,
.npp-rich-card,
.npp-faq-item {
  padding: 28px;
  box-shadow: var(--npp-shadow);
}

.home .npp-feature {
  text-align: center;
}

.npp-feature span,
.npp-guide-grid span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #06111f;
  background: var(--npp-green);
  font-weight: 900;
}

.home .npp-feature span {
  margin-inline: auto;
}

.npp-feature h3,
.npp-course-card h3,
.npp-rich-card h2,
.npp-guide-grid h2,
.npp-guide-grid h3,
.npp-post-card h2 {
  margin: 16px 0 8px;
  color: var(--npp-navy);
  line-height: 1.12;
}

.npp-feature p,
.npp-rich-card p,
.npp-course-card p,
.npp-path-grid p,
.npp-content,
.npp-page-hero p {
  color: var(--npp-muted);
}

.npp-saas-page {
  display: grid;
  gap: 42px;
}

.npp-saas-page .npp-section-head {
  margin-bottom: 0;
}

.npp-saas-panel {
  margin-top: 2px;
}

.npp-page-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0;
  text-align: center;
}

.npp-pricing-grid .npp-feature {
  display: flex;
  flex-direction: column;
}

.npp-pricing-grid .npp-feature p strong {
  color: var(--npp-navy);
  font-size: 22px;
}

.npp-lead-page {
  padding-top: 20px;
}

.npp-lead-hero {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.npp-lead-hero h1 {
  margin: 0;
  color: var(--npp-navy);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
}

.npp-lead-hero p {
  max-width: 720px;
  margin: 16px auto 0;
  color: var(--npp-muted);
  font-size: 18px;
  line-height: 1.75;
}

.npp-lead-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: start;
}

.npp-lead-benefits {
  background: linear-gradient(145deg, #061522 0%, #0d4037 100%);
  border-radius: 22px;
  color: #fff;
  padding: 40px;
  overflow: hidden;
}

.npp-lead-benefits h2,
.npp-content .npp-lead-benefits h2 {
  color: #fff !important;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.12;
}

.npp-lead-benefits ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.npp-lead-benefits li {
  position: relative;
  padding-left: 28px;
  color: rgba(255,255,255,.82);
  line-height: 1.55;
}

.npp-lead-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--npp-green);
  box-shadow: 0 0 0 6px rgba(53, 211, 153, .14);
}

.npp-lead-form-card {
  margin: 0;
}

.npp-lead-form-grid {
  margin-top: 20px;
}

.npp-lead-form-grid .wpcf7-list-item {
  margin: 0;
}

.npp-lead-form-grid .wpcf7-acceptance label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--npp-muted);
  font-size: 14px;
  line-height: 1.5;
}

.npp-lead-form-grid .wpcf7-acceptance input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.npp-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
}

.npp-course-intro {
  position: relative;
  overflow: hidden;
  max-width: 1120px;
  margin: 0 auto;
  padding: 46px clamp(22px, 4vw, 56px) 48px;
  border: 1px solid rgba(53, 211, 153, .24);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(235, 255, 248, .82)),
    #fff;
  box-shadow: 0 28px 80px rgba(7, 20, 38, .09);
  text-align: center;
}

.npp-course-intro::before,
.npp-course-intro::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.npp-course-intro::before {
  width: 230px;
  height: 230px;
  right: -88px;
  top: -96px;
  background: rgba(53, 211, 153, .18);
}

.npp-course-intro::after {
  width: 170px;
  height: 170px;
  left: -78px;
  bottom: -80px;
  background: rgba(255, 214, 95, .2);
}

.npp-course-intro > * {
  position: relative;
  z-index: 1;
}

.npp-course-intro h2 {
  margin: 10px auto 0;
  max-width: 900px;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.npp-course-intro p:not(.npp-eyebrow) {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--npp-muted);
  font-size: 18px;
  line-height: 1.7;
}

.npp-course-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.npp-course-points span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  border: 1px solid rgba(53, 211, 153, .3);
  border-radius: 999px;
  color: #063d32;
  background: rgba(53, 211, 153, .12);
  font-size: 13px;
  font-weight: 800;
}

.npp-course-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 30px auto 0;
  max-width: 1120px;
}

.npp-course-benefits div {
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(7, 20, 38, .09);
  border-radius: 16px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 16px 38px rgba(7, 20, 38, .06);
  text-align: center;
}

.npp-course-benefits strong,
.npp-course-benefits small {
  display: block;
}

.npp-course-benefits strong {
  color: var(--npp-navy);
  font-size: 16px;
  line-height: 1.2;
}

.npp-course-benefits small {
  margin-top: 7px;
  color: var(--npp-muted);
  font-size: 13px;
  line-height: 1.45;
}

.npp-course-action {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.npp-course-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  margin-top: 46px;
}

.npp-course-grid:has(.npp-course-card:only-child) {
  grid-template-columns: minmax(0, 920px);
  justify-content: center;
}

.npp-course-card {
  overflow: hidden;
  box-shadow: var(--npp-shadow);
}

.npp-section-muted .npp-course-card {
  border-color: rgba(53, 211, 153, .22);
  box-shadow: 0 28px 80px rgba(7, 20, 38, .1);
}

.npp-course-card > div:not(.npp-course-image) {
  padding: 28px;
  min-width: 0;
}

.npp-section-muted .npp-course-card > div:not(.npp-course-image) {
  text-align: center;
}

.npp-section-muted .npp-course-card h3 {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.npp-section-muted .npp-course-card p:not(.npp-eyebrow) {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.npp-section-muted .npp-course-card .npp-eyebrow {
  color: var(--npp-green);
}

.npp-course-image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--npp-navy);
}

.npp-course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

.npp-course-card:hover img {
  transform: scale(1.04);
}

.npp-link {
  display: inline-flex;
  margin-top: 8px;
  color: #007f5f;
  font-weight: 900;
}

.npp-course-link {
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  color: #06111f;
  background: linear-gradient(135deg, var(--npp-green), #70e5bd);
  box-shadow: 0 14px 30px rgba(53, 211, 153, .22);
  text-decoration: none;
}

.npp-course-link:hover {
  color: #06111f;
  transform: translateY(-1px);
}

.npp-courses-hero {
  text-align: center;
}

.npp-courses-hero h1,
.npp-courses-hero p {
  margin-left: auto;
  margin-right: auto;
}

.npp-courses-page {
  padding-top: 44px;
  background:
    radial-gradient(circle at 12% 8%, rgba(53, 211, 153, .12), transparent 28%),
    radial-gradient(circle at 88% 38%, rgba(255, 214, 95, .1), transparent 26%),
    linear-gradient(180deg, #fff, var(--npp-soft));
}

.npp-courses-layout {
  display: grid;
  gap: 34px;
}

.npp-courses-intro {
  margin-top: 0;
}

.npp-courses-list-head {
  display: grid;
  justify-items: center;
  gap: 12px;
  max-width: 1120px;
  margin: 8px auto -12px;
  padding: 0 4px;
  text-align: center;
}

.npp-courses-list-head h2 {
  margin: 8px 0 0;
  color: var(--npp-navy);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.npp-courses-list-head p:not(.npp-eyebrow) {
  max-width: 720px;
  margin: 0;
  color: var(--npp-muted);
  line-height: 1.65;
}

.npp-masterstudy-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px;
  border: 1px solid rgba(53, 211, 153, .2);
  border-radius: 24px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 26px 70px rgba(7, 20, 38, .08);
}

.npp-masterstudy-wrap .stm_lms_courses__grid,
.npp-masterstudy-wrap .stm_lms_courses {
  margin: 0 !important;
}

.npp-masterstudy-wrap .stm_lms_courses_grid__top,
.npp-masterstudy-wrap .stm_lms_load_more_courses {
  display: none !important;
}

.npp-masterstudy-wrap .stm_lms_courses__grid_found_1 {
  display: flex !important;
  justify-content: center;
}

.npp-masterstudy-wrap .stm_lms_courses__grid_found_1 .stm_lms_courses__single {
  width: min(100%, 760px) !important;
  max-width: 760px !important;
  margin: 0 auto !important;
}

.npp-masterstudy-wrap .stm_lms_courses__single--inner {
  overflow: hidden;
}

.npp-masterstudy-wrap .stm_lms_courses__single--image__container {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.npp-masterstudy-wrap .stm_lms_courses__single--image__container img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.npp-masterstudy-wrap .stm_lms_courses__single--title {
  line-height: 1.18 !important;
}

.npp-masterstudy-wrap .stm_lms_load_more_courses {
  margin-top: 24px !important;
}

.npp-featured-course {
  display: grid;
  grid-template-columns: minmax(320px, .92fr) minmax(0, 1.08fr);
  gap: 0;
  overflow: hidden;
  max-width: 1120px;
  margin: 0 auto;
  border: 1px solid rgba(53, 211, 153, .24);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(7, 20, 38, .12);
}

.npp-featured-course-media {
  position: relative;
  display: block;
  min-height: 390px;
  overflow: hidden;
  background: var(--npp-navy);
}

.npp-featured-course-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(7, 17, 31, .52)),
    linear-gradient(90deg, transparent 70%, rgba(7, 17, 31, .22));
}

.npp-featured-course-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease;
}

.npp-featured-course:hover .npp-featured-course-media img {
  transform: scale(1.04);
}

.npp-featured-course-media span {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  color: #07111f;
  background: linear-gradient(135deg, var(--npp-green), #77eac1);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .2);
  font-size: 13px;
  font-weight: 900;
}

.npp-featured-course-body {
  display: grid;
  align-content: center;
  padding: clamp(28px, 4vw, 48px);
}

.npp-featured-course-body h3 {
  margin: 10px 0 0;
  color: var(--npp-navy);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.npp-featured-course-body h3 a {
  color: inherit;
  text-decoration: none;
}

.npp-featured-course-body p:not(.npp-eyebrow) {
  max-width: 580px;
  margin: 16px 0 0;
  color: var(--npp-muted);
  font-size: 17px;
  line-height: 1.7;
}

.npp-featured-course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.npp-featured-course-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(53, 211, 153, .28);
  border-radius: 999px;
  color: #063d32;
  background: rgba(53, 211, 153, .1);
  font-size: 13px;
  font-weight: 850;
}

.npp-featured-course-value {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.npp-featured-course-value div {
  min-width: 0;
  padding: 14px 15px;
  border: 1px solid rgba(53, 211, 153, .18);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(53, 211, 153, .1), rgba(255, 255, 255, .92));
}

.npp-featured-course-value strong,
.npp-featured-course-value span {
  display: block;
}

.npp-featured-course-value strong {
  color: var(--npp-navy);
  font-size: 14px;
  line-height: 1.2;
}

.npp-featured-course-value span {
  margin-top: 4px;
  color: var(--npp-muted);
  font-size: 12px;
  line-height: 1.35;
}

.npp-featured-course-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--npp-line);
}

.npp-featured-course-price {
  display: grid;
  gap: 2px;
}

.npp-featured-course-price small {
  color: var(--npp-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.npp-featured-course-price del {
  color: rgba(72, 86, 108, .58);
  font-size: 15px;
}

.npp-featured-course-price strong {
  color: var(--npp-navy);
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.npp-path-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.npp-path-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid rgba(7, 20, 38, .08);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(239, 255, 250, .86));
  box-shadow: 0 28px 80px rgba(7, 20, 38, .08);
}

.npp-path-grid::before {
  content: "";
  position: absolute;
  top: 43px;
  left: 8%;
  right: 8%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(53, 211, 153, .18), rgba(53, 211, 153, .75), rgba(255, 214, 95, .45));
  pointer-events: none;
}

.npp-path-grid div,
.npp-guide-grid div,
.npp-guide-grid article {
  position: relative;
  padding: 22px;
  border: 1px solid var(--npp-line);
  border-radius: var(--npp-radius);
  background: #fff;
}

.npp-path-grid div {
  display: grid;
  align-content: start;
  min-height: 215px;
  box-shadow: 0 16px 38px rgba(7, 20, 38, .06);
}

.home .npp-path-grid div {
  justify-items: center;
  text-align: center;
}

.npp-path-grid span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  color: #06111f;
  background: linear-gradient(135deg, var(--npp-green), #78e8bf);
  box-shadow: 0 12px 24px rgba(53, 211, 153, .22);
  font-weight: 900;
}

.home .npp-path-grid span {
  margin-left: auto;
  margin-right: auto;
}

.npp-path-grid strong {
  color: var(--npp-navy);
  font-size: 20px;
  line-height: 1.15;
}

.npp-path-summary {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 14px;
  padding: 34px 30px;
  border-radius: 18px;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 88% 14%, rgba(53, 211, 153, .24), transparent 30%),
    linear-gradient(145deg, var(--npp-navy), #0b3b32);
}

.npp-path-summary strong {
  display: block;
  font-size: 27px;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.npp-path-summary p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, .74);
  line-height: 1.6;
}

.npp-path-summary ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.npp-path-summary li {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .88);
  font-size: 13px;
  font-weight: 800;
}

.npp-cta {
  padding-top: 0;
  background:
    radial-gradient(ellipse at 88% 0%, rgba(255, 214, 95, .035), transparent 42%),
    linear-gradient(180deg, var(--npp-soft) 0%, #fff 100%);
}

.npp-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px;
  color: #fff;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--npp-navy), #06261f);
}

.npp-cta-box h2 {
  color: #fff;
}

.npp-page-hero {
  padding: 92px 0 58px;
  background: linear-gradient(180deg, #edf8f4, #fff);
}

.npp-page-hero h1 {
  max-width: 880px;
  font-size: clamp(38px, 5vw, 68px);
}

.npp-blog-hero {
  padding: 42px 0 22px;
  background:
    radial-gradient(circle at 50% 0, rgba(53, 211, 153, .12), transparent 34%),
    linear-gradient(180deg, #edf8f4, #fff);
}

.npp-blog-hero-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 28px;
  align-items: center;
  overflow: hidden;
  max-width: 1120px;
  margin: 0 auto;
  padding: 34px clamp(24px, 4vw, 46px);
  border: 1px solid rgba(53, 211, 153, .24);
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 12%, rgba(53, 211, 153, .24), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(232, 255, 247, .9));
  box-shadow: 0 24px 70px rgba(7, 20, 38, .08);
}

.npp-blog-hero h1 {
  margin: 6px auto 0;
  font-size: clamp(32px, 3.6vw, 48px);
}

.npp-blog-hero p:not(.npp-eyebrow) {
  max-width: 640px;
  margin: 8px 0 0;
  color: var(--npp-muted);
}

.npp-blog-hero-notes {
  position: relative;
  height: 118px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(53, 211, 153, .12), rgba(53, 211, 153, .03));
}

.npp-blog-hero-notes::before,
.npp-blog-hero-notes::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  height: 2px;
  border-radius: 999px;
  background: rgba(7, 17, 31, .12);
}

.npp-blog-hero-notes::before {
  top: 38px;
}

.npp-blog-hero-notes::after {
  top: 70px;
}

.npp-blog-hero-notes span {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--npp-green);
  box-shadow: 0 10px 22px rgba(53, 211, 153, .28);
}

.npp-blog-hero-notes span:nth-child(1) {
  left: 30px;
  top: 28px;
}

.npp-blog-hero-notes span:nth-child(2) {
  left: 76px;
  top: 60px;
}

.npp-blog-hero-notes span:nth-child(3) {
  right: 34px;
  top: 42px;
}

.npp-info-hero {
  padding-bottom: 22px;
}

.npp-info-hero-card {
  max-width: 1120px;
}

.npp-info-hero-card h1 {
  max-width: 820px;
}

.npp-info-hero-mark {
  position: relative;
  display: grid;
  gap: 10px;
  align-content: center;
  min-height: 132px;
  padding: 18px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 82% 18%, rgba(53, 211, 153, .22), transparent 32%),
    linear-gradient(135deg, rgba(53, 211, 153, .1), rgba(255, 255, 255, .45));
}

.npp-info-hero-mark span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #063d32;
  background: rgba(255, 255, 255, .76);
  font-size: 13px;
  font-weight: 900;
}

.npp-info-section {
  padding-top: 44px;
  padding-bottom: 58px;
}

.npp-info-hero + .npp-info-section {
  padding-top: 22px;
}

.npp-checkout-hero {
  padding-top: 42px;
}

.npp-checkout-hero-card {
  max-width: 1120px;
}

.npp-checkout-hero-card h1 {
  max-width: 720px;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.npp-checkout-hero-card p:not(.npp-eyebrow) {
  max-width: 660px;
  text-align: left;
}

.npp-checkout-hero-mark {
  background:
    radial-gradient(circle at 86% 18%, rgba(53, 211, 153, .24), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, .62), rgba(226, 250, 241, .86));
}

.npp-checkout-hero + .npp-section {
  padding-top: 14px;
}

.npp-cart-hero {
  padding-top: 42px;
}

.npp-cart-hero-card {
  max-width: 1120px;
}

.npp-cart-hero-card h1 {
  max-width: 720px;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.npp-cart-hero-card p:not(.npp-eyebrow) {
  max-width: 660px;
  text-align: left;
}

.npp-cart-hero-mark {
  background:
    radial-gradient(circle at 86% 18%, rgba(53, 211, 153, .24), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, .62), rgba(226, 250, 241, .86));
}

.npp-cart-hero + .npp-section {
  padding-top: 14px;
}

.npp-courses-store-hero {
  padding-top: 42px;
}

.npp-courses-store-hero-card {
  max-width: 1120px;
}

.npp-courses-store-hero-card h1 {
  max-width: 720px;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.npp-courses-store-hero-card p:not(.npp-eyebrow) {
  max-width: 680px;
  text-align: left;
}

.npp-courses-store-hero-mark {
  background:
    radial-gradient(circle at 86% 18%, rgba(53, 211, 153, .24), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, .62), rgba(226, 250, 241, .86));
}

.npp-courses-store-hero + .npp-section {
  padding-top: 14px;
}

.npp-wishlist-hero {
  padding-top: 42px;
}

.npp-wishlist-hero-card {
  max-width: 1120px;
}

.npp-wishlist-hero-card h1 {
  max-width: 720px;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.npp-wishlist-hero-card p:not(.npp-eyebrow) {
  max-width: 680px;
  text-align: left;
}

.npp-wishlist-hero-mark {
  background:
    radial-gradient(circle at 86% 18%, rgba(53, 211, 153, .24), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, .62), rgba(226, 250, 241, .86));
}

.npp-wishlist-hero + .npp-section {
  padding-top: 14px;
}

.page-id-20763 .npp-content {
  max-width: 1120px;
}

.page-id-20763 .npp-section {
  padding: 0 0 44px !important;
}

.page-id-20763 .npp-content > .stm_lms_acc_tabs:first-child,
.page-id-20763 .npp-content > .masterstudy-account:first-child,
.page-id-20763 .npp-content > .stm-lms-wrapper:first-child,
.page-id-20763 .stm_lms_acc_tabs {
  margin-top: 0 !important;
}

.page-id-20763 .stm-lms-wrapper,
.page-id-20763 .stm_lms_wishlist,
.page-id-20763 .masterstudy-wishlist,
.page-id-20763 .stm_lms_courses,
.page-id-20763 .stm_lms_courses__grid {
  width: 100% !important;
  max-width: 100% !important;
  overflow: visible !important;
}

.page-id-20763 .stm-lms-wrapper {
  margin: 0 !important;
  padding: 50px clamp(10px, 1.6vw, 20px) clamp(10px, 1.6vw, 20px) !important;
}

.page-id-20763 .stm_lms_courses,
.page-id-20763 .stm_lms_courses__grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px !important;
  align-items: stretch;
}

.page-id-20763 .stm_lms_courses__single,
.page-id-20763 .masterstudy-course-card {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  overflow: visible !important;
}

.page-id-20763 .stm_lms_courses__single--inner,
.page-id-20763 .masterstudy-course-card {
  height: 100%;
  overflow: visible;
  border: 1px solid rgba(53, 211, 153, .22) !important;
  border-radius: 22px !important;
  background: linear-gradient(180deg, #fff, #f8fffc) !important;
  box-shadow: 0 22px 58px rgba(7, 20, 38, .1) !important;
}

.page-id-20763 .stm_lms_courses__single--image__container,
.page-id-20763 .masterstudy-course-card__image {
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.page-id-20763 .stm_lms_courses__single--image__container img,
.page-id-20763 .masterstudy-course-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.page-id-20763 .stm_lms_courses__single--title,
.page-id-20763 .masterstudy-course-card__title {
  line-height: 1.2 !important;
}

.page-id-20763 .stm_lms_courses__single a.btn,
.page-id-20763 .masterstudy-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px !important;
  text-align: center;
}

.page-id-20763 .stm_lms_courses__grid:empty::before,
.page-id-20763 .stm_lms_courses:empty::before,
.page-id-20763 .stm_lms_wishlist:empty::before {
  content: "Nenhum curso salvo na lista de desejos.";
  display: block;
  width: 100%;
  padding: 28px;
  border: 1px solid rgba(53, 211, 153, .24);
  border-radius: 22px;
  background: #fff;
  color: var(--npp-muted);
  text-align: center;
}

.post-type-archive-product.npp-theme .npp-woo > .page-title {
  display: none;
}

.post-type-archive-product.npp-theme .products .button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  line-height: 1 !important;
  text-align: center;
}

.npp-info-lead {
  max-width: 860px;
  margin: 0 auto 26px;
  text-align: center;
}

.npp-info-lead h2,
.npp-info-card h2,
.npp-legal-summary h2,
.npp-info-cta h2 {
  margin: 8px 0 12px;
  color: var(--npp-navy);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.npp-info-lead p,
.npp-info-card p,
.npp-legal-summary p,
.npp-info-cta p {
  color: var(--npp-muted);
  line-height: 1.72;
}

.npp-info-grid article,
.npp-info-card,
.npp-legal-summary,
.npp-legal-card,
.npp-faq-panel {
  border: 1px solid rgba(53, 211, 153, .18);
  border-radius: 22px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 22px 60px rgba(7, 20, 38, .07);
}

.npp-info-grid article {
  min-height: 235px;
  padding: 24px;
}

.npp-info-grid span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #06111f;
  background: var(--npp-green);
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(53, 211, 153, .24);
}

.npp-info-grid h3 {
  margin: 18px 0 8px;
  color: var(--npp-navy);
  font-size: 22px;
  line-height: 1.12;
}

.npp-info-grid p {
  color: var(--npp-muted);
  line-height: 1.62;
}

.npp-info-split,
.npp-legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  gap: 24px;
  align-items: start;
}

.npp-info-card,
.npp-legal-summary,
.npp-legal-card {
  padding: clamp(24px, 4vw, 38px);
}

.npp-info-card-soft {
  background:
    radial-gradient(circle at 88% 8%, rgba(53, 211, 153, .18), transparent 28%),
    linear-gradient(180deg, #fff, rgba(235, 255, 248, .88));
}

.npp-info-card-dark {
  align-self: stretch;
  display: grid;
  align-content: center;
  color: #fff;
  background:
    radial-gradient(circle at 92% 8%, rgba(53, 211, 153, .26), transparent 30%),
    linear-gradient(135deg, #07111f, #0b4a3c);
}

.npp-info-card-dark h2,
.npp-info-card-dark p {
  color: #fff;
}

.npp-check-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.npp-check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--npp-muted);
  line-height: 1.55;
}

.npp-check-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #06111f;
  background: var(--npp-green);
  font-size: 12px;
  font-weight: 900;
}

.npp-embedded-content {
  margin-top: 22px;
}

.npp-certificate-checker {
  margin-top: 24px;
}

.npp-certificate-checker .stm_lms_certificate_checker {
  max-width: none;
}

.npp-certificate-checker .stm_lms_certificate_checker h3 {
  display: none;
}

.npp-certificate-checker .stm_lms_certificate_checker__form {
  display: flex;
  gap: 12px;
  align-items: stretch;
  position: relative;
}

.npp-certificate-checker .stm_lms_certificate_checker__input {
  flex: 1;
}

.npp-certificate-checker input.form-control {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(7, 17, 31, .14);
  border-radius: 14px;
  color: var(--npp-navy);
  background: rgba(255, 255, 255, .94);
  box-shadow: none;
}

.npp-certificate-checker input.form-control:focus {
  border-color: rgba(53, 211, 153, .78);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(53, 211, 153, .16);
}

.npp-certificate-checker .stm_lms_certificate_checker__form a.btn.btn-default {
  position: static;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  color: #06111f;
  background: var(--npp-green);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(53, 211, 153, .24);
}

.npp-certificate-checker .stm-lms-message {
  margin-top: 14px;
  border-radius: 14px;
  font-weight: 700;
}

.npp-faq-panel {
  max-width: 1120px;
  padding: 18px;
}

.npp-faq-panel .npp-faq-item {
  box-shadow: none;
}

.page-id-11511 .npp-faq-panel {
  display: grid;
  gap: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.page-id-11511 .npp-faq-item {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(53, 211, 153, .20);
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
  box-shadow: none;
  transition: background-color .3s ease, border-color .3s ease;
}

.page-id-11511 .npp-faq-item:hover {
  border-color: rgba(53, 211, 153, .28);
  background: var(--accent-5);
  cursor: pointer;
}

.page-id-11511 .npp-faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 62px;
  padding: 18px 58px 18px 20px;
  color: var(--npp-navy);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
  list-style: none;
}

.page-id-11511 .npp-faq-item summary::-webkit-details-marker {
  display: none;
}

.page-id-11511 .npp-faq-item summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(8, 33, 59, .14);
  border-radius: 50%;
  background: rgba(8, 33, 59, .06);
  transform: translateY(-50%) rotate(0deg);
  transition: transform .2s ease, background-color .2s ease;
}

.page-id-11511 .npp-faq-item summary::before {
  content: var(--stmlms-icon-arrow-down);
  position: absolute;
  top: 50%;
  right: 31px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  color: #4d5e6f;
  font-family: stmlms;
  font-size: 6px;
  font-style: normal;
  font-variant: normal;
  line-height: normal;
  text-decoration: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translateY(-50%) rotate(0deg);
  transition: transform .2s ease;
  pointer-events: none;
}

.page-id-11511 .npp-faq-item[open] summary::after {
  background-color: rgba(53, 211, 153, .12);
}

.page-id-11511 .npp-faq-item[open] summary::before {
  transform: translateY(-50%) rotate(180deg);
}

.page-id-11511 .npp-faq-item p {
  margin: 0;
  padding: 18px 20px;
  border-top: 1px solid rgba(8, 33, 59, .08);
  color: #334860;
  background: rgba(53, 211, 153, .045);
  font-size: 16px;
  line-height: 1.72;
}

.npp-faq-layout {
  display: grid;
  gap: 22px;
  max-width: 1120px;
}

.npp-faq-group {
  display: grid;
  grid-template-columns: minmax(230px, .38fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.npp-faq-group-head {
  position: sticky;
  top: 102px;
  padding: 24px;
  border: 1px solid rgba(53, 211, 153, .18);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 12%, rgba(53, 211, 153, .16), transparent 28%),
    rgba(255, 255, 255, .95);
  box-shadow: 0 18px 46px rgba(7, 20, 38, .06);
}

.npp-faq-group-head h2 {
  margin: 8px 0 10px;
  color: var(--npp-navy);
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.npp-faq-group-head p:not(.npp-eyebrow) {
  color: var(--npp-muted);
  line-height: 1.62;
}

.npp-info-cta {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(53, 211, 153, .24);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 12%, rgba(53, 211, 153, .18), transparent 28%),
    #fff;
  box-shadow: 0 22px 60px rgba(7, 20, 38, .07);
}

.npp-info-cta p {
  max-width: 700px;
  margin-bottom: 0;
}

.npp-legal-layout {
  grid-template-columns: minmax(260px, .42fr) minmax(0, 1fr);
}

.npp-legal-summary {
  position: sticky;
  top: 102px;
  background:
    radial-gradient(circle at 88% 10%, rgba(53, 211, 153, .18), transparent 28%),
    linear-gradient(180deg, #fff, rgba(235, 255, 248, .9));
}

.npp-legal-card h2 {
  margin: 26px 0 8px;
  color: var(--npp-navy);
  font-size: 24px;
  line-height: 1.18;
}

.npp-legal-card h2:first-child {
  margin-top: 0;
}

.npp-legal-card p {
  color: var(--npp-muted);
  line-height: 1.76;
}

.npp-legal-note {
  margin-top: 28px;
  padding: 15px 16px;
  border-radius: 14px;
  color: #063d32;
  background: rgba(53, 211, 153, .12);
  font-weight: 800;
}

.npp-blog-list-section {
  padding-top: 22px;
}

.npp-about-hero {
  padding-bottom: 22px;
}

.npp-about-hero-card {
  grid-template-columns: 1fr;
  max-width: 1120px;
}

.npp-about-hero-card h1 {
  max-width: 900px;
  margin-left: 0;
  margin-right: 0;
}

.npp-about-hero-card p:not(.npp-eyebrow) {
  max-width: 760px;
  margin-left: 0;
  margin-right: 0;
}

.npp-about-hero-panel {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(7, 17, 31, .96), rgba(11, 76, 61, .9));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.npp-about-hero-panel span {
  display: block;
  padding: 12px 14px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.npp-about-intro-section {
  padding-top: 22px;
  padding-bottom: 58px;
}

.npp-about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 24px;
  align-items: stretch;
}

.npp-about-lead,
.npp-about-highlight,
.npp-about-story-card,
.npp-about-list-card {
  border: 1px solid rgba(53, 211, 153, .18);
  border-radius: 24px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 24px 70px rgba(7, 20, 38, .08);
}

.npp-about-lead {
  padding: clamp(26px, 4vw, 44px);
}

.npp-about-lead h2,
.npp-about-story-card h2,
.npp-about-cta h2 {
  max-width: 850px;
  margin: 8px 0 16px;
  color: var(--npp-navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.npp-about-lead p,
.npp-about-story-card p,
.npp-about-cta p {
  max-width: 760px;
  color: var(--npp-muted);
  font-size: 17px;
  line-height: 1.75;
}

.npp-about-highlight {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 320px;
  padding: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(53, 211, 153, .36), transparent 30%),
    linear-gradient(135deg, var(--npp-navy), #073d32);
}

.npp-about-highlight strong {
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.npp-about-highlight span {
  margin-top: 14px;
  color: rgba(255, 255, 255, .84);
  line-height: 1.65;
}

.npp-about-highlight ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.npp-about-highlight li {
  padding: 11px 13px;
  color: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  font-size: 13px;
  font-weight: 800;
}

.npp-about-pillars-section {
  padding-top: 52px;
  padding-bottom: 54px;
}

.npp-about-pillars article {
  position: relative;
  min-height: 205px;
  padding: 24px;
  border-color: rgba(53, 211, 153, .2);
}

.npp-about-pillars article span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--npp-navy);
  border-radius: 999px;
  background: var(--npp-green);
  box-shadow: 0 16px 36px rgba(53, 211, 153, .26);
  font-weight: 900;
}

.npp-about-pillars h3 {
  margin: 0 0 10px;
}

.npp-about-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: 24px;
  align-items: stretch;
}

.npp-about-story-section {
  padding-top: 58px;
  padding-bottom: 54px;
}

.npp-about-story-card,
.npp-about-list-card {
  padding: clamp(26px, 4vw, 40px);
}

.npp-about-list-card {
  background:
    linear-gradient(180deg, rgba(232, 255, 247, .8), rgba(255, 255, 255, .96));
}

.npp-about-list-card h3 {
  margin-top: 0;
  color: var(--npp-navy);
  font-size: 24px;
}

.npp-about-list-card ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.npp-about-list-card li {
  padding: 13px 14px;
  color: #243653;
  border: 1px solid rgba(7, 17, 31, .08);
  border-radius: 14px;
  background: #fff;
  line-height: 1.45;
}

.npp-about-cta-section {
  padding-top: 0;
  padding-bottom: 72px;
}

.npp-about-cta {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(53, 211, 153, .24);
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 10%, rgba(53, 211, 153, .24), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(232, 255, 247, .88));
  box-shadow: 0 24px 70px rgba(7, 20, 38, .08);
}

.npp-about-cta h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 3.4vw, 42px);
}

.npp-about-cta .npp-btn {
  flex: 0 0 auto;
}

.npp-contact-intro-section {
  padding-top: 44px;
  padding-bottom: 58px;
}

.npp-contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(0, 1.22fr);
  gap: 24px;
  align-items: stretch;
}

.npp-contact-side,
.npp-contact-form-card,
.npp-contact-help-card {
  border: 1px solid rgba(53, 211, 153, .18);
  border-radius: 24px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 24px 70px rgba(7, 20, 38, .08);
}

.npp-contact-side {
  padding: clamp(26px, 4vw, 38px);
  background:
    radial-gradient(circle at 84% 16%, rgba(53, 211, 153, .2), transparent 28%),
    linear-gradient(180deg, #fff, rgba(232, 255, 247, .88));
}

.npp-contact-side h2,
.npp-contact-form-card h2 {
  margin: 8px 0 14px;
  color: var(--npp-navy);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.npp-contact-side p,
.npp-contact-form-card p {
  color: var(--npp-muted);
  line-height: 1.72;
}

.npp-contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.npp-contact-methods a {
  display: grid;
  gap: 4px;
  padding: 15px 16px;
  color: var(--npp-navy);
  border: 1px solid rgba(7, 17, 31, .08);
  border-radius: 16px;
  background: #fff;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.npp-contact-methods a:hover {
  border-color: rgba(53, 211, 153, .4);
  box-shadow: 0 14px 34px rgba(7, 20, 38, .08);
  transform: translateY(-1px);
}

.npp-contact-methods span {
  color: var(--npp-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.npp-contact-methods strong {
  overflow-wrap: anywhere;
}

.npp-contact-form-card {
  padding: clamp(26px, 4vw, 40px);
}

.npp-contact-form-wrap {
  margin-top: 22px;
}

.npp-contact-form-wrap form {
  display: grid;
  gap: 14px;
}

.npp-cf7-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.npp-cf7-field-full {
  grid-column: 1 / -1;
}

.npp-contact-form-wrap p {
  margin: 0;
}

.npp-contact-form-wrap label {
  display: grid;
  gap: 8px;
  color: var(--npp-navy);
  font-weight: 800;
}

.npp-contact-form-wrap input,
.npp-contact-form-wrap textarea,
.npp-contact-form-wrap select {
  border-color: rgba(7, 17, 31, .12);
  background: rgba(255, 255, 255, .96);
}

.npp-contact-form-wrap textarea {
  min-height: 180px;
}

.npp-contact-form-wrap form.sent .npp-cf7-grid,
.npp-contact-form-wrap form.sent > p,
.npp-contact-form-wrap form.sent .wpcf7-spinner {
  display: none;
}

.npp-contact-form-wrap .wpcf7 form.sent .wpcf7-response-output,
.npp-contact-form-wrap form.sent .wpcf7-response-output {
  display: grid;
  min-height: 260px;
  margin: 18px 0 0;
  padding: 42px 28px;
  place-items: center;
  border: 1px solid rgba(53, 211, 153, .42);
  border-radius: 22px;
  background:
    radial-gradient(circle at 80% 20%, rgba(53, 211, 153, .22), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #effdf7 100%);
  color: var(--npp-navy);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  box-shadow: 0 22px 54px rgba(7, 20, 38, .1);
}

.npp-contact-form-wrap form.sent .wpcf7-response-output::before {
  content: "♪";
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 18px;
  background: #07111f;
  color: var(--npp-green);
  font-size: 30px;
  box-shadow: 0 16px 36px rgba(53, 211, 153, .28);
}

.npp-contact-help-section {
  padding-top: 54px;
  padding-bottom: 72px;
}

.npp-contact-help-card {
  display: block;
  min-height: 220px;
  padding: 26px;
  color: inherit;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.npp-contact-help-card:hover {
  border-color: rgba(53, 211, 153, .42);
  box-shadow: 0 22px 54px rgba(7, 20, 38, .1);
  transform: translateY(-2px);
}

.npp-contact-help-card span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 22px;
  color: var(--npp-navy);
  border-radius: 999px;
  background: var(--npp-green);
  box-shadow: 0 16px 36px rgba(53, 211, 153, .24);
  font-weight: 900;
}

.npp-contact-help-card h3 {
  margin: 0 0 10px;
  color: var(--npp-navy);
}

.npp-contact-help-card p {
  margin: 0;
  color: var(--npp-muted);
  line-height: 1.65;
}

.npp-single-section {
  padding-top: 22px;
  background: linear-gradient(180deg, #fff, var(--npp-soft));
}

.npp-single-content {
  max-width: 1120px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(53, 211, 153, .18);
  border-radius: 24px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 24px 70px rgba(7, 20, 38, .08);
}

.npp-single-content h2,
.npp-single-content h3,
.npp-single-content h4 {
  margin-top: 1.65em;
  color: var(--npp-navy);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.npp-single-content p,
.npp-single-content li {
  color: #243653;
  font-size: 17px;
  line-height: 1.82;
}

.npp-single-content p:first-child {
  margin-top: 0;
}

.npp-single-content a {
  color: #007f5f;
  font-weight: 800;
}

.npp-single-content ul,
.npp-single-content ol {
  padding-left: 1.35em;
}

.npp-single-content blockquote {
  margin: 28px 0;
  padding: 20px 22px;
  border-left: 4px solid var(--npp-green);
  border-radius: 14px;
  background: rgba(53, 211, 153, .08);
}

.npp-page-hero-split .npp-split {
  align-items: center;
}

.npp-error-page {
  min-height: calc(100vh - 76px - 290px);
  display: grid;
  align-items: center;
  padding: clamp(72px, 8vw, 120px) 0;
  background:
    radial-gradient(circle at 84% 20%, rgba(53, 211, 153, .2), transparent 30%),
    linear-gradient(180deg, #edf8f4, #fff);
}

.npp-error-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.npp-error-copy h1 {
  max-width: 760px;
  margin: 12px 0 18px;
  color: var(--npp-navy);
  font-size: clamp(42px, 6vw, 82px);
  line-height: .98;
  letter-spacing: -0.045em;
}

.npp-error-copy p {
  max-width: 680px;
  margin: 0 0 28px;
  color: var(--npp-muted);
  font-size: 19px;
}

.npp-btn-dark {
  color: var(--npp-navy);
  border-color: rgba(7, 17, 31, .18);
  background: rgba(7, 17, 31, .04);
}

.npp-btn-dark:hover {
  color: var(--npp-navy);
  background: rgba(53, 211, 153, .14);
}

.npp-error-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  padding: 34px;
  color: #fff;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--npp-navy), #0b3b32);
  box-shadow: var(--npp-shadow);
}

.npp-error-card::before {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 230px;
  height: 230px;
  border-radius: 999px;
  background: rgba(53, 211, 153, .2);
}

.npp-error-code {
  position: relative;
  display: block;
  color: var(--npp-green);
  font-size: clamp(70px, 9vw, 116px);
  font-weight: 950;
  line-height: .9;
  letter-spacing: -0.06em;
}

.npp-error-staff {
  display: grid;
  gap: 13px;
  margin: 38px 0 28px;
}

.npp-error-staff i {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .22);
}

.npp-error-notes {
  position: absolute;
  inset: 108px 32px auto auto;
  display: flex;
  gap: 12px;
  color: #fff;
  font-size: 34px;
}

.npp-error-notes span:nth-child(2) {
  color: var(--npp-green);
  transform: translateY(34px);
}

.npp-error-notes span:nth-child(3) {
  transform: translateY(72px);
}

.npp-error-card p {
  position: relative;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.npp-about-card {
  padding: 26px;
  color: #fff;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--npp-navy), #0b3b32);
  box-shadow: var(--npp-shadow);
}

.npp-about-card strong,
.npp-about-card span {
  display: block;
}

.npp-about-card strong {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.15;
}

.npp-about-card span {
  color: rgba(255, 255, 255, .74);
}

.npp-two-columns {
  grid-template-columns: repeat(2, 1fr);
}

.npp-contact-grid {
  grid-template-columns: .82fr 1.18fr;
}

.npp-guide-grid {
  grid-template-columns: repeat(4, 1fr);
}

.npp-faq {
  max-width: 880px;
}

.npp-faq-item {
  margin-bottom: 14px;
}

.npp-faq-item summary {
  cursor: pointer;
  color: var(--npp-navy);
  font-size: 20px;
  font-weight: 900;
}

.npp-content {
  max-width: 1120px;
}

.npp-content h2,
.npp-content h3 {
  color: var(--npp-navy);
}

.npp-content a {
  color: #007f5f;
  font-weight: 800;
}

.npp-content input,
.npp-content textarea,
.npp-content select,
.npp-woo input,
.npp-woo textarea,
.npp-woo select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--npp-line);
  border-radius: var(--npp-radius);
}

.npp-content button,
.npp-content input[type="submit"],
.npp-woo button,
.npp-woo .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  min-height: 46px;
  padding: 12px 18px !important;
  color: #06111f !important;
  border: 0 !important;
  border-radius: var(--npp-radius) !important;
  background: var(--npp-green) !important;
  font-weight: 900 !important;
}

.page-id-23788 .npp-content {
  width: min(1120px, calc(100% - 40px)) !important;
  max-width: 1120px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.page-id-23788 .npp-page-hero {
  display: none;
}

.page-id-23788 .npp-page-hero .npp-eyebrow {
  margin-bottom: 4px;
}

.page-id-23788 .npp-page-hero h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
}

.page-id-23788 .npp-section {
  padding: 0 0 44px;
}

body.page-id-23788:not(.logged-in) .npp-section {
  padding-top: clamp(34px, 5vw, 58px) !important;
  padding-bottom: 58px !important;
}

body.page-id-23788:not(.logged-in) .masterstudy__login-page-form {
  margin-top: 0 !important;
  min-height: calc(100vh - 210px) !important;
  border-radius: 18px !important;
}

@media (max-width: 700px) {
  body.page-id-23788:not(.logged-in) .npp-content {
    padding-top: 42px !important;
  }

  body.page-id-23788:not(.logged-in) .npp-section {
    padding-top: 30px !important;
    padding-bottom: 42px !important;
  }

  body.page-id-23788:not(.logged-in) .masterstudy__login-page-form {
    min-height: calc(100vh - 170px) !important;
  }
}

.page-id-23790 .npp-public-account-hero {
  padding-top: 42px;
  padding-bottom: 18px;
}

.page-id-23790 .npp-public-account-section {
  padding-top: 26px;
  padding-bottom: 58px;
}

.page-id-23790 .npp-content {
  min-height: 320px;
}

.npp-theme .masterstudy-student-public {
  width: min(1120px, calc(100% - 32px));
  margin: clamp(34px, 5vw, 72px) auto 70px;
  color: #061121;
}

.npp-theme .masterstudy-student-public__profile {
  overflow: hidden;
  border: 1px solid rgba(53, 211, 153, .22);
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 8%, rgba(53, 211, 153, .18), transparent 34%),
    linear-gradient(135deg, #071421 0%, #0b2237 52%, #0e3a43 100%);
  box-shadow: 0 24px 60px rgba(6, 17, 33, .14);
}

.npp-theme .masterstudy-student-public__profile-container {
  padding: clamp(22px, 4vw, 38px) !important;
}

.npp-theme .masterstudy-student-public__user {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 30px);
  align-items: center;
}

.npp-theme .masterstudy-student-public__avatar {
  position: relative;
  width: clamp(98px, 13vw, 138px);
  height: clamp(98px, 13vw, 138px);
  padding: 5px;
  border-radius: 28px;
  background: linear-gradient(135deg, #35d399, #ffd65f);
  box-shadow: 0 18px 42px rgba(53, 211, 153, .2);
}

.npp-theme .masterstudy-student-public__avatar::after {
  content: "";
  position: absolute;
  right: 9px;
  bottom: 9px;
  width: 18px;
  height: 18px;
  border: 3px solid #071421;
  border-radius: 50%;
  background: #35d399;
  box-shadow: 0 0 0 5px rgba(53, 211, 153, .14);
}

.npp-theme .masterstudy-student-public__avatar img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  border-radius: 23px !important;
  object-fit: cover;
}

.npp-theme .masterstudy-student-public__personal {
  min-width: 0;
}

.npp-theme .masterstudy-student-public_compact .masterstudy-student-public__personal {
  display: flex !important;
  flex-direction: column !important;
  gap: 28px !important;
}

.npp-theme .masterstudy-student-public__name {
  margin: 0 !important;
  color: #ffffff !important;
  font-size: clamp(28px, 4vw, 44px) !important;
  font-weight: 900 !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
}

.npp-theme .masterstudy-student-public__member {
  display: inline-flex;
  align-items: center;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .78) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}

.npp-theme .masterstudy-student-public_compact .masterstudy-student-public__member {
  align-self: center;
}

.npp-theme .masterstudy-student-public__actions {
  display: flex;
  justify-content: flex-end;
}

.npp-theme .masterstudy-student-public__actions .masterstudy-button {
  min-height: 46px !important;
  padding: 0 20px !important;
  border: 0 !important;
  border-radius: 13px !important;
  background: #35d399 !important;
  color: #061121 !important;
  box-shadow: 0 18px 40px rgba(53, 211, 153, .24) !important;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease !important;
}

.npp-theme .masterstudy-student-public__actions .masterstudy-button:hover,
.npp-theme .masterstudy-student-public__actions .masterstudy-button:focus-visible {
  background: #ffd65f !important;
  color: #061121 !important;
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(255, 214, 95, .22) !important;
  outline: none;
}

.npp-theme .masterstudy-student-public__actions .masterstudy-button__title {
  color: inherit !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
}

.npp-theme .masterstudy-student-public__content {
  margin-top: 22px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(56, 91, 206, .14);
  border-radius: 20px;
  background:
    radial-gradient(circle at 12% 0%, rgba(53, 211, 153, .11), transparent 28%),
    #ffffff;
  box-shadow: 0 20px 48px rgba(11, 30, 54, .08);
}

.npp-theme .masterstudy-student-public__list-header {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 18px !important;
  padding: 0 0 16px !important;
  border-bottom: 1px solid rgba(56, 91, 206, .12);
}

.npp-theme .masterstudy-student-public__list-header-title {
  color: #061121 !important;
  font-size: clamp(22px, 3vw, 30px) !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
}

.npp-theme .masterstudy-student-public__list {
  display: grid;
  gap: 14px;
}

.npp-theme .masterstudy-student-public__list > * {
  overflow: hidden;
  border: 1px solid rgba(56, 91, 206, .14) !important;
  border-radius: 16px !important;
  background: #ffffff !important;
  box-shadow: 0 12px 30px rgba(11, 30, 54, .06);
}

.npp-theme .masterstudy-student-public__empty {
  margin: 10px 0 0 !important;
}

.npp-theme .masterstudy-student-public__empty-block {
  display: grid !important;
  justify-items: center;
  gap: 12px;
  min-height: 190px;
  padding: 34px 20px !important;
  border: 1px dashed rgba(56, 91, 206, .24);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(53, 211, 153, .13), transparent 34%),
    #f7fbff;
}

.npp-theme .masterstudy-student-public__empty-icon {
  display: grid !important;
  width: 64px !important;
  height: 64px !important;
  place-items: center;
  border-radius: 18px;
  background: rgba(53, 211, 153, .16);
}

.npp-theme .masterstudy-student-public__empty-icon::before {
  content: "♪";
  color: #35d399;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.npp-theme .masterstudy-student-public__empty-text {
  max-width: 420px;
  color: #49607f !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  line-height: 1.5 !important;
  text-align: center;
}

@media (max-width: 760px) {
  .npp-theme .masterstudy-student-public {
    width: min(100% - 24px, 520px);
    margin-top: 26px;
    margin-bottom: 48px;
  }

  .npp-theme .masterstudy-student-public__user {
    grid-template-columns: 1fr !important;
    justify-items: center;
    text-align: center;
  }

  .npp-theme .masterstudy-student-public__actions {
    width: 100%;
    justify-content: center;
  }

  .npp-theme .masterstudy-student-public__actions .masterstudy-button {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .npp-theme .masterstudy-student-public__member {
    justify-content: center;
  }

  .npp-theme .masterstudy-student-public__list-header {
    justify-content: center;
    text-align: center;
  }
}

/* MasterStudy chat final layout: selector above, chat below. */
body.page-id-23788.npp-account-chat #masterstudy-account-messages,
body.page-id-23788.npp-account-chat .masterstudy-account-messages {
  width: min(100%, 860px) !important;
  max-width: 860px !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  overflow: visible !important;
}

body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__layout {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 18px !important;
  align-items: stretch !important;
  width: 100% !important;
  max-width: 100% !important;
}

body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__list {
  order: 1 !important;
  grid-column: 1 !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__panel,
body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__chat-container,
body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__empty {
  order: 2 !important;
  grid-column: 1 !important;
  position: relative !important;
  inset: auto !important;
  transform: none !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__panel:not(.is-hidden),
body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__chat-container:not(.is-hidden) {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
}

body.page-id-23788.npp-account-chat #masterstudy-account-messages .npp-chat-empty {
  display: none !important;
}

body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__panel-card {
  display: flex !important;
  flex-direction: column !important;
  min-height: 520px !important;
  height: auto !important;
}

body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__thread {
  flex: 1 1 auto !important;
  min-height: 320px !important;
  max-height: 58vh !important;
  overflow-y: auto !important;
}

body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__composer {
  display: flex !important;
  flex: 0 0 auto !important;
  align-items: center !important;
  gap: 10px !important;
  position: relative !important;
}

body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__input {
  display: block !important;
  flex: 1 1 auto !important;
  width: auto !important;
  min-width: 0 !important;
}

@media (max-width: 760px) {
  body.page-id-23788.npp-account-chat #masterstudy-account-messages,
  body.page-id-23788.npp-account-chat .masterstudy-account-messages {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    overflow: hidden !important;
  }

  body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__layout {
    gap: 14px !important;
  }

  body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__panel-card {
    min-height: 440px !important;
  }

body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__thread {
    min-height: 250px !important;
    max-height: 46vh !important;
  }
}

/* Final override: MasterStudy chat must be selector first, chat below. */
body.npp-theme.npp-account-chat,
body.npp-account-chat {
  overflow-x: hidden !important;
}

body.npp-theme.npp-account-chat #stm_lms_chat {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  overflow-x: hidden !important;
}

body.npp-theme.npp-account-chat #stm_lms_chat > .row,
body.npp-theme.npp-account-chat #stm_lms_chat.npp-instructor-chat-layout > .row {
  display: flex !important;
  flex-direction: column !important;
  flex-wrap: nowrap !important;
  gap: 18px !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.npp-theme.npp-account-chat #stm_lms_chat > .row > [class*="col-"],
body.npp-theme.npp-account-chat #stm_lms_chat.npp-instructor-chat-layout > .row > [class*="col-"] {
  display: block !important;
  float: none !important;
  flex: 0 0 auto !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body.npp-theme.npp-account-chat #stm_lms_chat .npp-instructor-chat-panel,
body.npp-theme.npp-account-chat #stm_lms_chat .npp-chat-empty,
body.npp-theme.npp-account-chat #stm_lms_chat .stm_lms_chat__conversations {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

body.npp-theme.npp-account-chat #stm_lms_chat .stm_lms_chat__chat-container {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 520px !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

body.npp-theme.npp-account-chat #stm_lms_chat #stm_lms_chat_messages {
  min-height: 360px !important;
  max-height: 58vh !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

body.npp-theme.npp-account-chat #stm_lms_chat .stm_lms_chat_messages__send {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 10px !important;
  align-items: center !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

body.npp-theme.npp-account-chat #stm_lms_chat .stm_lms_chat_messages__send-message {
  min-width: 0 !important;
  max-width: 100% !important;
}

@media (max-width: 767px) {
  body.npp-theme.npp-account-chat .stm_lms_user_account__content,
  body.npp-theme.npp-account-chat .masterstudy-account-content {
    width: min(100% - 24px, 560px) !important;
    max-width: calc(100vw - 24px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body.npp-theme.npp-account-chat #stm_lms_chat {
    width: 100% !important;
    max-width: calc(100vw - 24px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body.npp-theme.npp-account-chat #stm_lms_chat > .row {
    gap: 14px !important;
  }

  body.npp-theme.npp-account-chat #stm_lms_chat select,
  body.npp-theme.npp-account-chat #stm_lms_chat input,
  body.npp-theme.npp-account-chat #stm_lms_chat textarea {
    max-width: 100% !important;
  }

  body.npp-theme.npp-account-chat #stm_lms_chat .stm_lms_chat__chat-container {
    min-height: 540px !important;
  }

body.npp-theme.npp-account-chat #stm_lms_chat #stm_lms_chat_messages {
    min-height: 360px !important;
    max-height: 54vh !important;
  }
}

/* Chat account frame: match the regular account page instead of stretching full width. */
body.npp-theme.npp-account-chat .masterstudy-account {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 1210px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  overflow: visible !important;
}

body.npp-theme.npp-account-chat .masterstudy-account-container {
  box-sizing: border-box !important;
  flex: 1 1 auto !important;
  width: 100% !important;
  max-width: 870px !important;
  min-width: 0 !important;
  overflow: visible !important;
}

body.npp-theme.npp-account-chat #masterstudy-account-messages,
body.npp-theme.npp-account-chat .masterstudy-account-messages {
  width: 100% !important;
  max-width: 870px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  overflow: visible !important;
}

body.npp-theme.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__layout {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

body.npp-theme.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__list,
body.npp-theme.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__panel,
body.npp-theme.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__chat-container,
body.npp-theme.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__panel-card {
  max-width: 100% !important;
  min-width: 0 !important;
}

@media (min-width: 1280px) {
  body.npp-theme.npp-account-chat .masterstudy-account {
    display: flex !important;
    align-items: flex-start !important;
    padding: 40px 20px !important;
  }

  body.npp-theme.npp-account-chat .masterstudy-account-sidebar {
    position: relative !important;
    inset: auto !important;
    z-index: auto !important;
    display: flex !important;
    flex: 0 0 260px !important;
    width: 260px !important;
    height: auto !important;
    margin-right: 40px !important;
    overflow: visible !important;
    background: transparent !important;
  }
}

@media (min-width: 768px) and (max-width: 1279.98px) {
  body.npp-theme.npp-account-chat .masterstudy-account {
    width: min(930px, calc(100vw - 40px)) !important;
    max-width: min(930px, calc(100vw - 40px)) !important;
    padding: 24px 0 100px !important;
  }

  body.npp-theme.npp-account-chat .masterstudy-account-container,
  body.npp-theme.npp-account-chat #masterstudy-account-messages,
  body.npp-theme.npp-account-chat .masterstudy-account-messages {
    max-width: 100% !important;
  }
}

@media (max-width: 767.98px) {
  body.npp-theme.npp-account-chat .masterstudy-account {
    width: min(100% - 24px, 560px) !important;
    max-width: calc(100vw - 24px) !important;
    padding: 18px 0 96px !important;
  }

  body.npp-theme.npp-account-chat .masterstudy-account-container,
  body.npp-theme.npp-account-chat #masterstudy-account-messages,
  body.npp-theme.npp-account-chat .masterstudy-account-messages {
    width: 100% !important;
    max-width: 100% !important;
  }

  body.npp-theme.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__panel,
  body.npp-theme.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__chat-container {
    position: relative !important;
    inset: auto !important;
    height: auto !important;
  }
}

/* Chat page: keep the selector card above and the conversation below. */
body.npp-theme.npp-account-chat #stm_lms_chat.npp-chat-panel-above,
body.npp-theme.npp-account-chat #masterstudy-account-messages.npp-chat-panel-above,
body.npp-account-chat #stm_lms_chat.npp-chat-panel-above,
body.npp-account-chat #masterstudy-account-messages.npp-chat-panel-above {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 16px !important;
  width: min(100%, 900px) !important;
  max-width: 900px !important;
  min-width: 0 !important;
  margin: 0 !important;
  overflow-x: hidden !important;
  box-sizing: border-box !important;
}

body.npp-theme.npp-account-chat #stm_lms_chat.npp-chat-panel-above > .npp-instructor-chat-panel,
body.npp-theme.npp-account-chat #masterstudy-account-messages.npp-chat-panel-above > .npp-instructor-chat-panel,
body.npp-account-chat #stm_lms_chat.npp-chat-panel-above > .npp-instructor-chat-panel,
body.npp-account-chat #masterstudy-account-messages.npp-chat-panel-above > .npp-instructor-chat-panel {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

body.npp-theme.npp-account-chat #stm_lms_chat.npp-chat-panel-above > .row,
body.npp-theme.npp-account-chat #masterstudy-account-messages.npp-chat-panel-above > .row,
body.npp-account-chat #stm_lms_chat.npp-chat-panel-above > .row,
body.npp-account-chat #masterstudy-account-messages.npp-chat-panel-above > .row {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  overflow-x: hidden !important;
  box-sizing: border-box !important;
}

body.npp-theme.npp-account-chat #stm_lms_chat.npp-chat-panel-above .npp-chat-original-list-hidden,
body.npp-theme.npp-account-chat #masterstudy-account-messages.npp-chat-panel-above .npp-chat-original-list-hidden,
body.npp-account-chat #stm_lms_chat.npp-chat-panel-above .npp-chat-original-list-hidden,
body.npp-account-chat #masterstudy-account-messages.npp-chat-panel-above .npp-chat-original-list-hidden {
  display: none !important;
}

body.npp-theme.npp-account-chat #stm_lms_chat.npp-chat-panel-above > .row > [class*="col-"],
body.npp-theme.npp-account-chat #masterstudy-account-messages.npp-chat-panel-above > .row > [class*="col-"],
body.npp-account-chat #stm_lms_chat.npp-chat-panel-above > .row > [class*="col-"],
body.npp-account-chat #masterstudy-account-messages.npp-chat-panel-above > .row > [class*="col-"] {
  display: block !important;
  float: none !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  flex: 0 0 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box !important;
}

body.npp-theme.npp-account-chat #stm_lms_chat.npp-chat-panel-above .stm_lms_chat__chat-container,
body.npp-theme.npp-account-chat #masterstudy-account-messages.npp-chat-panel-above .masterstudy-account-messages__chat-container,
body.npp-theme.npp-account-chat #masterstudy-account-messages.npp-chat-panel-above .masterstudy-account-messages__panel,
body.npp-account-chat #stm_lms_chat.npp-chat-panel-above .stm_lms_chat__chat-container,
body.npp-account-chat #masterstudy-account-messages.npp-chat-panel-above .masterstudy-account-messages__chat-container,
body.npp-account-chat #masterstudy-account-messages.npp-chat-panel-above .masterstudy-account-messages__panel {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 520px !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

body.npp-theme.npp-account-chat #stm_lms_chat.npp-chat-panel-above #stm_lms_chat_messages,
body.npp-account-chat #stm_lms_chat.npp-chat-panel-above #stm_lms_chat_messages {
  flex: 1 1 auto !important;
  min-height: 320px !important;
  max-height: 58vh !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

body.npp-theme.npp-account-chat #stm_lms_chat.npp-chat-panel-above .stm_lms_chat_messages__send,
body.npp-account-chat #stm_lms_chat.npp-chat-panel-above .stm_lms_chat_messages__send {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 10px !important;
  align-items: center !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

body.npp-theme.npp-account-chat #stm_lms_chat.npp-chat-panel-above .stm_lms_chat_messages__send-message,
body.npp-account-chat #stm_lms_chat.npp-chat-panel-above .stm_lms_chat_messages__send-message {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

@media (max-width: 767px) {
  body.npp-theme.npp-account-chat #stm_lms_chat.npp-chat-panel-above,
  body.npp-theme.npp-account-chat #masterstudy-account-messages.npp-chat-panel-above,
  body.npp-account-chat #stm_lms_chat.npp-chat-panel-above,
  body.npp-account-chat #masterstudy-account-messages.npp-chat-panel-above {
    width: 100% !important;
    max-width: 100% !important;
    gap: 12px !important;
  }

  body.npp-theme.npp-account-chat #stm_lms_chat.npp-chat-panel-above .stm_lms_chat__chat-container,
  body.npp-theme.npp-account-chat #masterstudy-account-messages.npp-chat-panel-above .masterstudy-account-messages__chat-container,
  body.npp-theme.npp-account-chat #masterstudy-account-messages.npp-chat-panel-above .masterstudy-account-messages__panel,
  body.npp-account-chat #stm_lms_chat.npp-chat-panel-above .stm_lms_chat__chat-container,
  body.npp-account-chat #masterstudy-account-messages.npp-chat-panel-above .masterstudy-account-messages__chat-container,
  body.npp-account-chat #masterstudy-account-messages.npp-chat-panel-above .masterstudy-account-messages__panel {
    min-height: 560px !important;
  }

  body.npp-theme.npp-account-chat #stm_lms_chat.npp-chat-panel-above #stm_lms_chat_messages,
  body.npp-account-chat #stm_lms_chat.npp-chat-panel-above #stm_lms_chat_messages {
    min-height: 360px !important;
    max-height: none !important;
  }
}

/* Final override v3: chat layout uses the real MasterStudy root, without body-class dependency. */
#stm_lms_chat.npp-instructor-chat-layout {
  width: min(100%, 900px) !important;
  max-width: 900px !important;
  min-width: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
  box-sizing: border-box !important;
}

#stm_lms_chat.npp-instructor-chat-layout > .row {
  display: flex !important;
  flex-direction: column !important;
  flex-wrap: nowrap !important;
  gap: 18px !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
}

#stm_lms_chat.npp-instructor-chat-layout > .row::before,
#stm_lms_chat.npp-instructor-chat-layout > .row::after {
  display: none !important;
  content: none !important;
}

#stm_lms_chat.npp-instructor-chat-layout > .row > [class*="col-"] {
  display: block !important;
  float: none !important;
  flex: 0 0 auto !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

#stm_lms_chat.npp-instructor-chat-layout .npp-chat-empty,
#stm_lms_chat.npp-instructor-chat-layout .stm_lms_chat__conversations:not(:has(.npp-instructor-chat-panel)) {
  display: none !important;
}

#stm_lms_chat.npp-instructor-chat-layout .npp-instructor-chat-panel {
  display: grid !important;
  grid-template-columns: minmax(220px, 0.9fr) minmax(250px, 1fr) minmax(220px, 1fr) !important;
  gap: 14px 16px !important;
  align-items: start !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 22px !important;
  border-radius: 18px !important;
  box-sizing: border-box !important;
}

#stm_lms_chat.npp-instructor-chat-layout .npp-instructor-chat-panel[hidden] {
  display: none !important;
}

#stm_lms_chat.npp-instructor-chat-layout .npp-instructor-chat-panel__head {
  grid-column: 1 !important;
}

#stm_lms_chat.npp-instructor-chat-layout .npp-instructor-chat-panel__field,
#stm_lms_chat.npp-instructor-chat-layout .npp-instructor-chat-panel__tabs,
#stm_lms_chat.npp-instructor-chat-layout .npp-instructor-chat-panel__tools,
#stm_lms_chat.npp-instructor-chat-layout .npp-instructor-chat-panel__section,
#stm_lms_chat.npp-instructor-chat-layout .npp-instructor-chat-panel__tab-panel {
  min-width: 0 !important;
}

#stm_lms_chat.npp-instructor-chat-layout .npp-instructor-chat-panel select,
#stm_lms_chat.npp-instructor-chat-layout .npp-instructor-chat-panel input {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

#stm_lms_chat.npp-instructor-chat-layout .stm_lms_chat__chat-container {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 520px !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

#stm_lms_chat.npp-instructor-chat-layout #stm_lms_chat_messages {
  flex: 1 1 auto !important;
  min-height: 330px !important;
  max-height: 56vh !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

#stm_lms_chat.npp-instructor-chat-layout .stm_lms_chat_messages__send {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 10px !important;
  align-items: center !important;
  width: 100% !important;
  padding: 14px !important;
  box-sizing: border-box !important;
}

#stm_lms_chat.npp-instructor-chat-layout .stm_lms_chat_messages__send-message,
#stm_lms_chat.npp-instructor-chat-layout .stm_lms_chat_messages__send input,
#stm_lms_chat.npp-instructor-chat-layout .stm_lms_chat_messages__send textarea {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

@media (max-width: 767px) {
  #stm_lms_chat.npp-instructor-chat-layout {
    width: 100% !important;
    max-width: calc(100vw - 28px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    overflow-x: hidden !important;
  }

  #stm_lms_chat.npp-instructor-chat-layout > .row {
    gap: 14px !important;
  }

  #stm_lms_chat.npp-instructor-chat-layout .npp-instructor-chat-panel {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    padding: 18px !important;
  }

  #stm_lms_chat.npp-instructor-chat-layout .npp-instructor-chat-panel__head,
  #stm_lms_chat.npp-instructor-chat-layout .npp-instructor-chat-panel__field,
  #stm_lms_chat.npp-instructor-chat-layout .npp-instructor-chat-panel__tabs,
  #stm_lms_chat.npp-instructor-chat-layout .npp-instructor-chat-panel__tools,
  #stm_lms_chat.npp-instructor-chat-layout .npp-instructor-chat-panel__section,
  #stm_lms_chat.npp-instructor-chat-layout .npp-instructor-chat-panel__tab-panel {
    width: 100% !important;
    max-width: 100% !important;
  }

  #stm_lms_chat.npp-instructor-chat-layout .npp-instructor-chat-panel__head h3 {
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
  }

  #stm_lms_chat.npp-instructor-chat-layout .stm_lms_chat__chat-container {
    min-height: 540px !important;
  }

  #stm_lms_chat.npp-instructor-chat-layout #stm_lms_chat_messages {
    min-height: 360px !important;
    max-height: 54vh !important;
  }
}

/* Chat hard override v4: cover MasterStudy modern messages DOM too. */
#masterstudy-account-messages.npp-instructor-chat-layout,
.masterstudy-account-messages.npp-instructor-chat-layout {
  width: min(100%, 900px) !important;
  max-width: 900px !important;
  min-width: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
  box-sizing: border-box !important;
}

#masterstudy-account-messages.npp-instructor-chat-layout .masterstudy-account-messages__layout,
.masterstudy-account-messages.npp-instructor-chat-layout .masterstudy-account-messages__layout {
  display: flex !important;
  flex-direction: column !important;
  flex-wrap: nowrap !important;
  gap: 18px !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
}

#masterstudy-account-messages.npp-instructor-chat-layout .masterstudy-account-messages__list,
.masterstudy-account-messages.npp-instructor-chat-layout .masterstudy-account-messages__list {
  order: 1 !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  flex: 0 0 auto !important;
  box-sizing: border-box !important;
}

#masterstudy-account-messages.npp-instructor-chat-layout .masterstudy-account-messages__panel,
#masterstudy-account-messages.npp-instructor-chat-layout .masterstudy-account-messages__chat-container,
#masterstudy-account-messages.npp-instructor-chat-layout .masterstudy-account-messages__empty,
.masterstudy-account-messages.npp-instructor-chat-layout .masterstudy-account-messages__panel,
.masterstudy-account-messages.npp-instructor-chat-layout .masterstudy-account-messages__chat-container,
.masterstudy-account-messages.npp-instructor-chat-layout .masterstudy-account-messages__empty {
  order: 2 !important;
  display: flex !important;
  flex-direction: column !important;
  position: relative !important;
  inset: auto !important;
  transform: none !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 520px !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

#masterstudy-account-messages.npp-instructor-chat-layout .masterstudy-account-messages__thread,
.masterstudy-account-messages.npp-instructor-chat-layout .masterstudy-account-messages__thread {
  flex: 1 1 auto !important;
  min-height: 330px !important;
  max-height: 56vh !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

#masterstudy-account-messages.npp-instructor-chat-layout .masterstudy-account-messages__composer,
.masterstudy-account-messages.npp-instructor-chat-layout .masterstudy-account-messages__composer {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 10px !important;
  align-items: center !important;
  width: 100% !important;
  padding: 14px !important;
  box-sizing: border-box !important;
}

#masterstudy-account-messages.npp-instructor-chat-layout .masterstudy-account-messages__input,
#masterstudy-account-messages.npp-instructor-chat-layout .masterstudy-account-messages__composer input,
#masterstudy-account-messages.npp-instructor-chat-layout .masterstudy-account-messages__composer textarea,
.masterstudy-account-messages.npp-instructor-chat-layout .masterstudy-account-messages__input,
.masterstudy-account-messages.npp-instructor-chat-layout .masterstudy-account-messages__composer input,
.masterstudy-account-messages.npp-instructor-chat-layout .masterstudy-account-messages__composer textarea {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

#masterstudy-account-messages.npp-instructor-chat-layout .npp-instructor-chat-panel,
.masterstudy-account-messages.npp-instructor-chat-layout .npp-instructor-chat-panel {
  display: grid !important;
  grid-template-columns: minmax(210px, 0.9fr) minmax(240px, 1fr) minmax(210px, 1fr) !important;
  gap: 14px 16px !important;
  align-items: start !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 22px !important;
  border-radius: 18px !important;
  box-sizing: border-box !important;
}

#masterstudy-account-messages.npp-instructor-chat-layout .npp-instructor-chat-panel[hidden],
.masterstudy-account-messages.npp-instructor-chat-layout .npp-instructor-chat-panel[hidden] {
  display: none !important;
}

#masterstudy-account-messages.npp-instructor-chat-layout .npp-chat-empty,
.masterstudy-account-messages.npp-instructor-chat-layout .npp-chat-empty {
  display: none !important;
}

@media (max-width: 767px) {
  #masterstudy-account-messages.npp-instructor-chat-layout,
  .masterstudy-account-messages.npp-instructor-chat-layout {
    width: 100% !important;
    max-width: calc(100vw - 28px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    overflow-x: hidden !important;
  }

  #masterstudy-account-messages.npp-instructor-chat-layout .masterstudy-account-messages__layout,
  .masterstudy-account-messages.npp-instructor-chat-layout .masterstudy-account-messages__layout {
    gap: 14px !important;
  }

  #masterstudy-account-messages.npp-instructor-chat-layout .npp-instructor-chat-panel,
  .masterstudy-account-messages.npp-instructor-chat-layout .npp-instructor-chat-panel {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    padding: 18px !important;
  }

  #masterstudy-account-messages.npp-instructor-chat-layout .masterstudy-account-messages__panel,
  #masterstudy-account-messages.npp-instructor-chat-layout .masterstudy-account-messages__chat-container,
  #masterstudy-account-messages.npp-instructor-chat-layout .masterstudy-account-messages__empty,
  .masterstudy-account-messages.npp-instructor-chat-layout .masterstudy-account-messages__panel,
  .masterstudy-account-messages.npp-instructor-chat-layout .masterstudy-account-messages__chat-container,
  .masterstudy-account-messages.npp-instructor-chat-layout .masterstudy-account-messages__empty {
    min-height: 540px !important;
  }

  #masterstudy-account-messages.npp-instructor-chat-layout .masterstudy-account-messages__thread,
  .masterstudy-account-messages.npp-instructor-chat-layout .masterstudy-account-messages__thread {
    min-height: 360px !important;
    max-height: 54vh !important;
  }
}

/* MasterStudy chat: stack selector and conversation using the real plugin DOM. */
body.npp-theme.npp-account-chat,
body.npp-account-chat {
  overflow-x: hidden !important;
}

body.npp-theme.npp-account-chat .stm_lms_user_account,
body.npp-theme.npp-account-chat .stm_lms_user_account__content,
body.npp-theme.npp-account-chat .masterstudy-lms-user-account,
body.npp-theme.npp-account-chat .masterstudy-account,
body.npp-theme.npp-account-chat .masterstudy-account-content {
  max-width: 100% !important;
  min-width: 0 !important;
  overflow-x: hidden !important;
}

body.npp-theme.npp-account-chat #stm_lms_chat {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  overflow-x: hidden !important;
}

body.npp-theme.npp-account-chat #stm_lms_chat > .row,
body.npp-theme.npp-account-chat #stm_lms_chat.npp-instructor-chat-layout > .row {
  display: flex !important;
  flex-direction: column !important;
  flex-wrap: nowrap !important;
  gap: 18px !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.npp-theme.npp-account-chat #stm_lms_chat > .row > [class*="col-"],
body.npp-theme.npp-account-chat #stm_lms_chat.npp-instructor-chat-layout > .row > [class*="col-"] {
  display: block !important;
  float: none !important;
  flex: 0 0 auto !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body.npp-theme.npp-account-chat #stm_lms_chat .npp-instructor-chat-panel,
body.npp-theme.npp-account-chat #stm_lms_chat .npp-chat-empty,
body.npp-theme.npp-account-chat #stm_lms_chat .stm_lms_chat__conversations {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

body.npp-theme.npp-account-chat #stm_lms_chat .stm_lms_chat__chat-container {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 520px !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

body.npp-theme.npp-account-chat #stm_lms_chat #stm_lms_chat_messages {
  min-height: 360px !important;
  max-height: 58vh !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

body.npp-theme.npp-account-chat #stm_lms_chat .stm_lms_chat_messages__send {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 10px !important;
  align-items: center !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

body.npp-theme.npp-account-chat #stm_lms_chat .stm_lms_chat_messages__send-message {
  min-width: 0 !important;
  max-width: 100% !important;
}

@media (max-width: 767px) {
  body.npp-theme.npp-account-chat .stm_lms_user_account__content,
  body.npp-theme.npp-account-chat .masterstudy-account-content {
    width: min(100% - 24px, 560px) !important;
    max-width: calc(100vw - 24px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body.npp-theme.npp-account-chat #stm_lms_chat {
    width: 100% !important;
    max-width: calc(100vw - 24px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body.npp-theme.npp-account-chat #stm_lms_chat > .row {
    gap: 14px !important;
  }

  body.npp-theme.npp-account-chat #stm_lms_chat select,
  body.npp-theme.npp-account-chat #stm_lms_chat input,
  body.npp-theme.npp-account-chat #stm_lms_chat textarea {
    max-width: 100% !important;
  }

  body.npp-theme.npp-account-chat #stm_lms_chat .stm_lms_chat__chat-container {
    min-height: 540px !important;
  }

  body.npp-theme.npp-account-chat #stm_lms_chat #stm_lms_chat_messages {
    min-height: 360px !important;
    max-height: 54vh !important;
  }
}

/* Chat account shell polish: mirror the main account page menu/frame while
   leaving MasterStudy's native chat JavaScript untouched. */
body.npp-theme.npp-account-chat .masterstudy-account {
  display: flex !important;
  align-items: flex-start !important;
  box-sizing: border-box !important;
  width: min(1210px, calc(100vw - 40px)) !important;
  max-width: 1210px !important;
  margin: 0 auto !important;
  padding: 40px 20px 100px !important;
  gap: 40px !important;
  overflow: visible !important;
}

body.npp-theme.npp-account-chat .masterstudy-account-sidebar {
  flex: 0 0 260px !important;
  width: 260px !important;
  max-width: 260px !important;
  margin-right: 0 !important;
}

body.npp-theme.npp-account-chat .masterstudy-account-sidebar__wrapper {
  width: 100% !important;
}

body.npp-theme.npp-account-chat .masterstudy-account-container {
  flex: 1 1 auto !important;
  width: auto !important;
  max-width: 870px !important;
  min-width: 0 !important;
  margin: 0 !important;
}

body.npp-theme.npp-account-chat .masterstudy-account-menu__list-section-title {
  padding: 0 16px !important;
}

body.npp-theme.npp-account-chat .masterstudy-account-menu__list a.masterstudy-account-menu__list-item {
  min-height: 40px !important;
  border-radius: 4px !important;
}

body.npp-theme.npp-account-chat #masterstudy-account-messages,
body.npp-theme.npp-account-chat .masterstudy-account-messages {
  width: 100% !important;
  max-width: 870px !important;
  margin: 0 !important;
}

body.npp-theme.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__layout {
  display: flex !important;
  gap: 20px !important;
  align-items: stretch !important;
}

body.npp-theme.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__list {
  width: 250px !important;
  max-width: 250px !important;
  flex: 0 0 250px !important;
  order: initial !important;
}

body.npp-theme.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__panel,
body.npp-theme.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__chat-container,
body.npp-theme.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__empty {
  flex: 1 1 auto !important;
  order: initial !important;
  min-width: 0 !important;
}

@media (max-width: 1279.98px) {
  body.npp-theme.npp-account-chat .masterstudy-account {
    width: 100% !important;
    max-width: 100% !important;
    padding: 20px 20px 100px !important;
    gap: 0 !important;
  }

  body.npp-theme.npp-account-chat .masterstudy-account-sidebar {
    width: 100% !important;
    max-width: none !important;
    flex-basis: auto !important;
  }

  body.npp-theme.npp-account-chat .masterstudy-account-container {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 1023.98px) {
  body.npp-theme.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }

  body.npp-theme.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__list {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 auto !important;
  }
}

@media (max-width: 760px) {
  body.npp-theme.npp-account-chat .masterstudy-account {
    padding: 18px 14px 92px !important;
  }

  body.npp-theme.npp-account-chat #masterstudy-account-messages,
  body.npp-theme.npp-account-chat .masterstudy-account-messages {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Chat menu visual parity with the main account dashboard. */
@media (min-width: 1280px) {
  body.npp-theme.npp-account-chat .masterstudy-account {
    width: min(1170px, calc(100vw - 64px)) !important;
    max-width: 1170px !important;
    padding: 40px 32px 100px !important;
  }
}

body.npp-theme.npp-account-chat .masterstudy-account-profile {
  margin-bottom: 30px !important;
}

body.npp-theme.npp-account-chat .masterstudy-account-profile__avatar {
  width: 60px !important;
  height: 60px !important;
}

body.npp-theme.npp-account-chat .masterstudy-account-profile__name {
  color: #001931 !important;
  font-size: 18px !important;
  font-weight: 700 !important;
}

body.npp-theme.npp-account-chat .masterstudy-account-profile__link {
  color: #176bff !important;
}

body.npp-theme.npp-account-chat .masterstudy-account-menu__mode {
  padding: 0 16px !important;
  margin-bottom: 30px !important;
}

body.npp-theme.npp-account-chat .masterstudy-account-menu__list-section {
  margin-bottom: 30px !important;
}

body.npp-theme.npp-account-chat .masterstudy-account-menu__list-section-title {
  color: #758498 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: .6px !important;
  text-transform: uppercase !important;
  margin-bottom: 10px !important;
}

body.npp-theme.npp-account-chat .masterstudy-account-menu__list a.masterstudy-account-menu__list-item {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  width: 100% !important;
  height: 40px !important;
  min-height: 40px !important;
  padding: 0 16px !important;
  border-radius: 4px !important;
  color: #001931 !important;
  text-decoration: none !important;
}

body.npp-theme.npp-account-chat .masterstudy-account-menu__list a.masterstudy-account-menu__list-item:hover,
body.npp-theme.npp-account-chat .masterstudy-account-menu__list a.masterstudy-account-menu__list-item.masterstudy-account-menu__list-item_active {
  background: #eaf2ff !important;
}

body.npp-theme.npp-account-chat .masterstudy-account-menu__list a.masterstudy-account-menu__list-item .masterstudy-account-menu__list-item-label {
  color: #001931 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-transform: none !important;
}

body.npp-theme.npp-account-chat .masterstudy-account-menu__list a.masterstudy-account-menu__list-item.masterstudy-account-menu__list-item_active .masterstudy-account-menu__list-item-label,
body.npp-theme.npp-account-chat .masterstudy-account-menu__list a.masterstudy-account-menu__list-item:hover .masterstudy-account-menu__list-item-label {
  color: #176bff !important;
}

body.npp-theme.npp-account-chat .masterstudy-account-menu i[class^="stmlms-"],
body.npp-theme.npp-account-chat .masterstudy-account-menu i[class*=" stmlms-"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 28px !important;
  min-width: 28px !important;
  height: 28px !important;
  margin-right: 10px !important;
  border: 1px solid rgba(53, 211, 153, .24) !important;
  border-radius: 10px !important;
  color: #1fc99a !important;
  background: rgba(53, 211, 153, .14) !important;
  font-family: stmlms !important;
  font-size: 15px !important;
  line-height: 1 !important;
}

body.npp-theme.npp-account-chat .masterstudy-account-menu i[class^="stmlms-"]::before,
body.npp-theme.npp-account-chat .masterstudy-account-menu i[class*=" stmlms-"]::before {
  color: currentColor !important;
  background: transparent !important;
  box-shadow: none !important;
  font-family: stmlms !important;
  font-size: inherit !important;
  line-height: 1 !important;
}

body.npp-theme.npp-account-chat .masterstudy-account-menu__list a.masterstudy-account-menu__list-item:hover i[class^="stmlms-"],
body.npp-theme.npp-account-chat .masterstudy-account-menu__list a.masterstudy-account-menu__list-item:hover i[class*=" stmlms-"],
body.npp-theme.npp-account-chat .masterstudy-account-menu__list a.masterstudy-account-menu__list-item.masterstudy-account-menu__list-item_active i[class^="stmlms-"],
body.npp-theme.npp-account-chat .masterstudy-account-menu__list a.masterstudy-account-menu__list-item.masterstudy-account-menu__list-item_active i[class*=" stmlms-"] {
  color: #06111f !important;
  border-color: rgba(53, 211, 153, .44) !important;
  background: var(--npp-green) !important;
}

body.npp-theme.npp-account-chat .masterstudy-account-menu__list a.masterstudy-account-menu__list-item:not(:has(i))::before {
  content: "";
  display: inline-flex;
  width: 28px;
  min-width: 28px;
  height: 28px;
  margin-right: 10px;
  border: 1px solid rgba(53, 211, 153, .24);
  border-radius: 10px;
  background:
    radial-gradient(circle at center, #1fc99a 0 4px, transparent 4.5px),
    rgba(53, 211, 153, .14);
}

body.npp-theme.npp-account-chat .masterstudy-account-menu__list a.masterstudy-account-menu__list-item.masterstudy-account-menu__list-item_active:not(:has(i))::before,
body.npp-theme.npp-account-chat .masterstudy-account-menu__list a.masterstudy-account-menu__list-item:hover:not(:has(i))::before {
  border-color: rgba(53, 211, 153, .44);
  background:
    radial-gradient(circle at center, #06111f 0 4px, transparent 4.5px),
    var(--npp-green);
}

/* Final chat visibility guard. This must stay at the end because the file
   contains older duplicated chat overrides above. */
html body.npp-theme.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__empty:not(.masterstudy-account-messages__empty_show),
html body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__empty:not(.masterstudy-account-messages__empty_show) {
  display: none !important;
  visibility: hidden !important;
}

html body.npp-theme.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__empty.masterstudy-account-messages__empty_show,
html body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__empty.masterstudy-account-messages__empty_show {
  display: flex !important;
  visibility: visible !important;
}

html body.npp-theme.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__conversations .npp-chat-empty,
html body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__conversations .npp-chat-empty {
  display: none !important;
}

/* Final centering for the chat account shell. Keep the whole sidebar + content frame centered. */
@media (min-width: 1280px) {
  body.npp-theme.npp-account-chat .masterstudy-account {
    display: flex !important;
    align-items: flex-start !important;
    gap: 40px !important;
    width: min(1170px, calc(100vw - 64px)) !important;
    max-width: 1170px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 40px 0 100px !important;
  }

  body.npp-theme.npp-account-chat .masterstudy-account-sidebar {
    flex: 0 0 260px !important;
    width: 260px !important;
    max-width: 260px !important;
    margin-right: 0 !important;
  }

  body.npp-theme.npp-account-chat .masterstudy-account-container {
    flex: 1 1 870px !important;
    width: 870px !important;
    max-width: 870px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/* Chat empty state must follow MasterStudy's runtime state, especially on mobile. */
body.npp-theme.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__empty:not(.masterstudy-account-messages__empty_show) {
  display: none !important;
}

body.npp-theme.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__empty.masterstudy-account-messages__empty_show {
  display: flex !important;
}

body.npp-theme.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__list:not(.is-hidden) {
  display: flex !important;
}

body.npp-theme.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__chat-container:not(.is-hidden),
body.npp-theme.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__panel:not(.is-hidden) {
  display: flex !important;
}

/* Chat page restore: custom panel in the original MasterStudy side column. */
body.npp-theme.npp-account-chat {
  overflow-x: hidden !important;
}

body.npp-theme.npp-account-chat #stm_lms_chat,
body.npp-theme.npp-account-chat #masterstudy-account-messages {
  width: 100% !important;
  max-width: min(1120px, calc(100vw - 32px)) !important;
  margin-right: auto !important;
  margin-left: auto !important;
  overflow-x: hidden !important;
}

body.npp-theme.npp-account-chat #stm_lms_chat > .row {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: stretch !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

body.npp-theme.npp-account-chat #stm_lms_chat > .row > [class*="col-"] {
  min-width: 0 !important;
  box-sizing: border-box !important;
}

body.npp-theme.npp-account-chat #stm_lms_chat .npp-instructor-chat-panel {
  display: grid !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 0 16px !important;
  box-sizing: border-box !important;
}

body.npp-theme.npp-account-chat #stm_lms_chat .npp-chat-original-list-hidden {
  display: block !important;
  visibility: visible !important;
}

body.npp-theme.npp-account-chat #stm_lms_chat.npp-instructor-chat-layout:not(.npp-chat-waiting-course) #stm_lms_chat_messages,
body.npp-theme.npp-account-chat #stm_lms_chat.npp-instructor-chat-layout:not(.npp-chat-waiting-course) .stm_lms_chat_messages__send,
body.npp-theme.npp-account-chat #masterstudy-account-messages.npp-instructor-chat-layout:not(.npp-chat-waiting-course) #masterstudy-account-messages_chat,
body.npp-theme.npp-account-chat #masterstudy-account-messages.npp-instructor-chat-layout:not(.npp-chat-waiting-course) .masterstudy-account-messages__composer {
  display: block !important;
  visibility: visible !important;
}

@media (max-width: 767px) {
  body.npp-theme.npp-account-chat .stm_lms_user_account__content,
  body.npp-theme.npp-account-chat .masterstudy-account-content {
    width: auto !important;
    max-width: calc(100vw - 24px) !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  body.npp-theme.npp-account-chat #stm_lms_chat,
  body.npp-theme.npp-account-chat #masterstudy-account-messages {
    width: auto !important;
    max-width: calc(100vw - 24px) !important;
  }

  body.npp-theme.npp-account-chat #stm_lms_chat > .row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 16px !important;
  }

  body.npp-theme.npp-account-chat #stm_lms_chat > .row > [class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  body.npp-theme.npp-account-chat #stm_lms_chat .npp-instructor-chat-panel {
    padding: 18px !important;
  }
}

/* Chat hard override: keep MasterStudy sidebar, stack chat selector above conversation. */
#stm_lms_chat.npp-instructor-chat-layout {
  display: block !important;
  width: min(100%, 900px) !important;
  max-width: 900px !important;
  min-width: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
  box-sizing: border-box !important;
}

#stm_lms_chat.npp-instructor-chat-layout > .row {
  display: flex !important;
  flex-direction: column !important;
  flex-wrap: nowrap !important;
  gap: 18px !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
}

#stm_lms_chat.npp-instructor-chat-layout > .row::before,
#stm_lms_chat.npp-instructor-chat-layout > .row::after {
  display: none !important;
  content: none !important;
}

#stm_lms_chat.npp-instructor-chat-layout > .row > [class*="col-"] {
  display: block !important;
  float: none !important;
  flex: 0 0 auto !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

#stm_lms_chat.npp-instructor-chat-layout .npp-chat-empty,
#stm_lms_chat.npp-instructor-chat-layout .stm_lms_chat__conversations {
  display: none !important;
}

#stm_lms_chat.npp-instructor-chat-layout .npp-instructor-chat-panel {
  display: grid !important;
  grid-template-columns: minmax(210px, 0.9fr) minmax(240px, 1fr) minmax(210px, 1fr) !important;
  gap: 14px 16px !important;
  align-items: start !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 22px !important;
  border-radius: 18px !important;
  box-sizing: border-box !important;
}

#stm_lms_chat.npp-instructor-chat-layout .npp-instructor-chat-panel[hidden] {
  display: none !important;
}

#stm_lms_chat.npp-instructor-chat-layout .npp-instructor-chat-panel__head,
#stm_lms_chat.npp-instructor-chat-layout .npp-instructor-chat-panel__field,
#stm_lms_chat.npp-instructor-chat-layout .npp-instructor-chat-panel__tabs,
#stm_lms_chat.npp-instructor-chat-layout .npp-instructor-chat-panel__tools,
#stm_lms_chat.npp-instructor-chat-layout .npp-instructor-chat-panel__section,
#stm_lms_chat.npp-instructor-chat-layout .npp-instructor-chat-panel__tab-panel {
  min-width: 0 !important;
}

#stm_lms_chat.npp-instructor-chat-layout .npp-instructor-chat-panel select,
#stm_lms_chat.npp-instructor-chat-layout .npp-instructor-chat-panel input {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

#stm_lms_chat.npp-instructor-chat-layout .stm_lms_chat__chat-container {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 520px !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

#stm_lms_chat.npp-instructor-chat-layout #stm_lms_chat_messages {
  flex: 1 1 auto !important;
  min-height: 330px !important;
  max-height: 56vh !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

#stm_lms_chat.npp-instructor-chat-layout .stm_lms_chat_messages__send {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 10px !important;
  align-items: center !important;
  width: 100% !important;
  padding: 14px !important;
  box-sizing: border-box !important;
}

#stm_lms_chat.npp-instructor-chat-layout .stm_lms_chat_messages__send-message,
#stm_lms_chat.npp-instructor-chat-layout .stm_lms_chat_messages__send input,
#stm_lms_chat.npp-instructor-chat-layout .stm_lms_chat_messages__send textarea {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

@media (max-width: 767px) {
  #stm_lms_chat.npp-instructor-chat-layout {
    width: 100% !important;
    max-width: calc(100vw - 28px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    overflow-x: hidden !important;
  }

  #stm_lms_chat.npp-instructor-chat-layout > .row {
    gap: 14px !important;
  }

  #stm_lms_chat.npp-instructor-chat-layout .npp-instructor-chat-panel {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    padding: 18px !important;
  }

  #stm_lms_chat.npp-instructor-chat-layout .npp-instructor-chat-panel__head,
  #stm_lms_chat.npp-instructor-chat-layout .npp-instructor-chat-panel__field,
  #stm_lms_chat.npp-instructor-chat-layout .npp-instructor-chat-panel__tabs,
  #stm_lms_chat.npp-instructor-chat-layout .npp-instructor-chat-panel__tools,
  #stm_lms_chat.npp-instructor-chat-layout .npp-instructor-chat-panel__section,
  #stm_lms_chat.npp-instructor-chat-layout .npp-instructor-chat-panel__tab-panel {
    width: 100% !important;
    max-width: 100% !important;
  }

  #stm_lms_chat.npp-instructor-chat-layout .npp-instructor-chat-panel__head h3 {
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
  }

  #stm_lms_chat.npp-instructor-chat-layout .stm_lms_chat__chat-container {
    min-height: 540px !important;
  }

  #stm_lms_chat.npp-instructor-chat-layout #stm_lms_chat_messages {
    min-height: 360px !important;
    max-height: 54vh !important;
  }
}

/* MasterStudy chat: keep the selector above and the conversation area below. */
body.npp-account-chat #stm_lms_chat,
body.npp-account-chat #stm_lms_chat.npp-instructor-chat-layout,
body.npp-account-chat #masterstudy-account-messages,
body.npp-account-chat .masterstudy-account-messages {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  overflow-x: hidden !important;
}

body.npp-account-chat #stm_lms_chat > .row,
body.npp-account-chat #stm_lms_chat.npp-instructor-chat-layout > .row,
body.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 18px !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.npp-account-chat #stm_lms_chat > .row::before,
body.npp-account-chat #stm_lms_chat > .row::after {
  display: none !important;
  content: none !important;
}

body.npp-account-chat #stm_lms_chat > .row > [class*="col-"],
body.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__layout > * {
  float: none !important;
  grid-column: 1 !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body.npp-account-chat #stm_lms_chat > .row > .col-md-4 {
  grid-row: 1 !important;
}

body.npp-account-chat #stm_lms_chat > .row > .col-md-8 {
  grid-row: 2 !important;
}

body.npp-account-chat #stm_lms_chat .stm_lms_chat__chat-container,
body.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__chat-container,
body.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__panel-card {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 520px !important;
  border-radius: 18px !important;
  overflow: hidden !important;
}

body.npp-account-chat #stm_lms_chat #stm_lms_chat_messages,
body.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__thread {
  min-height: 320px !important;
  max-height: 58vh !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

body.npp-account-chat #stm_lms_chat .stm_lms_chat_messages__send,
body.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__composer {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 10px !important;
  align-items: center !important;
}

body.npp-account-chat #stm_lms_chat .stm_lms_chat_messages__send-message,
body.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__input {
  width: 100% !important;
  min-width: 0 !important;
}

@media (max-width: 767px) {
  body.npp-account-chat .stm_lms_user_info_top + h1,
  body.npp-account-chat .masterstudy-account-content,
  body.npp-account-chat .masterstudy-user-account,
  body.npp-account-chat #stm_lms_chat,
  body.npp-account-chat #masterstudy-account-messages,
  body.npp-account-chat .masterstudy-account-messages {
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body.npp-account-chat #stm_lms_chat > .row,
  body.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__layout {
    gap: 14px !important;
  }

  body.npp-account-chat #stm_lms_chat .stm_lms_chat__chat-container,
  body.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__chat-container,
  body.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__panel-card {
    min-height: 480px !important;
  }

  body.npp-account-chat #stm_lms_chat #stm_lms_chat_messages,
  body.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__thread {
    min-height: 280px !important;
    max-height: 420px !important;
  }
}

/* MasterStudy chat hard override: the cached page does not always include helper body classes. */
body.page-id-23788 #masterstudy-account-messages,
body.page-id-23788 .masterstudy-account-messages {
  width: min(100%, 900px) !important;
  max-width: 900px !important;
  margin: 0 auto 48px !important;
  overflow: visible !important;
  box-sizing: border-box !important;
}

body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__layout {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 18px !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__list {
  order: 1 !important;
  flex: 0 0 auto !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  position: relative !important;
  inset: auto !important;
  transform: none !important;
  box-sizing: border-box !important;
}

body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__list-inner {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 14px !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  max-height: none !important;
  overflow: visible !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__list-inner > * {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__panel,
body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__chat-container,
body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__empty {
  order: 2 !important;
  flex: 0 0 auto !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  position: relative !important;
  inset: auto !important;
  transform: none !important;
  box-sizing: border-box !important;
}

body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__panel.is-hidden,
body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__chat-container.is-hidden {
  display: none !important;
}

body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__empty {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 280px !important;
  padding: 24px !important;
  text-align: center !important;
  border: 1px dashed #bdd6ee !important;
  border-radius: 20px !important;
  background: #f5fbff !important;
}

body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__panel:not(.is-hidden),
body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__chat-container:not(.is-hidden) {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
}

body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__panel-card {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 520px !important;
  height: auto !important;
  max-height: none !important;
  overflow: hidden !important;
  border: 1px solid #d6e3f0 !important;
  border-radius: 20px !important;
  background: #ffffff !important;
  box-sizing: border-box !important;
}

body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__thread,
body.page-id-23788 #masterstudy-account-messages #masterstudy-account-messages_chat {
  display: block !important;
  flex: 1 1 auto !important;
  min-height: 320px !important;
  max-height: 58vh !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  padding: 16px !important;
  box-sizing: border-box !important;
}

body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__composer {
  display: flex !important;
  flex: 0 0 auto !important;
  align-items: center !important;
  gap: 10px !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 12px !important;
  position: relative !important;
  background: #ffffff !important;
  border-top: 1px solid #d6e3f0 !important;
  box-sizing: border-box !important;
}

body.page-id-23788 #masterstudy-account-messages textarea.masterstudy-account-messages__input,
body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__input {
  display: block !important;
  flex: 1 1 auto !important;
  width: auto !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 44px !important;
  resize: none !important;
  box-sizing: border-box !important;
}

body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__send {
  flex: 0 0 42px !important;
  width: 42px !important;
  height: 42px !important;
}

body.page-id-23788 #masterstudy-account-messages select,
body.page-id-23788 #masterstudy-account-messages input,
body.page-id-23788 #masterstudy-account-messages textarea,
body.page-id-23788 #masterstudy-account-messages button {
  max-width: 100% !important;
  box-sizing: border-box !important;
}

@media (max-width: 760px) {
  body.page-id-23788 #masterstudy-account-messages,
  body.page-id-23788 .masterstudy-account-messages {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    margin-right: auto !important;
    margin-left: auto !important;
    overflow: hidden !important;
  }

  body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__header,
  body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__title {
    text-align: center !important;
  }

  body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__panel,
  body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__chat-container {
    height: auto !important;
    min-height: 0 !important;
    position: relative !important;
    inset: auto !important;
    z-index: auto !important;
  }

  body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__panel-card {
    min-height: 430px !important;
    border-radius: 18px !important;
  }

  body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__thread,
  body.page-id-23788 #masterstudy-account-messages #masterstudy-account-messages_chat {
    min-height: 250px !important;
    max-height: 44vh !important;
    padding: 12px !important;
  }

  body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__composer {
    padding: 10px !important;
  }
}

/* MasterStudy chat: force a vertical, readable layout even when cached body classes are stale. */
body.page-id-23788 #masterstudy-account-messages,
body.page-id-23788 .masterstudy-account-messages {
  width: min(100%, 860px) !important;
  max-width: 860px !important;
  margin: 0 auto 48px !important;
  overflow: visible !important;
  box-sizing: border-box !important;
}

body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__layout {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 18px !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__list {
  order: 1 !important;
  flex: 0 0 auto !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  position: relative !important;
  inset: auto !important;
  transform: none !important;
  box-sizing: border-box !important;
}

body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__list-inner {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 14px !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  max-height: none !important;
  overflow: visible !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__panel,
body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__chat-container,
body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__empty {
  order: 2 !important;
  flex: 0 0 auto !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  position: relative !important;
  inset: auto !important;
  transform: none !important;
  box-sizing: border-box !important;
}

body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__panel.is-hidden,
body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__chat-container.is-hidden {
  display: none !important;
}

body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__empty {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 280px !important;
  padding: 24px !important;
  text-align: center !important;
  border: 1px dashed #bdd6ee !important;
  border-radius: 20px !important;
  background: #f5fbff !important;
}

body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__panel:not(.is-hidden),
body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__chat-container:not(.is-hidden) {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
}

body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__panel-card {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 520px !important;
  height: auto !important;
  max-height: none !important;
  overflow: hidden !important;
  border: 1px solid #d6e3f0 !important;
  border-radius: 20px !important;
  background: #ffffff !important;
  box-sizing: border-box !important;
}

body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__thread,
body.page-id-23788 #masterstudy-account-messages #masterstudy-account-messages_chat {
  display: block !important;
  flex: 1 1 auto !important;
  min-height: 320px !important;
  max-height: 58vh !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  padding: 16px !important;
  box-sizing: border-box !important;
}

body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__composer {
  display: flex !important;
  flex: 0 0 auto !important;
  align-items: center !important;
  gap: 10px !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 12px !important;
  position: relative !important;
  background: #ffffff !important;
  border-top: 1px solid #d6e3f0 !important;
  box-sizing: border-box !important;
}

body.page-id-23788 #masterstudy-account-messages textarea.masterstudy-account-messages__input,
body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__input {
  display: block !important;
  flex: 1 1 auto !important;
  width: auto !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 44px !important;
  resize: none !important;
  box-sizing: border-box !important;
}

body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__send {
  flex: 0 0 42px !important;
  width: 42px !important;
  height: 42px !important;
}

body.page-id-23788 #masterstudy-account-messages select,
body.page-id-23788 #masterstudy-account-messages input,
body.page-id-23788 #masterstudy-account-messages textarea,
body.page-id-23788 #masterstudy-account-messages button {
  max-width: 100% !important;
  box-sizing: border-box !important;
}

@media (max-width: 760px) {
  body.page-id-23788 #masterstudy-account-messages,
  body.page-id-23788 .masterstudy-account-messages {
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
    margin-right: auto !important;
    margin-left: auto !important;
    overflow: hidden !important;
  }

  body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__header,
  body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__title {
    text-align: center !important;
  }

  body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__panel,
  body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__chat-container {
    height: auto !important;
    min-height: 0 !important;
    position: relative !important;
    inset: auto !important;
    z-index: auto !important;
  }

  body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__panel-card {
    min-height: 430px !important;
    border-radius: 18px !important;
  }

  body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__thread,
  body.page-id-23788 #masterstudy-account-messages #masterstudy-account-messages_chat {
    min-height: 250px !important;
    max-height: 44vh !important;
    padding: 12px !important;
  }

  body.page-id-23788 #masterstudy-account-messages .masterstudy-account-messages__composer {
    padding: 10px !important;
  }
}

/* Final MasterStudy messages override.
   Keep the course/professor selector above and the conversation panel below. */
html body #masterstudy-account-messages,
html body .masterstudy-account-messages {
  width: min(100%, 860px) !important;
  max-width: 860px !important;
  min-width: 0 !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  overflow-x: hidden !important;
  box-sizing: border-box !important;
}

html body #masterstudy-account-messages .masterstudy-account-messages__layout {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 18px !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
  box-sizing: border-box !important;
}

html body #masterstudy-account-messages .masterstudy-account-messages__list,
html body #masterstudy-account-messages .masterstudy-account-messages__panel,
html body #masterstudy-account-messages .masterstudy-account-messages__chat-container,
html body #masterstudy-account-messages .masterstudy-account-messages__empty {
  position: relative !important;
  inset: auto !important;
  transform: none !important;
  flex: 0 0 auto !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

html body #masterstudy-account-messages .masterstudy-account-messages__list {
  order: 1 !important;
}

html body #masterstudy-account-messages .masterstudy-account-messages__panel,
html body #masterstudy-account-messages .masterstudy-account-messages__chat-container,
html body #masterstudy-account-messages .masterstudy-account-messages__empty {
  order: 2 !important;
}

html body #masterstudy-account-messages .masterstudy-account-messages__list-inner {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 14px !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

html body #masterstudy-account-messages .masterstudy-account-messages__panel-card {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 520px !important;
  height: auto !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

html body #masterstudy-account-messages .masterstudy-account-messages__thread,
html body #masterstudy-account-messages #masterstudy-account-messages_chat {
  flex: 1 1 auto !important;
  min-height: 320px !important;
  max-height: 58vh !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  box-sizing: border-box !important;
}

html body #masterstudy-account-messages .masterstudy-account-messages__composer {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  flex: 0 0 auto !important;
  position: relative !important;
  box-sizing: border-box !important;
}

html body #masterstudy-account-messages .masterstudy-account-messages__input {
  display: block !important;
  flex: 1 1 auto !important;
  width: auto !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

html body #masterstudy-account-messages select,
html body #masterstudy-account-messages input,
html body #masterstudy-account-messages textarea,
html body #masterstudy-account-messages button {
  max-width: 100% !important;
  box-sizing: border-box !important;
}

@media (max-width: 760px) {
  html body #masterstudy-account-messages,
  html body .masterstudy-account-messages {
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    overflow-x: hidden !important;
  }

  html body #masterstudy-account-messages .masterstudy-account-messages__layout {
    gap: 14px !important;
  }

  html body #masterstudy-account-messages .masterstudy-account-messages__panel-card {
    min-height: 430px !important;
  }

  html body #masterstudy-account-messages .masterstudy-account-messages__thread,
  html body #masterstudy-account-messages #masterstudy-account-messages_chat {
    min-height: 260px !important;
    max-height: 46vh !important;
  }
}

.page-id-23788 .masterstudy-account i[class^="stmlms-"],
.page-id-23788 .masterstudy-account i[class*=" stmlms-"],
.page-id-23788 .stm-lms-wrapper i[class^="stmlms-"],
.page-id-23788 .stm-lms-wrapper i[class*=" stmlms-"],
.page-id-23788 i[class^="stmlms-"],
.page-id-23788 i[class*=" stmlms-"],
.page-id-23790 .masterstudy-account i[class^="stmlms-"],
.page-id-23790 .masterstudy-account i[class*=" stmlms-"],
.page-id-23790 .stm-lms-wrapper i[class^="stmlms-"],
.page-id-23790 .stm-lms-wrapper i[class*=" stmlms-"],
.page-id-23790 i[class^="stmlms-"],
.page-id-23790 i[class*=" stmlms-"] {
  display: inline-grid !important;
  place-items: center;
  width: 20px;
  min-width: 20px;
  height: 20px;
  margin-right: 8px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 999px;
  font-size: 0 !important;
  line-height: 1 !important;
  vertical-align: middle;
}

.page-id-23788 .masterstudy-account i[class^="stmlms-"]::before,
.page-id-23788 .masterstudy-account i[class*=" stmlms-"]::before,
.page-id-23788 .stm-lms-wrapper i[class^="stmlms-"]::before,
.page-id-23788 .stm-lms-wrapper i[class*=" stmlms-"]::before,
.page-id-23788 i[class^="stmlms-"]::before,
.page-id-23788 i[class*=" stmlms-"]::before,
.page-id-23790 .masterstudy-account i[class^="stmlms-"]::before,
.page-id-23790 .masterstudy-account i[class*=" stmlms-"]::before,
.page-id-23790 .stm-lms-wrapper i[class^="stmlms-"]::before,
.page-id-23790 .stm-lms-wrapper i[class*=" stmlms-"]::before,
.page-id-23790 i[class^="stmlms-"]::before,
.page-id-23790 i[class*=" stmlms-"]::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--npp-green);
  box-shadow: 0 0 0 4px rgba(53, 211, 153, .12);
}

.page-id-23788 .masterstudy-account-menu__list-item,
.page-id-23790 .masterstudy-account-menu__list-item {
  align-items: center;
}

.page-id-23788 .masterstudy-account [class*="menu"] i[class^="stmlms-"],
.page-id-23788 .masterstudy-account [class*="menu"] i[class*=" stmlms-"] {
  color: #007f5f !important;
}

.page-id-23788 .masterstudy-account-menu i[class^="stmlms-"],
.page-id-23788 .masterstudy-account-menu i[class*=" stmlms-"],
.page-id-23788 .masterstudy-account-mobile-menu i[class^="stmlms-"],
.page-id-23788 .masterstudy-account-mobile-menu i[class*=" stmlms-"] {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 28px;
  min-width: 28px;
  height: 28px;
  margin-right: 10px;
  border: 1px solid rgba(53, 211, 153, .24);
  border-radius: 10px;
  color: #007f5f !important;
  background: rgba(53, 211, 153, .12);
  font-family: stmlms;
  font-size: 15px !important;
  line-height: 1 !important;
  box-shadow: none;
}

.page-id-23788 .masterstudy-account-mobile-menu i[class^="stmlms-"],
.page-id-23788 .masterstudy-account-mobile-menu i[class*=" stmlms-"] {
  margin-right: 0;
  margin-bottom: 2px;
}

.page-id-23788 .masterstudy-account-menu i[class^="stmlms-"]::before,
.page-id-23788 .masterstudy-account-menu i[class*=" stmlms-"]::before,
.page-id-23788 .masterstudy-account-mobile-menu i[class^="stmlms-"]::before,
.page-id-23788 .masterstudy-account-mobile-menu i[class*=" stmlms-"]::before {
  width: auto;
  height: auto;
  border-radius: 0;
  color: currentColor;
  background: transparent;
  box-shadow: none;
  font-family: stmlms;
  font-size: inherit;
  line-height: 1;
}

.page-id-23788 .masterstudy-account-menu__list-item_active i[class^="stmlms-"],
.page-id-23788 .masterstudy-account-menu__list-item_active i[class*=" stmlms-"],
.page-id-23788 .masterstudy-account-menu__list-item:hover i[class^="stmlms-"],
.page-id-23788 .masterstudy-account-menu__list-item:hover i[class*=" stmlms-"],
.page-id-23788 .masterstudy-account-mobile-menu__link_active i[class^="stmlms-"],
.page-id-23788 .masterstudy-account-mobile-menu__link_active i[class*=" stmlms-"],
.page-id-23788 .masterstudy-account-mobile-menu__link:hover i[class^="stmlms-"],
.page-id-23788 .masterstudy-account-mobile-menu__link:hover i[class*=" stmlms-"] {
  color: #06111f !important;
  border-color: rgba(53, 211, 153, .36);
  background: var(--npp-green);
}

.page-id-23788 .masterstudy-account-menu i.stmlms-tachometer-alt::before,
.page-id-23788 .masterstudy-account-mobile-menu i.stmlms-tachometer-alt::before { content: var(--stmlms-icon-tachometer-alt); }
.page-id-23788 .masterstudy-account-menu i.stmlms-bullhorn::before,
.page-id-23788 .masterstudy-account-mobile-menu i.stmlms-bullhorn::before { content: var(--stmlms-icon-bullhorn); }
.page-id-23788 .masterstudy-account-menu i.stmlms-grade-sheet::before,
.page-id-23788 .masterstudy-account-mobile-menu i.stmlms-grade-sheet::before { content: var(--stmlms-icon-grade-sheet); }
.page-id-23788 .masterstudy-account-menu i.stmlms-assignments::before,
.page-id-23788 .masterstudy-account-mobile-menu i.stmlms-assignments::before { content: var(--stmlms-icon-assignments); }
.page-id-23788 .masterstudy-account-menu i.stmlms-plus-circle-2::before,
.page-id-23788 .masterstudy-account-mobile-menu i.stmlms-plus-circle-2::before { content: var(--stmlms-icon-plus-circle-2); }
.page-id-23788 .masterstudy-account-menu i.stmlms-chart-line::before,
.page-id-23788 .masterstudy-account-mobile-menu i.stmlms-chart-line::before { content: var(--stmlms-icon-chart-line); }
.page-id-23788 .masterstudy-account-menu i.stmlms-dollar-sign::before,
.page-id-23788 .masterstudy-account-mobile-menu i.stmlms-dollar-sign::before { content: var(--stmlms-icon-dollar-sign); }
.page-id-23788 .masterstudy-account-menu i.stmlms-star-3::before,
.page-id-23788 .masterstudy-account-mobile-menu i.stmlms-star-3::before { content: var(--stmlms-icon-star-3); }
.page-id-23788 .masterstudy-account-menu i.stmlms-book-open::before,
.page-id-23788 .masterstudy-account-mobile-menu i.stmlms-book-open::before { content: var(--stmlms-icon-book-open); }
.page-id-23788 .masterstudy-account-menu i.stmlms-envelope-2::before,
.page-id-23788 .masterstudy-account-mobile-menu i.stmlms-envelope-2::before { content: var(--stmlms-icon-envelope-2); }
.page-id-23788 .masterstudy-account-menu i.stmlms-heart-2::before,
.page-id-23788 .masterstudy-account-mobile-menu i.stmlms-heart-2::before { content: var(--stmlms-icon-heart-2); }
.page-id-23788 .masterstudy-account-menu i.stmlms-quiz::before,
.page-id-23788 .masterstudy-account-mobile-menu i.stmlms-quiz::before { content: var(--stmlms-icon-quiz); }
.page-id-23788 .masterstudy-account-menu i.stmlms-shopping-basket::before,
.page-id-23788 .masterstudy-account-mobile-menu i.stmlms-shopping-basket::before { content: var(--stmlms-icon-shopping-basket); }
.page-id-23788 .masterstudy-account-menu i.stmlms-certificate::before,
.page-id-23788 .masterstudy-account-mobile-menu i.stmlms-certificate::before { content: var(--stmlms-icon-certificate); }
.page-id-23788 .masterstudy-account-menu i.stmlms-cog-2::before,
.page-id-23788 .masterstudy-account-mobile-menu i.stmlms-cog-2::before { content: var(--stmlms-icon-cog-2); }
.page-id-23788 .masterstudy-account-menu i.stmlms-power-off::before,
.page-id-23788 .masterstudy-account-mobile-menu i.stmlms-power-off::before { content: var(--stmlms-icon-power-off); }
.page-id-23788 .masterstudy-account-menu i.stmlms-user-2::before,
.page-id-23788 .masterstudy-account-mobile-menu i.stmlms-user-2::before { content: var(--stmlms-icon-user-2); }
.page-id-23788 .masterstudy-account-menu i.stmlms-menu-dots::before,
.page-id-23788 .masterstudy-account-mobile-menu i.stmlms-menu-dots::before { content: var(--stmlms-icon-menu-dots); }
.page-id-23788 .masterstudy-account-menu i.stmlms-circle::before,
.page-id-23788 .masterstudy-account-mobile-menu i.stmlms-circle::before { content: var(--stmlms-icon-circle); }

.page-id-23788 .npp-account-plugin-icon-hidden,
.page-id-23790 .npp-account-plugin-icon-hidden {
  display: none !important;
}

.page-id-23788 .npp-account-native-icon-hidden,
.page-id-23790 .npp-account-native-icon-hidden {
  display: none !important;
  width: 0 !important;
  min-width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
}

.page-id-23788 .npp-account-svg-icon,
.page-id-23790 .npp-account-svg-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  min-width: 28px;
  height: 28px;
  margin-right: 10px;
  border: 1px solid rgba(53, 211, 153, .26);
  border-radius: 10px;
  color: var(--npp-green);
  background: rgba(53, 211, 153, .12);
  line-height: 1;
}

.page-id-23788 .npp-account-svg-icon svg,
.page-id-23790 .npp-account-svg-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-id-23788 .masterstudy-account-menu__list-item_active .npp-account-svg-icon,
.page-id-23788 .masterstudy-account-menu__list-item:hover .npp-account-svg-icon,
.page-id-23788 .masterstudy-account-mobile-menu__link_active .npp-account-svg-icon,
.page-id-23788 .masterstudy-account-mobile-menu__link:hover .npp-account-svg-icon,
.page-id-23788 .stm_lms_acc_tabs .float_menu_item__inline.float_menu_item_active .npp-account-svg-icon,
.page-id-23788 .stm_lms_acc_tabs .float_menu_item__inline:hover .npp-account-svg-icon,
.page-id-23788 .stm_lms_acc_tabs .dropdown_menu_item_active .npp-account-svg-icon,
.page-id-23788 .stm_lms_acc_tabs .dropdown_menu_item:hover .npp-account-svg-icon {
  color: #06111f;
  border-color: rgba(53, 211, 153, .48);
  background: var(--npp-green);
}

.page-id-23788 .stm_lms_acc_tabs .float_menu_item__inline {
  gap: 10px;
}

.page-id-23788 .stm_lms_acc_tabs {
  padding: 6px;
  padding-right: 54px;
  margin-bottom: 24px;
  border-radius: 14px;
  background: #07111f;
  box-shadow: 0 12px 28px rgba(7, 17, 31, .16);
}

.page-id-23788 .stm_lms_acc_tabs:not(.has_sub_items) {
  padding-right: 6px;
}

.page-id-23788 .stm_lms_acc_tabs__main {
  gap: 8px;
  margin: 0;
  border-top: 0;
  background: transparent;
}

.page-id-23788 .stm_lms_acc_tabs__main .float_menu_item__inline {
  min-height: 44px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, .06);
}

.page-id-23788 .stm_lms_acc_tabs__main .float_menu_item__inline .float_menu_item__title {
  color: #fff;
  letter-spacing: 0;
}

.page-id-23788 .stm_lms_acc_tabs__main .float_menu_item__inline.float_menu_item_active,
.page-id-23788 .stm_lms_acc_tabs__main .float_menu_item__inline:hover {
  border-color: rgba(53, 211, 153, .54);
  background: rgba(53, 211, 153, .16);
}

.page-id-23788 .stm_lms_acc_tabs__main .float_menu_item__inline.float_menu_item_active .float_menu_item__title,
.page-id-23788 .stm_lms_acc_tabs__main .float_menu_item__inline:hover .float_menu_item__title {
  color: #fff;
}

.page-id-23788 .stm_lms_acc_tabs .float_menu_item__inline .npp-account-svg-icon {
  order: -1;
  width: 22px;
  min-width: 22px;
  height: 22px;
  margin-right: 0;
  color: #fff;
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .1);
}

.page-id-23788 .stm_lms_acc_tabs__main .float_menu_item__inline .npp-account-svg-icon {
  color: var(--npp-green);
  border-color: rgba(53, 211, 153, .34);
  background: rgba(53, 211, 153, .14);
}

.page-id-23788 .stm_lms_acc_tabs i.stm_lms_acc_tabs__toggle {
  position: absolute;
  top: 6px;
  right: 6px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 42px;
  min-width: 42px;
  height: 44px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  color: #06111f !important;
  background: var(--npp-green);
  box-shadow: 0 10px 22px rgba(53, 211, 153, .16);
  cursor: pointer;
  font-size: 0 !important;
  line-height: 1 !important;
}

.page-id-23788 .stm_lms_acc_tabs i.stm_lms_acc_tabs__toggle::before {
  content: "";
  position: absolute;
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
  transition: transform .18s ease, box-shadow .18s ease;
}

.page-id-23788 .stm_lms_acc_tabs i.stm_lms_acc_tabs__toggle::after {
  content: "";
  position: absolute;
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  transition: transform .18s ease, opacity .18s ease;
}

.page-id-23788 .stm_lms_acc_tabs__secondary.active i.stm_lms_acc_tabs__toggle::before {
  box-shadow: none;
  transform: rotate(45deg);
}

.page-id-23788 .stm_lms_acc_tabs__secondary.active i.stm_lms_acc_tabs__toggle::after {
  opacity: 1;
  transform: rotate(-45deg);
}

.page-id-23788 .stm_lms_acc_tabs .float_menu_item__inline > i:not(.stm_lms_acc_tabs__toggle),
.page-id-23788 .stm_lms_acc_tabs .dropdown_menu_item > i,
.page-id-23788 .stm_lms_user_float_menu .float_menu_item__inline > i,
.page-id-23788 .stm_lms_user_float_menu .dropdown_menu_item > i {
  display: none !important;
}

.page-id-23788 .stm_lms_acc_tabs .float_menu_item__inline abbr,
.page-id-23788 .stm_lms_acc_tabs .dropdown_menu_item abbr,
.page-id-23788 .stm_lms_user_float_menu .float_menu_item abbr,
.page-id-23788 .stm_lms_user_float_menu .dropdown_menu_item abbr {
  display: none !important;
}

.page-id-23788 .stm_lms_acc_tabs__main .float_menu_item__inline.float_menu_item_active .npp-account-svg-icon,
.page-id-23788 .stm_lms_acc_tabs__main .float_menu_item__inline:hover .npp-account-svg-icon {
  color: #06111f;
  border-color: var(--npp-green);
  background: var(--npp-green);
}

.page-id-23788 .stm_lms_acc_tabs__secondary_inner .float_menu_item__inline,
.page-id-23788 .stm_lms_acc_tabs__secondary_inner .dropdown_menu_item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-id-23788 .stm_lms_acc_tabs__secondary_inner .npp-account-svg-icon {
  width: 24px;
  min-width: 24px;
  height: 24px;
  margin-right: 0;
  color: #fff;
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .1);
}

.page-id-23788 .stm_lms_acc_tabs__secondary_inner {
  top: 58px;
  right: 0;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  background: #07111f;
  box-shadow: 0 18px 42px rgba(7, 17, 31, .24);
}

.page-id-23788 #stm-lms-courses-grid .stm_lms_instructor_courses__top > a.btn.btn-default {
  color: #fff !important;
  border: 0 !important;
  background: linear-gradient(135deg, var(--npp-blue), #4f8dff) !important;
  box-shadow: 0 14px 30px rgba(31, 111, 255, .22) !important;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.page-id-23788 #stm-lms-courses-grid .stm_lms_instructor_courses__top > a.btn.btn-default:hover,
.page-id-23788 #stm-lms-courses-grid .stm_lms_instructor_courses__top > a.btn.btn-default:focus-visible {
  color: #fff !important;
  transform: translateY(-1px);
  background: linear-gradient(135deg, #1559d7, var(--npp-blue)) !important;
  box-shadow: 0 18px 38px rgba(31, 111, 255, .32) !important;
}

.page-id-23788 #stm-lms-courses-grid .stm_lms_instructor_courses__top > a.btn.btn-default i {
  color: #fff !important;
}

.page-id-23788 #stm-lms-courses-grid .stm_lms_instructor_courses__top > a.btn.btn-default i.stmlms-plus-2 {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 22px;
  min-width: 22px;
  height: 22px;
  margin-right: 8px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 8px;
  color: #fff !important;
  background: rgba(255, 255, 255, .14);
  box-shadow: none;
  font-size: 0 !important;
}

.page-id-23788 #stm-lms-courses-grid .stm_lms_instructor_courses__top > a.btn.btn-default i.stmlms-plus-2::before,
.page-id-23788 #stm-lms-courses-grid .stm_lms_instructor_courses__top > a.btn.btn-default i.stmlms-plus-2::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: none;
  transform: translate(-50%, -50%);
}

.page-id-23788 #stm-lms-courses-grid .stm_lms_instructor_courses__top > a.btn.btn-default i.stmlms-plus-2::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

@media (max-width: 1279.98px) {
  .page-id-23788 .masterstudy-account-mobile-menu {
    display: flex !important;
  }

  .page-id-23788 .masterstudy-account-mobile-menu__link {
    display: flex !important;
  }

  .page-id-23788 .masterstudy-account-mobile-menu__item {
    display: flex !important;
  }

  .page-id-23788 .masterstudy-account-mobile-menu__link i:not(.npp-account-plugin-icon-hidden) {
    display: inline-flex !important;
  }

  .page-id-23788 .masterstudy-account-mobile-menu .npp-account-svg-icon {
    display: inline-flex !important;
    margin-right: 0;
    margin-bottom: 2px;
  }
}

@media (max-width: 890px) {
  body.page-id-23788,
  body.page-id-23788 .npp-main,
  body.page-id-23788 .masterstudy-account {
    max-width: 100%;
    overflow-x: hidden;
  }

  .page-id-23788 .stm_lms_acc_tabs {
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    padding-right: 52px;
    width: 100%;
    max-width: 100%;
    margin-bottom: 22px;
    overflow: visible;
    border-radius: 14px;
    background: #07111f;
    box-shadow: 0 12px 28px rgba(7, 17, 31, .16);
  }

  .page-id-23788 .npp-section {
    padding-top: 0;
  }

  .page-id-23788 .stm_lms_acc_tabs__secondary {
    margin-left: auto;
  }

  .page-id-23788 .stm_lms_acc_tabs__main {
    display: flex;
    gap: 6px;
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    background: transparent;
    border-top: 0;
  }

  .page-id-23788 .stm_lms_acc_tabs__main::-webkit-scrollbar {
    display: none;
  }

  .page-id-23788 .stm_lms_acc_tabs__main .float_menu_item__inline {
    flex: 0 0 auto;
    min-width: 126px;
    box-sizing: border-box;
    height: 48px;
    min-height: 0;
    padding: 8px 12px;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    background: rgba(255, 255, 255, .06);
    color: #fff;
  }

  .page-id-23788 .stm_lms_acc_tabs__main .float_menu_item__inline .float_menu_item__title {
    display: block !important;
    visibility: visible !important;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.2;
    white-space: normal;
  }

  .page-id-23788 .stm_lms_acc_tabs__main .float_menu_item__inline.float_menu_item_active,
  .page-id-23788 .stm_lms_acc_tabs__main .float_menu_item__inline:hover {
    border-color: rgba(53, 211, 153, .54);
    background: rgba(53, 211, 153, .16);
  }

  .page-id-23788 .stm_lms_acc_tabs__main .float_menu_item__inline.float_menu_item_active .float_menu_item__title,
  .page-id-23788 .stm_lms_acc_tabs__main .float_menu_item__inline:hover .float_menu_item__title {
    color: #fff;
  }

  .page-id-23788 .stm_lms_acc_tabs__main .float_menu_item__inline .npp-account-svg-icon {
    display: inline-flex !important;
    width: 22px;
    min-width: 22px;
    height: 22px;
    color: var(--npp-green);
    border-color: rgba(53, 211, 153, .34);
    background: rgba(53, 211, 153, .14);
  }

  .page-id-23788 .stm_lms_acc_tabs__main .float_menu_item__inline.float_menu_item_active .npp-account-svg-icon,
  .page-id-23788 .stm_lms_acc_tabs__main .float_menu_item__inline:hover .npp-account-svg-icon {
    color: #06111f;
    border-color: var(--npp-green);
    background: var(--npp-green);
  }

  .page-id-23788 .stm_lms_acc_tabs i.stm_lms_acc_tabs__toggle {
    position: absolute;
    top: 50%;
    right: 3px;
    flex: none;
    transform: translateY(-50%);
    width: 48px;
    min-width: 48px;
    height: 48px;
    border: 1px solid rgba(53, 211, 153, .58);
    border-radius: 12px;
    color: #06111f !important;
    background: var(--npp-green);
    box-shadow: 0 10px 22px rgba(53, 211, 153, .16);
  }

  .page-id-23788 .stm_lms_acc_tabs__secondary {
    position: absolute;
    top: 6px;
    right: 3px;
    bottom: 6px;
    flex: none;
    width: 48px;
    margin-left: auto;
  }

  .page-id-23788 .stm_lms_acc_tabs__secondary_inner {
    top: 50px;
    right: 0;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    background: #07111f;
    box-shadow: 0 18px 42px rgba(7, 17, 31, .24);
  }

  .page-id-23788 .masterstudy-instructor-courses__tabs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    align-items: stretch;
    overflow: hidden;
  }

  .page-id-23788 .masterstudy-instructor-courses__tabs ul.masterstudy-tabs {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
  }

  .page-id-23788 .masterstudy-instructor-courses__add-new-course-btn {
    display: inline-flex !important;
    align-items: center;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 46px !important;
    padding: 10px 12px !important;
    box-sizing: border-box;
    justify-content: center;
    gap: 8px;
    overflow: hidden;
    white-space: normal !important;
    background: linear-gradient(135deg, var(--npp-blue), #4f8dff) !important;
    box-shadow: 0 14px 30px rgba(31, 111, 255, .22) !important;
  }

  .page-id-23788 .masterstudy-instructor-courses__add-new-course-btn::before {
    flex: 0 0 auto;
    margin-right: 0 !important;
    color: #fff !important;
  }

  .page-id-23788 .masterstudy-instructor-courses__add-new-course-btn .masterstudy-button__title {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    color: #fff !important;
    overflow: visible;
    overflow-wrap: break-word;
    word-break: normal;
    text-align: center;
    white-space: normal !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
  }

  .page-id-23788 #stm-lms-courses-grid .stm_lms_instructor_courses__top {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 12px;
    height: auto !important;
    align-items: stretch !important;
  }

  .page-id-23788 #stm-lms-courses-grid .stm_lms_instructor_courses__top h3 {
    margin: 0 !important;
  }

  .page-id-23788 #stm-lms-courses-grid .masterstudy-lms-course-filters {
    display: flex;
    max-width: 100%;
    overflow-x: auto;
  }

  .page-id-23788 #stm-lms-courses-grid .stm_lms_instructor_courses__top > a.btn.btn-default {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    min-height: 46px;
    padding: 10px 12px !important;
    overflow: visible !important;
    white-space: normal !important;
    text-align: center;
    line-height: 1.2 !important;
    color: #fff !important;
    border: 0 !important;
    background: linear-gradient(135deg, var(--npp-blue), #4f8dff) !important;
    box-shadow: 0 14px 30px rgba(31, 111, 255, .22) !important;
  }

  .page-id-23788 #stm-lms-courses-grid .stm_lms_instructor_courses__top > a.btn.btn-default i {
    flex: 0 0 auto;
    margin-right: 8px;
    color: #fff !important;
  }
}

@media (min-width: 481px) and (max-width: 1400px) {
  body.page-id-23788,
  body.page-id-23788 .npp-main,
  body.page-id-23788 .stm-lms-wrapper,
  body.page-id-23788 .stm-lms-wrapper.user-account-page,
  body.page-id-23788 .masterstudy-account,
  body.page-id-23788 .masterstudy-account-container,
  body.page-id-23788 .container {
    width: 100% !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    overflow-x: hidden !important;
  }

  .page-id-23788 [class*="masterstudy-analytics-"],
  .page-id-23788 [class*="masterstudy-analytics-"] * {
    box-sizing: border-box !important;
  }

  .page-id-23788 .masterstudy-analytics-revenue-page,
  .page-id-23788 .masterstudy-analytics-engagement-page,
  .page-id-23788 .masterstudy-analytics-instructor-students-page,
  .page-id-23788 .masterstudy-analytics-reviews-page,
  .user-account-page .masterstudy-analytics-revenue-page,
  .user-account-page .masterstudy-analytics-engagement-page,
  .user-account-page .masterstudy-analytics-instructor-students-page,
  .user-account-page .masterstudy-analytics-reviews-page {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-right: auto !important;
    margin-left: auto !important;
    overflow-x: hidden !important;
  }

  .page-id-23788 [class*="masterstudy-analytics-"][class*="-page__header"] {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    gap: 10px !important;
    overflow: hidden !important;
  }

  .page-id-23788 [class*="masterstudy-analytics-"][class*="-page__title"] {
    min-width: 0 !important;
  }

  .page-id-23788 .masterstudy-date-field {
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
  }

  .page-id-23788 .masterstudy-date-field-value {
    white-space: nowrap !important;
  }

  .page-id-23788 .masterstudy-settings-modal,
  .page-id-23788 .masterstudy-settings-modal__wrapper {
    max-width: calc(100vw - 32px) !important;
    min-width: 0 !important;
  }

  .page-id-23788 .masterstudy-settings-modal__items {
    max-width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  .page-id-23788 [class*="masterstudy-analytics-"][class*="-page-line"],
  .page-id-23788 [class*="masterstudy-analytics-"][class*="-page-doughnut"],
  .page-id-23788 [class*="masterstudy-analytics-"][class*="-page-stats"],
  .page-id-23788 [class*="masterstudy-analytics-"][class*="-page-table"] {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-x: hidden !important;
  }

  .page-id-23788 [class*="masterstudy-analytics-"][class*="-page-line__wrapper"],
  .page-id-23788 [class*="masterstudy-analytics-"][class*="-page-doughnut__wrapper"],
  .page-id-23788 [class*="masterstudy-analytics-"][class*="-page-stats__wrapper"],
  .page-id-23788 [class*="masterstudy-analytics-"][class*="-page-table__wrapper"] {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
  }

  .page-id-23788 [class*="masterstudy-analytics-"][class*="-page-line__content"],
  .page-id-23788 [class*="masterstudy-analytics-"][class*="-page-doughnut__content"],
  .page-id-23788 [class*="masterstudy-analytics-"][class*="-page-table__header"],
  .page-id-23788 [class*="masterstudy-analytics-"] .masterstudy-datatable {
    width: max-content !important;
    min-width: 100% !important;
    max-width: none !important;
  }

  .page-id-23788 [class*="masterstudy-analytics-"][class*="-page-table__header"] {
    flex-wrap: nowrap !important;
  }

  .page-id-23788 .masterstudy-analytics-table__tabs,
  .page-id-23788 [class*="masterstudy-analytics-"][class*="-page-table__search-wrapper"] {
    flex: 0 0 auto !important;
  }

  .page-id-23788 [class*="masterstudy-analytics-"] .masterstudy-datatable .dt-container,
  .page-id-23788 [class*="masterstudy-analytics-"] .masterstudy-datatable .dt-layout-table,
  .page-id-23788 [class*="masterstudy-analytics-"] .masterstudy-datatable .dt-layout-cell {
    width: max-content !important;
    min-width: 100% !important;
    max-width: none !important;
  }

  .page-id-23788 [class*="masterstudy-analytics-"] .masterstudy-datatable table.dataTable {
    width: max-content !important;
    min-width: 100% !important;
    max-width: none !important;
  }

  .page-id-23788 [class*="masterstudy-analytics-"] canvas,
  .page-id-23788 [class*="masterstudy-analytics-"] svg {
    max-width: 100% !important;
  }
}

@media (max-width: 480px) {
  .page-id-23788 #stm-lms-courses-grid .masterstudy-lms-course-filters {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3px;
    width: 100%;
    max-width: 100%;
    margin: 0 !important;
    padding: 4px;
    overflow: visible;
    border: 1px solid rgba(31, 111, 255, .14);
    border-radius: 12px;
    background: #f4f7ff;
  }

  .page-id-23788 #stm-lms-courses-grid .masterstudy-lms-course-filters .btn.btn-default {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 32px;
    margin: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 7px 4px !important;
    border-radius: 9px !important;
    color: #31415f !important;
    background: transparent !important;
    text-align: center;
    white-space: nowrap !important;
    line-height: 1.1 !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
    box-shadow: none !important;
  }

  .page-id-23788 #stm-lms-courses-grid .masterstudy-lms-course-filters .btn.btn-default.clicked,
  .page-id-23788 #stm-lms-courses-grid .masterstudy-lms-course-filters .btn.btn-default:hover,
  .page-id-23788 #stm-lms-courses-grid .masterstudy-lms-course-filters .btn.btn-default:focus-visible {
    color: #fff !important;
    background: var(--npp-blue) !important;
  }

  .page-id-23788 #stm-lms-courses-grid .masterstudy-lms-course-filters .btn.btn-default::after,
  .page-id-23788 #stm-lms-courses-grid .masterstudy-lms-course-filters .btn.btn-default.clicked::after {
    display: none !important;
  }
}

.page-id-23788 .stm_lms_user_float_menu {
  border-right: 1px solid rgba(53, 211, 153, .14);
  background: #07111f;
  box-shadow: 0 18px 44px rgba(7, 17, 31, .22);
}

.page-id-23788 .stm_lms_user_float_menu.__position_right {
  border-right: 0;
  border-left: 1px solid rgba(53, 211, 153, .14);
}

.page-id-23788 .stm_lms_user_float_menu__toggle {
  justify-content: center;
  height: 42px;
  margin: 10px;
  padding: 0 14px;
  border: 1px solid rgba(53, 211, 153, .32);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(53, 211, 153, .2), rgba(61, 220, 151, .08));
  box-shadow: 0 10px 24px rgba(53, 211, 153, .12);
}

.page-id-23788 .stm_lms_user_float_menu__toggle svg path {
  fill: var(--npp-green);
}

.page-id-23788 .stm_lms_user_float_menu.__collapsed .stm_lms_user_float_menu__toggle {
  width: 44px;
  height: 44px;
  margin: 8px;
  padding: 0;
  border-radius: 14px;
}

.page-id-23788 .stm_lms_user_float_menu .float_menu_item:hover,
.page-id-23788 .stm_lms_user_float_menu .float_menu_item_active,
.page-id-23788 .stm_lms_user_float_menu .dropdown_menu_item:hover,
.page-id-23788 .stm_lms_user_float_menu .dropdown_menu_item_active {
  background: rgba(53, 211, 153, .1);
}

.page-id-23788 .stm_lms_user_float_menu .float_menu_item:hover::before,
.page-id-23788 .stm_lms_user_float_menu .float_menu_item_active::before {
  background: var(--npp-green);
}

.page-id-23788 .stm_lms_user_float_menu .float_menu_item__inline,
.page-id-23788 .stm_lms_user_float_menu .dropdown_menu_item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin-bottom: 6px;
  padding: 10px 22px;
  color: rgba(255, 255, 255, .82);
}

.page-id-23788 .stm_lms_user_float_menu .float_menu_item__inline .float_menu_item__title,
.page-id-23788 .stm_lms_user_float_menu .dropdown_menu_item__title {
  color: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  white-space: normal;
}

.page-id-23788 .stm_lms_user_float_menu i.npp-account-menu-icon {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 30px;
  min-width: 30px;
  height: 30px;
  margin: 0;
  border: 1px solid rgba(53, 211, 153, .26);
  border-radius: 10px;
  color: var(--npp-green) !important;
  background: rgba(53, 211, 153, .12);
  font-family: stmlms;
  font-size: 15px !important;
  line-height: 1 !important;
  box-shadow: none;
}

.page-id-23788 .stm_lms_user_float_menu .npp-account-svg-icon {
  width: 30px;
  min-width: 30px;
  height: 30px;
  margin-right: 0;
}

.page-id-23788 .stm_lms_user_float_menu .float_menu_item:hover i.npp-account-menu-icon,
.page-id-23788 .stm_lms_user_float_menu .float_menu_item_active i.npp-account-menu-icon,
.page-id-23788 .stm_lms_user_float_menu .dropdown_menu_item:hover i.npp-account-menu-icon,
.page-id-23788 .stm_lms_user_float_menu .dropdown_menu_item_active i.npp-account-menu-icon {
  color: #06111f !important;
  border-color: rgba(53, 211, 153, .48);
  background: var(--npp-green);
}

.page-id-23788 .stm_lms_user_float_menu .float_menu_item:hover .npp-account-svg-icon,
.page-id-23788 .stm_lms_user_float_menu .float_menu_item_active .npp-account-svg-icon,
.page-id-23788 .stm_lms_user_float_menu .dropdown_menu_item:hover .npp-account-svg-icon,
.page-id-23788 .stm_lms_user_float_menu .dropdown_menu_item_active .npp-account-svg-icon {
  color: #06111f;
  border-color: rgba(53, 211, 153, .48);
  background: var(--npp-green);
}

.page-id-23788 .stm_lms_user_float_menu i.npp-account-menu-icon::before {
  width: auto;
  height: auto;
  border-radius: 0;
  color: currentColor;
  background: transparent;
  box-shadow: none;
  font-family: stmlms;
  font-size: inherit;
  line-height: 1;
}

.page-id-23788 .stm_lms_user_float_menu .float_menu_item__divider {
  margin: 18px 0 8px;
  padding: 14px 22px 5px;
  border-top-color: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .58);
  opacity: 1;
}

.page-id-23788 .stm_lms_user_float_menu__user {
  border-top-color: rgba(255, 255, 255, .08);
  border-bottom-color: rgba(255, 255, 255, .08);
  color: #fff;
}

.page-id-23788 .stm_lms_user_float_menu__user_info span {
  color: rgba(255, 255, 255, .62);
}

.page-id-23788 .stm_lms_user_float_menu .stm-lms-logout-button {
  background: rgba(255, 255, 255, .06);
  color: #fff;
}

.page-id-23788 i.stmlms-tachometer-alt::before { content: var(--stmlms-icon-tachometer-alt); }
.page-id-23788 i.stmlms-bullhorn::before { content: var(--stmlms-icon-bullhorn); }
.page-id-23788 i.stmlms-grade-sheet::before { content: var(--stmlms-icon-grade-sheet); }
.page-id-23788 i.stmlms-assignments::before { content: var(--stmlms-icon-assignments); }
.page-id-23788 i.stmlms-plus-circle-2::before { content: var(--stmlms-icon-plus-circle-2); }
.page-id-23788 i.stmlms-chart-line::before { content: var(--stmlms-icon-chart-line); }
.page-id-23788 i.stmlms-dollar-sign::before { content: var(--stmlms-icon-dollar-sign); }
.page-id-23788 i.stmlms-star-3::before { content: var(--stmlms-icon-star-3); }
.page-id-23788 i.stmlms-book-open::before { content: var(--stmlms-icon-book-open); }
.page-id-23788 i.stmlms-envelope-2::before { content: var(--stmlms-icon-envelope-2); }
.page-id-23788 i.stmlms-heart-2::before { content: var(--stmlms-icon-heart-2); }
.page-id-23788 i.stmlms-quiz::before { content: var(--stmlms-icon-quiz); }
.page-id-23788 i.stmlms-shopping-basket::before { content: var(--stmlms-icon-shopping-basket); }
.page-id-23788 i.stmlms-certificate::before { content: var(--stmlms-icon-certificate); }
.page-id-23788 i.stmlms-cog-2::before { content: var(--stmlms-icon-cog-2); }
.page-id-23788 i.stmlms-power-off::before { content: var(--stmlms-icon-power-off); }
.page-id-23788 i.stmlms-user-2::before { content: var(--stmlms-icon-user-2); }
.page-id-23788 i.stmlms-menu-dots::before { content: var(--stmlms-icon-menu-dots); }
.page-id-23788 i.stmlms-circle::before { content: var(--stmlms-icon-circle); }

.npp-theme .masterstudy-account-menu__list-item,
.npp-theme .masterstudy-account-mobile-menu__link {
  align-items: center;
}

.npp-theme .masterstudy-account,
.npp-theme .stm-lms-wrapper.user-account-page,
.npp-theme .stm-lms-wrapper.create_announcement,
.npp-theme .user-account-page {
  box-sizing: border-box;
  width: 100% !important;
  max-width: 1120px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.page-id-23788 .masterstudy-account,
.page-id-23788 .stm-lms-wrapper,
.page-id-23788 .stm-lms-wrapper.user-account-page,
.page-id-23788 .stm-lms-wrapper.create_announcement,
.page-id-23788 .user-account-page,
.page-id-23788 .stm_lms_acc_tabs {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.page-id-23788 .masterstudy-account-container,
.page-id-23788 .stm_lms_user_content,
.page-id-23788 .stm-lms-user,
.page-id-23788 .stm_lms_user_info,
.page-id-23788 .masterstudy-account-announcement,
.page-id-23788 .masterstudy-instructor-courses,
.page-id-23788 .masterstudy-account-wishlist,
.page-id-23788 .masterstudy-enrolled-courses {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.page-id-23788 .masterstudy-instructor-courses__list,
.page-id-23788 .masterstudy-account-wishlist__list,
.page-id-23788 .masterstudy-enrolled-courses__list,
.page-id-23788 .masterstudy-account-settings__fields {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.npp-theme .masterstudy-account {
  max-width: 1120px !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.npp-theme .masterstudy-account-container,
.npp-theme .stm-lms-wrapper,
.npp-theme .stm_lms_acc_tabs {
  box-sizing: border-box;
  max-width: 100%;
  min-width: 0;
}

.npp-theme .masterstudy-account-container {
  flex: 1 1 auto;
}

.npp-theme:has(.masterstudy-account-announcement) .masterstudy-account-announcement,
.npp-theme:has(.masterstudy-account-announcement) .stm_lms_create_announcement,
.npp-theme:has(.masterstudy-account-announcement) .masterstudy-account-announcement__select,
.npp-theme:has(.masterstudy-account-announcement) .masterstudy-account-announcement__message-input {
  box-sizing: border-box;
  max-width: 100%;
}

.page-id-23788 .masterstudy-account-container > *:not(.stm_lms_acc_tabs),
.page-id-23788 #stm_lms_gradebook,
.page-id-23788 .stm_lms_gradebook__courses,
.page-id-23788 .masterstudy-account-announcement,
.page-id-23788 .masterstudy-instructor-courses,
.page-id-23788 .masterstudy-account-wishlist,
.page-id-23788 .masterstudy-enrolled-courses,
.page-id-23788 .masterstudy-account-settings,
.page-id-23788 .masterstudy-orders,
.page-id-23788 .masterstudy-account-my-certificates,
.page-id-23788 .masterstudy-manage-students,
.page-id-23788 #stm_lms_instructor_manage_students,
.page-id-23788 .stm_lms_user_info,
.page-id-23788 .stm_lms_user_content {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.page-id-23788 .masterstudy-account-container > *:not(.stm_lms_acc_tabs):not(:first-child),
.page-id-23788 #stm_lms_gradebook,
.page-id-23788 .masterstudy-account-announcement,
.page-id-23788 .masterstudy-instructor-courses,
.page-id-23788 .masterstudy-account-wishlist,
.page-id-23788 .masterstudy-enrolled-courses,
.page-id-23788 .masterstudy-account-settings,
.page-id-23788 .masterstudy-orders,
.page-id-23788 .masterstudy-account-my-certificates,
.page-id-23788 .masterstudy-manage-students,
.page-id-23788 #stm_lms_instructor_manage_students {
  margin-top: 24px !important;
}

.page-id-23788 .stm_lms_create_announcement,
.page-id-23788 .stm_lms_gradebook__course,
.page-id-23788 .masterstudy-orders-table,
.page-id-23788 .masterstudy-account-my-certificates__certificate,
.page-id-23788 .masterstudy-account-wishlist__empty,
.page-id-23788 .masterstudy-enrolled-courses__empty,
.page-id-23788 .masterstudy-account-settings__field-wrapper,
.page-id-23788 .masterstudy-tcell__data,
.page-id-23788 .masterstudy-instructor-course-card,
.page-id-23788 .masterstudy-course-card,
.page-id-23788 .masterstudy-account-statistics,
.page-id-23788 .masterstudy-account-statistics__wrapper {
  box-sizing: border-box !important;
  max-width: 100% !important;
}

.page-id-23788 .stm_lms_create_announcement,
.page-id-23788 .masterstudy-orders-table,
.page-id-23788 .masterstudy-account-my-certificates__certificate,
.page-id-23788 .masterstudy-account-wishlist__empty,
.page-id-23788 .masterstudy-enrolled-courses__empty {
  border-radius: 14px;
}

.page-id-23788 .stm_lms_create_announcement,
.page-id-23788 .masterstudy-account-settings__fields,
.page-id-23788 .masterstudy-account-wishlist__list,
.page-id-23788 .masterstudy-enrolled-courses__list,
.page-id-23788 .masterstudy-instructor-courses__list,
.page-id-23788 .stm_lms_gradebook__courses {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.page-id-23788 .stm-lms-wrapper--gradebook .container {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.page-id-23788 .gradebook-header,
.page-id-23788 .masterstudy-instructor-courses__top,
.page-id-23788 .masterstudy-instructor-courses__tabs,
.page-id-23788 .masterstudy-orders__title,
.page-id-23788 .masterstudy-account-my-certificates__title,
.page-id-23788 .masterstudy-account-announcement__title {
  margin-top: 0 !important;
}

.page-id-23788 .stm-lms-wrapper.user-account-page:has(.masterstudy-orders) > .container {
  box-sizing: border-box !important;
  width: min(1120px, calc(100% - 40px)) !important;
  max-width: 1120px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.page-id-23788 .stm-lms-wrapper.user-account-page:has(.masterstudy-orders),
.npp-theme .stm-lms-wrapper.user-account-page:has(.masterstudy-orders) {
  box-sizing: border-box !important;
  width: min(1200px, calc(100vw - 40px)) !important;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.page-id-23788 .stm-lms-wrapper.user-account-page:has(.masterstudy-orders) > .container {
  width: 100% !important;
  max-width: 100% !important;
}

.npp-theme .stm-lms-wrapper.user-account-page:has(.masterstudy-orders) > .container {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.npp-theme .masterstudy-orders {
  box-sizing: border-box !important;
  width: min(1120px, calc(100vw - 40px)) !important;
  max-width: 1120px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.page-id-23788 .masterstudy-orders-details,
.page-id-23788 .masterstudy-payment-methods,
.page-id-23788 .masterstudy-orders-container,
.page-id-23788 .masterstudy-orders-row,
.page-id-23788 #masterstudy-order-template {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.page-id-23788 .masterstudy-orders,
.npp-theme .masterstudy-orders {
  box-sizing: border-box !important;
  width: min(1120px, calc(100vw - 40px)) !important;
  max-width: 1120px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.npp-theme .masterstudy-orders-details,
.npp-theme .masterstudy-payment-methods,
.npp-theme .masterstudy-orders-container,
.npp-theme .masterstudy-orders-row,
.npp-theme #masterstudy-order-template {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.page-id-23788 .masterstudy-orders .masterstudy-orders-table,
.page-id-23788 .masterstudy-orders .masterstudy-payment-methods__table-woocommerce,
.page-id-23788 .masterstudy-orders .masterstudy-payment-methods__table {
  box-sizing: border-box !important;
  max-width: 100% !important;
}

.npp-theme .masterstudy-orders-table__footer .masterstudy-orders-course-info {
  display: flex;
  flex-direction: row !important;
  align-items: baseline !important;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: nowrap !important;
  width: 100%;
}

.npp-theme .masterstudy-orders-table__footer .masterstudy-orders-course-info__label,
.npp-theme .masterstudy-orders-table__footer .masterstudy-orders-course-info__price {
  display: inline-flex !important;
  width: auto !important;
  flex: 0 0 auto !important;
  align-items: baseline !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.2 !important;
  white-space: nowrap;
}

.npp-theme .masterstudy-orders-table__footer .masterstudy-orders-course-info__price .woocommerce-Price-amount {
  display: inline-flex;
  align-items: baseline;
  font-weight: 800;
  line-height: 1.2;
}

.npp-theme .masterstudy-orders-table__footer .masterstudy-orders-course-info__price bdi,
.npp-theme .masterstudy-orders-table__footer .masterstudy-orders-course-info__price .woocommerce-Price-currencySymbol {
  line-height: 1.2;
}

.page-id-23788 .masterstudy-orders-details {
  align-items: center;
}

.page-id-23788 .masterstudy-analytics-sales-page-table .masterstudy-analytics-report-button__wrapper {
  justify-content: center;
}

.npp-theme .masterstudy-analytics-sales-page-table .masterstudy-analytics-report-button__wrapper,
.npp-theme .masterstudy-analytics-sales-page-table .npp-sales-report-button__wrapper {
  display: flex !important;
  justify-content: center !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.npp-theme .masterstudy-analytics-sales-page-table td:last-child,
.npp-theme .masterstudy-analytics-sales-page-table .npp-sales-report-cell {
  min-width: 150px !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.page-id-23788 .masterstudy-analytics-sales-page-table a.masterstudy-analytics-report-button,
.page-id-23788 .masterstudy-analytics-sales-page-table a.npp-sales-report-button,
.npp-theme .masterstudy-analytics-sales-page-table a.masterstudy-analytics-report-button,
.npp-theme .masterstudy-analytics-sales-page-table a.npp-sales-report-button {
  display: inline-flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  min-height: 34px;
  padding: 8px 12px !important;
  border: 1px solid rgba(53, 211, 153, .28);
  border-radius: 10px !important;
  background: rgba(53, 211, 153, .16) !important;
  color: #001931 !important;
  font-weight: 800 !important;
  box-shadow: 0 8px 20px rgba(53, 211, 153, .1);
}

.page-id-23788 .masterstudy-analytics-sales-page-table a.masterstudy-analytics-report-button:hover,
.page-id-23788 .masterstudy-analytics-sales-page-table a.npp-sales-report-button:hover,
.npp-theme .masterstudy-analytics-sales-page-table a.masterstudy-analytics-report-button:hover,
.npp-theme .masterstudy-analytics-sales-page-table a.npp-sales-report-button:hover {
  background: var(--npp-green) !important;
  color: #001931 !important;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(53, 211, 153, .24);
}

.page-id-23788 .masterstudy-orders-container,
.page-id-23788 .masterstudy-payment-methods,
.page-id-23788 .masterstudy-orders-row {
  margin-top: 24px !important;
}

.npp-theme .npp-account-plugin-icon-hidden,
.npp-theme .npp-account-native-icon-hidden,
.npp-theme .stm_lms_acc_tabs .float_menu_item__inline > i:not(.stm_lms_acc_tabs__toggle),
.npp-theme .stm_lms_acc_tabs .dropdown_menu_item > i,
.npp-theme .stm_lms_user_float_menu .float_menu_item__inline > i,
.npp-theme .stm_lms_user_float_menu .dropdown_menu_item > i {
  display: none !important;
}

.npp-theme .npp-account-svg-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  min-width: 28px;
  height: 28px;
  margin-right: 10px;
  border: 1px solid rgba(53, 211, 153, .26);
  border-radius: 10px;
  color: var(--npp-green);
  background: rgba(53, 211, 153, .12);
  line-height: 1;
}

.npp-theme .npp-account-svg-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.npp-theme .masterstudy-account-menu__list-item_active .npp-account-svg-icon,
.npp-theme .masterstudy-account-menu__list-item:hover .npp-account-svg-icon,
.npp-theme .masterstudy-account-mobile-menu__link_active .npp-account-svg-icon,
.npp-theme .masterstudy-account-mobile-menu__link:hover .npp-account-svg-icon,
.npp-theme .stm_lms_acc_tabs .float_menu_item__inline.float_menu_item_active .npp-account-svg-icon,
.npp-theme .stm_lms_acc_tabs .float_menu_item__inline:hover .npp-account-svg-icon,
.npp-theme .stm_lms_acc_tabs .dropdown_menu_item_active .npp-account-svg-icon,
.npp-theme .stm_lms_acc_tabs .dropdown_menu_item:hover .npp-account-svg-icon,
.npp-theme .stm_lms_user_float_menu .float_menu_item:hover .npp-account-svg-icon,
.npp-theme .stm_lms_user_float_menu .float_menu_item_active .npp-account-svg-icon,
.npp-theme .stm_lms_user_float_menu .dropdown_menu_item:hover .npp-account-svg-icon,
.npp-theme .stm_lms_user_float_menu .dropdown_menu_item_active .npp-account-svg-icon {
  color: #06111f;
  border-color: rgba(53, 211, 153, .48);
  background: var(--npp-green);
}

.npp-theme .stm_lms_acc_tabs {
  padding: 6px;
  padding-right: 54px;
  margin-bottom: 24px;
  border-radius: 14px;
  background: #07111f;
  box-shadow: 0 12px 28px rgba(7, 17, 31, .16);
}

.npp-theme .stm_lms_acc_tabs:not(.has_sub_items) {
  padding-right: 6px;
}

.npp-theme .stm_lms_acc_tabs__main {
  gap: 8px;
  margin: 0;
  border-top: 0;
  background: transparent;
}

.npp-theme .stm_lms_acc_tabs .float_menu_item__inline,
.npp-theme .stm_lms_acc_tabs__secondary_inner .dropdown_menu_item {
  gap: 10px;
}

.npp-theme .stm_lms_acc_tabs__main .float_menu_item__inline {
  min-height: 44px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, .06);
}

.npp-theme .stm_lms_acc_tabs__main .float_menu_item__inline .float_menu_item__title {
  color: #fff;
  letter-spacing: 0;
}

.npp-theme .stm_lms_acc_tabs__main .float_menu_item__inline.float_menu_item_active,
.npp-theme .stm_lms_acc_tabs__main .float_menu_item__inline:hover {
  border-color: rgba(53, 211, 153, .54);
  background: rgba(53, 211, 153, .16);
}

.npp-theme .stm_lms_acc_tabs__main .float_menu_item__inline.float_menu_item_active .float_menu_item__title,
.npp-theme .stm_lms_acc_tabs__main .float_menu_item__inline:hover .float_menu_item__title {
  color: #fff;
}

.npp-theme .stm_lms_acc_tabs .float_menu_item__inline .npp-account-svg-icon {
  order: -1;
  width: 22px;
  min-width: 22px;
  height: 22px;
  margin-right: 0;
  color: var(--npp-green);
  border-color: rgba(53, 211, 153, .34);
  background: rgba(53, 211, 153, .14);
}

.npp-theme .stm_lms_acc_tabs .float_menu_item__inline.float_menu_item_active .npp-account-svg-icon,
.npp-theme .stm_lms_acc_tabs .float_menu_item__inline:hover .npp-account-svg-icon {
  color: #06111f;
  border-color: var(--npp-green);
  background: var(--npp-green);
}

.npp-theme .stm_lms_acc_tabs i.stm_lms_acc_tabs__toggle {
  position: absolute;
  top: 6px;
  right: 6px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 42px;
  min-width: 42px;
  height: 44px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  color: #06111f !important;
  background: var(--npp-green);
  box-shadow: 0 10px 22px rgba(53, 211, 153, .16);
  cursor: pointer;
  font-size: 0 !important;
  line-height: 1 !important;
}

.npp-theme .stm_lms_acc_tabs i.stm_lms_acc_tabs__toggle::before,
.npp-theme .stm_lms_acc_tabs i.stm_lms_acc_tabs__toggle::after {
  content: "";
  position: absolute;
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.npp-theme .stm_lms_acc_tabs i.stm_lms_acc_tabs__toggle::before {
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

.npp-theme .stm_lms_acc_tabs i.stm_lms_acc_tabs__toggle::after {
  opacity: 0;
}

.npp-theme .stm_lms_acc_tabs__secondary.active i.stm_lms_acc_tabs__toggle::before {
  box-shadow: none;
  transform: rotate(45deg);
}

.npp-theme .stm_lms_acc_tabs__secondary.active i.stm_lms_acc_tabs__toggle::after {
  opacity: 1;
  transform: rotate(-45deg);
}

.npp-theme .stm_lms_acc_tabs .float_menu_item__inline abbr,
.npp-theme .stm_lms_acc_tabs .dropdown_menu_item abbr,
.npp-theme .stm_lms_user_float_menu .float_menu_item abbr,
.npp-theme .stm_lms_user_float_menu .dropdown_menu_item abbr {
  display: none !important;
}

.npp-theme .stm_lms_acc_tabs__secondary_inner {
  top: 58px;
  right: 0;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  background: #07111f;
  box-shadow: 0 18px 42px rgba(7, 17, 31, .24);
}

.npp-theme .stm_lms_acc_tabs__secondary_inner .float_menu_item__inline,
.npp-theme .stm_lms_acc_tabs__secondary_inner .dropdown_menu_item {
  display: flex;
  align-items: center;
}

.npp-theme .stm_lms_acc_tabs__secondary_inner .npp-account-svg-icon {
  width: 24px;
  min-width: 24px;
  height: 24px;
  margin-right: 0;
  color: #fff;
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .1);
}

.npp-theme .stm_lms_user_float_menu {
  border-right: 1px solid rgba(53, 211, 153, .14);
  background: #07111f;
  box-shadow: 0 18px 44px rgba(7, 17, 31, .22);
}

.npp-theme .stm_lms_user_float_menu.__position_right {
  border-right: 0;
  border-left: 1px solid rgba(53, 211, 153, .14);
}

.npp-theme .stm_lms_user_float_menu__toggle {
  justify-content: center;
  height: 42px;
  margin: 10px;
  padding: 0 14px;
  border: 1px solid rgba(53, 211, 153, .32);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(53, 211, 153, .2), rgba(61, 220, 151, .08));
  box-shadow: 0 10px 24px rgba(53, 211, 153, .12);
}

.npp-theme .stm_lms_user_float_menu__toggle svg path {
  fill: var(--npp-green);
}

.npp-theme .stm_lms_user_float_menu.__collapsed .stm_lms_user_float_menu__toggle {
  width: 44px;
  height: 44px;
  margin: 8px;
  padding: 0;
  border-radius: 14px;
}

.npp-theme .stm_lms_user_float_menu .float_menu_item:hover,
.npp-theme .stm_lms_user_float_menu .float_menu_item_active,
.npp-theme .stm_lms_user_float_menu .dropdown_menu_item:hover,
.npp-theme .stm_lms_user_float_menu .dropdown_menu_item_active {
  background: rgba(53, 211, 153, .1);
}

.npp-theme .stm_lms_user_float_menu .float_menu_item:hover::before,
.npp-theme .stm_lms_user_float_menu .float_menu_item_active::before {
  background: var(--npp-green);
}

.npp-theme .stm_lms_user_float_menu .float_menu_item__inline,
.npp-theme .stm_lms_user_float_menu .dropdown_menu_item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin-bottom: 6px;
  padding: 10px 22px;
  color: rgba(255, 255, 255, .82);
}

.npp-theme .stm_lms_user_float_menu .float_menu_item__inline .float_menu_item__title,
.npp-theme .stm_lms_user_float_menu .dropdown_menu_item__title {
  color: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  white-space: normal;
}

.npp-theme .stm_lms_user_float_menu .npp-account-svg-icon {
  width: 30px;
  min-width: 30px;
  height: 30px;
  margin-right: 0;
}

.npp-theme .stm_lms_user_float_menu .float_menu_item__divider {
  margin: 18px 0 8px;
  padding: 14px 22px 5px;
  border-top-color: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .58);
  opacity: 1;
}

.npp-theme .stm_lms_user_float_menu__user {
  border-top-color: rgba(255, 255, 255, .08);
  border-bottom-color: rgba(255, 255, 255, .08);
  color: #fff;
}

.npp-theme .stm_lms_user_float_menu__user_info span {
  color: rgba(255, 255, 255, .62);
}

.npp-theme .stm_lms_user_float_menu .stm-lms-logout-button {
  background: rgba(255, 255, 255, .06);
  color: #fff;
}

@media (max-width: 1279.98px) {
  .npp-theme .masterstudy-account-mobile-menu,
  .npp-theme .masterstudy-account-mobile-menu__link,
  .npp-theme .masterstudy-account-mobile-menu__item {
    display: flex !important;
  }

  .npp-theme .masterstudy-account-mobile-menu .npp-account-svg-icon {
    display: inline-flex !important;
    margin-right: 0;
    margin-bottom: 2px;
  }
}

@media (max-width: 890px) {
  .page-id-23788 .masterstudy-account-container > *:not(.stm_lms_acc_tabs):not(:first-child),
  .page-id-23788 #stm_lms_gradebook,
  .page-id-23788 .masterstudy-account-announcement,
  .page-id-23788 .masterstudy-instructor-courses,
  .page-id-23788 .masterstudy-account-wishlist,
  .page-id-23788 .masterstudy-enrolled-courses,
  .page-id-23788 .masterstudy-account-settings,
  .page-id-23788 .masterstudy-orders,
  .page-id-23788 .masterstudy-account-my-certificates,
  .page-id-23788 .masterstudy-manage-students,
  .page-id-23788 #stm_lms_instructor_manage_students {
    margin-top: 18px !important;
  }

  .page-id-23788 .stm_lms_create_announcement,
  .page-id-23788 .masterstudy-orders-table,
  .page-id-23788 .masterstudy-account-my-certificates__certificate {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .page-id-23788 .stm-lms-wrapper.user-account-page:has(.masterstudy-orders) > .container {
    width: min(1120px, calc(100% - 24px)) !important;
  }

  .page-id-23788 .stm-lms-wrapper.user-account-page:has(.masterstudy-orders),
  .npp-theme .stm-lms-wrapper.user-account-page:has(.masterstudy-orders) {
    width: min(1200px, calc(100% - 32px)) !important;
  }

  .page-id-23788 .masterstudy-orders,
  .npp-theme .masterstudy-orders {
    width: 100% !important;
  }

  .page-id-23788 .masterstudy-orders-container,
  .page-id-23788 .masterstudy-payment-methods,
  .page-id-23788 .masterstudy-orders-row {
    margin-top: 18px !important;
  }

  .npp-theme .masterstudy-orders-details {
    flex-wrap: wrap;
    gap: 12px;
  }

  .npp-theme .masterstudy-orders-details > .masterstudy-button_icon-arrow-left {
    order: 1;
    flex: 1 1 0;
    width: auto !important;
    max-width: none;
    margin-right: 0 !important;
  }

  .npp-theme .masterstudy-orders-details__id {
    order: 3;
    flex: 1 1 100%;
    width: 100%;
  }

  .npp-theme .masterstudy-orders-details__date {
    display: block !important;
    order: 4;
    flex: 1 1 100%;
    width: 100%;
    margin-left: 0 !important;
  }

  .npp-theme .masterstudy-orders-details .masterstudy-button_icon-print {
    order: 2;
    flex: 1 1 0;
    width: auto !important;
    max-width: none;
    margin-left: 0 !important;
  }

  .npp-theme .masterstudy-orders-table__footer .masterstudy-orders-course-info {
    justify-content: center;
  }

  .npp-theme .masterstudy-account,
  .npp-theme .stm-lms-wrapper.user-account-page,
  .npp-theme .stm-lms-wrapper.create_announcement,
  .npp-theme .user-account-page {
    max-width: 100%;
  }

  .npp-theme .stm_lms_acc_tabs {
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    padding-right: 52px;
    width: 100%;
    max-width: 100%;
    margin-bottom: 22px;
    overflow: visible;
  }

  .npp-theme .stm_lms_acc_tabs__main {
    display: flex;
    gap: 6px;
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .npp-theme .stm_lms_acc_tabs__main::-webkit-scrollbar {
    display: none;
  }

  .npp-theme .stm_lms_acc_tabs__main .float_menu_item__inline {
    flex: 0 0 auto;
    min-width: 126px;
    box-sizing: border-box;
    height: 48px;
    min-height: 0;
    padding: 8px 12px;
    gap: 8px;
  }

  .npp-theme .stm_lms_acc_tabs__main .float_menu_item__inline .float_menu_item__title {
    display: block !important;
    visibility: visible !important;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    white-space: normal;
  }

  .npp-theme .stm_lms_acc_tabs i.stm_lms_acc_tabs__toggle {
    top: 50%;
    right: 3px;
    transform: translateY(-50%);
    width: 48px;
    min-width: 48px;
    height: 48px;
    border-color: rgba(53, 211, 153, .58);
  }

  .npp-theme .stm_lms_acc_tabs__secondary {
    position: absolute;
    top: 6px;
    right: 3px;
    bottom: 6px;
    flex: none;
    width: 48px;
    margin-left: auto;
  }

  .npp-theme .stm_lms_acc_tabs__secondary_inner {
    top: 50px;
    right: 0;
  }
}

.page-id-23788 .masterstudy__login-page {
  display: grid;
  grid-template-columns: minmax(460px, 1.12fr) minmax(320px, .88fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  padding: 0 !important;
  border: 1px solid rgba(7, 17, 31, .1);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--npp-shadow);
}

.page-id-23788 .masterstudy__login-page::before {
  content: "";
  display: flex;
  align-items: flex-end;
  align-self: stretch;
  height: 100%;
  min-height: 680px;
  padding: 42px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(7, 17, 31, .18), rgba(7, 17, 31, .92)),
    var(--npp-hero-image, url("https://notaspraticas.com.br/wp-content/uploads/2025/04/banner-home-notas-praticas-1.jpg"));
  background-size: cover;
  background-position: center;
}

.page-id-23788 .masterstudy__login-page::after {
  content: "Estude música\A com uma trilha clara";
  position: absolute;
  left: 42px;
  bottom: 42px;
  z-index: 2;
  width: min(520px, 48%);
  color: transparent;
  background: linear-gradient(180deg, #fff 0 48%, var(--npp-green) 48% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  white-space: pre-line;
  text-shadow: 0 12px 28px rgba(0, 0, 0, .35);
  pointer-events: none;
}

.page-id-23788 .masterstudy__login-page {
  position: relative;
}

.page-id-23788 .masterstudy__login-page-form {
  display: grid;
  place-items: center;
  justify-self: stretch;
  width: 100% !important;
  max-width: none !important;
  min-height: 680px;
  min-width: 0;
  padding: clamp(24px, 4vw, 54px);
  background:
    radial-gradient(circle at 50% 10%, rgba(53, 211, 153, .22), transparent 38%),
    linear-gradient(180deg, rgba(233, 255, 246, .96), rgba(255, 255, 255, .98));
}

.page-id-23788 .masterstudy-authorization {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-align: center;
}

.page-id-23788 .masterstudy-authorization__wrapper {
  padding: 0 !important;
}

.page-id-23788 .masterstudy-authorization__header {
  display: block !important;
  margin-bottom: 26px !important;
}

.page-id-23788 .masterstudy-authorization_register .masterstudy-authorization__header {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 42px;
}

.page-id-23788 .masterstudy-authorization_login .masterstudy-authorization__header-back,
.page-id-23788 .masterstudy-authorization:not(.masterstudy-authorization_register) .masterstudy-authorization__header-back {
  display: none !important;
}

.page-id-23788 .masterstudy-authorization_register .masterstudy-authorization__header-back {
  position: absolute;
  left: 0;
  top: 50%;
  display: flex !important;
  margin: 0;
  transform: translateY(-50%);
}

.page-id-23788 .masterstudy-authorization__header-title,
.page-id-23788 .masterstudy-authorization__restore-header-title {
  color: var(--npp-navy) !important;
  font-size: clamp(30px, 4vw, 42px) !important;
  font-weight: 900 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.03em;
}

.page-id-23788 .masterstudy-authorization__header::after {
  content: "Entre para acompanhar suas aulas, progresso e certificado em um ambiente organizado.";
  display: block;
  max-width: 420px;
  margin: 14px auto 0;
  color: var(--npp-muted);
  font-size: 16px;
  line-height: 1.55;
}

.page-id-23788 .masterstudy-authorization_register .masterstudy-authorization__header::after {
  content: none;
  display: none;
}

.page-id-23788 .masterstudy-authorization__form-wrapper {
  display: grid;
  gap: 14px;
}

.page-id-23788 .masterstudy-authorization__form-field {
  margin: 0 !important;
}

.page-id-23788 .masterstudy-authorization__form-input {
  width: 100% !important;
  min-height: 54px !important;
  padding: 14px 16px !important;
  color: var(--npp-text) !important;
  border: 1px solid #cfe0ee !important;
  border-radius: 12px !important;
  background: #f9fcff !important;
  box-shadow: none !important;
  font-size: 15px !important;
  text-align: left !important;
}

.page-id-23788 .masterstudy-authorization__form-input:focus {
  border-color: var(--npp-green) !important;
  background: #fff !important;
  outline: 3px solid rgba(53, 211, 153, .18) !important;
}

.page-id-23788 .masterstudy-authorization__form-explain-pass,
.page-id-23788 .masterstudy-authorization__gdpr-text,
.page-id-23788 .masterstudy-authorization__checkbox-title,
.page-id-23788 .masterstudy-authorization__switch-account-title {
  color: var(--npp-muted) !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
}

.page-id-23788 .masterstudy-authorization__actions,
.page-id-23788 .masterstudy-authorization__switch-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px !important;
}

.page-id-23788 .masterstudy-authorization__actions-remember,
.page-id-23788 .masterstudy-authorization__gdpr {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 9px;
  margin-top: 14px !important;
  text-align: left;
}

.page-id-23788 .masterstudy-authorization__checkbox-wrapper {
  border-color: #cfe0ee !important;
  border-radius: 6px !important;
}

.page-id-23788 .masterstudy-button {
  min-height: 48px !important;
  padding: 13px 20px !important;
  border: 0 !important;
  border-radius: var(--npp-radius) !important;
  background: linear-gradient(135deg, var(--npp-green), #72e7bd) !important;
  box-shadow: 0 16px 34px rgba(53, 211, 153, .24) !important;
  transition: transform .18s ease, box-shadow .18s ease !important;
}

.page-id-23788 .masterstudy-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(53, 211, 153, .34) !important;
}

.page-id-23788 .masterstudy-button__title {
  color: #06111f !important;
  font-weight: 900 !important;
}

.page-id-23788 .masterstudy-authorization__switch {
  margin-top: 24px !important;
  padding-top: 18px;
  border-top: 1px solid var(--npp-line);
}

.page-id-23788 .masterstudy-authorization__switch-wrapper {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.page-id-23788 .masterstudy-authorization__switch-account {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.page-id-23788 .masterstudy-authorization__switch-lost-pass {
  display: inline-flex;
}

.page-id-23788 .masterstudy-authorization__switch-account-link,
.page-id-23788 .masterstudy-authorization__switch-lost-pass,
.page-id-23788 .masterstudy-authorization__gdpr-link {
  color: #007f5f !important;
  font-weight: 850 !important;
}

.npp-post-list {
  display: grid;
  gap: 24px;
  max-width: 1120px;
}

.npp-post-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: stretch;
  padding: 18px;
  border-color: rgba(53, 211, 153, .16);
  box-shadow: var(--npp-shadow);
}

.npp-post-thumb {
  display: block;
  overflow: hidden;
  border-radius: var(--npp-radius);
  background: var(--npp-navy);
}

.npp-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.npp-post-card > div {
  display: grid;
  align-content: center;
}

.npp-post-card .npp-link {
  justify-self: start;
}

.npp-featured-image {
  overflow: hidden;
  margin-bottom: 28px;
  border-radius: 16px;
  background: var(--npp-navy);
}

.npp-featured-image img {
  display: block;
  width: 100%;
  height: auto;
}

.npp-footer {
  color: rgba(255, 255, 255, .76);
  background: var(--npp-navy);
}

.npp-footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(160px, 1fr));
  gap: 42px;
  padding: 58px 0 34px;
}

.npp-footer h3 {
  margin: 0 0 12px;
  color: #fff;
}

.npp-footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, .72);
}

.npp-footer-bottom .npp-credit-link {
  display: inline;
  margin: 0 0 0 4px;
  color: var(--npp-green);
  font-weight: 900;
}

.npp-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 14px;
}

.npp-masterstudy-wrap {
  margin-top: 26px;
}

.npp-theme:not(.single-stm-courses) .masterstudy-course-player,
.npp-theme:not(.single-stm-courses) .stm-lms-wrapper,
.npp-theme:not(.single-stm-courses) .stm_lms_user_info_top,
.npp-theme:not(.single-stm-courses) .stm_lms_user_info,
.npp-theme:not(.single-stm-courses) .stm-lms-user,
.npp-theme:not(.single-stm-courses) .stm_lms_user_side,
.npp-theme:not(.single-stm-courses) .stm_lms_user_content,
.npp-theme:not(.single-stm-courses) .stm_lms_courses__grid,
.npp-theme:not(.single-stm-courses) .stm_lms_courses,
.npp-theme:not(.single-stm-courses) .masterstudy-course-player-content {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

.npp-theme:not(.single-stm-courses) .stm-lms-wrapper,
.npp-theme:not(.single-stm-courses) .stm_lms_user_info,
.npp-theme:not(.single-stm-courses) .stm-lms-user,
.npp-theme:not(.single-stm-courses) .masterstudy-course-player {
  color: var(--npp-text);
}

.npp-theme:not(.single-stm-courses) .stm_lms_user_info,
.npp-theme:not(.single-stm-courses) .stm_lms_user_side,
.npp-theme:not(.single-stm-courses) .stm_lms_user_content,
.npp-theme:not(.single-stm-courses) .stm-lms-user,
.npp-theme:not(.single-stm-courses) .masterstudy-course-player-content,
.npp-theme:not(.single-stm-courses) .masterstudy-course-player-curriculum,
.npp-theme:not(.single-stm-courses) .masterstudy-course-player-header,
.npp-theme:not(.single-stm-courses) .masterstudy-course-player-navigation,
.npp-theme:not(.single-stm-courses) .masterstudy-course-player-lesson,
.npp-theme:not(.single-stm-courses) .masterstudy-course-card,
.npp-theme:not(.single-stm-courses) .stm_lms_courses__single,
.npp-theme:not(.single-stm-courses) .stm_lms_courses__single--inner {
  border-radius: var(--npp-radius) !important;
}

.npp-theme:not(.single-stm-courses) .stm_lms_user_info,
.npp-theme:not(.single-stm-courses) .stm_lms_user_side,
.npp-theme:not(.single-stm-courses) .stm_lms_user_content,
.npp-theme:not(.single-stm-courses) .masterstudy-course-card,
.npp-theme:not(.single-stm-courses) .stm_lms_courses__single--inner {
  border: 1px solid var(--npp-line) !important;
  background: #fff !important;
  box-shadow: 0 14px 36px rgba(11, 30, 54, .08) !important;
}

.npp-theme:not(.single-stm-courses) .stm_lms_user_side,
.npp-theme:not(.single-stm-courses) .masterstudy-course-player-sidebar {
  background: linear-gradient(180deg, #07111f, #0d2337) !important;
  color: #fff !important;
}

.npp-theme:not(.single-stm-courses) .stm_lms_user_side a,
.npp-theme:not(.single-stm-courses) .stm_lms_user_side span,
.npp-theme:not(.single-stm-courses) .masterstudy-course-player-sidebar a,
.npp-theme:not(.single-stm-courses) .masterstudy-course-player-sidebar span {
  color: rgba(255, 255, 255, .78) !important;
}

.npp-theme:not(.single-stm-courses) .stm_lms_user_side a:hover,
.npp-theme:not(.single-stm-courses) .stm_lms_user_side .active a,
.npp-theme:not(.single-stm-courses) .masterstudy-course-player-sidebar a:hover {
  color: #fff !important;
  background: rgba(53, 211, 153, .12) !important;
}

.npp-theme:not(.single-stm-courses) .stm_lms_user_content,
.npp-theme:not(.single-stm-courses) .masterstudy-course-player-content {
  background: linear-gradient(180deg, #fff, #f8fbfe) !important;
}

.npp-theme:not(.single-stm-courses) .stm_lms_user_content h1,
.npp-theme:not(.single-stm-courses) .stm_lms_user_content h2,
.npp-theme:not(.single-stm-courses) .stm_lms_user_content h3,
.npp-theme:not(.single-stm-courses) .masterstudy-course-player h1,
.npp-theme:not(.single-stm-courses) .masterstudy-course-player h2,
.npp-theme:not(.single-stm-courses) .masterstudy-course-player h3 {
  color: var(--npp-navy) !important;
  letter-spacing: -0.025em;
}

.npp-theme:not(.single-stm-courses) .stm_lms_user_content p,
.npp-theme:not(.single-stm-courses) .stm_lms_user_content li,
.npp-theme:not(.single-stm-courses) .masterstudy-course-player p,
.npp-theme:not(.single-stm-courses) .masterstudy-course-player li {
  color: var(--npp-muted);
}

.npp-theme:not(.single-stm-courses) .masterstudy-button,
.npp-theme:not(.single-stm-courses) .stm_lms_load_more_courses,
.npp-theme:not(.single-stm-courses) .stm_lms_courses__single a.btn,
.npp-theme:not(.single-stm-courses) .stm_lms_wishlist_button,
.npp-theme:not(.single-stm-courses) .stm_lms_start_course,
.npp-theme:not(.single-stm-courses) .stm_lms_buy_button,
.npp-theme:not(.single-stm-courses) .stm_lms_complete_lesson,
.npp-theme:not(.single-stm-courses) .btn.btn-default,
.npp-theme:not(.single-stm-courses) .btn.btn-primary {
  border-radius: var(--npp-radius) !important;
  font-weight: 850 !important;
}

.npp-theme:not(.single-stm-courses) .masterstudy-button_style-primary,
.npp-theme:not(.single-stm-courses) .stm_lms_start_course,
.npp-theme:not(.single-stm-courses) .stm_lms_buy_button,
.npp-theme:not(.single-stm-courses) .stm_lms_complete_lesson,
.npp-theme:not(.single-stm-courses) .btn.btn-primary {
  color: #06111f !important;
  border: 0 !important;
  background: linear-gradient(135deg, var(--npp-green), #72e7bd) !important;
  box-shadow: 0 14px 30px rgba(53, 211, 153, .22) !important;
}

.npp-theme:not(.single-stm-courses) .masterstudy-button_style-primary:hover,
.npp-theme:not(.single-stm-courses) .stm_lms_start_course:hover,
.npp-theme:not(.single-stm-courses) .stm_lms_buy_button:hover,
.npp-theme:not(.single-stm-courses) .stm_lms_complete_lesson:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(53, 211, 153, .32) !important;
}

.npp-theme:not(.single-stm-courses) .masterstudy-button__title,
.npp-theme:not(.single-stm-courses) .masterstudy-button_style-primary span {
  color: #06111f !important;
}

.npp-theme:not(.single-stm-courses) .stm_lms_courses__single img,
.npp-theme:not(.single-stm-courses) .masterstudy-course-card img {
  border-radius: var(--npp-radius);
}

.npp-theme:not(.single-stm-courses) .stm_lms_courses__single--title,
.npp-theme:not(.single-stm-courses) .masterstudy-course-card__title {
  color: var(--npp-navy) !important;
  font-weight: 900 !important;
}

.npp-theme:not(.single-stm-courses) .stm_lms_course__tabs {
  border-color: var(--npp-line) !important;
}

.npp-theme:not(.single-stm-courses) .stm_lms_course__tabs a {
  color: var(--npp-muted) !important;
  font-weight: 800 !important;
}

.npp-theme:not(.single-stm-courses) .stm_lms_course__tabs .active a {
  color: #007f5f !important;
}

.npp-theme:not(.single-stm-courses) .masterstudy-course-player-header {
  border-bottom: 1px solid rgba(255, 255, 255, .1) !important;
  background: #07111f !important;
}

.npp-theme:not(.single-stm-courses) .masterstudy-course-player-header * {
  color: #fff !important;
}

.npp-theme.single-stm-courses .masterstudy-course-player-header {
  background: #4d5e6f !important;
  border-bottom: 1px solid rgba(255, 255, 255, .1) !important;
  box-shadow: none !important;
  backdrop-filter: blur(16px) !important;
}

.npp-theme.single-stm-courses .masterstudy-course-player-header,
.npp-theme.single-stm-courses .masterstudy-course-player-header * {
  color: #fff !important;
}

.npp-theme.single-stm-courses .masterstudy-course-player-header__back,
.npp-theme.single-stm-courses .masterstudy-course-player-header__curriculum,
.npp-theme.single-stm-courses .masterstudy-course-player-header__course,
.npp-theme.single-stm-courses .masterstudy-course-player-header__login,
.npp-theme.single-stm-courses .masterstudy-course-player-header__dark-mode,
.npp-theme.single-stm-courses .masterstudy-course-player-header__discussions,
.npp-theme.single-stm-courses .masterstudy-course-player-header__discussions-toggler,
.npp-theme.single-stm-courses .masterstudy-course-player-header .masterstudy-switch-button,
.npp-theme.single-stm-courses .masterstudy-course-player-header .masterstudy-dark-mode-button {
  background: transparent !important;
}

.npp-theme.single-stm-courses .masterstudy-course-player-header__back,
.npp-theme.single-stm-courses .masterstudy-course-player-header__dark-mode,
.npp-theme.single-stm-courses .masterstudy-course-player-header__discussions-toggler {
  border-color: transparent !important;
}

.npp-theme.single-stm-courses .masterstudy-course-player-header .masterstudy-switch-button__burger span {
  background-color: #fff !important;
}

body.npp-theme.single-stm-courses #stm_lms_chat {
  display: none !important;
}

.npp-theme:not(.single-stm-courses) .masterstudy-course-player-curriculum__item,
.npp-theme:not(.single-stm-courses) .masterstudy-curriculum-list__item,
.npp-theme:not(.single-stm-courses) .masterstudy-course-player-navigation {
  border-color: var(--npp-line) !important;
}

.npp-theme:not(.single-stm-courses) .masterstudy-course-player-curriculum__item:hover,
.npp-theme:not(.single-stm-courses) .masterstudy-curriculum-list__item:hover {
  background: rgba(53, 211, 153, .08) !important;
}

@media (max-width: 1180px) {
  body.npp-theme {
    padding-top: 76px;
  }

  .npp-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
  }

  .npp-menu-toggle {
    display: block;
  }

  .npp-nav {
    position: fixed;
    top: 76px;
    left: auto;
    right: 20px;
    display: none;
    width: 25%;
    max-height: min(620px, calc(100vh - 96px));
    transform: none;
    padding: 14px;
    overflow-y: auto;
    background: rgba(7, 17, 31, .98);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    box-shadow: 0 22px 52px rgba(0, 0, 0, .28);
    transform-origin: top right;
  }

  .npp-menu-open .npp-nav {
    display: block;
    animation: npp-mobile-menu-in .22s ease-out both;
  }

  @keyframes npp-mobile-menu-in {
    from {
      opacity: 0;
      transform: translate3d(12px, -8px, 0) scale(.96);
    }

    to {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(1);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .npp-menu-open .npp-nav {
      animation: none;
    }
  }

  .npp-menu,
  .npp-nav-actions {
    display: grid;
    gap: 8px;
  }

  .npp-menu a {
    width: 100%;
    justify-content: space-between;
    min-height: 42px;
    padding: 9px 12px;
  }

  .npp-menu > li:not(.menu-item-has-children) > a {
    justify-content: center;
    text-align: center;
  }

  .npp-menu .menu-item-has-children > a {
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, rgba(53, 211, 153, .16), rgba(124, 231, 255, .08));
    border-color: rgba(53, 211, 153, .28);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
  }

  .npp-menu .menu-item-has-children > a::after {
    position: absolute;
    right: 14px;
    width: 8px;
    height: 8px;
    opacity: .9;
    transition: transform .18s ease;
  }

  .npp-menu .menu-item-has-children.is-submenu-open > a {
    background: rgba(53, 211, 153, .2);
    border-color: rgba(53, 211, 153, .5);
    box-shadow: inset 0 -2px 0 rgba(53, 211, 153, .85);
  }

  .npp-menu .menu-item-has-children.is-submenu-open > a::after {
    transform: rotate(225deg) translate(-2px, -2px);
  }

  .npp-menu .sub-menu {
    position: static;
    display: none;
    min-width: 0;
    margin: 4px 0 2px;
    padding: 6px 0 6px 14px;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, .14);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .npp-menu .menu-item-has-children.is-submenu-open > .sub-menu {
    display: block;
  }

  .npp-menu .sub-menu::before {
    display: none;
  }

  .npp-menu .sub-menu a {
    min-height: 36px;
    color: rgba(255, 255, 255, .7);
  }

  .npp-nav-actions {
    gap: 6px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, .14);
  }

  .npp-hero-grid,
  .npp-split,
  .npp-page-hero-split .npp-split,
  .npp-contact-grid,
  .npp-error-grid,
  .npp-about-layout,
  .npp-about-story,
	  .npp-contact-layout,
	  .npp-info-split,
	  .npp-legal-layout,
	  .npp-path-panel {
	    grid-template-columns: 1fr;
	  }

	  .npp-legal-summary {
	    position: static;
	  }

  .npp-path-grid::before {
    display: none;
  }

  .npp-hero {
    min-height: auto;
  }

	  .npp-hero-grid {
	    padding: 72px 0;
	  }

		  .home .npp-hero-panel h2,
		  .home .npp-hero-panel .npp-panel-lead {
		    text-align: center;
		  }

  .home .npp-hero-panel .npp-panel-lead {
    margin-right: auto;
    margin-left: auto;
  }

  .home .npp-lesson-steps div {
    grid-template-columns: 34px 160px;
    justify-content: center;
    justify-items: start;
    text-align: left;
  }

  .npp-feature-grid,
  .npp-course-grid,
  .npp-guide-grid,
  .npp-two-columns,
  .npp-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .npp-footer-grid {
    grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(120px, .62fr));
    gap: 28px;
    align-items: start;
    padding-top: 46px;
    padding-bottom: 28px;
  }

  .npp-footer-grid > div:first-child {
    max-width: 360px;
  }

  .npp-footer-grid p {
    max-width: 330px;
  }

  .npp-path-grid {
    grid-template-columns: 1fr 1fr;
  }

  .npp-course-benefits {
    grid-template-columns: 1fr;
  }

  .npp-course-grid:has(.npp-course-card:only-child) {
    grid-template-columns: 1fr;
  }

  .npp-courses-list-head {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .npp-courses-list-head p:not(.npp-eyebrow) {
    max-width: 620px;
    margin: 0 auto;
  }

  .npp-featured-course {
    grid-template-columns: 1fr;
  }

  .npp-featured-course-media {
    min-height: 310px;
  }

  .page-id-23788 .masterstudy__login-page {
    grid-template-columns: 1fr;
  }

  .page-id-23788 .masterstudy__login-page::before {
    min-height: 280px;
    align-items: flex-end;
  }

  .page-id-23788 .masterstudy__login-page::after {
    top: 152px;
    bottom: auto;
    left: 32px;
    width: calc(100% - 64px);
    font-size: clamp(34px, 7vw, 48px);
  }

  .npp-about-highlight {
    min-height: 240px;
  }

  .npp-about-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .npp-contact-side {
    order: 2;
  }

	  .npp-contact-form-card {
	    order: 1;
	  }
	}

@media (min-width: 641px) and (max-width: 1180px) {
  .home .npp-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    gap: 34px;
  }

  .home .npp-hero-copy {
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .home .npp-hero-copy p {
    margin-right: auto;
    margin-left: auto;
  }

  .home .npp-actions {
    justify-content: center;
  }

  .home .npp-hero-panel.npp-lesson-card {
    width: 100%;
    max-width: 620px;
    justify-self: center;
  }

  .home .npp-hero-panel h2,
  .home .npp-hero-panel .npp-panel-lead {
    text-align: center;
  }

  .home .npp-hero-panel .npp-panel-lead {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 640px) {
  body.npp-theme {
    padding-top: 68px;
  }

  .npp-container {
    width: min(100% - 24px, 1180px);
  }

  .npp-header-inner {
    min-height: 68px;
    gap: 12px;
  }

  .npp-nav {
    top: 68px;
    left: auto;
    right: 12px;
    width: 57%;
    max-height: min(560px, calc(100vh - 88px));
    padding: 12px;
    border-radius: 16px;
  }

  .npp-nav-actions {
    gap: 4px;
  }

  .npp-theme .npp-nav-actions .npp-btn + .npp-btn {
    margin-top: 0 !important;
  }

  .npp-brand-text strong {
    font-size: 19px;
  }

  .npp-logo {
    min-width: 190px;
  }

  .npp-header .npp-brand-img {
    width: 190px;
    min-width: 0;
  }

  .npp-brand-mark {
    width: 38px;
    height: 38px;
  }

  @media (max-width: 360px) {
    .npp-menu-toggle {
      transform: translateX(calc(12px - 4vw));
    }

    .npp-nav {
      right: 4vw;
    }
  }

  .npp-section {
    padding: 58px 0;
  }

  body:not(.home) .npp-page-hero + .npp-section,
  body:not(.home) .npp-blog-hero + .npp-section,
  body:not(.home) .npp-single-section,
  body:not(.home) .npp-info-hero + .npp-info-section {
    padding-top: 18px;
  }

  body.page-id-23788:not(.home) .npp-page-hero + .npp-section {
    padding-top: 0 !important;
  }

  .home .npp-home-path-section {
    padding-bottom: 24px;
  }

  .home .npp-cta {
    padding-top: 24px;
  }

  .npp-hero h1,
  .npp-page-hero h1 {
    font-size: clamp(34px, 11vw, 50px);
    letter-spacing: -0.03em;
  }

  .npp-hero p {
    font-size: 17px;
  }

  .npp-hero-panel {
    padding: 18px;
  }

  .npp-feature-grid,
  .npp-course-grid,
  .npp-path-grid,
  .npp-guide-grid,
  .npp-two-columns,
  .npp-footer-grid,
  .npp-about-layout,
  .npp-about-story,
	  .npp-contact-layout,
	  .npp-info-split,
	  .npp-legal-layout,
	  .npp-post-card {
	    grid-template-columns: 1fr;
	  }

  .npp-course-intro {
    padding: 28px 18px 30px;
  }

  .npp-course-points {
    gap: 8px;
  }

  .npp-course-points span {
    width: 100%;
    justify-content: center;
  }

  .npp-blog-hero {
    padding-top: 28px;
  }

  .blog .npp-blog-list-section,
  .archive .npp-blog-list-section {
    padding-top: 10px;
  }

	  .npp-blog-hero-card {
	    grid-template-columns: 1fr;
	    justify-items: center;
	    text-align: center;
	  }

	  .npp-blog-hero-card > div,
	  .npp-info-hero-card > div,
	  .npp-cart-hero-card > div,
	  .npp-checkout-hero-card > div,
	  .npp-courses-store-hero-card > div,
	  .npp-wishlist-hero-card > div,
	  .npp-about-hero-card > div {
	    width: 100%;
	    text-align: center;
	  }

	  .npp-info-hero-card h1,
	  .npp-cart-hero-card h1,
	  .npp-checkout-hero-card h1,
	  .npp-courses-store-hero-card h1,
	  .npp-wishlist-hero-card h1,
	  .npp-about-hero-card h1,
	  .npp-info-hero-card p:not(.npp-eyebrow),
	  .npp-cart-hero-card p:not(.npp-eyebrow),
	  .npp-checkout-hero-card p:not(.npp-eyebrow),
	  .npp-courses-store-hero-card p:not(.npp-eyebrow),
	  .npp-wishlist-hero-card p:not(.npp-eyebrow),
	  .npp-about-hero-card p:not(.npp-eyebrow) {
	    margin-left: auto;
	    margin-right: auto;
	    text-align: center;
	  }

	  .npp-blog-hero p:not(.npp-eyebrow) {
	    margin-left: auto;
	    margin-right: auto;
  }

  .npp-blog-hero-notes {
    width: min(100%, 240px);
    height: 68px;
  }

  .npp-blog-hero-notes::before {
    top: 24px;
  }

  .npp-blog-hero-notes::after {
    top: 44px;
  }

  .npp-blog-hero-notes span:nth-child(1) {
    top: 15px;
  }

  .npp-blog-hero-notes span:nth-child(2) {
    top: 36px;
  }

	  .npp-blog-hero-notes span:nth-child(3) {
	    top: 26px;
	  }

	  .npp-info-hero-mark {
	    min-height: 0;
	    grid-template-columns: repeat(3, minmax(0, 1fr));
	  }

	  .npp-info-card,
	  .npp-legal-summary,
	  .npp-legal-card,
	  .npp-info-cta {
	    padding: 22px;
	    border-radius: 18px;
	  }

	  .npp-info-cta {
	    align-items: flex-start;
	    text-align: left;
	  }

	  .npp-faq-group {
	    grid-template-columns: 1fr;
	  }

	  .npp-faq-group-head {
	    position: static;
	  }

  .page-id-11511 .npp-faq-group-head,
  .page-id-11511 .npp-faq-group-head .npp-eyebrow,
  .page-id-11511 .npp-faq-group-head h2,
  .page-id-11511 .npp-faq-group-head p,
  .page-id-11511 .npp-faq-panel,
  .page-id-11511 .npp-faq-item,
  .page-id-11511 .npp-faq-item summary,
  .page-id-11511 .npp-faq-item p,
  .page-id-11511 .npp-info-cta,
  .page-id-11511 .npp-info-cta h2,
  .page-id-11511 .npp-info-cta p {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .page-id-11511 .npp-faq-panel,
  .page-id-11511 .npp-faq-item,
  .page-id-11511 .npp-faq-item summary,
  .page-id-11511 .npp-faq-item p {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .page-id-11511 .npp-info-cta {
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }

  .page-id-11511 .npp-info-cta .npp-btn {
    margin-right: auto;
    margin-left: auto;
  }

	  .npp-certificate-checker .stm_lms_certificate_checker__form {
	    display: grid;
	  }

	  .npp-certificate-checker .stm_lms_certificate_checker__form a.btn.btn-default {
	    width: 100%;
	  }

  .npp-about-hero-panel {
    width: min(100%, 260px);
  }

  .npp-about-lead,
  .npp-about-highlight,
  .npp-about-story-card,
  .npp-about-list-card,
  .npp-about-cta {
    padding: 22px;
    border-radius: 18px;
    text-align: center;
  }

  .npp-about-lead h2,
  .npp-about-story-card h2,
  .npp-about-cta h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .npp-about-lead p,
  .npp-about-highlight p,
  .npp-about-story-card p,
  .npp-about-list-card p,
  .npp-about-cta p {
    margin-left: auto;
    margin-right: auto;
  }

  .npp-about-highlight,
  .npp-about-cta {
    align-items: center;
  }

  .npp-about-highlight li,
  .npp-about-list-card li {
    text-align: center;
  }

  .npp-about-cta {
    justify-content: center;
  }

  .npp-about-cta .npp-btn {
    width: 100%;
    justify-content: center;
  }

  .npp-about-pillars article {
    min-height: 0;
    text-align: center;
  }

  .npp-about-pillars article span {
    margin-left: auto;
    margin-right: auto;
  }

  .npp-about-story-section {
    padding-bottom: 34px;
  }

  .npp-about-cta-section {
    padding-top: 0;
  }

  .npp-cf7-grid {
    grid-template-columns: 1fr;
  }

  .npp-contact-side,
  .npp-contact-form-card,
  .npp-contact-help-card {
    padding: 22px;
    border-radius: 18px;
    text-align: center;
  }

  .npp-contact-side p,
  .npp-contact-form-card p,
  .npp-contact-help-card p,
  .npp-contact-methods span,
  .npp-contact-methods strong {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .npp-contact-methods a,
  .npp-contact-help-card {
    justify-items: center;
    text-align: center;
  }

  .npp-contact-help-section .npp-section-heading,
  .npp-contact-help-section .npp-section-heading .npp-eyebrow,
  .npp-contact-help-section .npp-section-heading h2 {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .npp-contact-help-card {
    min-height: 0;
  }

  .npp-theme .npp-info-section .npp-info-lead,
  .npp-theme .npp-info-section .npp-info-lead .npp-eyebrow,
  .npp-theme .npp-info-section .npp-info-lead h2,
  .npp-theme .npp-info-section .npp-info-lead p,
  .npp-theme .npp-guide-grid article,
  .npp-theme .npp-info-card,
  .npp-theme .npp-info-card h2,
  .npp-theme .npp-info-card p,
  .npp-theme .npp-info-card li {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .npp-theme .npp-guide-grid article {
    justify-items: center;
  }

  .npp-theme .npp-guide-grid article span {
    margin-right: auto;
    margin-left: auto;
  }

  .npp-theme .npp-info-card .npp-check-list {
    justify-items: center;
  }

  .page-id-22435 .npp-info-card,
  .page-id-22435 .npp-info-card h2,
  .page-id-22435 .npp-info-card p,
  .page-id-22435 .npp-info-card li,
  .page-id-22435 .npp-certificate-checker,
  .page-id-22435 .npp-certificate-checker h3,
  .page-id-22435 .npp-certificate-checker .stm-lms-message {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .page-id-22435 .npp-info-card .npp-check-list,
  .page-id-22435 .npp-certificate-checker .stm_lms_certificate_checker,
  .page-id-22435 .npp-certificate-checker .stm_lms_certificate_checker__form {
    justify-items: center;
    text-align: center;
  }

  .page-id-22435 .npp-info-card .npp-btn {
    margin-right: auto;
    margin-left: auto;
  }

  .page-id-11173 .npp-legal-summary,
  .page-id-11173 .npp-legal-summary .npp-eyebrow,
  .page-id-11173 .npp-legal-summary h2,
  .page-id-11173 .npp-legal-summary p,
  .page-id-11173 .npp-legal-card,
  .page-id-11173 .npp-legal-card h2,
  .page-id-11173 .npp-legal-card p,
  .page-id-11173 .npp-legal-note {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .page-id-11173 .npp-legal-summary {
    justify-items: center;
  }

  .page-id-11173 .npp-legal-summary .npp-btn {
    margin-right: auto;
    margin-left: auto;
  }

  .page-id-11142 .npp-legal-summary,
  .page-id-11142 .npp-legal-summary .npp-eyebrow,
  .page-id-11142 .npp-legal-summary h2,
  .page-id-11142 .npp-legal-summary p,
  .page-id-11142 .npp-legal-card,
  .page-id-11142 .npp-legal-card h2,
  .page-id-11142 .npp-legal-card p,
  .page-id-11142 .npp-legal-note {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .page-id-11142 .npp-legal-summary {
    justify-items: center;
  }

  .page-id-11142 .npp-legal-summary .npp-btn {
    margin-right: auto;
    margin-left: auto;
  }

  .page-id-20763 .npp-section-heading,
  .page-id-20763 .npp-section-heading .npp-eyebrow,
  .page-id-20763 .npp-section-heading h2,
  .page-id-20763 .npp-section-heading p,
  .page-id-20763 .stm_lms_wishlist,
  .page-id-20763 .masterstudy-wishlist,
  .page-id-20763 .stm_lms_courses,
  .page-id-20763 .stm_lms_courses__grid,
  .page-id-20763 .stm_lms_courses__single,
  .page-id-20763 .stm_lms_courses__single--inner,
  .page-id-20763 .stm_lms_courses__single--title,
  .page-id-20763 .stm_lms_courses__single--terms,
  .page-id-20763 .stm_lms_courses__single--excerpt,
  .page-id-20763 .masterstudy-course-card,
  .page-id-20763 .masterstudy-course-card__content,
  .page-id-20763 .masterstudy-course-card__title,
  .page-id-20763 .masterstudy-course-card__excerpt,
  .page-id-20763 .masterstudy-course-card__category,
  .page-id-20763 .masterstudy-course-card__meta,
  .page-id-20763 .masterstudy-course-card__price {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .page-id-20763 .masterstudy-button,
  .page-id-20763 .stm_lms_courses__single a.btn {
    margin-right: auto;
    margin-left: auto;
  }

  .npp-course-benefits div {
    text-align: center;
  }

  .npp-masterstudy-wrap {
    padding: 16px;
    border-radius: 18px;
  }

  .npp-featured-course-body {
    text-align: center;
  }

  .npp-featured-course-body p:not(.npp-eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }

  .npp-featured-course-tags,
  .npp-featured-course-footer {
    justify-content: center;
  }

  .npp-featured-course-value {
    grid-template-columns: 1fr;
  }

  .npp-featured-course-footer {
    display: grid;
  }

  .npp-path-panel {
    padding: 18px;
  }

  .npp-path-grid div {
    min-height: 0;
    text-align: center;
  }

  .npp-path-grid span {
    margin-left: auto;
    margin-right: auto;
  }

  .npp-path-summary {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .npp-path-summary p {
    max-width: none;
  }

  .npp-path-summary ul {
    justify-content: center;
  }

  .npp-cta-box,
  .npp-footer-bottom {
    display: grid;
  }

  .npp-footer,
  .npp-footer-grid,
  .npp-footer-grid > div,
  .npp-footer-bottom {
    text-align: center;
  }

  .npp-footer-grid > div {
    display: grid;
    justify-items: center;
  }

  .npp-footer .npp-brand-text,
  .npp-footer .npp-brand-img {
    margin-right: auto;
    margin-left: auto;
  }

  .npp-footer-bottom {
    justify-items: center;
  }

  .npp-actions .npp-btn,
  .npp-cta-box .npp-btn {
    width: 100%;
  }

  .npp-study-list div {
    display: grid;
    gap: 3px;
  }

  .npp-page-hero {
    padding: 62px 0 38px;
  }

  .npp-error-page {
    min-height: calc(100vh - 68px);
    padding: 48px 0;
  }

  .npp-error-copy p {
    font-size: 17px;
  }

  .npp-error-card {
    min-height: 260px;
    padding: 24px;
  }

  .npp-error-notes {
    right: 22px;
    top: 92px;
    font-size: 28px;
  }

  .page-id-23788 .masterstudy__login-page {
    border-radius: 14px;
  }

  .page-id-23788 .masterstudy__login-page::before {
    min-height: 220px;
    padding: 22px;
    font-size: 32px;
  }

  .page-id-23788 .masterstudy__login-page::after {
    top: 96px;
    left: 50%;
    width: min(320px, calc(100% - 44px));
    color: transparent;
    background: linear-gradient(180deg, #fff 0 39%, var(--npp-green) 39% 100%);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: clamp(28px, 8.6vw, 34px);
    line-height: 1.02;
    letter-spacing: -0.025em;
    text-align: center;
    transform: translateX(-50%);
  }

  .page-id-23788 .masterstudy__login-page-form {
    padding: 22px;
  }

  .page-id-23788 .masterstudy-authorization__restore {
    width: 100% !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
    align-items: center !important;
  }

  .page-id-23788 .masterstudy-authorization__restore-header {
    position: relative;
    justify-content: center !important;
    width: 100% !important;
    padding-right: 34px;
    padding-left: 34px;
    box-sizing: border-box;
  }

  .page-id-23788 .masterstudy-authorization__restore-header-back {
    position: absolute;
    top: 50%;
    left: 0;
    margin: 0 !important;
    transform: translateY(-50%);
  }

  .page-id-23788 #masterstudy-authorization-form-restore,
  .page-id-23788 .masterstudy-authorization__restore .masterstudy-authorization__form-wrapper,
  .page-id-23788 .masterstudy-authorization__restore .masterstudy-authorization__form-field,
  .page-id-23788 .masterstudy-authorization__restore .masterstudy-authorization__actions,
  .page-id-23788 .masterstudy-authorization__switch,
  .page-id-23788 .masterstudy-authorization__switch-wrapper,
  .page-id-23788 .masterstudy-authorization__switch-account {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }

  .page-id-23788 .npp-page-hero,
  .page-id-23788 .npp-page-hero .npp-eyebrow,
  .page-id-23788 .npp-page-hero h1,
  .page-id-23788 .npp-page-hero p,
  .page-id-23788 .masterstudy__login-page-form,
  .page-id-23788 .masterstudy-authorization,
  .page-id-23788 .masterstudy-authorization__header,
  .page-id-23788 .masterstudy-authorization__header-title,
  .page-id-23788 .masterstudy-authorization__restore-header,
  .page-id-23788 .masterstudy-authorization__restore-header-title,
  .page-id-23788 .masterstudy-authorization__header::after,
  .page-id-23788 .masterstudy-authorization__form-explain-pass,
  .page-id-23788 .masterstudy-authorization__gdpr-text,
  .page-id-23788 .masterstudy-authorization__checkbox-title,
  .page-id-23788 .masterstudy-authorization__switch,
  .page-id-23788 .masterstudy-authorization__switch-account,
  .page-id-23788 .masterstudy-authorization__switch-account-title,
  .page-id-23788 .masterstudy-authorization__switch-account-link,
  .page-id-23788 .masterstudy-authorization__switch-lost-pass,
  .page-id-23788 .masterstudy-authorization__send-mail,
  .page-id-23788 .masterstudy-authorization__send-mail-content,
  .page-id-23788 .masterstudy-authorization__send-mail-content-title,
  .page-id-23788 .masterstudy-authorization__send-mail-content-subtitle,
  .page-id-23788 .masterstudy-authorization__send-mail-title {
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center !important;
  }

  .page-id-23788 .masterstudy-authorization__gdpr,
  .page-id-23788 .masterstudy-authorization__actions-remember {
    justify-content: center !important;
    text-align: center !important;
  }

  .page-id-23788 .masterstudy-authorization__actions,
  .page-id-23788 .masterstudy-authorization__switch-wrapper {
    display: grid;
    justify-content: stretch;
  }

  .page-id-23788 .masterstudy-button {
    width: 100% !important;
  }

  .home .npp-hero-copy,
  .home .npp-hero-panel,
  .home .npp-section-head,
  .home .npp-feature,
  .home .npp-course-intro,
  .home .npp-course-card,
  .home .npp-path-summary,
  .home .npp-path-grid div,
  .home .npp-cta-box {
    text-align: center;
  }

  .home .npp-lesson-steps div {
    grid-template-columns: 34px 160px;
    justify-content: center;
    justify-items: start;
    text-align: left;
  }

  .home .npp-hero-copy p,
  .home .npp-section-head p,
  .home .npp-course-intro p,
  .home .npp-course-card p,
  .home .npp-path-summary p,
  .home .npp-cta-box p {
    margin-left: auto;
    margin-right: auto;
  }

  .home .npp-actions,
  .home .npp-course-points,
  .home .npp-course-action,
  .home .npp-path-summary ul {
    justify-content: center;
  }

  .home .npp-lesson-top,
  .home .npp-cta-box {
    justify-items: center;
  }

  .home .npp-course-benefits div,
  .home .npp-path-summary li {
    justify-content: center;
    text-align: center;
  }

  .npp-saas-page {
    gap: 30px;
  }

  .npp-page-cta .npp-btn {
    width: 100%;
  }

  .npp-lead-page {
    padding-top: 0;
  }

  .npp-lead-hero {
    text-align: left;
  }

  .npp-lead-hero h1 {
    font-size: 36px;
  }

  .npp-lead-hero p {
    margin-left: 0;
    font-size: 16px;
  }

  .npp-lead-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .npp-lead-form-card,
  .npp-lead-benefits {
    padding: 22px;
  }
}

/* MasterStudy course header: Notas Praticas card finish */
.single-stm-courses.npp-theme .masterstudy-single-course-timeless__topbar {
  border: 1px solid rgba(53, 211, 153, .28) !important;
  border-radius: 22px !important;
  background:
    radial-gradient(circle at 92% 0%, rgba(53, 211, 153, .22), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f7fffb 58%, #eafff7 100%) !important;
  box-shadow: 0 24px 60px rgba(7, 17, 31, .08) !important;
  overflow: hidden !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-categories__item {
  display: inline-flex !important;
  align-items: center !important;
  width: auto !important;
  min-height: 34px !important;
  padding: 8px 14px !important;
  border: 1px solid rgba(53, 211, 153, .34) !important;
  border-radius: 999px !important;
  color: #007f5f !important;
  background: rgba(53, 211, 153, .12) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-title {
  color: var(--npp-navy) !important;
  letter-spacing: -0.035em !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-timeless__desc,
.single-stm-courses.npp-theme .masterstudy-single-course-excerpt,
.single-stm-courses.npp-theme .masterstudy-single-course-excerpt__visible,
.single-stm-courses.npp-theme .masterstudy-single-course-excerpt__hidden {
  color: var(--npp-muted) !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-excerpt__more {
  color: #007f5f !important;
  font-weight: 800 !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-timeless__topbar-side {
  overflow: hidden !important;
  border-radius: 16px !important;
  box-shadow: 0 18px 44px rgba(7, 17, 31, .14) !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-thumbnail {
  display: block !important;
  border-radius: 16px !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-timeless__sidebar {
  color: #23384f !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-timeless__cta {
  margin-bottom: 14px !important;
}

.single-stm-courses.npp-theme .masterstudy-buy-button__link {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  align-items: center !important;
  gap: 20px !important;
  min-height: 70px !important;
  padding: 16px 20px !important;
  border: 0 !important;
  border-radius: 16px !important;
  color: #ffffff !important;
  background:
    radial-gradient(circle at 94% 18%, rgba(255, 224, 112, .34), transparent 30%),
    linear-gradient(135deg, #43dea8 0%, #19bd82 48%, #007f5f 100%) !important;
  box-shadow:
    0 22px 44px rgba(0, 127, 95, .28),
    inset 0 0 0 1px rgba(255, 255, 255, .26) !important;
  text-decoration: none !important;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease !important;
}

.single-stm-courses.npp-theme .masterstudy-buy-button__link:hover {
  transform: translateY(-2px) !important;
  filter: saturate(1.08) !important;
  box-shadow:
    0 26px 54px rgba(0, 127, 95, .34),
    inset 0 0 0 1px rgba(255, 255, 255, .32) !important;
}

.single-stm-courses.npp-theme .masterstudy-buy-button__link_centered {
  grid-template-columns: 1fr !important;
  justify-items: center !important;
  text-align: center !important;
}

.single-stm-courses.npp-theme .masterstudy-buy-button__title {
  color: #ffffff !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  letter-spacing: .04em !important;
  text-transform: none !important;
}

.single-stm-courses.npp-theme .masterstudy-buy-button__separator {
  display: none !important;
}

.single-stm-courses.npp-theme .masterstudy-buy-button__price {
  display: grid !important;
  justify-items: end !important;
  gap: 2px !important;
  color: #ffffff !important;
  line-height: 1.08 !important;
}

.single-stm-courses.npp-theme .masterstudy-buy-button__price_sale {
  color: #ffffff !important;
  font-size: 18px !important;
  font-weight: 850 !important;
}

.single-stm-courses.npp-theme .masterstudy-buy-button__price_regular {
  color: rgba(255, 255, 255, .72) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-timeless__buttons {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  margin: 2px 0 28px !important;
  padding: 0 2px !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-wishlist,
.single-stm-courses.npp-theme .masterstudy-single-course-share-button {
  min-height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: #243a52 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-wishlist a,
.single-stm-courses.npp-theme .masterstudy-single-course-share-button {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 8px !important;
  text-decoration: none !important;
  color: #243a52 !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-wishlist__title,
.single-stm-courses.npp-theme .masterstudy-single-course-share-button__title {
  color: #243a52 !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1.25 !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-wishlist:hover,
.single-stm-courses.npp-theme .masterstudy-single-course-share-button:hover,
.single-stm-courses.npp-theme .masterstudy-single-course-wishlist a:hover,
.single-stm-courses.npp-theme .masterstudy-single-course-share-button:hover .masterstudy-single-course-share-button__title {
  color: #007f5f !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-details {
  position: relative !important;
  padding: 22px !important;
  border: 1px solid rgba(53, 211, 153, .18) !important;
  border-radius: 20px !important;
  background:
    radial-gradient(circle at 94% 0%, rgba(53, 211, 153, .14), transparent 32%),
    rgba(255, 255, 255, .82) !important;
  box-shadow: 0 22px 50px rgba(7, 17, 31, .07) !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-details::before {
  content: "Acesso vitalício" !important;
  display: inline-flex !important;
  width: max-content !important;
  margin: 0 0 14px !important;
  padding: 7px 12px !important;
  border-radius: 999px !important;
  color: #007f5f !important;
  background: rgba(53, 211, 153, .13) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: .07em !important;
  text-transform: uppercase !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-details__title {
  display: block !important;
  margin-bottom: 14px !important;
  padding-bottom: 14px !important;
  border-bottom: 1px solid rgba(8, 33, 59, .10) !important;
  color: var(--npp-navy) !important;
  font-size: 22px !important;
  font-weight: 750 !important;
  letter-spacing: -0.025em !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-details__item {
  padding: 13px 0 !important;
  border-bottom: 1px solid rgba(8, 33, 59, .08) !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-details__item:last-child {
  border-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-details__icon-wrapper {
  color: #007f5f !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-details__name {
  color: #334860 !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1.42 !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-details__quantity {
  color: var(--npp-navy) !important;
  font-size: 15px !important;
  font-weight: 750 !important;
}

@media (min-width: 981px) {
  .single-stm-courses.npp-theme .masterstudy-single-course-timeless__topbar {
    width: 100vw !important;
    max-width: none !important;
    min-height: 520px !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding: clamp(54px, 5vw, 76px) max(32px, calc((100vw - 1180px) / 2)) !important;
    border-right: 0 !important;
    border-left: 0 !important;
    border-radius: 0 !important;
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: clamp(44px, 5vw, 82px) !important;
    background:
      radial-gradient(circle at 84% 18%, rgba(53, 211, 153, .24), transparent 28%),
      linear-gradient(135deg, #ffffff 0%, #f7fffb 58%, #eafff7 100%) !important;
  }

  .single-stm-courses.npp-theme .masterstudy-single-course-timeless__topbar-main {
    flex: 0 1 52% !important;
    max-width: 650px !important;
  }

  .single-stm-courses.npp-theme .masterstudy-single-course-timeless__topbar-side {
    flex: 0 1 48% !important;
    max-width: 620px !important;
    border-radius: 18px !important;
  }

  .single-stm-courses.npp-theme .masterstudy-single-course-thumbnail {
    width: 100% !important;
    min-height: 330px !important;
    object-fit: cover !important;
  }
}

@media (max-width: 980px) {
  .single-stm-courses.npp-theme .masterstudy-single-course-timeless__topbar {
    width: auto !important;
    max-width: none !important;
    margin: 18px 14px 26px !important;
    padding: 22px !important;
    border-radius: 20px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    box-sizing: border-box !important;
  }

  .single-stm-courses.npp-theme .masterstudy-single-course-timeless__topbar-main,
  .single-stm-courses.npp-theme .masterstudy-single-course-timeless__topbar-side {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
  }

  .single-stm-courses.npp-theme .masterstudy-single-course-title {
    max-width: 100% !important;
    margin: 16px 0 14px !important;
    font-size: clamp(30px, 8.4vw, 44px) !important;
    line-height: 1.06 !important;
    letter-spacing: -0.035em !important;
    overflow-wrap: break-word !important;
  }

  .single-stm-courses.npp-theme .masterstudy-single-course-timeless__desc {
    max-width: 100% !important;
    margin-bottom: 18px !important;
  }

  .single-stm-courses.npp-theme .masterstudy-single-course-excerpt {
    font-size: 16px !important;
    line-height: 1.65 !important;
  }

  .single-stm-courses.npp-theme .masterstudy-single-course-timeless__info {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-top: 18px !important;
  }

  .single-stm-courses.npp-theme .masterstudy-single-course-timeless__info-block {
    width: 100% !important;
    margin: 0 !important;
    padding: 12px 14px !important;
    border: 1px solid rgba(8, 33, 59, .08) !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, .74) !important;
    box-sizing: border-box !important;
  }

  .single-stm-courses.npp-theme .masterstudy-single-course-instructor {
    align-items: center !important;
  }

  .single-stm-courses.npp-theme .masterstudy-single-course-timeless__topbar-side {
    order: 2 !important;
    border-radius: 16px !important;
    box-shadow: 0 16px 34px rgba(7, 17, 31, .12) !important;
  }

  .single-stm-courses.npp-theme .masterstudy-single-course-thumbnail {
    width: 100% !important;
    height: auto !important;
    max-height: 280px !important;
    object-fit: cover !important;
    border-radius: 16px !important;
  }
}

@media (max-width: 520px) {
  .woocommerce-cart.npp-theme .npp-content > .woocommerce {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .woocommerce-cart.npp-theme .wc-empty-cart-message,
  .woocommerce-cart.npp-theme .cart-empty,
  .woocommerce-cart.npp-theme .return-to-shop {
    display: grid !important;
    justify-items: center !important;
    text-align: center !important;
    width: 100%;
  }

  .npp-theme .npp-btn,
  .npp-theme .button,
  .npp-theme button:not(.npp-menu-toggle):not(.npp-menu-close) {
    min-height: 44px;
    white-space: normal;
    line-height: 1.15;
    text-align: center;
  }

  .npp-theme .npp-btn + .npp-btn,
  .npp-theme .button + .button,
  .npp-theme .button + p .button,
  .npp-theme p + .button {
    margin-top: 12px !important;
  }

  .woocommerce-cart.npp-theme .woocommerce .button.wc-backward,
  .woocommerce-cart.npp-theme .return-to-shop .button.wc-backward {
    display: flex !important;
    width: 100%;
    max-width: 320px;
    float: none !important;
    clear: both !important;
    justify-self: center;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .woocommerce-cart.npp-theme .return-to-shop {
    display: grid;
    justify-items: center;
    margin-top: 12px;
  }

  .single-stm-courses.npp-theme .masterstudy-single-course-timeless__topbar {
    margin: 14px 10px 22px !important;
    padding: 18px !important;
    border-radius: 18px !important;
  }

  .single-stm-courses.npp-theme .masterstudy-single-course-title {
    font-size: clamp(28px, 8.8vw, 36px) !important;
  }

  .single-stm-courses.npp-theme .masterstudy-single-course-thumbnail {
    max-height: 230px !important;
  }

  .single-stm-courses.npp-theme .masterstudy-buy-button__link {
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 12px !important;
    min-height: 58px !important;
    padding: 12px 14px !important;
    justify-items: stretch !important;
    text-align: left !important;
  }

  .single-stm-courses.npp-theme .masterstudy-buy-button__title {
    min-width: 0 !important;
    text-align: left !important;
    white-space: normal !important;
  }

  .single-stm-courses.npp-theme .masterstudy-buy-button__price {
    justify-items: end !important;
    text-align: right !important;
    white-space: nowrap !important;
  }

  .single-stm-courses.npp-theme .masterstudy-single-course-timeless__buttons {
    align-items: center !important;
    flex-direction: column !important;
    gap: 12px !important;
  }
}

/* MasterStudy course content: subtle Notas Praticas finish */
.single-stm-courses.npp-theme .masterstudy-single-course-tabs__list {
  gap: 8px !important;
  border-bottom: 1px solid rgba(8, 33, 59, .10) !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-tabs__item {
  position: relative !important;
  min-height: 42px !important;
  padding: 0 2px 14px !important;
  color: #2d4057 !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  transition: color .2s ease !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-tabs__item:hover,
.single-stm-courses.npp-theme .masterstudy-single-course-tabs__item_active {
  color: #007f5f !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-tabs__item::after {
  content: "" !important;
  position: absolute !important;
  right: 0 !important;
  bottom: -1px !important;
  left: 0 !important;
  height: 3px !important;
  border-radius: 999px !important;
  background: transparent !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-tabs__item_active::after {
  background: linear-gradient(90deg, #35d399, #007f5f) !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-description__content {
  color: #334860 !important;
  font-size: 17px !important;
  line-height: 1.78 !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-description__content > p:first-child {
  display: inline-flex !important;
  align-items: center !important;
  width: auto !important;
  margin: 0 0 24px !important;
  padding: 9px 16px !important;
  border: 1px solid rgba(53, 211, 153, .28) !important;
  border-radius: 999px !important;
  color: #007f5f !important;
  background: rgba(53, 211, 153, .12) !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
  letter-spacing: .01em !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-description__content > p:first-child strong {
  color: inherit !important;
  font-weight: 800 !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-description__content h3 {
  margin: 30px 0 14px !important;
  color: var(--npp-navy) !important;
  font-size: clamp(24px, 2.2vw, 30px) !important;
  line-height: 1.15 !important;
  letter-spacing: -0.025em !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-description__content p {
  margin: 0 0 20px !important;
  color: #334860 !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-description__content ul {
  display: grid !important;
  gap: 10px !important;
  margin: 12px 0 26px !important;
  padding: 0 !important;
  list-style: none !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-description__content li {
  position: relative !important;
  margin: 0 !important;
  padding: 12px 16px 12px 44px !important;
  border: 1px solid rgba(53, 211, 153, .18) !important;
  border-radius: 14px !important;
  color: #31475f !important;
  background: rgba(255, 255, 255, .76) !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-description__content li::before {
  content: "" !important;
  position: absolute !important;
  top: 20px !important;
  left: 18px !important;
  width: 9px !important;
  height: 9px !important;
  border-radius: 50% !important;
  background: #35d399 !important;
  box-shadow: 0 0 0 6px rgba(53, 211, 153, .14) !important;
}

@media (max-width: 780px) {
  .single-stm-courses.npp-theme .masterstudy-single-course-timeless__topbar,
  .single-stm-courses.npp-theme .masterstudy-single-course-timeless__topbar-main,
  .single-stm-courses.npp-theme .masterstudy-single-course-title,
  .single-stm-courses.npp-theme .masterstudy-single-course-timeless__desc,
  .single-stm-courses.npp-theme .masterstudy-single-course-excerpt,
  .single-stm-courses.npp-theme .masterstudy-single-course-excerpt__visible,
  .single-stm-courses.npp-theme .masterstudy-single-course-excerpt__hidden,
  .single-stm-courses.npp-theme .masterstudy-single-course-timeless__info,
  .single-stm-courses.npp-theme .masterstudy-single-course-timeless__info-block {
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center !important;
  }

  .single-stm-courses.npp-theme .masterstudy-single-course-categories,
  .single-stm-courses.npp-theme .masterstudy-single-course-timeless__buttons,
  .single-stm-courses.npp-theme .masterstudy-single-course-wishlist a,
  .single-stm-courses.npp-theme .masterstudy-single-course-share-button,
  .single-stm-courses.npp-theme .masterstudy-buy-button__link,
  .single-stm-courses.npp-theme .masterstudy-buy-button__price {
    justify-content: center !important;
    justify-items: center !important;
    text-align: center !important;
  }

  .single-stm-courses.npp-theme .masterstudy-single-course-instructor,
  .single-stm-courses.npp-theme .masterstudy-single-course-instructor__info,
  .single-stm-courses.npp-theme .masterstudy-single-course-instructor__title,
  .single-stm-courses.npp-theme .masterstudy-single-course-instructor__name,
  .single-stm-courses.npp-theme .masterstudy-single-course-current-students,
  .single-stm-courses.npp-theme .masterstudy-single-course-current-students__wrapper,
  .single-stm-courses.npp-theme .masterstudy-single-course-current-students__count,
  .single-stm-courses.npp-theme .masterstudy-single-course-current-students__title,
  .single-stm-courses.npp-theme .masterstudy-single-course-rating,
  .single-stm-courses.npp-theme .masterstudy-single-course-rating__wrapper,
  .single-stm-courses.npp-theme .masterstudy-single-course-rating__star-wrapper,
  .single-stm-courses.npp-theme .masterstudy-single-course-rating__count,
  .single-stm-courses.npp-theme .masterstudy-single-course-rating__quantity {
    margin-right: auto !important;
    margin-left: auto !important;
    justify-content: center !important;
    justify-items: center !important;
    text-align: center !important;
  }

  .single-stm-courses.npp-theme .masterstudy-single-course-tabs__list {
    gap: 6px !important;
    overflow-x: auto !important;
    padding-bottom: 2px !important;
    justify-content: center !important;
  }

  .single-stm-courses.npp-theme .masterstudy-single-course-tabs__item {
    flex: 0 0 auto !important;
    min-height: 40px !important;
    font-size: 14px !important;
    white-space: nowrap !important;
  }

  .single-stm-courses.npp-theme .masterstudy-single-course-description__content {
    font-size: 16px !important;
    line-height: 1.7 !important;
  }

  .single-stm-courses.npp-theme .masterstudy-single-course-faq,
  .single-stm-courses.npp-theme .masterstudy-single-course-faq__item,
  .single-stm-courses.npp-theme .masterstudy-single-course-faq__question,
  .single-stm-courses.npp-theme .masterstudy-single-course-faq__answer,
  .single-stm-courses.npp-theme .masterstudy-single-course-faq__answer-wrapper {
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center !important;
  }
}

.single-stm-courses.npp-theme .masterstudy-single-course-tabs__content {
  color: #334860 !important;
}

.single-stm-courses.npp-theme .masterstudy-curriculum-list,
.single-stm-courses.npp-theme .masterstudy-single-course-faq,
.single-stm-courses.npp-theme .masterstudy-single-course-announcement,
.single-stm-courses.npp-theme .masterstudy-single-course-reviews__main,
.single-stm-courses.npp-theme .masterstudy-single-course-grades__message {
  color: #334860 !important;
}

.single-stm-courses.npp-theme .masterstudy-curriculum-list__wrapper {
  margin-bottom: 16px !important;
  border: 1px solid rgba(53, 211, 153, .18) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, .78) !important;
  overflow: hidden !important;
}

.single-stm-courses.npp-theme .masterstudy-curriculum-list__section {
  padding: 18px 20px !important;
  border-bottom: 1px solid rgba(8, 33, 59, .08) !important;
  background:
    radial-gradient(circle at 92% 0%, rgba(53, 211, 153, .16), transparent 34%),
    linear-gradient(135deg, rgba(53, 211, 153, .10), rgba(255, 255, 255, .92)) !important;
  cursor: default !important;
}

.single-stm-courses.npp-theme .masterstudy-curriculum-list__section-title {
  color: var(--npp-navy) !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  letter-spacing: -0.015em !important;
}

.single-stm-courses.npp-theme .masterstudy-curriculum-list__toggler {
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  width: 34px !important;
  height: 34px !important;
  border: 1px solid rgba(53, 211, 153, .28) !important;
  border-radius: 50% !important;
  background: rgba(53, 211, 153, .12) !important;
  transition: transform .2s ease, background .2s ease !important;
}

.single-stm-courses.npp-theme .masterstudy-curriculum-list__wrapper:not(.masterstudy-curriculum-list__wrapper_opened) .masterstudy-curriculum-list__toggler {
  transform: rotate(-90deg) !important;
}

.single-stm-courses.npp-theme .masterstudy-curriculum-list__materials {
  display: grid !important;
  gap: 0 !important;
  padding: 0 !important;
}

.single-stm-courses.npp-theme .masterstudy-curriculum-list__item {
  border-bottom: 1px solid rgba(8, 33, 59, .07) !important;
  background: transparent !important;
}

.single-stm-courses.npp-theme .masterstudy-curriculum-list__item:last-child {
  border-bottom: 0 !important;
}

.single-stm-courses.npp-theme .masterstudy-curriculum-list__link {
  min-height: 64px !important;
  padding: 14px 18px !important;
  color: #243a52 !important;
  transition: background .2s ease, color .2s ease !important;
}

.single-stm-courses.npp-theme .masterstudy-curriculum-list__link:hover {
  background: rgba(53, 211, 153, .08) !important;
}

.single-stm-courses.npp-theme .masterstudy-curriculum-list__order {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 30px !important;
  width: 30px !important;
  height: 30px !important;
  border-radius: 10px !important;
  color: #007f5f !important;
  background: rgba(53, 211, 153, .13) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-align: center !important;
}

.single-stm-courses.npp-theme .masterstudy-curriculum-list__title {
  color: var(--npp-navy) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
}

.single-stm-courses.npp-theme .masterstudy-curriculum-list__meta,
.single-stm-courses.npp-theme .masterstudy-curriculum-list__preview {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 24px !important;
  padding: 3px 9px !important;
  border-radius: 999px !important;
  color: #007f5f !important;
  background: rgba(53, 211, 153, .12) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}

.single-stm-courses.npp-theme .masterstudy-curriculum-list__preview {
  color: #08213b !important;
  background: linear-gradient(135deg, #f8d35c 0%, #35d399 100%) !important;
  box-shadow: 0 8px 20px rgba(53, 211, 153, .18) !important;
  font-weight: 800 !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-faq__item {
  margin-bottom: 14px !important;
  border: 1px solid rgba(53, 211, 153, .20) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, .78) !important;
  overflow: hidden !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-faq__container-wrapper {
  align-items: center !important;
  padding: 18px 20px !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-faq__question {
  color: var(--npp-navy) !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  letter-spacing: -0.015em !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-faq__question::before {
  content: none !important;
  display: none !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-faq__answer-toggler {
  flex: 0 0 34px !important;
  width: 34px !important;
  height: 34px !important;
  border: 1px solid rgba(8, 33, 59, .14) !important;
  border-radius: 50% !important;
  background: rgba(8, 33, 59, .06) !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-faq__answer {
  border-top: 1px solid rgba(8, 33, 59, .08) !important;
  background: rgba(53, 211, 153, .045) !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-faq__answer-wrapper {
  padding: 18px 20px !important;
  color: #334860 !important;
  font-size: 16px !important;
  line-height: 1.72 !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-announcement {
  padding: 26px !important;
  border: 1px solid rgba(53, 211, 153, .20) !important;
  border-radius: 20px !important;
  background:
    radial-gradient(circle at 96% 0%, rgba(53, 211, 153, .18), transparent 30%),
    rgba(255, 255, 255, .80) !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-announcement h4 {
  margin: 26px 0 10px !important;
  color: var(--npp-navy) !important;
  font-size: 22px !important;
  line-height: 1.2 !important;
  letter-spacing: -0.02em !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-announcement p,
.single-stm-courses.npp-theme .masterstudy-single-course-announcement li {
  color: #334860 !important;
  font-size: 16px !important;
  line-height: 1.74 !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-announcement ul {
  display: grid !important;
  gap: 10px !important;
  margin: 14px 0 22px !important;
  padding: 0 !important;
  list-style: none !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-announcement li {
  position: relative !important;
  padding: 10px 14px 10px 40px !important;
  border: 1px solid rgba(53, 211, 153, .16) !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, .64) !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-announcement li::before {
  content: "" !important;
  position: absolute !important;
  top: 18px !important;
  left: 18px !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: #35d399 !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-announcement blockquote {
  margin: 24px 0 0 !important;
  padding: 18px 20px !important;
  border-left: 4px solid #35d399 !important;
  border-radius: 16px !important;
  color: var(--npp-navy) !important;
  background: rgba(53, 211, 153, .10) !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-reviews__main_empty,
.single-stm-courses.npp-theme .masterstudy-single-course-grades__message {
  display: grid !important;
  gap: 14px !important;
  padding: 26px !important;
  border: 1px solid rgba(53, 211, 153, .20) !important;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, .80) !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-reviews__login,
.single-stm-courses.npp-theme .masterstudy-single-course-grades__message-text {
  color: #334860 !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-grades__message-text {
  display: grid !important;
  gap: 8px !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-reviews__login::before {
  content: "Avalie sua experiência" !important;
  display: block !important;
  margin-bottom: 8px !important;
  color: var(--npp-navy) !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-grades__message-text::before {
  content: "Acompanhe seu desempenho" !important;
  display: block !important;
  margin-bottom: 12px !important;
  color: var(--npp-navy) !important;
  font-size: 22px !important;
  line-height: 1.18 !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-grades__message-button {
  margin-top: 4px !important;
}

.single-stm-courses.npp-theme .masterstudy-grade-details__close {
  color: var(--npp-navy) !important;
}

.single-stm-courses.npp-theme .masterstudy-grade-details__close::after {
  content: "×" !important;
  color: currentColor !important;
  font-family: Arial, sans-serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  margin-top: -1px !important;
}

.single-stm-courses.npp-theme .masterstudy-single-course-reviews__login-link {
  color: #007f5f !important;
  font-weight: 800 !important;
}

@media (max-width: 780px) {
  .single-stm-courses.npp-theme .masterstudy-single-course-announcement,
  .single-stm-courses.npp-theme .masterstudy-single-course-reviews__main_empty,
  .single-stm-courses.npp-theme .masterstudy-single-course-grades__message {
    padding: 20px !important;
    border-radius: 18px !important;
    text-align: center !important;
  }

  .single-stm-courses.npp-theme .masterstudy-curriculum-list__link {
    padding: 12px 14px !important;
  }

  .single-stm-courses.npp-theme .masterstudy-single-course-announcement h4,
  .single-stm-courses.npp-theme .masterstudy-single-course-announcement p,
  .single-stm-courses.npp-theme .masterstudy-single-course-announcement li,
  .single-stm-courses.npp-theme .masterstudy-single-course-reviews__login,
  .single-stm-courses.npp-theme .masterstudy-single-course-grades__message-text {
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center !important;
  }

  .single-stm-courses.npp-theme .masterstudy-single-course-announcement li {
    padding: 10px 14px !important;
  }

  .single-stm-courses.npp-theme .masterstudy-single-course-announcement li::before {
    display: none !important;
  }
}

/* WooCommerce checkout */
.woocommerce-checkout.npp-theme .npp-section {
  padding-top: 18px;
}

.woocommerce-checkout.npp-theme .npp-content {
  max-width: 1180px;
}

.woocommerce-checkout.npp-theme .entry-content > .woocommerce {
  width: 100%;
}

.woocommerce-checkout.npp-theme form.checkout {
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(460px, 1fr);
  gap: 28px;
  align-items: start;
}

.woocommerce-checkout.npp-theme #customer_details,
.woocommerce-checkout.npp-theme #order_review,
.woocommerce-checkout.npp-theme #order_review_heading,
.woocommerce-checkout.npp-theme .woocommerce-NoticeGroup {
  min-width: 0;
}

.woocommerce-checkout.npp-theme #customer_details {
  display: grid;
  gap: 22px;
}

.woocommerce-checkout.npp-theme .col2-set,
.woocommerce-checkout.npp-theme #order_review {
  padding: 28px;
  border: 1px solid rgba(53, 211, 153, .20);
  border-radius: 22px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 20px 60px rgba(11, 30, 54, .10);
}

.woocommerce-checkout.npp-theme .col2-set {
  display: block !important;
  width: 100% !important;
}

.woocommerce-checkout.npp-theme .col2-set .col-1,
.woocommerce-checkout.npp-theme .col2-set .col-2 {
  float: none !important;
  width: 100% !important;
}

.woocommerce-checkout.npp-theme .woocommerce-billing-fields h3,
.woocommerce-checkout.npp-theme .woocommerce-additional-fields h3,
.woocommerce-checkout.npp-theme #order_review_heading {
  margin: 0 0 18px;
  color: var(--npp-navy);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 520;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.woocommerce-checkout.npp-theme #order_review_heading {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  display: none;
}

.woocommerce-checkout.npp-theme #order_review {
  grid-column: 2;
  grid-row: 1;
  margin-top: 0;
  padding-top: 28px;
}

.woocommerce-checkout.npp-theme #order_review::before {
  content: "Seu pedido";
  display: block;
  margin: 0 0 18px;
  color: var(--npp-navy);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 520;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.woocommerce-checkout.npp-theme #customer_details {
  grid-column: 1;
  grid-row: 1;
}

.woocommerce-checkout.npp-theme .woocommerce-billing-fields__field-wrapper,
.woocommerce-checkout.npp-theme .woocommerce-shipping-fields__field-wrapper {
  display: flex;
  flex-wrap: wrap;
  column-gap: 16px;
  align-items: flex-start;
}

.woocommerce-checkout.npp-theme .form-row {
  float: none !important;
  display: flex !important;
  flex-direction: column;
  gap: 7px;
  width: 100% !important;
  margin: 0 0 16px !important;
  padding: 0 !important;
  clear: none !important;
}

.woocommerce-checkout.npp-theme .form-row-first,
.woocommerce-checkout.npp-theme .form-row-last {
  width: calc(50% - 8px) !important;
}

.woocommerce-checkout.npp-theme .form-row-wide {
  flex-basis: 100%;
}

.woocommerce-checkout.npp-theme .form-row label {
  margin: 0;
  color: #314760;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.woocommerce-checkout.npp-theme .form-row .required {
  color: #008f6b;
  text-decoration: none;
}

.woocommerce-checkout.npp-theme input.input-text,
.woocommerce-checkout.npp-theme textarea,
.woocommerce-checkout.npp-theme select,
.woocommerce-checkout.npp-theme .select2-container .select2-selection--single {
  width: 100% !important;
  min-height: 50px;
  height: auto !important;
  margin: 0 !important;
  padding: 13px 15px !important;
  border: 1px solid #d5e3ee !important;
  border-radius: 14px !important;
  outline: 0 !important;
  background: #fff !important;
  box-shadow: none !important;
  color: var(--npp-navy) !important;
  font-size: 15px !important;
  line-height: 1.35 !important;
}

.woocommerce-checkout.npp-theme textarea {
  min-height: 112px;
  resize: vertical;
}

.woocommerce-checkout.npp-theme input.input-text:focus,
.woocommerce-checkout.npp-theme textarea:focus,
.woocommerce-checkout.npp-theme select:focus,
.woocommerce-checkout.npp-theme .select2-container--open .select2-selection--single {
  border-color: rgba(53, 211, 153, .85) !important;
  box-shadow: 0 0 0 4px rgba(53, 211, 153, .14) !important;
}

.woocommerce-checkout.npp-theme .select2-container {
  width: 100% !important;
}

.woocommerce-checkout.npp-theme .select2-container .select2-selection__rendered {
  padding: 0 28px 0 0 !important;
  color: var(--npp-navy) !important;
  line-height: 24px !important;
}

.woocommerce-checkout.npp-theme .select2-container .select2-selection__arrow {
  top: 1px !important;
  right: 10px !important;
  height: 48px !important;
}

.woocommerce-checkout.npp-theme .woocommerce-checkout-review-order-table {
  overflow: hidden;
  border: 1px solid #dbe8f1 !important;
  border-radius: 18px;
  background: #fff;
}

.woocommerce-checkout.npp-theme table.shop_table th,
.woocommerce-checkout.npp-theme table.shop_table td {
  padding: 15px 14px !important;
  border-color: #e2edf4 !important;
  color: #314760;
  font-size: 14px;
  line-height: 1.35;
}

.woocommerce-checkout.npp-theme table.shop_table th {
  color: #314760;
  font-weight: 800;
  letter-spacing: .01em;
}

.woocommerce-checkout.npp-theme #payment {
  margin-top: 18px;
  padding: 20px !important;
  border: 1px solid rgba(53, 211, 153, .20);
  border-radius: 18px !important;
  background: linear-gradient(135deg, rgba(226, 250, 241, .92), rgba(255, 255, 255, .96)) !important;
}

.woocommerce-checkout.npp-theme #payment ul.payment_methods {
  display: grid;
  gap: 10px;
  padding: 0 0 18px !important;
  border-color: rgba(7, 17, 31, .10) !important;
}

.woocommerce-checkout.npp-theme #payment ul.payment_methods > li {
  position: relative;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin: 0 !important;
  padding: 12px 14px !important;
  border: 1px solid rgba(7, 17, 31, .08);
  border-radius: 14px;
  background: rgba(255, 255, 255, .66);
}

.woocommerce-checkout.npp-theme #payment ul.payment_methods > li > input[type="radio"] {
  grid-column: 1;
  grid-row: 1;
  width: 18px !important;
  min-width: 18px !important;
  height: 18px !important;
  min-height: 18px !important;
  margin: 0 !important;
  padding: 0 !important;
  accent-color: #0f7cff;
  transform: none !important;
}

.woocommerce-checkout.npp-theme #payment input[type="radio"],
.woocommerce-checkout.npp-theme #payment .input-radio,
.woocommerce-checkout.npp-theme #payment input[type="checkbox"]:not(#terms) {
  width: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  height: 18px !important;
  min-height: 18px !important;
  max-height: 18px !important;
  margin: 0 !important;
  padding: 0 !important;
  flex: 0 0 18px !important;
  transform: none !important;
  box-shadow: none !important;
}

.woocommerce-checkout.npp-theme #payment ul.payment_methods > li > label {
  grid-column: 2;
  grid-row: 1;
  display: flex !important;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  min-width: 0;
  margin: 0 !important;
  color: var(--npp-navy);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.woocommerce-checkout.npp-theme #payment ul.payment_methods > li > label a,
.woocommerce-checkout.npp-theme #payment ul.payment_methods > li > label span,
.woocommerce-checkout.npp-theme #payment ul.payment_methods > li > label small {
  line-height: 1.35;
}

.woocommerce-checkout.npp-theme #payment ul.payment_methods > li > label a[href*="mercadopago"],
.woocommerce-checkout.npp-theme #payment ul.payment_methods > li > label a[href*="mercado"] {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(0, 158, 227, .10);
  color: #006b9d !important;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.woocommerce-checkout.npp-theme #payment #mp-checkout-super-token-root,
.woocommerce-checkout.npp-theme #payment .mp-super-token-payment-methods-list {
  width: 100% !important;
  min-height: auto !important;
  padding: 16px !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, .78) !important;
}

.woocommerce-checkout.npp-theme #payment .mp-payment-methods-header,
.woocommerce-checkout.npp-theme #payment .mp-super-token-payment-method {
  width: 100% !important;
  gap: 10px !important;
}

.woocommerce-checkout.npp-theme #payment .mp-payment-methods-header,
.woocommerce-checkout.npp-theme #payment .mp-payment-methods-header *,
.woocommerce-checkout.npp-theme #payment .mp-super-token-payment-method__details,
.woocommerce-checkout.npp-theme #payment .mp-super-token-payment-method__details * {
  line-height: 1.35 !important;
}

.woocommerce-checkout.npp-theme #payment .mp-payment-methods-header a,
.woocommerce-checkout.npp-theme #payment .mp-payment-methods-header span,
.woocommerce-checkout.npp-theme #payment .mp-super-token-payment-method__details a,
.woocommerce-checkout.npp-theme #payment .mp-super-token-payment-method__details span {
  font-size: 15px !important;
}

.woocommerce-checkout.npp-theme #payment .mp-payment-methods-header img,
.woocommerce-checkout.npp-theme #payment .mp-super-token-payment-method__thumbnail img,
.woocommerce-checkout.npp-theme #payment .mp-super-token-payment-method__accordion-header img {
  width: auto !important;
  max-width: 136px !important;
  max-height: 68px !important;
}

.woocommerce-checkout.npp-theme #payment ul.payment_methods > li > label img,
.woocommerce-checkout.npp-theme #payment ul.payment_methods > li .payment_method_icons img,
.woocommerce-checkout.npp-theme #payment ul.payment_methods > li img {
  width: auto;
  max-width: 56px;
  max-height: 34px;
  margin: 0 !important;
  vertical-align: middle;
}

.woocommerce-checkout.npp-theme #payment ul.payment_methods > li img[src*="mercadopago"],
.woocommerce-checkout.npp-theme #payment ul.payment_methods > li img[src*="mercado"],
.woocommerce-checkout.npp-theme #payment ul.payment_methods > li img[src*="mlstatic"] {
  max-width: 128px;
  max-height: 64px;
}

.woocommerce-checkout.npp-theme #payment .row-image-select {
  display: inline-flex !important;
  gap: 10px !important;
  align-items: center !important;
  line-height: 1.15 !important;
  vertical-align: middle !important;
}

.woocommerce-checkout.npp-theme #payment .row-image-select p,
.woocommerce-checkout.npp-theme #payment .row-image-select span,
.woocommerce-checkout.npp-theme #payment .row-image-select strong {
  margin: 0 !important;
  line-height: 1.2 !important;
}

.woocommerce-checkout.npp-theme #payment .row-image-select img {
  display: block !important;
  width: auto !important;
  max-width: 148px !important;
  max-height: 48px !important;
  object-fit: contain !important;
}

.woocommerce-checkout.npp-theme #payment div.payment_box {
  grid-column: 1 / -1;
  width: 100%;
  margin: 12px 0 0 !important;
  padding: 16px !important;
  border-radius: 14px !important;
  background: #fff !important;
  color: #334860 !important;
}

.woocommerce-checkout.npp-theme #payment div.payment_box,
.woocommerce-checkout.npp-theme #payment div.payment_box > * {
  position: relative;
}

.woocommerce-checkout.npp-theme #payment div.payment_box *,
.woocommerce-checkout.npp-theme #payment .payment_box * {
  box-sizing: border-box;
}

.woocommerce-checkout.npp-theme #payment div.payment_box > * {
  z-index: 1;
}

.woocommerce-checkout.npp-theme #payment div.payment_box label {
  display: block;
  margin: 0 0 7px;
  color: #314760;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.woocommerce-checkout.npp-theme #payment div.payment_box input[type="text"],
.woocommerce-checkout.npp-theme #payment div.payment_box input[type="tel"],
.woocommerce-checkout.npp-theme #payment div.payment_box input[type="email"],
.woocommerce-checkout.npp-theme #payment div.payment_box input[type="number"],
.woocommerce-checkout.npp-theme #payment div.payment_box select {
  position: relative !important;
  z-index: 3 !important;
  width: 100% !important;
  min-height: 48px !important;
  margin: 0 0 12px !important;
  padding: 12px 14px !important;
  border: 1px solid #d5e3ee !important;
  border-radius: 12px !important;
  background: #fff !important;
  color: var(--npp-navy) !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
}

.woocommerce-checkout.npp-theme #payment div.payment_box button,
.woocommerce-checkout.npp-theme #payment div.payment_box .button,
.woocommerce-checkout.npp-theme #payment div.payment_box [role="button"] {
  position: relative !important;
  z-index: 2 !important;
  max-width: 100%;
}

.woocommerce-checkout.npp-theme #payment div.payment_box iframe,
.woocommerce-checkout.npp-theme #payment div.payment_box [class*="tooltip"],
.woocommerce-checkout.npp-theme #payment div.payment_box [class*="helper"],
.woocommerce-checkout.npp-theme #payment div.payment_box [class*="hint"],
.woocommerce-checkout.npp-theme #payment div.payment_box [class*="icon"] {
  max-width: 100%;
}

.woocommerce-checkout.npp-theme #payment .mp-input-group,
.woocommerce-checkout.npp-theme #payment .mp-input,
.woocommerce-checkout.npp-theme #payment .mp-checkout-ticket-container,
.woocommerce-checkout.npp-theme #payment .mp-checkout-ticket-form,
.woocommerce-checkout.npp-theme #payment [id*="ticket"],
.woocommerce-checkout.npp-theme #payment [id*="Ticket"] {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

.woocommerce-checkout.npp-theme #payment .mp-input-group {
  display: grid !important;
  gap: 7px !important;
  min-height: auto !important;
  margin: 0 0 12px !important;
  overflow: visible !important;
}

.woocommerce-checkout.npp-theme #payment .mp-input-group > label,
.woocommerce-checkout.npp-theme #payment .mp-input-label,
.woocommerce-checkout.npp-theme #payment .mp-input-label label,
.woocommerce-checkout.npp-theme #payment [class*="input-label"] {
  position: static !important;
  display: block !important;
  width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  background: transparent !important;
  color: #314760 !important;
  font-size: 13px !important;
  line-height: 1.25 !important;
}

.woocommerce-checkout.npp-theme #payment .mp-input-group input,
.woocommerce-checkout.npp-theme #payment .mp-input-group select {
  position: relative !important;
  z-index: 4 !important;
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
}

.woocommerce-checkout.npp-theme #payment .mp-input-group button,
.woocommerce-checkout.npp-theme #payment .mp-input-group [role="button"],
.woocommerce-checkout.npp-theme #payment .mp-input-group [class*="button"],
.woocommerce-checkout.npp-theme #payment .mp-input-group [class*="icon"] {
  position: relative !important;
  z-index: 2 !important;
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
}

.woocommerce-checkout.npp-theme #payment .mp-input-group input + button,
.woocommerce-checkout.npp-theme #payment .mp-input-group input + [role="button"],
.woocommerce-checkout.npp-theme #payment .mp-input-group input + [class*="icon"] {
  margin-top: 6px !important;
}

.woocommerce-checkout.npp-theme #payment div.payment_box .form-row,
.woocommerce-checkout.npp-theme #payment div.payment_box p,
.woocommerce-checkout.npp-theme #payment div.payment_box fieldset,
.woocommerce-checkout.npp-theme #payment div.payment_box [class*="form"],
.woocommerce-checkout.npp-theme #payment div.payment_box [class*="field"],
.woocommerce-checkout.npp-theme #payment div.payment_box [class*="ticket"],
.woocommerce-checkout.npp-theme #payment div.payment_box [class*="boleto"] {
  max-width: 100% !important;
}

.woocommerce-checkout.npp-theme #payment div.payment_box [class*="row"] {
  gap: 12px;
}

.woocommerce-checkout.npp-theme #payment div.payment_box img {
  display: inline-block;
  width: auto;
  max-width: 118px;
  max-height: 58px;
  vertical-align: middle;
}

.woocommerce-checkout.npp-theme #payment input-document {
  position: relative !important;
  z-index: 4 !important;
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 0 16px !important;
}

.woocommerce-checkout.npp-theme #payment .mp-checkout-custom-input-document,
.woocommerce-checkout.npp-theme #payment .mp-checkout-ticket-input-document,
.woocommerce-checkout.npp-theme #payment .mp-checkout-pse-input-document {
  display: grid !important;
  gap: 7px !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 0 16px !important;
  overflow: visible !important;
}

.woocommerce-checkout.npp-theme #payment .mp-checkout-ticket-billing-checkbox {
  display: none !important;
}

.woocommerce-checkout.npp-theme #payment .mp-checkout-custom-input-document::before,
.woocommerce-checkout.npp-theme #payment .mp-checkout-ticket-input-document::before,
.woocommerce-checkout.npp-theme #payment .mp-checkout-pse-input-document::before {
  content: "Documento do titular *";
  display: block;
  width: 100%;
  color: #314760;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  text-align: left;
}

.woocommerce-checkout.npp-theme #payment input-document .mp-input-document,
.woocommerce-checkout.npp-theme #payment input-document .mp-input,
.woocommerce-checkout.npp-theme #payment input-document .mp-input-container {
  display: flex !important;
  align-items: stretch !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 50px !important;
  justify-content: flex-start !important;
  overflow: visible !important;
}

.woocommerce-checkout.npp-theme #payment input-document .mp-input-label,
.woocommerce-checkout.npp-theme #payment input-document [class*="label"] {
  display: none !important;
}

.woocommerce-checkout.npp-theme #payment input-document .mp-vertical-line {
  display: none !important;
}

.woocommerce-checkout.npp-theme #payment input-document .mp-document-select {
  flex: 0 0 112px !important;
  width: 112px !important;
  min-width: 88px !important;
  margin: 0 !important;
  border-radius: 12px 0 0 12px !important;
}

.woocommerce-checkout.npp-theme #payment input-document .mp-document {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  margin: 0 !important;
  border-left-width: 0 !important;
  border-radius: 0 12px 12px 0 !important;
}

.woocommerce-checkout.npp-theme #payment input-document *,
.woocommerce-checkout.npp-theme #payment input-document select,
.woocommerce-checkout.npp-theme #payment input-document input {
  pointer-events: auto !important;
  visibility: visible !important;
  opacity: 1 !important;
  max-width: 100% !important;
}

.woocommerce-checkout.npp-theme #payment div.payment_box .mp-checkout-ticket-billing-input-number {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 8px !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 0 12px !important;
  border: 0 !important;
  background: transparent !important;
  overflow: visible !important;
  padding: 0 !important;
}

.woocommerce-checkout.npp-theme #payment div.payment_box .mp-checkout-ticket-billing-input-number > #form-checkout__address_street_number {
  flex: 0 0 auto !important;
  position: relative !important;
  inset: auto !important;
  z-index: 1 !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 50px !important;
  min-height: 50px !important;
  margin: 0 !important;
  padding: 12px 14px !important;
  border: 1px solid #d5e3ee !important;
  border-radius: 12px !important;
  background: #fff !important;
  pointer-events: auto !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.woocommerce-checkout.npp-theme #payment div.payment_box .mp-checkout-ticket-billing-input-number > .mp-checkout-ticket-billing-number-toggle-checkbox {
  all: unset;
  box-sizing: border-box !important;
  position: relative !important;
  inset: auto !important;
  z-index: 2 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  justify-content: flex-start !important;
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  min-height: 22px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
  color: #314760 !important;
  cursor: pointer !important;
}

.woocommerce-checkout.npp-theme #payment div.payment_box .mp-checkout-ticket-billing-input-number > .mp-checkout-ticket-billing-number-toggle-checkbox p {
  all: unset;
  order: 2 !important;
  display: inline-block !important;
  color: #314760 !important;
  font-size: 13px !important;
  font-weight: 520 !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

.woocommerce-checkout.npp-theme #payment div.payment_box .mp-checkout-ticket-billing-input-number > .mp-checkout-ticket-billing-number-toggle-checkbox input[type="checkbox"] {
  order: 1 !important;
  position: static !important;
  inset: auto !important;
  display: inline-block !important;
  width: 18px !important;
  min-width: 18px !important;
  height: 18px !important;
  min-height: 18px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid #b8c9d8 !important;
  border-radius: 4px !important;
  background: #fff !important;
  box-shadow: none !important;
  appearance: auto !important;
  -webkit-appearance: checkbox !important;
  cursor: pointer !important;
}

.woocommerce-cart.npp-theme .npp-section {
  padding-top: 14px;
}

.woocommerce-cart.npp-theme .woocommerce .button.wc-backward,
.woocommerce-cart.npp-theme .return-to-shop .button.wc-backward {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 48px;
  padding: 0 24px !important;
  line-height: 1.1 !important;
  text-align: center !important;
  vertical-align: middle !important;
  box-sizing: border-box !important;
}

.npp-theme .npp-btn,
.npp-theme .button,
.npp-theme button:not(.npp-menu-toggle):not(.npp-menu-close) {
  align-items: center;
  justify-content: center;
}

.npp-theme .npp-actions,
.npp-theme .npp-cta-actions,
.npp-theme .return-to-shop {
  gap: 12px;
}

.woocommerce-cart.npp-theme .woocommerce-message .button.wc-forward,
.woocommerce-cart.npp-theme .woocommerce-info .button.wc-forward,
.woocommerce-cart.npp-theme .woocommerce-error .button.wc-forward,
.woocommerce-cart.npp-theme .woocommerce-notices-wrapper .button.wc-forward,
.woocommerce-cart.npp-theme .woocommerce-message a.button[href*="carrinho"],
.woocommerce-cart.npp-theme .woocommerce-info a.button[href*="carrinho"],
.woocommerce-cart.npp-theme .woocommerce-error a.button[href*="carrinho"],
.woocommerce-cart.npp-theme .woocommerce-notices-wrapper a.button[href*="carrinho"],
.woocommerce-cart.npp-theme .woocommerce-message a.button[href*="cart"],
.woocommerce-cart.npp-theme .woocommerce-info a.button[href*="cart"],
.woocommerce-cart.npp-theme .woocommerce-error a.button[href*="cart"],
.woocommerce-cart.npp-theme .woocommerce-notices-wrapper a.button[href*="cart"] {
  display: none !important;
}

body.npp-theme .woocommerce-notices-wrapper .button.wc-forward,
body.npp-theme .woocommerce-notices-wrapper a.button[href*="carrinho"],
body.npp-theme .woocommerce-notices-wrapper a.button[href*="cart"] {
  display: none !important;
}

.woocommerce-cart.npp-theme .woocommerce-message {
  display: block !important;
  padding-right: 18px !important;
}

.woocommerce-checkout.npp-theme #payment div.payment_box::before {
  border-bottom-color: #fff !important;
}

.woocommerce-checkout.npp-theme .woocommerce-privacy-policy-text,
.woocommerce-checkout.npp-theme .woocommerce-terms-and-conditions-wrapper {
  color: #334860;
  font-size: 14px;
  line-height: 1.55;
}

.woocommerce-checkout.npp-theme .woocommerce-privacy-policy-text p {
  margin: 0 0 14px;
}

.woocommerce-checkout.npp-theme .woocommerce-terms-and-conditions-wrapper .form-row {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center;
  align-items: center;
  margin: 14px 0 0 !important;
  padding: 11px 14px !important;
  border: 1px solid rgba(53, 211, 153, .34) !important;
  border-radius: 16px !important;
  background: #ffffff !important;
  box-shadow: 0 14px 30px rgba(11, 30, 54, .08) !important;
  min-height: auto !important;
  height: auto !important;
  gap: 0 !important;
  line-height: 1.2 !important;
}

.woocommerce-checkout.npp-theme .woocommerce-terms-and-conditions-wrapper {
  margin-top: 16px;
}

.woocommerce-checkout.npp-theme #terms_field,
.woocommerce-checkout.npp-theme #order_review #terms_field {
  padding: 11px 14px !important;
  border: 1px solid rgba(53, 211, 153, .28);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(236, 255, 248, .92), rgba(255, 255, 255, .98));
  box-shadow: 0 14px 30px rgba(11, 30, 54, .07);
  min-height: auto !important;
  height: auto !important;
}

.woocommerce-checkout.npp-theme #terms_field label,
.woocommerce-checkout.npp-theme #terms_field .woocommerce-form__label-for-checkbox {
  width: auto !important;
  min-height: auto !important;
  height: auto !important;
}

.woocommerce-checkout.npp-theme .woocommerce-form__label-for-checkbox {
  display: inline-flex !important;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  width: auto !important;
  max-width: 100%;
  min-height: 0 !important;
  line-height: 1.2 !important;
}

.woocommerce-checkout.npp-theme .woocommerce-terms-and-conditions-checkbox-text {
  display: block !important;
  position: relative;
  padding-left: 0;
  color: #006b58;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.2;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.woocommerce-checkout.npp-theme .woocommerce-terms-and-conditions-wrapper .required,
.woocommerce-checkout.npp-theme .woocommerce-terms-and-conditions-wrapper abbr.required,
.woocommerce-checkout.npp-theme .woocommerce-terms-and-conditions-checkbox-text .required,
.woocommerce-checkout.npp-theme #terms + span .required,
.woocommerce-checkout.npp-theme label[for="terms"] .required,
.woocommerce-checkout.npp-theme #terms_field .required,
.woocommerce-checkout.npp-theme #terms_field abbr.required {
  display: none !important;
  visibility: hidden !important;
}

.woocommerce-checkout.npp-theme input[type="checkbox"].input-checkbox,
.woocommerce-checkout.npp-theme input[type="checkbox"]#terms,
.woocommerce-checkout.npp-theme .woocommerce-form__input-checkbox {
  display: block !important;
  width: 18px !important;
  min-width: 18px !important;
  height: 18px !important;
  min-height: 18px !important;
  margin: 0 !important;
  padding: 0 !important;
  accent-color: var(--npp-green);
  position: static !important;
  transform: none !important;
}

.woocommerce-checkout.npp-theme .woocommerce-terms-and-conditions-checkbox-text a,
.woocommerce-checkout.npp-theme .woocommerce-privacy-policy-text a {
  color: #007f5f !important;
  font-weight: 850;
  text-decoration: none;
}

.woocommerce-checkout.npp-theme #place_order {
  width: 100%;
  min-height: 56px;
  margin-top: 18px;
  border-radius: 14px !important;
  background: var(--npp-green) !important;
  color: #06111f !important;
  box-shadow: 0 18px 34px rgba(53, 211, 153, .24) !important;
  font-size: 15px !important;
  letter-spacing: .02em;
}

.woocommerce-checkout.npp-theme .woocommerce-error,
.woocommerce-checkout.npp-theme .woocommerce-info,
.woocommerce-checkout.npp-theme .woocommerce-message {
  border: 1px solid rgba(53, 211, 153, .25) !important;
  border-radius: 16px;
  background: #fff !important;
  box-shadow: 0 12px 36px rgba(11, 30, 54, .08);
}

body.woocommerce-checkout .npp-header {
  z-index: 10000;
}

body.woocommerce-checkout .blockUI.blockOverlay,
body.woocommerce-checkout .woocommerce .blockUI.blockOverlay {
  background: rgba(255, 255, 255, .34) !important;
  opacity: .24 !important;
  z-index: 20 !important;
}

body.woocommerce-order-received.npp-theme .npp-ticket-action {
  width: 100%;
  margin: 16px 0 28px;
}

body.woocommerce-order-received.npp-theme #submit-payment,
body.woocommerce-order-received.npp-theme .npp-ticket-action .button,
body.woocommerce-order-received.npp-theme .woocommerce a.button[href*="boleto"],
body.woocommerce-order-received.npp-theme .woocommerce a.button[href*="ticket"] {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-height: 54px;
  margin: 0 0 0;
  border: 0 !important;
  border-radius: 14px !important;
  background: var(--npp-green) !important;
  color: #06111f !important;
  font-size: 15px !important;
  font-weight: 850 !important;
  letter-spacing: .01em;
  line-height: 1.2 !important;
  text-align: center;
  box-shadow: 0 18px 34px rgba(53, 211, 153, .22) !important;
}

body.woocommerce-order-received.npp-theme #submit-payment:hover,
body.woocommerce-order-received.npp-theme .npp-ticket-action .button:hover,
body.woocommerce-order-received.npp-theme .woocommerce a.button[href*="boleto"]:hover,
body.woocommerce-order-received.npp-theme .woocommerce a.button[href*="ticket"]:hover {
  transform: translateY(-1px);
  background: #46ddb0 !important;
  box-shadow: 0 22px 40px rgba(53, 211, 153, .28) !important;
}

.npp-theme #stm_lms_enrolled_assignments {
  position: relative;
  min-height: 180px;
}

.npp-theme #stm_lms_enrolled_assignments:not(.npp-assignments-ready) > h4,
.npp-theme #stm_lms_enrolled_assignments:not(.npp-assignments-ready) .enrolled-assignments-grid,
.npp-theme #stm_lms_enrolled_assignments:not(.npp-assignments-ready) .asignments_grid__pagination {
  opacity: 0;
  visibility: hidden;
}

.npp-theme #stm_lms_enrolled_assignments:not(.npp-assignments-ready)::after {
  content: "Carregando atividades...";
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 160px;
  border: 1px solid rgba(53, 211, 153, .2);
  border-radius: 20px;
  background:
    radial-gradient(circle at 85% 0%, rgba(53, 211, 153, .12), transparent 34%),
    #ffffff;
  color: #49607f;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 18px 46px rgba(11, 30, 54, .06);
}

.npp-theme #stm_lms_enrolled_assignments .npp-assignments-empty,
.npp-theme #stm_lms_chat .npp-chat-empty,
.npp-theme #masterstudy-account-messages .npp-chat-empty {
  display: grid;
  justify-items: center;
  gap: 10px;
  width: 100%;
  padding: 34px 22px;
  border: 1px solid rgba(53, 211, 153, .22);
  border-radius: 20px;
  background:
    radial-gradient(circle at 85% 0%, rgba(53, 211, 153, .14), transparent 36%),
    #ffffff;
  color: #233a5f;
  text-align: center;
  box-shadow: 0 18px 46px rgba(11, 30, 54, .08);
}

.npp-theme #stm_lms_enrolled_assignments .npp-assignments-empty__mark,
.npp-theme #stm_lms_chat .npp-chat-empty__icon,
.npp-theme #masterstudy-account-messages .npp-chat-empty__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, #35d399, #4fe0b3);
  color: #061121;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(53, 211, 153, .24);
}

.npp-theme #stm_lms_enrolled_assignments .npp-assignments-empty strong,
.npp-theme #stm_lms_chat .npp-chat-empty strong,
.npp-theme #masterstudy-account-messages .npp-chat-empty strong {
  color: #061121;
  font-size: 22px;
  font-weight: 800;
}

.npp-theme #stm_lms_enrolled_assignments .npp-assignments-empty span:last-child,
.npp-theme #stm_lms_chat .npp-chat-empty span:last-child,
.npp-theme #masterstudy-account-messages .npp-chat-empty span:last-child {
  max-width: 560px;
  color: #49607f;
  font-size: 15px;
  line-height: 1.65;
}

.npp-theme #stm_lms_enrolled_assignments.npp-assignments-empty-state .sort_assignments,
.npp-theme #stm_lms_enrolled_assignments.npp-assignments-empty-state .multiseparator {
  display: none !important;
}

.npp-theme #stm_lms_chat .stm_lms_chat__conversations {
  display: grid !important;
  gap: 12px !important;
  min-height: 0;
}

.npp-theme #stm_lms_chat .stm_lms_chat__conversation {
  margin: 0 !important;
  padding: 16px 56px 16px 18px !important;
  border: 1px solid rgba(56, 91, 206, .18) !important;
  border-top: 1px solid rgba(56, 91, 206, .18) !important;
  border-radius: 14px !important;
  background: #ffffff !important;
  box-shadow: 0 10px 26px rgba(11, 30, 54, .07) !important;
  overflow: hidden !important;
}

.npp-theme #stm_lms_chat .stm_lms_chat__conversation:hover {
  border-color: rgba(56, 91, 206, .34) !important;
  box-shadow: 0 14px 32px rgba(11, 30, 54, .11) !important;
}

.npp-theme #stm_lms_chat .stm_lms_chat__conversation.active {
  border-color: rgba(56, 91, 206, .72) !important;
  box-shadow: 0 16px 34px rgba(56, 91, 206, .16) !important;
}

.npp-theme #stm_lms_chat .stm_lms_chat__conversation.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #385bce;
}

.npp-theme #stm_lms_chat .stm_lms_chat__conversation__image {
  flex: 0 0 44px !important;
  width: 44px !important;
  max-width: 44px !important;
  margin-right: 14px !important;
}

.npp-theme #stm_lms_chat .stm_lms_chat__conversation__image img {
  width: 44px !important;
  height: 44px !important;
  border-radius: 10px !important;
  object-fit: cover !important;
}

.npp-theme #stm_lms_chat .stm_lms_chat__conversation__title h5 {
  color: #061121 !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
}

.npp-theme #stm_lms_chat .stm_lms_chat__conversation__date {
  margin-top: 3px !important;
  color: #7b8ba3 !important;
  font-size: 13px !important;
  line-height: 1.25 !important;
}

.npp-theme #stm_lms_chat .stm_lms_chat__conversation__messages_num {
  right: 16px !important;
}

.npp-theme #stm_lms_chat .npp-chat-empty,
.npp-theme #masterstudy-account-messages .npp-chat-empty {
  min-height: 220px;
  margin: 0;
}

.npp-theme #stm_lms_chat.npp-instructor-chat-layout > .row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 18px;
  align-items: start;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.npp-theme #stm_lms_chat.npp-instructor-chat-layout > .row::before,
.npp-theme #stm_lms_chat.npp-instructor-chat-layout > .row::after {
  display: none !important;
  content: none !important;
}

.npp-theme #stm_lms_chat.npp-instructor-chat-layout > .row > .col-md-4,
.npp-theme #stm_lms_chat.npp-instructor-chat-layout > .row > .col-md-8 {
  float: none !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.npp-theme #stm_lms_chat.npp-instructor-chat-layout > .row > .col-md-4 {
  grid-column: 1;
  grid-row: 1;
}

.npp-theme #stm_lms_chat.npp-instructor-chat-layout > .row > .col-md-8 {
  grid-column: 1;
  grid-row: 2;
}

.npp-theme #stm_lms_chat.npp-instructor-chat-layout > .row > .col-md-4 > .stm_lms_chat__conversations {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
}

.npp-theme #stm_lms_chat.npp-instructor-chat-layout .stm_lms_chat__chat-container {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0;
  min-height: 520px;
  border-radius: 18px;
  overflow: hidden;
}

.npp-theme #stm_lms_chat.npp-instructor-chat-layout #stm_lms_chat_messages {
  min-height: 330px;
  max-height: 560px;
  overflow-x: hidden;
  overflow-y: auto;
}

.npp-theme #stm_lms_chat.npp-instructor-chat-layout .stm_lms_chat_messages__send {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.npp-theme #stm_lms_chat.npp-instructor-chat-layout .stm_lms_chat_messages__send-message {
  width: 100%;
  min-width: 0;
}

.npp-theme #stm_lms_chat.npp-instructor-chat-layout .stm_lms_chat_companion {
  margin-top: 0;
}

.npp-theme.npp-account-chat #stm_lms_chat.npp-instructor-chat-layout {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  overflow-x: hidden;
}

.npp-theme.npp-account-chat .stm_lms_user_info_top + h1,
.npp-theme.npp-account-chat .masterstudy-account-content,
.npp-theme.npp-account-chat .masterstudy-user-account {
  min-width: 0 !important;
}

.npp-theme #stm_lms_chat.npp-chat-waiting-course .stm_lms_chat_companion__image,
.npp-theme #stm_lms_chat.npp-chat-waiting-course .stm_lms_chat_companion__title,
.npp-theme #stm_lms_chat.npp-chat-waiting-course #stm_lms_chat_messages,
.npp-theme #stm_lms_chat.npp-chat-waiting-course .stm_lms_chat_messages__send,
.npp-theme #masterstudy-account-messages.npp-chat-waiting-course .masterstudy-account-messages__panel-user,
.npp-theme #masterstudy-account-messages.npp-chat-waiting-course .masterstudy-account-messages__panel-actions,
.npp-theme #masterstudy-account-messages.npp-chat-waiting-course #masterstudy-account-messages_chat,
.npp-theme #masterstudy-account-messages.npp-chat-waiting-course .masterstudy-account-messages__composer {
  display: none !important;
}

.npp-theme #stm_lms_chat.npp-chat-waiting-course .stm_lms_chat__chat-container::before,
.npp-theme #masterstudy-account-messages.npp-chat-waiting-course .masterstudy-account-messages__panel-card::before {
  content: "Selecione um curso e escolha um aluno para iniciar ou continuar a conversa.";
  display: grid;
  min-height: 280px;
  place-items: center;
  padding: 24px;
  border: 1px dashed rgba(56, 91, 206, .22);
  border-radius: 16px;
  background: #f7fbff;
  color: #49607f;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

.npp-theme #stm_lms_chat.npp-chat-waiting-course .stm_lms_chat_messages__send h4,
.npp-theme #masterstudy-account-messages.npp-chat-waiting-course .masterstudy-account-messages__composer::before {
  color: #49607f !important;
}

.npp-chat-send-disabled,
.npp-theme #stm_lms_chat.npp-chat-waiting-course .stm_lms_chat_messages__send-btn,
.npp-theme #masterstudy-account-messages.npp-chat-waiting-course .masterstudy-account-messages_chat__send-btn {
  pointer-events: none !important;
  opacity: .62 !important;
}

.npp-instructor-chat-panel {
  display: grid;
  gap: 18px;
  width: 100%;
  margin: 0;
  padding: 20px;
  border: 1px solid rgba(53, 211, 153, .22);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 0%, rgba(53, 211, 153, .14), transparent 34%),
    #ffffff;
  box-shadow: 0 18px 46px rgba(11, 30, 54, .08);
}

.npp-instructor-chat-panel[hidden] {
  display: none !important;
}

.npp-instructor-chat-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.npp-instructor-chat-panel__eyebrow {
  display: block;
  margin-bottom: 5px;
  color: #35d399;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.npp-instructor-chat-panel h3 {
  margin: 0;
  color: #061121;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.15;
}

.npp-instructor-chat-panel__status {
  min-height: 20px;
  color: #49607f;
  font-size: 13px;
  font-weight: 700;
  text-align: right;
}

.npp-instructor-chat-panel__field {
  display: grid;
  gap: 8px;
  margin: 0;
}

.npp-instructor-chat-panel__field span,
.npp-instructor-chat-panel__section-title {
  color: #233a5f;
  font-size: 13px;
  font-weight: 900;
}

.npp-instructor-chat-panel__field select {
  width: 100%;
  min-height: 48px;
  padding: 0 42px 0 14px;
  border: 1px solid rgba(56, 91, 206, .18);
  border-radius: 12px;
  background: #f7fbff;
  color: #061121;
  font: inherit;
  font-weight: 800;
}

.npp-instructor-chat-panel__tabs {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(420px, 100%);
  padding: 4px;
  border: 1px solid rgba(56, 91, 206, .14);
  border-radius: 14px;
  background: #eef5fb;
}

.npp-instructor-chat-panel__tab {
  min-height: 40px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #49607f;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
}

.npp-instructor-chat-panel__tab.is-active {
  background: #ffffff;
  color: #061121;
  box-shadow: 0 8px 18px rgba(11, 30, 54, .08);
}

.npp-instructor-chat-panel__tab-panel {
  display: none;
}

.npp-instructor-chat-panel__tab-panel.is-active {
  display: grid;
  gap: 14px;
}

.npp-instructor-chat-panel__tools {
  display: grid;
  grid-template-columns: minmax(220px, 360px) auto;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.npp-instructor-chat-panel__tools[hidden] {
  display: none !important;
}

.npp-instructor-chat-panel__search {
  position: relative;
  min-width: 0;
}

.npp-instructor-chat-panel__tools input {
  width: 100%;
  min-height: 42px;
  padding: 0 42px 0 14px;
  border: 1px solid rgba(56, 91, 206, .18);
  border-radius: 12px;
  background: #ffffff;
  color: #061121;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
}

.npp-instructor-chat-panel__search button {
  position: absolute;
  top: 50%;
  right: 8px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  transform: translateY(-50%);
  border: 0;
  border-radius: 999px;
  background: rgba(56, 91, 206, .1);
  color: #385bce;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.npp-instructor-chat-panel__search button:hover,
.npp-instructor-chat-panel__search button:focus-visible {
  background: #385bce;
  color: #ffffff;
  outline: none;
}

.npp-instructor-chat-panel__search button[hidden] {
  display: none !important;
}

.npp-instructor-chat-panel__tools input:focus {
  border-color: rgba(56, 91, 206, .5);
  outline: none;
  box-shadow: 0 0 0 3px rgba(56, 91, 206, .1);
}

.npp-instructor-chat-panel__tools span {
  color: #6d7f98;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.npp-instructor-chat-panel__section {
  display: grid;
  gap: 10px;
}

.npp-instructor-chat-panel__section_pending {
  padding: 12px;
  border: 1px solid rgba(221, 45, 74, .24);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(221, 45, 74, .08), rgba(255, 255, 255, .92));
  box-shadow: 0 12px 28px rgba(221, 45, 74, .08);
}

.npp-instructor-chat-panel__section[hidden] {
  display: none !important;
}

.npp-instructor-chat-panel__section-title_alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #b91c2f;
}

.npp-instructor-chat-panel__section-title_alert strong {
  display: grid;
  min-width: 30px;
  height: 30px;
  padding: 0 9px;
  place-items: center;
  border-radius: 999px;
  background: #dd2d4a;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(221, 45, 74, .24);
}

.npp-instructor-chat-panel__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 8px;
}

.npp-instructor-chat-panel__list_scroll {
  max-height: 248px;
  overflow: auto;
  padding: 2px 6px 2px 2px;
  scrollbar-color: rgba(56, 91, 206, .35) transparent;
  scrollbar-width: thin;
}

.npp-instructor-chat-student {
  position: relative;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-width: 0;
  min-height: 64px;
  padding: 10px;
  border: 1px solid rgba(56, 91, 206, .16);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(11, 30, 54, .06);
}

.npp-instructor-chat-student.is-active {
  border-color: rgba(56, 91, 206, .72);
  background: linear-gradient(135deg, rgba(56, 91, 206, .08), #ffffff);
  box-shadow: 0 14px 34px rgba(56, 91, 206, .16);
}

.npp-instructor-chat-student.is-active::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 0;
  width: 4px;
  border-radius: 0 999px 999px 0;
  background: #385bce;
}

.npp-instructor-chat-student__avatar,
.npp-instructor-chat-student__avatar img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.npp-instructor-chat-student__avatar {
  overflow: hidden;
  background: #eaf2ff;
}

.npp-instructor-chat-student__avatar img {
  display: block;
  object-fit: cover;
}

.npp-instructor-chat-student__content {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.npp-instructor-chat-student__content strong {
  overflow: hidden;
  color: #061121;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.npp-instructor-chat-student__content span {
  overflow: hidden;
  color: #6d7f98;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.npp-instructor-chat-student__action {
  min-height: 34px;
  padding: 0 11px;
  border: 0;
  border-radius: 10px;
  background: #35d399;
  color: #061121;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(53, 211, 153, .22);
}

.npp-instructor-chat-student__action:hover,
.npp-instructor-chat-student__action:focus-visible {
  background: #385bce;
  color: #ffffff;
  outline: none;
}

.npp-instructor-chat-student.is-active .npp-instructor-chat-student__action {
  background: #385bce;
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(56, 91, 206, .22);
}

.npp-instructor-chat-student__action:disabled {
  cursor: wait;
  opacity: .72;
}

.npp-instructor-chat-student__badge {
  position: absolute;
  top: -7px;
  right: -7px;
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  border-radius: 999px;
  background: #385bce;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(56, 91, 206, .28);
}

.npp-instructor-chat-panel__section_pending .npp-instructor-chat-student__badge {
  background: #dd2d4a;
  box-shadow: 0 10px 24px rgba(221, 45, 74, .28);
}

.npp-instructor-chat-panel__empty {
  padding: 14px;
  border: 1px dashed rgba(56, 91, 206, .22);
  border-radius: 12px;
  color: #6d7f98;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

@media (max-width: 900px) {
  .npp-theme #stm_lms_chat.npp-instructor-chat-layout > .row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .npp-theme #stm_lms_chat.npp-instructor-chat-layout > .row > .col-md-4,
  .npp-theme #stm_lms_chat.npp-instructor-chat-layout > .row > .col-md-8 {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 767px) {
  .npp-theme.npp-account-chat .masterstudy-account-content,
  .npp-theme.npp-account-chat .stm_lms_user_info_top + h1,
  .npp-theme #stm_lms_chat.npp-instructor-chat-layout {
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .npp-theme #stm_lms_chat.npp-instructor-chat-layout > .row {
    gap: 14px;
  }

  .npp-theme #stm_lms_chat.npp-instructor-chat-layout .stm_lms_chat__chat-container {
    min-height: 480px;
  }

  .npp-theme #stm_lms_chat.npp-instructor-chat-layout #stm_lms_chat_messages {
    min-height: 280px;
    max-height: 420px;
  }

  .npp-theme #stm_lms_chat.npp-instructor-chat-layout .stm_lms_chat_messages__send {
    grid-template-columns: minmax(0, 1fr) 44px;
  }
}

@media (max-width: 640px) {
  .npp-instructor-chat-panel {
    padding: 16px;
  }

  .npp-instructor-chat-panel__head {
    display: grid;
  }

  .npp-instructor-chat-panel__status {
    text-align: left;
  }

  .npp-instructor-chat-panel__tabs,
  .npp-instructor-chat-panel__tools {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .npp-instructor-chat-panel__tools span {
    white-space: normal;
  }

  .npp-instructor-chat-panel__list_scroll {
    max-height: 360px;
  }

  .npp-instructor-chat-panel__list {
    grid-template-columns: 1fr;
  }

  .npp-instructor-chat-student {
    grid-template-columns: 42px minmax(0, 1fr);
    cursor: pointer;
    transition: transform .14s ease, border-color .14s ease, box-shadow .14s ease;
  }

  .npp-instructor-chat-student:active {
    transform: scale(.992);
    border-color: rgba(53, 211, 153, .5);
  }

  .npp-instructor-chat-student__action {
    display: none;
  }

  .npp-instructor-chat-student__avatar,
  .npp-instructor-chat-student__avatar img {
    width: 42px;
    height: 42px;
  }
}

@media (min-width: 901px) {
  .masterstudy-enrolled-courses .stm_lms_instructor_courses__single--enroll .btn.btn-default,
  .npp-theme .masterstudy-enrolled-courses .stm_lms_instructor_courses__single--enroll .btn.btn-default span {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    min-height: 44px;
    padding: 8px 7px !important;
    box-sizing: border-box;
    overflow: hidden;
  }

  .masterstudy-enrolled-courses .stm_lms_instructor_courses__single--enroll .btn.btn-default span,
  .npp-theme .masterstudy-enrolled-courses .stm_lms_instructor_courses__single--enroll .btn.btn-default span {
    display: block;
    max-width: 100%;
    font-size: 10.5px !important;
    line-height: 1.15 !important;
    letter-spacing: .015em !important;
    text-align: center;
    white-space: normal;
  }
}

.woocommerce-checkout.npp-theme form.checkout.processing,
.woocommerce-checkout.npp-theme #order_review.processing {
  position: relative;
}

.woocommerce-checkout.npp-theme form.checkout.processing::after,
.woocommerce-checkout.npp-theme #order_review.processing::after {
  content: "Atualizando pagamento...";
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  padding: 9px 12px;
  border: 1px solid rgba(53, 211, 153, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  color: #006b58;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  box-shadow: 0 12px 26px rgba(11, 30, 54, .10);
}

@media (max-width: 900px) {
  .woocommerce-checkout.npp-theme .npp-section {
    padding-top: 12px;
  }

  .woocommerce-checkout.npp-theme form.checkout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .woocommerce-checkout.npp-theme #customer_details,
  .woocommerce-checkout.npp-theme #order_review_heading,
  .woocommerce-checkout.npp-theme #order_review {
    grid-column: 1;
    grid-row: auto;
  }

  .woocommerce-checkout.npp-theme #order_review {
    margin-top: 0;
    padding-top: 22px;
  }

  .woocommerce-checkout.npp-theme .col2-set,
  .woocommerce-checkout.npp-theme #order_review {
    padding: 20px;
    border-radius: 18px;
  }

  .woocommerce-checkout.npp-theme #payment {
    padding: 16px !important;
  }

  .woocommerce-checkout.npp-theme #payment ul.payment_methods > li {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 10px;
    padding: 11px 12px !important;
  }

  .woocommerce-checkout.npp-theme .woocommerce-billing-fields__field-wrapper,
  .woocommerce-checkout.npp-theme .woocommerce-shipping-fields__field-wrapper {
    display: block;
  }

  .woocommerce-checkout.npp-theme .form-row-first,
  .woocommerce-checkout.npp-theme .form-row-last {
    width: 100% !important;
  }
}

@media (min-width: 901px) {
  body .stm_lms_instructor_courses__single--enroll a.btn.btn-default {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    min-height: 44px !important;
    padding: 8px 6px !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    white-space: normal !important;
  }

  body .stm_lms_instructor_courses__single--enroll a.btn.btn-default span {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    font-size: 11.5px !important;
    line-height: 1.15 !important;
    letter-spacing: .01em !important;
    text-align: center !important;
    white-space: normal !important;
  }
}

.npp-theme .masterstudy-stats-block__icon {
  position: relative;
  overflow: hidden;
}

.npp-theme .masterstudy-stats-block__icon::after {
  content: "" !important;
  display: none !important;
}

.npp-theme .masterstudy-stats-block__icon .npp-analytics-svg-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  color: var(--npp-accent, #35d399);
}

.npp-theme .masterstudy-stats-block__icon .npp-analytics-svg-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.npp-theme .masterstudy-stats-block_success .masterstudy-stats-block__icon .npp-analytics-svg-icon,
.npp-theme .masterstudy-stats-block_completed .masterstudy-stats-block__icon .npp-analytics-svg-icon,
.npp-theme .masterstudy-stats-block_passed .masterstudy-stats-block__icon .npp-analytics-svg-icon {
  color: #26c99a;
}

.npp-theme .masterstudy-stats-block_warning .masterstudy-stats-block__icon .npp-analytics-svg-icon,
.npp-theme .masterstudy-stats-block_in_progress .masterstudy-stats-block__icon .npp-analytics-svg-icon {
  color: #d9a928;
}

.npp-theme .masterstudy-stats-block_danger .masterstudy-stats-block__icon .npp-analytics-svg-icon,
.npp-theme .masterstudy-stats-block_failed .masterstudy-stats-block__icon .npp-analytics-svg-icon,
.npp-theme .masterstudy-stats-block_not_started .masterstudy-stats-block__icon .npp-analytics-svg-icon {
  color: #e05c5c;
}

.npp-theme .masterstudy-settings-button::after,
.npp-theme .masterstudy-settings-dropdown::after,
.npp-theme [class*="analytics"] [class*="__search-icon"]::after,
.npp-theme [class*="analytics"] [class*="__search-icon"]::before,
.npp-theme .masterstudy-analytics-report-button::after,
.npp-theme .masterstudy-analytics-report-button::before,
.npp-theme .masterstudy-analytics-course-button::after,
.npp-theme .masterstudy-analytics-course-button::before,
.npp-theme .masterstudy-analytics-builder-button::after,
.npp-theme .masterstudy-analytics-builder-button::before,
.npp-theme .masterstudy-settings-modal__header-close::after,
.npp-theme .masterstudy-settings-modal__header-close::before {
  content: "" !important;
  display: none !important;
}

.npp-theme .masterstudy-settings-button,
.npp-theme .masterstudy-settings-dropdown,
.npp-theme [class*="analytics"] [class*="__search-icon"],
.npp-theme .masterstudy-analytics-report-button,
.npp-theme .masterstudy-analytics-course-button,
.npp-theme .masterstudy-analytics-builder-button,
.npp-theme .masterstudy-settings-modal__header-close {
  align-items: center;
  justify-content: center;
}

.npp-theme .masterstudy-settings-button .npp-analytics-control-svg,
.npp-theme .masterstudy-settings-dropdown .npp-analytics-control-svg,
.npp-theme [class*="analytics"] [class*="__search-icon"] .npp-analytics-control-svg,
.npp-theme .masterstudy-analytics-report-button .npp-analytics-control-svg,
.npp-theme .masterstudy-analytics-course-button .npp-analytics-control-svg,
.npp-theme .masterstudy-analytics-builder-button .npp-analytics-control-svg,
.npp-theme .masterstudy-settings-modal__header-close .npp-analytics-control-svg {
  display: inline-flex;
  width: 17px;
  height: 17px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: currentColor;
}

.npp-theme .masterstudy-settings-button .npp-analytics-control-svg,
.npp-theme .masterstudy-settings-dropdown .npp-analytics-control-svg,
.npp-theme [class*="analytics"] [class*="__search-icon"] .npp-analytics-control-svg,
.npp-theme .masterstudy-settings-modal__header-close .npp-analytics-control-svg {
  color: #4d5e6f;
}

.npp-theme .masterstudy-settings-button:hover .npp-analytics-control-svg,
.npp-theme .masterstudy-settings-dropdown:hover .npp-analytics-control-svg,
.npp-theme [class*="analytics"] [class*="__search-icon"]:hover .npp-analytics-control-svg,
.npp-theme .masterstudy-settings-modal__header-close:hover .npp-analytics-control-svg {
  color: var(--npp-accent, #35d399);
}

.npp-theme .masterstudy-settings-button .npp-analytics-control-svg svg,
.npp-theme .masterstudy-settings-dropdown .npp-analytics-control-svg svg,
.npp-theme [class*="analytics"] [class*="__search-icon"] .npp-analytics-control-svg svg,
.npp-theme .masterstudy-analytics-report-button .npp-analytics-control-svg svg,
.npp-theme .masterstudy-analytics-course-button .npp-analytics-control-svg svg,
.npp-theme .masterstudy-analytics-builder-button .npp-analytics-control-svg svg,
.npp-theme .masterstudy-settings-modal__header-close .npp-analytics-control-svg svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.npp-theme .masterstudy-analytics-report-button .npp-analytics-control-svg {
  margin-right: 5px;
}

.npp-theme [class*="masterstudy-analytics-"][class*="-page-table"] .masterstudy-analytics-report-button__wrapper,
.npp-theme [class*="masterstudy-analytics-"][class*="-page-table"] .masterstudy-analytics-report-button__wrapper:has(.masterstudy-analytics-course-button),
.npp-theme [class*="masterstudy-analytics-"][class*="-page-table"] .masterstudy-analytics-report-button__wrapper:has(.masterstudy-analytics-builder-button) {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.npp-theme [class*="masterstudy-analytics-"][class*="-page-table"] a.masterstudy-analytics-report-button,
.npp-theme [class*="masterstudy-analytics-"][class*="-page-table"] a.masterstudy-analytics-course-button,
.npp-theme [class*="masterstudy-analytics-"][class*="-page-table"] a.masterstudy-analytics-builder-button {
  display: inline-flex !important;
  min-width: 34px !important;
  min-height: 30px !important;
  opacity: 1 !important;
  visibility: visible !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--npp-accent, #35d399) !important;
  background: rgba(53, 211, 153, .12) !important;
  border: 1px solid rgba(53, 211, 153, .32) !important;
  border-radius: 7px !important;
  text-decoration: none !important;
}

.npp-theme [class*="masterstudy-analytics-"][class*="-page-table"] a.masterstudy-analytics-report-button:hover,
.npp-theme [class*="masterstudy-analytics-"][class*="-page-table"] a.masterstudy-analytics-course-button:hover,
.npp-theme [class*="masterstudy-analytics-"][class*="-page-table"] a.masterstudy-analytics-builder-button:hover {
  color: #06131f !important;
  background: var(--npp-accent, #35d399) !important;
  border-color: var(--npp-accent, #35d399) !important;
}

.npp-theme [class*="masterstudy-analytics-"][class*="-page-table"] td:last-child {
  min-width: 132px !important;
  text-align: center !important;
}

.npp-theme .masterstudy-analytics-rating {
  display: inline-flex !important;
  align-items: center !important;
  gap: 2px !important;
  min-width: 82px !important;
}

.npp-theme .masterstudy-analytics-rating__star::before {
  content: "\2605" !important;
  display: inline-block !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  color: #b6c0cb !important;
}

.npp-theme .masterstudy-analytics-rating__star.masterstudy-analytics-rating__star_filled::before {
  color: #f2b84b !important;
}

.npp-theme .masterstudy-settings-modal__header-close {
  position: relative !important;
  display: inline-flex !important;
  width: 30px !important;
  height: 30px !important;
  min-width: 30px !important;
  min-height: 30px !important;
  padding: 0 !important;
  overflow: visible !important;
  z-index: 2 !important;
}

.npp-theme .masterstudy-settings-modal__header-close .npp-analytics-control-svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 480px) {
  body.page-id-23788,
  body.page-id-23788 .npp-main,
  body.page-id-23788 .stm-lms-wrapper,
  body.page-id-23788 .stm-lms-wrapper.user-account-page,
  body.page-id-23788 .masterstudy-account,
  body.page-id-23788 .masterstudy-account-container {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  .page-id-23788 .stm_lms_acc_tabs {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 5px 50px 5px 5px !important;
    gap: 5px !important;
    overflow: hidden !important;
  }

  .page-id-23788 .stm_lms_acc_tabs__main {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 5px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: visible !important;
  }

  .page-id-23788 .stm_lms_acc_tabs__main .float_menu_item__inline {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: 42px !important;
    padding: 7px 8px !important;
    gap: 6px !important;
    justify-content: center !important;
  }

  .page-id-23788 .stm_lms_acc_tabs__main .float_menu_item__inline .float_menu_item__title {
    min-width: 0 !important;
    max-width: 100% !important;
    font-size: 10px !important;
    line-height: 1.1 !important;
    text-align: center !important;
    overflow-wrap: anywhere !important;
  }

  .page-id-23788 .stm_lms_acc_tabs__main .float_menu_item__inline .npp-account-svg-icon {
    width: 20px !important;
    min-width: 20px !important;
    height: 20px !important;
  }

  .page-id-23788 .stm_lms_acc_tabs i.stm_lms_acc_tabs__toggle,
  .page-id-23788 .stm_lms_acc_tabs__secondary {
    width: 44px !important;
    min-width: 44px !important;
    height: 44px !important;
  }

  .page-id-23788 .stm_lms_acc_tabs__secondary_inner {
    right: 0 !important;
    max-width: calc(100vw - 24px) !important;
  }

  .page-id-23788 [class*="masterstudy-analytics-"],
  .page-id-23788 [class*="masterstudy-analytics-"] * {
    box-sizing: border-box !important;
  }

  .page-id-23788 [class*="masterstudy-analytics-"] {
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .page-id-23788 .masterstudy-analytics-revenue-page,
  .page-id-23788 .masterstudy-analytics-engagement-page,
  .page-id-23788 .masterstudy-analytics-users-page,
  .page-id-23788 .masterstudy-analytics-reviews-page,
  .page-id-23788 .masterstudy-analytics-instructor-students-page,
  .user-account-page .masterstudy-analytics-revenue-page,
  .user-account-page .masterstudy-analytics-engagement-page,
  .user-account-page .masterstudy-analytics-users-page,
  .user-account-page .masterstudy-analytics-reviews-page,
  .user-account-page .masterstudy-analytics-instructor-students-page {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow-x: hidden !important;
  }

  .page-id-23788 [class*="masterstudy-analytics-"][class*="-page__header"] {
    width: 100% !important;
    max-width: 100% !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
    align-items: stretch !important;
    gap: 8px !important;
    overflow: hidden !important;
  }

  .page-id-23788 [class*="masterstudy-analytics-"][class*="-page__tabs"] {
    order: 4 !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 8px 0 0 !important;
    overflow: visible !important;
  }

  .page-id-23788 [class*="masterstudy-analytics-"][class*="-page__tabs"] .masterstudy-tabs {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    gap: 6px !important;
    padding: 0 !important;
    overflow: visible !important;
    background: transparent !important;
  }

  .page-id-23788 [class*="masterstudy-analytics-"][class*="-page__tabs"] .masterstudy-tabs__item {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    flex: initial !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 42px !important;
    margin: 0 !important;
    padding: 8px 6px !important;
    border-radius: 8px !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    text-transform: none !important;
    white-space: normal !important;
    text-align: center !important;
    overflow: visible !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
    hyphens: none !important;
  }

  .page-id-23788 [class*="masterstudy-analytics-"][class*="-page__tabs"] .masterstudy-tabs__item_active {
    min-width: 0 !important;
  }

  .page-id-23788 [class*="masterstudy-analytics-"][class*="-page-table"],
  .page-id-23788 [class*="masterstudy-analytics-"][class*="-page-table__wrapper"],
  .page-id-23788 [class*="masterstudy-analytics-"][class*="-page-table__header"] {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-x: hidden !important;
  }

  .page-id-23788 [class*="masterstudy-analytics-"] .masterstudy-datatable,
  .page-id-23788 [class*="masterstudy-analytics-"] .masterstudy-datatable .dt-container,
  .page-id-23788 [class*="masterstudy-analytics-"] .masterstudy-datatable .dt-layout-table,
  .page-id-23788 [class*="masterstudy-analytics-"] .masterstudy-datatable .dt-layout-cell {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .page-id-23788 [class*="masterstudy-analytics-"] .masterstudy-datatable .dt-layout-table {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
  }

  .page-id-23788 [class*="masterstudy-analytics-"] .masterstudy-datatable table.dataTable {
    width: max-content !important;
    min-width: 100% !important;
    max-width: none !important;
  }

  .page-id-23788 [class*="masterstudy-analytics-"] canvas,
  .page-id-23788 [class*="masterstudy-analytics-"] svg {
    max-width: 100% !important;
  }
}

@media (max-width: 640px) {
  .npp-theme .npp-footer-grid {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    gap: 28px !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
    text-align: center !important;
  }

  .npp-theme .npp-footer-grid > div {
    display: grid !important;
    justify-items: center !important;
    width: 100% !important;
    max-width: 320px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center !important;
  }

  .npp-theme .npp-footer-grid p,
  .npp-theme .npp-footer-grid h3,
  .npp-theme .npp-footer-grid a {
    width: 100% !important;
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center !important;
  }

  .npp-theme .npp-footer .npp-brand,
  .npp-theme .npp-footer .npp-brand a,
  .npp-theme .npp-footer .npp-brand-text,
  .npp-theme .npp-footer .npp-brand-img {
    justify-content: center !important;
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center !important;
  }

  .npp-theme .npp-footer .npp-brand-img {
    transform: translateX(12px) !important;
  }

  .npp-theme .npp-footer-bottom {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    width: 100% !important;
    text-align: center !important;
  }

  .npp-theme .npp-footer-bottom > * {
    width: 100% !important;
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center !important;
  }

  .npp-theme .npp-footer-bottom .npp-credit-link {
    display: inline !important;
    width: auto !important;
    margin-left: 4px !important;
  }

  .npp-theme .npp-about-pillars-section .npp-section-heading,
  .npp-theme .npp-about-pillars-section .npp-section-heading .npp-eyebrow,
  .npp-theme .npp-about-pillars-section .npp-section-heading h2 {
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center !important;
  }
}

@media (min-width: 481px) and (max-width: 1400px) {
  html,
  body.page-id-23788 {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  body.page-id-23788 .npp-main,
  body.page-id-23788 .stm-lms-wrapper,
  body.page-id-23788 .stm-lms-wrapper.user-account-page,
  body.page-id-23788 .stm-lms-wrapper.user-account-page > .container,
  body.page-id-23788 .masterstudy-account,
  body.page-id-23788 .masterstudy-account-container {
    width: 100% !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    overflow-x: hidden !important;
  }

  body.page-id-23788 .stm-lms-wrapper.user-account-page > .container {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  body.page-id-23788 [class*="masterstudy-analytics-"] {
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  body.page-id-23788 [class*="masterstudy-analytics-"][class*="-page__header"],
  body.page-id-23788 [class*="masterstudy-analytics-"][class*="-page-line"],
  body.page-id-23788 [class*="masterstudy-analytics-"][class*="-page-doughnut"],
  body.page-id-23788 [class*="masterstudy-analytics-"][class*="-page-stats"],
  body.page-id-23788 [class*="masterstudy-analytics-"][class*="-page-table"] {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-x: hidden !important;
  }

  body.page-id-23788 [class*="masterstudy-analytics-"][class*="-page-line__wrapper"],
  body.page-id-23788 [class*="masterstudy-analytics-"][class*="-page-doughnut__wrapper"],
  body.page-id-23788 [class*="masterstudy-analytics-"][class*="-page-stats__wrapper"],
  body.page-id-23788 [class*="masterstudy-analytics-"][class*="-page-table__wrapper"],
  body.page-id-23788 .masterstudy-date-field,
  body.page-id-23788 .masterstudy-settings-modal__items {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
  }

  body.page-id-23788 [class*="masterstudy-analytics-"][class*="-page-table__header"],
  body.page-id-23788 [class*="masterstudy-analytics-"] .masterstudy-datatable,
  body.page-id-23788 [class*="masterstudy-analytics-"] .masterstudy-datatable .dt-container,
  body.page-id-23788 [class*="masterstudy-analytics-"] .masterstudy-datatable .dt-layout-table,
  body.page-id-23788 [class*="masterstudy-analytics-"] .masterstudy-datatable .dt-layout-cell,
  body.page-id-23788 [class*="masterstudy-analytics-"] .masterstudy-datatable table.dataTable {
    width: max-content !important;
    min-width: 100% !important;
    max-width: none !important;
  }

  body.page-id-23788 [class*="masterstudy-analytics-"][class*="-page-table__header"] {
    flex-wrap: nowrap !important;
  }

  body.page-id-23788 .masterstudy-date-field-value,
  body.page-id-23788 .masterstudy-analytics-table__tabs .masterstudy-tabs,
  body.page-id-23788 [class*="masterstudy-analytics-"][class*="-page-table__search-wrapper"] {
    white-space: nowrap !important;
  }

  body.page-id-23788 .masterstudy-settings-modal,
  body.page-id-23788 .masterstudy-settings-modal__wrapper {
    max-width: calc(100vw - 32px) !important;
    min-width: 0 !important;
  }

  body.page-id-23788 [class*="masterstudy-analytics-"][class*="-page-table__wrapper"] {
    scrollbar-gutter: stable;
    padding-bottom: 8px !important;
  }

  body.page-id-23788 [class*="masterstudy-analytics-"][class*="-page-table__wrapper"] > .masterstudy-datatable {
    width: 1120px !important;
    min-width: 1120px !important;
    max-width: none !important;
  }

  body.page-id-23788 .masterstudy-analytics-engagement-page-table__wrapper > .masterstudy-datatable,
  body.page-id-23788 .masterstudy-analytics-reviews-page-table__wrapper > .masterstudy-datatable {
    width: 1240px !important;
    min-width: 1240px !important;
  }

  body.page-id-23788 .masterstudy-analytics-instructor-students-page-table__wrapper > .masterstudy-datatable {
    width: 1040px !important;
    min-width: 1040px !important;
  }

  body.page-id-23788 [class*="masterstudy-analytics-"] .masterstudy-datatable .dt-layout-table {
    display: block !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: none !important;
    overflow: visible !important;
  }

  body.page-id-23788 [class*="masterstudy-analytics-"] .masterstudy-datatable table.dataTable {
    width: 100% !important;
    min-width: 100% !important;
    table-layout: auto !important;
  }

  body.page-id-23788 [class*="masterstudy-analytics-"] .masterstudy-datatable table.dataTable th,
  body.page-id-23788 [class*="masterstudy-analytics-"] .masterstudy-datatable table.dataTable td {
    min-width: 76px !important;
    white-space: normal !important;
  }

  body.page-id-23788 [class*="masterstudy-analytics-"] .masterstudy-datatable table.dataTable th:last-child,
  body.page-id-23788 [class*="masterstudy-analytics-"] .masterstudy-datatable table.dataTable td:last-child {
    min-width: 190px !important;
    white-space: nowrap !important;
  }

  body.page-id-23788 [class*="masterstudy-analytics-"][class*="-page-table"] .masterstudy-analytics-report-button__wrapper {
    white-space: nowrap !important;
  }

  body.page-id-23788 [class*="masterstudy-analytics-"][class*="-page-table__wrapper"] {
    overflow-x: scroll !important;
    overflow-y: hidden !important;
  }

  body.page-id-23788 [class*="masterstudy-analytics-"][class*="-page-table__wrapper"] .masterstudy-datatable,
  body.page-id-23788 [class*="masterstudy-analytics-"][class*="-page-table__wrapper"] .dt-container,
  body.page-id-23788 [class*="masterstudy-analytics-"][class*="-page-table__wrapper"] .dt-layout-row,
  body.page-id-23788 [class*="masterstudy-analytics-"][class*="-page-table__wrapper"] .dt-layout-cell,
  body.page-id-23788 [class*="masterstudy-analytics-"][class*="-page-table__wrapper"] .dt-layout-table,
  body.page-id-23788 [class*="masterstudy-analytics-"][class*="-page-table__wrapper"] table.dataTable {
    width: 1120px !important;
    min-width: 1120px !important;
    max-width: none !important;
  }

  body.page-id-23788 .masterstudy-analytics-engagement-page-table__wrapper .masterstudy-datatable,
  body.page-id-23788 .masterstudy-analytics-engagement-page-table__wrapper .dt-container,
  body.page-id-23788 .masterstudy-analytics-engagement-page-table__wrapper .dt-layout-row,
  body.page-id-23788 .masterstudy-analytics-engagement-page-table__wrapper .dt-layout-cell,
  body.page-id-23788 .masterstudy-analytics-engagement-page-table__wrapper .dt-layout-table,
  body.page-id-23788 .masterstudy-analytics-engagement-page-table__wrapper table.dataTable,
  body.page-id-23788 .masterstudy-analytics-reviews-page-table__wrapper .masterstudy-datatable,
  body.page-id-23788 .masterstudy-analytics-reviews-page-table__wrapper .dt-container,
  body.page-id-23788 .masterstudy-analytics-reviews-page-table__wrapper .dt-layout-row,
  body.page-id-23788 .masterstudy-analytics-reviews-page-table__wrapper .dt-layout-cell,
  body.page-id-23788 .masterstudy-analytics-reviews-page-table__wrapper .dt-layout-table,
  body.page-id-23788 .masterstudy-analytics-reviews-page-table__wrapper table.dataTable {
    width: 1240px !important;
    min-width: 1240px !important;
  }

  body.page-id-23788 .masterstudy-analytics-instructor-students-page-table__wrapper .masterstudy-datatable,
  body.page-id-23788 .masterstudy-analytics-instructor-students-page-table__wrapper .dt-container,
  body.page-id-23788 .masterstudy-analytics-instructor-students-page-table__wrapper .dt-layout-row,
  body.page-id-23788 .masterstudy-analytics-instructor-students-page-table__wrapper .dt-layout-cell,
  body.page-id-23788 .masterstudy-analytics-instructor-students-page-table__wrapper .dt-layout-table,
  body.page-id-23788 .masterstudy-analytics-instructor-students-page-table__wrapper table.dataTable {
    width: 1040px !important;
    min-width: 1040px !important;
  }

  body.page-id-23788 .npp-analytics-table-scroll {
    overflow-x: scroll !important;
    overflow-y: hidden !important;
    scrollbar-width: thin;
    scrollbar-color: rgba(77, 94, 111, .55) rgba(219, 224, 233, .85);
  }

  body.page-id-23788 .npp-analytics-table-scroll::-webkit-scrollbar {
    height: 10px;
  }

  body.page-id-23788 .npp-analytics-table-scroll::-webkit-scrollbar-track {
    background: rgba(219, 224, 233, .85);
    border-radius: 999px;
  }

  body.page-id-23788 .npp-analytics-table-scroll::-webkit-scrollbar-thumb {
    background: rgba(77, 94, 111, .55);
    border-radius: 999px;
  }

  body.page-id-23788 [class*="masterstudy-analytics-"][class*="-page-table__wrapper"] {
    overflow-x: hidden !important;
    overflow-y: visible !important;
  }

  body.page-id-23788 [class*="masterstudy-analytics-"] .masterstudy-datatable {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  body.page-id-23788 [class*="masterstudy-analytics-"] .masterstudy-datatable .dt-container,
  body.page-id-23788 [class*="masterstudy-analytics-"] .masterstudy-datatable .dt-layout-row,
  body.page-id-23788 [class*="masterstudy-analytics-"] .masterstudy-datatable .dt-layout-cell {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  body.page-id-23788 [class*="masterstudy-analytics-"] .masterstudy-datatable .dt-layout-table {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(77, 94, 111, .55) rgba(219, 224, 233, .85);
  }

  body.page-id-23788 [class*="masterstudy-analytics-"] .masterstudy-datatable .dt-layout-table::-webkit-scrollbar {
    height: 10px;
  }

  body.page-id-23788 [class*="masterstudy-analytics-"] .masterstudy-datatable .dt-layout-table::-webkit-scrollbar-track {
    background: rgba(219, 224, 233, .85);
    border-radius: 999px;
  }

  body.page-id-23788 [class*="masterstudy-analytics-"] .masterstudy-datatable .dt-layout-table::-webkit-scrollbar-thumb {
    background: rgba(77, 94, 111, .55);
    border-radius: 999px;
  }

  body.page-id-23788 [class*="masterstudy-analytics-"] .masterstudy-datatable .dt-layout-table table.dataTable {
    width: 150% !important;
    min-width: 1120px !important;
    max-width: none !important;
  }

  body.page-id-23788 .masterstudy-analytics-engagement-page-table__wrapper .dt-layout-table table.dataTable,
  body.page-id-23788 .masterstudy-analytics-reviews-page-table__wrapper .dt-layout-table table.dataTable {
    width: 180% !important;
    min-width: 1240px !important;
  }

  body.page-id-23788 .masterstudy-analytics-instructor-students-page-table__wrapper .dt-layout-table table.dataTable {
    width: 140% !important;
    min-width: 1040px !important;
  }
}

@media (max-width: 480px) {
  body.page-id-23788 .stm_lms_acc_tabs {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 6px 56px 6px 6px !important;
    overflow: hidden !important;
  }

  body.page-id-23788 .stm_lms_acc_tabs__main {
    display: flex !important;
    flex: 1 1 auto !important;
    gap: 6px !important;
    width: auto !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch;
  }

  body.page-id-23788 .stm_lms_acc_tabs__main::-webkit-scrollbar {
    display: none !important;
  }

  body.page-id-23788 .stm_lms_acc_tabs__main .float_menu_item__inline {
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 132px !important;
    max-width: 168px !important;
    height: 42px !important;
    padding: 7px 10px !important;
    justify-content: flex-start !important;
    gap: 7px !important;
  }

  body.page-id-23788 .stm_lms_acc_tabs__main .float_menu_item__inline .float_menu_item__title {
    width: auto !important;
    min-width: 0 !important;
    max-width: 104px !important;
    font-size: 10px !important;
    line-height: 1.1 !important;
    text-align: left !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  body.page-id-23788 .stm_lms_acc_tabs__secondary {
    position: absolute !important;
    top: 50% !important;
    right: 6px !important;
    width: 44px !important;
    min-width: 44px !important;
    height: 44px !important;
    transform: translateY(-50%) !important;
  }

  body.page-id-23788 .stm_lms_acc_tabs i.stm_lms_acc_tabs__toggle {
    width: 44px !important;
    min-width: 44px !important;
    height: 44px !important;
  }
}

body.page-id-23788 .masterstudy-analytics-short-report-page {
  display: flex !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  overflow: visible !important;
}

body.page-id-23788 .masterstudy-analytics-short-report-page__tabs {
  display: flex !important;
  width: auto !important;
  max-width: 100% !important;
  min-width: 0 !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  -webkit-overflow-scrolling: touch;
}

body.page-id-23788 .masterstudy-analytics-short-report-page__tabs .masterstudy-tabs {
  display: flex !important;
  grid-template-columns: none !important;
  width: max-content !important;
  min-width: max-content !important;
  max-width: none !important;
  height: 58px !important;
  gap: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
  background: transparent !important;
}

body.page-id-23788 .masterstudy-analytics-short-report-page__tabs .masterstudy-tabs__item {
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: auto !important;
  max-width: none !important;
  min-height: 0 !important;
  padding: 0 12px !important;
  white-space: nowrap !important;
  overflow: visible !important;
  text-align: center !important;
}

body.page-id-23788 .masterstudy-analytics-short-report-page-stats,
body.page-id-23788 .masterstudy-analytics-short-report-page-stats__wrapper {
  display: flex !important;
  flex-wrap: wrap !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  overflow: visible !important;
}

body.page-id-23788 .masterstudy-analytics-short-report-page-stats__block {
  display: flex !important;
  flex: 1 1 25% !important;
  min-width: 25% !important;
  max-width: 100% !important;
}

@media (max-width: 1024px) {
  body.page-id-23788 .masterstudy-analytics-short-report-page-stats__block {
    flex-basis: 50% !important;
    min-width: 50% !important;
  }
}

@media (max-width: 576px) {
  body.page-id-23788 .masterstudy-analytics-short-report-page {
    gap: 10px !important;
    height: auto !important;
  }

  body.page-id-23788 .masterstudy-analytics-short-report-page__tabs {
    display: block !important;
    order: 3 !important;
    width: 100% !important;
    max-width: 100% !important;
    max-height: none !important;
    height: auto !important;
    margin-bottom: 12px !important;
    overflow: visible !important;
  }

  body.page-id-23788 .masterstudy-analytics-short-report-page__tabs .masterstudy-tabs {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    max-height: none !important;
    height: auto !important;
    gap: 8px !important;
    padding-bottom: 4px !important;
    overflow: visible !important;
  }

  body.page-id-23788 .masterstudy-analytics-short-report-page__tabs .masterstudy-tabs__item {
    display: flex !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    min-height: 40px !important;
    padding: 8px 6px !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 8px !important;
    font-size: 11px !important;
    line-height: 1.15 !important;
    white-space: normal !important;
    overflow: visible !important;
    text-align: center !important;
  }

  body.page-id-23788 .masterstudy-analytics-short-report-page-stats__block {
    flex-basis: 100% !important;
    min-width: 100% !important;
  }
}

@media (max-width: 380px) {
  body.page-id-23788 .masterstudy-analytics-short-report-page__tabs {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body.page-id-23788 .masterstudy-analytics-short-report-page__tabs .masterstudy-tabs {
    display: flex !important;
    flex-wrap: nowrap !important;
    grid-template-columns: none !important;
    width: max-content !important;
    min-width: max-content !important;
    max-width: none !important;
    gap: 0 !important;
  }

  body.page-id-23788 .masterstudy-analytics-short-report-page__tabs .masterstudy-tabs__item {
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 58px !important;
    max-width: none !important;
    padding-left: 7px !important;
    padding-right: 7px !important;
    font-size: 10px !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
    overflow: visible !important;
  }
}

@media (min-width: 768px) and (max-width: 1180px) {
  body.page-id-23788 .stm_lms_user_info_top {
    align-items: flex-start !important;
    gap: 18px !important;
  }

  body.page-id-23788 .stm_lms_user_info_top__info {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
  }

  body.page-id-23788 .stm_lms_user_info_top__info > div {
    margin-left: 0 !important;
  }

  body.page-id-23788 .stm-lms-user_rating {
    display: grid !important;
    grid-template-columns: auto auto !important;
    align-items: baseline !important;
    justify-content: start !important;
    column-gap: 5px !important;
    row-gap: 3px !important;
    width: 126px !important;
    min-width: 126px !important;
    max-width: 126px !important;
    margin: 0 !important;
    white-space: nowrap !important;
  }

  body.page-id-23788 .stm-lms-user_rating .star-rating {
    display: inline-flex !important;
    align-items: center !important;
    margin: 0 !important;
    line-height: 1 !important;
  }

  body.page-id-23788 .stm-lms-user_rating .rating {
    display: inline-flex !important;
    align-items: baseline !important;
    margin: 0 !important;
    font-size: 13px !important;
    line-height: 1.1 !important;
    transform: translateY(-1px) !important;
  }

  body.page-id-23788 .stm-lms-user_rating__total {
    grid-column: 1 / -1 !important;
    display: inline-flex !important;
    align-items: center !important;
    margin: 0 !important;
    color: #7a8794 !important;
    font-size: 11px !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
  }
}

body.page-id-23788 .stm_lms_instructor_info {
  display: flex !important;
  align-items: flex-start !important;
  gap: 26px !important;
  width: 100% !important;
}

body.page-id-23788 .stm_lms_instructor_edit_avatar {
  flex: 0 0 215px !important;
  width: 215px !important;
  min-width: 215px !important;
  margin: 0 !important;
  text-align: left !important;
}

body.page-id-23788 .stm_lms_instructor_info .stm-lms-user-avatar-edit,
body.page-id-23788 .stm_lms_instructor_info .stm-lms-user_avatar,
body.page-id-23788 .stm_lms_instructor_info .stm-lms-user_avatar img {
  width: 100% !important;
  max-width: 215px !important;
}

body.page-id-23788 .stm_lms_instructor_info .stm_lms_user_bio {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding-top: 0 !important;
  text-align: left !important;
}

body.page-id-23788 .stm_lms_instructor_info .stm_lms_user_bio h3 {
  margin-top: 0 !important;
}

@media (max-width: 700px) {
  body.page-id-23788 .stm_lms_instructor_info {
    flex-direction: column !important;
    align-items: center !important;
    gap: 18px !important;
    text-align: center !important;
  }

  body.page-id-23788 .stm_lms_instructor_edit_avatar {
    width: min(215px, 100%) !important;
    min-width: 0 !important;
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center !important;
  }

  body.page-id-23788 .stm_lms_instructor_info .stm_lms_user_bio {
    width: 100% !important;
    text-align: center !important;
  }
}


body.page-id-23788 .stm_lms_instructor_info .stm-lms-user-avatar-edit {
  position: relative !important;
  display: block !important;
  overflow: hidden !important;
  border-radius: 10px !important;
}

body.page-id-23788 .stm_lms_instructor_info .stm-lms-user_avatar,
body.page-id-23788 .stm_lms_instructor_info .stm-lms-user_avatar img {
  display: block !important;
  border-radius: 10px !important;
}

body.page-id-23788 .stm_lms_instructor_info .stm-lms-user_avatar:before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 4 !important;
  border-radius: 10px !important;
  background: rgba(2, 13, 28, 0.34) !important;
  opacity: 0 !important;
  transition: opacity 0.2s ease !important;
}

body.page-id-23788 .stm_lms_instructor_info .stm-lms-user-avatar-edit:hover .stm-lms-user_avatar:before,
body.page-id-23788 .stm_lms_instructor_info .stm-lms-user-avatar-edit:focus-within .stm-lms-user_avatar:before {
  opacity: 1 !important;
}

body.page-id-23788 .stm_lms_instructor_info .stm-lms-user-avatar-edit input[type="file"] {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  z-index: 20 !important;
  width: 140px !important;
  height: 38px !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: translate(-50%, -50%) !important;
  cursor: pointer !important;
  opacity: 0 !important;
}

body.page-id-23788 .stm_lms_instructor_info i.stmlms-dashcam {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  bottom: auto !important;
  z-index: 12 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  width: auto !important;
  min-width: 140px !important;
  height: 38px !important;
  margin: 0 !important;
  padding: 0 15px !important;
  border-radius: 999px !important;
  background: var(--npp-green) !important;
  color: #04111f !important;
  box-shadow: 0 12px 28px rgba(42, 214, 158, 0.28) !important;
  font-family: inherit !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  font-style: normal !important;
  line-height: 1 !important;
  text-align: center !important;
  transform: translate(-50%, -50%) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease !important;
}

body.page-id-23788 .stm_lms_instructor_info .stm-lms-user-avatar-edit:hover i.stmlms-dashcam,
body.page-id-23788 .stm_lms_instructor_info .stm-lms-user-avatar-edit:focus-within i.stmlms-dashcam {
  opacity: 1 !important;
  transform: translate(-50%, -50%) scale(1.02) !important;
}

body.page-id-23788 .stm_lms_instructor_info i.stmlms-dashcam:before {
  content: var(--stmlms-icon-camera) !important;
  display: inline-block !important;
  width: auto !important;
  height: auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: currentColor !important;
  font-family: "Linearicons-Free", "stmlms" !important;
  font-size: 14px !important;
  line-height: 1 !important;
}

body.page-id-23788 .stm_lms_instructor_info i.stmlms-dashcam:after {
  content: "Alterar foto" !important;
}

body.page-id-23788 .stm_lms_instructor_info i.stmlms-cross.delete_avatar {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  z-index: 22 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 34px !important;
  height: 34px !important;
  border: 1px solid rgba(255, 255, 255, 0.65) !important;
  border-radius: 999px !important;
  background: #ef4444 !important;
  color: #fff !important;
  box-shadow: 0 12px 24px rgba(239, 68, 68, 0.3) !important;
  font-family: Arial, sans-serif !important;
  font-style: normal !important;
  line-height: 1 !important;
  cursor: pointer !important;
  opacity: 0 !important;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease !important;
}

body.page-id-23788 .stm_lms_instructor_info .stm-lms-user-avatar-edit:hover i.stmlms-cross.delete_avatar,
body.page-id-23788 .stm_lms_instructor_info .stm-lms-user-avatar-edit:focus-within i.stmlms-cross.delete_avatar {
  opacity: 1 !important;
}

body.page-id-23788 .stm_lms_instructor_info i.stmlms-cross.delete_avatar:hover {
  background: #dc2626 !important;
  transform: scale(1.04) !important;
}

body.page-id-23788 .stm_lms_instructor_info i.stmlms-cross.delete_avatar:before {
  content: "\00d7" !important;
  display: block !important;
  width: auto !important;
  height: auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: currentColor !important;
  font-family: Arial, sans-serif !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  line-height: 30px !important;
}

body.page-id-23788 .stm_lms_instructor_info i.stmlms-cross.delete_avatar:after {
  content: "Remover foto" !important;
  position: absolute !important;
  top: 50% !important;
  right: calc(100% + 8px) !important;
  z-index: 1 !important;
  padding: 7px 10px !important;
  border-radius: 8px !important;
  background: #071426 !important;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(2, 13, 28, 0.24) !important;
  font-family: inherit !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  transform: translateY(-50%) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.2s ease !important;
}

body.page-id-23788 .stm_lms_instructor_info i.stmlms-cross.delete_avatar:hover:after {
  opacity: 1 !important;
}

@media (max-width: 700px) {
  body.page-id-23788 .stm_lms_instructor_info .stm-lms-user_avatar:before,
  body.page-id-23788 .stm_lms_instructor_info i.stmlms-dashcam,
  body.page-id-23788 .stm_lms_instructor_info i.stmlms-cross.delete_avatar {
    opacity: 1 !important;
  }

  body.page-id-23788 .stm_lms_instructor_info i.stmlms-cross.delete_avatar:after {
    display: none !important;
  }
}


body.page-id-23788 .stm-lms-user_edit_profile_btn.__bordered a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px !important;
}

body.page-id-23788 .stm-lms-user_edit_profile_btn.__bordered i.stmlms-cog-2 {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 18px !important;
  height: 18px !important;
  color: currentColor !important;
  font-style: normal !important;
  line-height: 1 !important;
}

body.page-id-23788 .stm-lms-user_edit_profile_btn.__bordered i.stmlms-cog-2:before {
  content: "" !important;
  display: block !important;
  width: 18px !important;
  height: 18px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: currentColor !important;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27black%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpath d=%27M12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z%27/%3E%3Cpath d=%27M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 1 1-2.83 2.83l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 1 1-4 0v-.09a1.65 1.65 0 0 0-1-1.51 1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 1 1-2.83-2.83l.06-.06A1.65 1.65 0 0 0 4.6 15a1.65 1.65 0 0 0-1.51-1H3a2 2 0 1 1 0-4h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 1 1 2.83-2.83l.06.06A1.65 1.65 0 0 0 8.92 4.6 1.65 1.65 0 0 0 10 3.09V3a2 2 0 1 1 4 0v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 1 1 2.83 2.83l-.06.06A1.65 1.65 0 0 0 19.4 9c.14.47.5.84.96 1H21a2 2 0 1 1 0 4h-.09c-.46.16-.82.53-.96 1Z%27/%3E%3C/svg%3E") center / contain no-repeat !important;
  mask: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27black%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpath d=%27M12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z%27/%3E%3Cpath d=%27M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 1 1-2.83 2.83l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 1 1-4 0v-.09a1.65 1.65 0 0 0-1-1.51 1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 1 1-2.83-2.83l.06-.06A1.65 1.65 0 0 0 4.6 15a1.65 1.65 0 0 0-1.51-1H3a2 2 0 1 1 0-4h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 1 1 2.83-2.83l.06.06A1.65 1.65 0 0 0 8.92 4.6 1.65 1.65 0 0 0 10 3.09V3a2 2 0 1 1 4 0v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 1 1 2.83 2.83l-.06.06A1.65 1.65 0 0 0 19.4 9c.14.47.5.84.96 1H21a2 2 0 1 1 0 4h-.09c-.46.16-.82.53-.96 1Z%27/%3E%3C/svg%3E") center / contain no-repeat !important;
}


body.page-id-23788 .stm_lms_become_instructor {
  background: #ffffff !important;
  color: #06111f !important;
  border: 1px solid rgba(12, 31, 52, 0.12) !important;
  box-shadow: 0 14px 34px rgba(2, 13, 28, 0.08) !important;
}

body.page-id-23788 .stm_lms_become_instructor h3,
body.page-id-23788 .stm_lms_become_instructor p {
  color: #06111f !important;
}

body.page-id-23788 .stm_lms_become_instructor p {
  opacity: 0.76 !important;
}

body.page-id-23788 .stm_lms_become_instructor > i,
body.page-id-23788 .stm_lms_become_instructor .secondary_color {
  color: var(--npp-green) !important;
}

body.page-id-23788 .stm_lms_become_instructor .btn,
body.page-id-23788 .stm_lms_become_instructor .btn-default,
body.page-id-23788 .stm_lms_become_instructor .lms_become_instructor_btn {
  background: var(--npp-green) !important;
  border-color: var(--npp-green) !important;
  color: #04111f !important;
  box-shadow: 0 12px 28px rgba(42, 214, 158, 0.22) !important;
}

body.page-id-23788 .stm_lms_become_instructor .btn:hover,
body.page-id-23788 .stm_lms_become_instructor .btn-default:hover,
body.page-id-23788 .stm_lms_become_instructor .lms_become_instructor_btn:hover {
  filter: brightness(1.04) !important;
  transform: translateY(-1px) !important;
}


body.page-id-23788 .stm_lms_user_side .stm_lms_become_instructor.masterstudy-enterprise-modal-parent {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
}

body.page-id-23788 .stm_lms_user_side .stm_lms_become_instructor.masterstudy-enterprise-modal-parent .lms_become_instructor_btn,
body.page-id-23788 .stm_lms_user_side .stm_lms_become_instructor.masterstudy-enterprise-modal-parent .btn,
body.page-id-23788 .stm_lms_user_side .stm_lms_become_instructor.masterstudy-enterprise-modal-parent .btn-default {
  box-sizing: border-box !important;
  max-width: 100% !important;
  white-space: normal !important;
  text-align: center !important;
}

@media (min-width: 768px) and (max-width: 1180px) {
  body.page-id-23788 .stm_lms_user_side .stm_lms_become_instructor.masterstudy-enterprise-modal-parent {
    padding-right: 18px !important;
    padding-left: 18px !important;
  }

  body.page-id-23788 .stm_lms_user_side .stm_lms_become_instructor.masterstudy-enterprise-modal-parent .lms_become_instructor_btn,
  body.page-id-23788 .stm_lms_user_side .stm_lms_become_instructor.masterstudy-enterprise-modal-parent .btn,
  body.page-id-23788 .stm_lms_user_side .stm_lms_become_instructor.masterstudy-enterprise-modal-parent .btn-default {
    position: relative !important;
    right: auto !important;
    left: auto !important;
    display: inline-flex !important;
    width: 100% !important;
    min-width: 0 !important;
    padding-right: 12px !important;
    padding-left: 12px !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
  }
}

@media (max-width: 700px) {
  body.page-id-23788 .stm_lms_user_side .stm_lms_become_instructor.masterstudy-enterprise-modal-parent {
    width: calc(100% - 20px) !important;
    max-width: 238px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    padding: 24px 20px 28px !important;
  }

  body.page-id-23788 .stm_lms_user_side .stm_lms_become_instructor.masterstudy-enterprise-modal-parent h3 {
    font-size: 18px !important;
    line-height: 1.15 !important;
  }

  body.page-id-23788 .stm_lms_user_side .stm_lms_become_instructor.masterstudy-enterprise-modal-parent p {
    font-size: 12px !important;
    line-height: 1.35 !important;
  }

  body.page-id-23788 .stm_lms_user_side .stm_lms_become_instructor.masterstudy-enterprise-modal-parent .lms_become_instructor_btn,
  body.page-id-23788 .stm_lms_user_side .stm_lms_become_instructor.masterstudy-enterprise-modal-parent .btn,
  body.page-id-23788 .stm_lms_user_side .stm_lms_become_instructor.masterstudy-enterprise-modal-parent .btn-default {
    width: 100% !important;
    min-width: 0 !important;
    padding: 13px 10px !important;
    font-size: 12px !important;
    line-height: 1.15 !important;
  }
}


@keyframes nppEnterpriseButtonPulse {
  0%, 100% {
    box-shadow: 0 10px 24px rgba(39, 211, 154, 0.26);
    transform: translateY(0) scale(1);
  }
  50% {
    box-shadow: 0 16px 34px rgba(39, 211, 154, 0.42);
    transform: translateY(-1px) scale(1.025);
  }
}

.stm_lms_become_instructor.masterstudy-enterprise-modal-parent.npp-enterprise-card-fixed,
.stm_lms_become_instructor.masterstudy-enterprise-modal-parent.npp-enterprise-card-fixed h3,
.stm_lms_become_instructor.masterstudy-enterprise-modal-parent.npp-enterprise-card-fixed p,
.stm_lms_become_instructor.masterstudy-enterprise-modal-parent.npp-enterprise-card-fixed span {
  text-shadow: none !important;
}

.stm_lms_become_instructor.masterstudy-enterprise-modal-parent .npp-enterprise-request-button {
  animation: nppEnterpriseButtonPulse 2.2s ease-in-out infinite !important;
  will-change: transform, box-shadow !important;
}

.stm_lms_become_instructor.masterstudy-enterprise-modal-parent .npp-enterprise-request-button:hover {
  animation-play-state: paused !important;
  transform: translateY(-2px) scale(1.02) !important;
}


.npp-theme #stm_lms_chat .stm_lms_chat_messages__send {
  display: grid !important;
  gap: 14px !important;
  width: 100% !important;
  margin: 0 0 34px !important;
  padding: 22px !important;
  border: 1px solid rgba(35, 58, 95, .12) !important;
  border-radius: 18px !important;
  background: #ffffff !important;
  box-shadow: 0 18px 44px rgba(11, 30, 54, .08) !important;
}

.npp-theme #stm_lms_chat .stm_lms_chat_messages__send h4 {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  align-items: center !important;
  margin: 0 !important;
  color: #061121 !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
}

.npp-theme #stm_lms_chat .stm_lms_chat_messages__send-link {
  color: #385bce !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

.npp-theme #stm_lms_chat .stm_lms_chat_messages__send-message {
  display: block !important;
  width: 100% !important;
  min-height: 132px !important;
  max-height: 260px !important;
  margin: 0 !important;
  padding: 16px 18px !important;
  resize: vertical !important;
  border: 1px solid rgba(73, 96, 127, .22) !important;
  border-radius: 16px !important;
  background: #f8fafc !important;
  color: #061121 !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1.55 !important;
  outline: none !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .82) !important;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease !important;
}

.npp-theme #stm_lms_chat .stm_lms_chat_messages__send-message::placeholder {
  color: #7b8ba3 !important;
  opacity: 1 !important;
}

.npp-theme #stm_lms_chat .stm_lms_chat_messages__send-message:focus {
  border-color: rgba(39, 211, 154, .72) !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 4px rgba(39, 211, 154, .14) !important;
}

.npp-theme #stm_lms_chat .stm_lms_chat_messages__send-btn.btn.btn-default {
  justify-self: start !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 48px !important;
  min-width: 170px !important;
  margin: 0 !important;
  padding: 13px 22px !important;
  border: 0 !important;
  border-radius: 14px !important;
  background: linear-gradient(135deg, #27d39a, #4fe0b3) !important;
  color: #061121 !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  letter-spacing: .01em !important;
  text-transform: none !important;
  box-shadow: 0 16px 34px rgba(39, 211, 154, .26) !important;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease !important;
}

.npp-theme #stm_lms_chat .stm_lms_chat_messages__send-btn.btn.btn-default:hover,
.npp-theme #stm_lms_chat .stm_lms_chat_messages__send-btn.btn.btn-default:focus {
  transform: translateY(-1px) !important;
  filter: saturate(1.05) !important;
  box-shadow: 0 20px 42px rgba(39, 211, 154, .34) !important;
}

.npp-theme #stm_lms_chat .stm_lms_chat_messages__send-btn span {
  color: inherit !important;
  font: inherit !important;
}

.npp-theme #stm_lms_chat .stm_lms_chat_messages__send-response {
  margin: 0 !important;
  color: #d43f3a !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

.npp-chat-load-older {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  min-height: 38px !important;
  margin: 0 auto 18px !important;
  padding: 10px 16px !important;
  border: 1px solid rgba(56, 91, 206, .24) !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: #385bce !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  cursor: pointer !important;
  box-shadow: 0 10px 24px rgba(11, 30, 54, .08) !important;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease !important;
}

.npp-chat-load-older:hover,
.npp-chat-load-older:focus-visible {
  transform: translateY(-1px) !important;
  border-color: rgba(56, 91, 206, .45) !important;
  background: #f7fbff !important;
  box-shadow: 0 14px 30px rgba(56, 91, 206, .14) !important;
}

.npp-chat-load-older:disabled {
  cursor: wait !important;
  opacity: .7 !important;
  transform: none !important;
}

.npp-chat-history-start {
  width: fit-content !important;
  margin: 0 auto 18px !important;
  padding: 8px 14px !important;
  border: 1px solid rgba(73, 96, 127, .18) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, .82) !important;
  color: #49607f !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  text-align: center !important;
  box-shadow: 0 8px 18px rgba(11, 30, 54, .06) !important;
}

@media (max-width: 700px) {
  .npp-theme #stm_lms_chat .stm_lms_chat_messages__send {
    gap: 12px !important;
    padding: 16px !important;
    border-radius: 16px !important;
  }

  .npp-theme #stm_lms_chat .stm_lms_chat_messages__send h4 {
    justify-content: center !important;
    text-align: center !important;
    font-size: 15px !important;
  }

  .npp-theme #stm_lms_chat .stm_lms_chat_messages__send-message {
    min-height: 118px !important;
    padding: 14px 15px !important;
    border-radius: 14px !important;
    font-size: 14px !important;
  }

  .npp-theme #stm_lms_chat .stm_lms_chat_messages__send-btn.btn.btn-default {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 46px !important;
  }
}

.npp-theme #stm_lms_chat .stm_lms_chat__conversation.npp-chat-conversation-read .stm_lms_chat__conversation__messages_num {
  display: none !important;
}

@media (max-width: 700px) {
  .npp-theme #stm_lms_chat .stm_lms_chat__conversations {
    margin-bottom: 16px !important;
  }

  .npp-theme #stm_lms_chat .stm_lms_chat__conversation {
    padding: 14px 48px 14px 14px !important;
    border-radius: 13px !important;
  }

  .npp-theme #stm_lms_chat .stm_lms_chat__conversation__image {
    flex-basis: 40px !important;
    width: 40px !important;
    max-width: 40px !important;
    margin-right: 12px !important;
  }

  .npp-theme #stm_lms_chat .stm_lms_chat__conversation__image img {
    width: 40px !important;
    height: 40px !important;
  }

  .npp-theme #stm_lms_chat .stm_lms_chat__chat-container {
    margin-top: 0 !important;
  }

  .npp-theme #stm_lms_chat .stm_lms_chat_companion {
    margin: 0 0 18px !important;
    padding-right: 48px !important;
  }
}

.npp-chat-user-removed {
  color: #64748b !important;
  font-style: italic !important;
  -webkit-text-fill-color: #64748b !important;
}

.npp-chat-user-removed-avatar {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background: #e2e8f0 !important;
  color: #475569 !important;
  font-weight: 800 !important;
}

.stm_lms_chat_companion__image .npp-chat-user-removed-avatar {
  width: 80px !important;
  height: 80px !important;
  font-size: 24px !important;
}


/* Wishlist compact course cards */
:is(.page-id-20763, .page-id-23788) :is(.masterstudy-account-wishlist, .stm_lms_wishlist, .stm-lms-wrapper-wishlist) .stm_lms_courses__grid,
:is(.page-id-20763, .page-id-23788) :is(.masterstudy-account-wishlist, .stm_lms_wishlist, .stm-lms-wrapper-wishlist) .stm_lms_courses {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 360px)) !important;
  justify-content: start !important;
  align-items: start !important;
  gap: 18px !important;
  width: 100% !important;
  margin: 0 !important;
}

:is(.page-id-20763, .page-id-23788) :is(.masterstudy-account-wishlist, .stm_lms_wishlist, .stm-lms-wrapper-wishlist) .stm_lms_courses__single {
  align-self: start !important;
  width: 100% !important;
  max-width: 360px !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 !important;
}

:is(.page-id-20763, .page-id-23788) :is(.masterstudy-account-wishlist, .stm_lms_wishlist, .stm-lms-wrapper-wishlist) .stm_lms_courses__single__inner {
  display: block !important;
  align-self: start !important;
  width: 100% !important;
  min-height: 0 !important;
  height: auto !important;
  max-height: none !important;
  margin: 0 !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  box-shadow: 0 14px 34px rgba(11, 30, 54, .08) !important;
}

:is(.page-id-20763, .page-id-23788) :is(.masterstudy-account-wishlist, .stm_lms_wishlist, .stm-lms-wrapper-wishlist) .stm_lms_courses__single--inner {
  display: block !important;
  min-height: 0 !important;
  height: auto !important;
  padding-bottom: 14px !important;
}

:is(.page-id-20763, .page-id-23788) :is(.masterstudy-account-wishlist, .stm_lms_wishlist, .stm-lms-wrapper-wishlist) .stm_lms_courses__single__inner__image,
:is(.page-id-20763, .page-id-23788) :is(.masterstudy-account-wishlist, .stm_lms_wishlist, .stm-lms-wrapper-wishlist) .stm_lms_courses__single--image {
  margin: 0 !important;
}

:is(.page-id-20763, .page-id-23788) :is(.masterstudy-account-wishlist, .stm_lms_wishlist, .stm-lms-wrapper-wishlist) .stm_lms_courses__single--image__container {
  height: auto !important;
  aspect-ratio: 16 / 9 !important;
}

:is(.page-id-20763, .page-id-23788) :is(.masterstudy-account-wishlist, .stm_lms_wishlist, .stm-lms-wrapper-wishlist) .stm_lms_courses__single--image__container img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

:is(.page-id-20763, .page-id-23788) :is(.masterstudy-account-wishlist, .stm_lms_wishlist, .stm-lms-wrapper-wishlist) .stm_lms_courses__single--title,
:is(.page-id-20763, .page-id-23788) :is(.masterstudy-account-wishlist, .stm_lms_wishlist, .stm-lms-wrapper-wishlist) .stm_lms_courses__single--terms,
:is(.page-id-20763, .page-id-23788) :is(.masterstudy-account-wishlist, .stm_lms_wishlist, .stm-lms-wrapper-wishlist) .stm_lms_courses__single--meta,
:is(.page-id-20763, .page-id-23788) :is(.masterstudy-account-wishlist, .stm_lms_wishlist, .stm-lms-wrapper-wishlist) .stm_lms_courses__single--info_meta {
  margin-bottom: 10px !important;
}

:is(.page-id-20763, .page-id-23788) :is(.masterstudy-account-wishlist, .stm_lms_wishlist, .stm-lms-wrapper-wishlist) .stm_lms_courses__single--title h5,
:is(.page-id-20763, .page-id-23788) :is(.masterstudy-account-wishlist, .stm_lms_wishlist, .stm-lms-wrapper-wishlist) .stm_lms_courses__single--title h4 {
  font-size: 15px !important;
  line-height: 1.35 !important;
}

@media (max-width: 700px) {
  :is(.page-id-20763, .page-id-23788) :is(.masterstudy-account-wishlist, .stm_lms_wishlist, .stm-lms-wrapper-wishlist) .stm_lms_courses__grid,
  :is(.page-id-20763, .page-id-23788) :is(.masterstudy-account-wishlist, .stm_lms_wishlist, .stm-lms-wrapper-wishlist) .stm_lms_courses {
    grid-template-columns: 1fr !important;
  }

  :is(.page-id-20763, .page-id-23788) :is(.masterstudy-account-wishlist, .stm_lms_wishlist, .stm-lms-wrapper-wishlist) .stm_lms_courses__single {
    max-width: 100% !important;
  }
}


/* My certificates layout polish */
.page-id-23788 .masterstudy-account-my-certificates {
  width: 100% !important;
  max-width: 100% !important;
}

.page-id-23788 .masterstudy-account-my-certificates__title {
  margin-bottom: 22px !important;
  color: #06192f !important;
  font-size: clamp(28px, 3vw, 36px) !important;
  line-height: 1.15 !important;
  letter-spacing: 0 !important;
}

.page-id-23788 .masterstudy-account-my-certificates__container {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 18px !important;
  width: 100% !important;
  max-width: 100% !important;
}

.page-id-23788 .masterstudy-account-my-certificates__certificate {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 22px !important;
  padding: 18px !important;
  border: 1px solid rgba(56, 91, 206, .16) !important;
  border-radius: 16px !important;
  background: #fff !important;
  box-shadow: 0 16px 38px rgba(11, 30, 54, .08) !important;
  overflow: hidden !important;
}

.page-id-23788 .masterstudy-account-my-certificates__certificate-course {
  display: grid !important;
  grid-template-columns: 170px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 18px !important;
  min-width: 0 !important;
}

.page-id-23788 .masterstudy-account-my-certificates__certificate-course-img {
  width: 170px !important;
  max-width: 100% !important;
  aspect-ratio: 16 / 10 !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  background: #eef4fb !important;
}

.page-id-23788 .masterstudy-account-my-certificates__certificate-course-img img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.page-id-23788 .masterstudy-account-my-certificates__certificate-course-info {
  min-width: 0 !important;
}

.page-id-23788 .masterstudy-account-my-certificates__certificate-course-title {
  display: inline-block !important;
  max-width: 100% !important;
  color: #06192f !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
  text-decoration: none !important;
}

.page-id-23788 .masterstudy-account-my-certificates__certificate-course-title:hover {
  color: #385bce !important;
}

.page-id-23788 .masterstudy-account-my-certificates__certificate-course-stats {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px 14px !important;
  margin-top: 12px !important;
}

.page-id-23788 .masterstudy-account-my-certificates__certificate-course-stat {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  min-width: 0 !important;
  color: #475569 !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
}

.page-id-23788 .masterstudy-account-my-certificates__certificate-course-stat span[class*="stmlms"]:first-child {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 28px !important;
  height: 28px !important;
  flex: 0 0 28px !important;
  border-radius: 999px !important;
  background: rgba(55, 214, 160, .16) !important;
  color: #12b981 !important;
}

.page-id-23788 .masterstudy-account-my-certificates__certificate-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 10px !important;
  min-width: 270px !important;
}

.page-id-23788 .masterstudy-account-my-certificates__certificate-actions a,
.page-id-23788 .masterstudy-account-my-certificates__certificate-actions button,
.page-id-23788 .masterstudy-account-my-certificates__certificate-actions .masterstudy-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 42px !important;
  padding: 10px 16px !important;
  border-radius: 10px !important;
  border: 1px solid rgba(56, 91, 206, .18) !important;
  background: #eef3ff !important;
  color: #06192f !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
  box-shadow: none !important;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease !important;
}

.page-id-23788 .masterstudy-account-my-certificates__certificate-actions a:hover,
.page-id-23788 .masterstudy-account-my-certificates__certificate-actions button:hover,
.page-id-23788 .masterstudy-account-my-certificates__certificate-actions .masterstudy-button:hover {
  transform: translateY(-1px) !important;
  border-color: rgba(56, 91, 206, .36) !important;
  background: #385bce !important;
  color: #fff !important;
}

.page-id-23788 .masterstudy-account-my-certificates__certificate-actions-download,
.page-id-23788 .masterstudy-account-my-certificates__certificate-actions .masterstudy-account-my-certificates__certificate-actions-download {
  background: #37d6a0 !important;
  border-color: #37d6a0 !important;
  color: #06192f !important;
}

.page-id-23788 .masterstudy-account-my-certificates__no-records {
  padding: 34px 22px !important;
  border: 1px solid rgba(56, 91, 206, .14) !important;
  border-radius: 16px !important;
  background: #fff !important;
  box-shadow: 0 16px 38px rgba(11, 30, 54, .08) !important;
  text-align: center !important;
}

@media (max-width: 900px) {
  .page-id-23788 .masterstudy-account-my-certificates__title {
    margin-bottom: 18px !important;
    text-align: center !important;
  }

  .page-id-23788 .masterstudy-account-my-certificates__certificate {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 16px !important;
  }

  .page-id-23788 .masterstudy-account-my-certificates__certificate-course {
    grid-template-columns: 140px minmax(0, 1fr) !important;
    gap: 14px !important;
  }

  .page-id-23788 .masterstudy-account-my-certificates__certificate-course-img {
    width: 140px !important;
  }

  .page-id-23788 .masterstudy-account-my-certificates__certificate-actions {
    min-width: 0 !important;
    width: 100% !important;
    justify-content: stretch !important;
  }

  .page-id-23788 .masterstudy-account-my-certificates__certificate-actions a,
  .page-id-23788 .masterstudy-account-my-certificates__certificate-actions button,
  .page-id-23788 .masterstudy-account-my-certificates__certificate-actions .masterstudy-button {
    flex: 1 1 150px !important;
  }
}

@media (max-width: 560px) {
  .page-id-23788 .masterstudy-account-my-certificates__certificate-course {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }

  .page-id-23788 .masterstudy-account-my-certificates__certificate-course-img {
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
  }

  .page-id-23788 .masterstudy-account-my-certificates__certificate-course-stats {
    justify-content: center !important;
  }

  .page-id-23788 .masterstudy-account-my-certificates__certificate-actions {
    flex-direction: column !important;
  }

  .page-id-23788 .masterstudy-account-my-certificates__certificate-actions a,
  .page-id-23788 .masterstudy-account-my-certificates__certificate-actions button,
  .page-id-23788 .masterstudy-account-my-certificates__certificate-actions .masterstudy-button {
    width: 100% !important;
    flex: 0 0 auto !important;
  }
}


/* My certificates download button emphasis */
.page-id-23788 .masterstudy-account-my-certificates__certificate-actions .masterstudy-account-my-certificates__certificate-actions-download,
.page-id-23788 .masterstudy-account-my-certificates__certificate-actions a.masterstudy-account-my-certificates__certificate-actions-download,
.page-id-23788 .masterstudy-account-my-certificates__certificate-actions button.masterstudy-account-my-certificates__certificate-actions-download {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 42px !important;
  padding: 11px 18px !important;
  border: 1px solid #37d6a0 !important;
  border-radius: 10px !important;
  background: #37d6a0 !important;
  color: #06192f !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
  box-shadow: 0 12px 28px rgba(55, 214, 160, .22) !important;
}

.page-id-23788 .masterstudy-account-my-certificates__certificate-actions .masterstudy-account-my-certificates__certificate-actions-download:hover,
.page-id-23788 .masterstudy-account-my-certificates__certificate-actions a.masterstudy-account-my-certificates__certificate-actions-download:hover,
.page-id-23788 .masterstudy-account-my-certificates__certificate-actions button.masterstudy-account-my-certificates__certificate-actions-download:hover {
  transform: translateY(-1px) !important;
  background: #385bce !important;
  border-color: #385bce !important;
  color: #fff !important;
  box-shadow: 0 14px 30px rgba(56, 91, 206, .22) !important;
}


/* My certificates legacy preview/download button */
.page-id-23788 .stm-lms-user-certificates .stm-lms-user-quiz__name.masterstudy_preview_certificate,
.page-id-23788 .stm-lms-user-certificates a.stm-lms-user-quiz__name.masterstudy_preview_certificate {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-width: 118px !important;
  min-height: 42px !important;
  padding: 11px 18px !important;
  border: 1px solid #37d6a0 !important;
  border-radius: 10px !important;
  background: #37d6a0 !important;
  color: #06192f !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  text-align: center !important;
  text-decoration: none !important;
  box-shadow: 0 12px 28px rgba(55, 214, 160, .22) !important;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease !important;
}

.page-id-23788 .stm-lms-user-certificates .stm-lms-user-quiz__name.masterstudy_preview_certificate:hover,
.page-id-23788 .stm-lms-user-certificates a.stm-lms-user-quiz__name.masterstudy_preview_certificate:hover {
  transform: translateY(-1px) !important;
  background: #385bce !important;
  border-color: #385bce !important;
  color: #fff !important;
  box-shadow: 0 14px 30px rgba(56, 91, 206, .22) !important;
}

@media (max-width: 560px) {
  .page-id-23788 .stm-lms-user-certificates .stm-lms-user-quiz__name.masterstudy_preview_certificate,
  .page-id-23788 .stm-lms-user-certificates a.stm-lms-user-quiz__name.masterstudy_preview_certificate {
    width: 100% !important;
  }
}


/* My certificates legacy download button global endpoint fix */
.npp-theme .stm-lms-user-certificates .stm-lms-user-quiz > a.stm-lms-user-quiz__name,
.npp-theme .stm-lms-user-certificates a.stm-lms-user-quiz__name,
.npp-theme a.stm-lms-user-quiz__name.masterstudy_preview_certificate {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-width: 128px !important;
  min-height: 42px !important;
  padding: 11px 18px !important;
  border: 1px solid #37d6a0 !important;
  border-radius: 10px !important;
  background: #37d6a0 !important;
  color: #06192f !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  text-align: center !important;
  text-decoration: none !important;
  box-shadow: 0 12px 28px rgba(55, 214, 160, .22) !important;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease !important;
}

.npp-theme .stm-lms-user-certificates .stm-lms-user-quiz > a.stm-lms-user-quiz__name:hover,
.npp-theme .stm-lms-user-certificates a.stm-lms-user-quiz__name:hover,
.npp-theme a.stm-lms-user-quiz__name.masterstudy_preview_certificate:hover {
  transform: translateY(-1px) !important;
  background: #385bce !important;
  border-color: #385bce !important;
  color: #fff !important;
  box-shadow: 0 14px 30px rgba(56, 91, 206, .22) !important;
}

@media (max-width: 560px) {
  .npp-theme .stm-lms-user-certificates .stm-lms-user-quiz > a.stm-lms-user-quiz__name,
  .npp-theme .stm-lms-user-certificates a.stm-lms-user-quiz__name,
  .npp-theme a.stm-lms-user-quiz__name.masterstudy_preview_certificate {
    width: 100% !important;
  }
}


/* My grades modal close button fallback */
.npp-theme .masterstudy-grade-details__close {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  border-radius: 999px !important;
  background: #eef3ff !important;
  border: 1px solid rgba(56, 91, 206, .18) !important;
  color: #06192f !important;
  cursor: pointer !important;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease !important;
}

.npp-theme .masterstudy-grade-details__close::after {
  content: "\00d7" !important;
  display: block !important;
  margin: 0 !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  color: currentColor !important;
}

.npp-theme .masterstudy-grade-details__close:hover {
  transform: translateY(-1px) !important;
  background: #385bce !important;
  border-color: #385bce !important;
  color: #fff !important;
}


/* MasterStudy account submenu visibility fix */
.npp-theme .stm_lms_acc_tabs:has(.stm_lms_acc_tabs__secondary),
body.page-id-23788 .stm_lms_acc_tabs:has(.stm_lms_acc_tabs__secondary) {
  overflow-x: clip !important;
  overflow-y: visible !important;
}

.npp-theme .stm_lms_acc_tabs__secondary,
body.page-id-23788 .stm_lms_acc_tabs__secondary {
  overflow: visible !important;
  z-index: 30 !important;
}

.npp-theme .stm_lms_acc_tabs__secondary_inner,
body.page-id-23788 .stm_lms_acc_tabs__secondary_inner {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
  min-width: 220px !important;
  max-height: min(70vh, 520px) !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  z-index: 31 !important;
}

.npp-theme .stm_lms_acc_tabs__secondary_inner .float_menu_item__inline,
.npp-theme .stm_lms_acc_tabs__secondary_inner .dropdown_menu_item,
body.page-id-23788 .stm_lms_acc_tabs__secondary_inner .float_menu_item__inline,
body.page-id-23788 .stm_lms_acc_tabs__secondary_inner .dropdown_menu_item {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}


/* My certificates empty state highlight */
.npp-theme .masterstudy-account-my-certificates__no-records,
.npp-theme .stm-lms-user-certificates ~ .no-certificates-notice,
.npp-theme .stm-lms-account-title ~ .no-certificates-notice {
  box-sizing: border-box !important;
}

.npp-theme .masterstudy-account-my-certificates__no-records {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 260px !important;
  padding: 42px 28px !important;
  border: 1px solid rgba(55, 214, 160, .32) !important;
  border-radius: 18px !important;
  background: linear-gradient(135deg, rgba(55, 214, 160, .12), rgba(56, 91, 206, .08)), #fff !important;
  box-shadow: 0 18px 46px rgba(11, 30, 54, .1) !important;
  text-align: center !important;
  overflow: hidden !important;
}

.npp-theme .masterstudy-account-my-certificates__no-records::before,
.npp-theme .stm-lms-account-title ~ .no-certificates-notice:first-of-type::before {
  content: "" !important;
  display: inline-flex !important;
  width: 58px !important;
  height: 58px !important;
  margin: 0 auto 16px !important;
  border: 1px solid rgba(55, 214, 160, .4) !important;
  border-radius: 18px !important;
  background-color: rgba(55, 214, 160, .14) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%2306192f%27 stroke-width=%271.8%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpath d=%27M6 3h12v10H6z%27/%3E%3Cpath d=%27M9 17l3-2 3 2v-4H9z%27/%3E%3Cpath d=%27M9 7h6%27/%3E%3Cpath d=%27M9 10h4%27/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 30px !important;
  box-shadow: 0 14px 28px rgba(55, 214, 160, .18) !important;
}

.npp-theme .masterstudy-account-my-certificates__no-records :is(h3, h4, p, span),
.npp-theme .masterstudy-account-my-certificates__no-records .masterstudy-no-records__title,
.npp-theme .masterstudy-account-my-certificates__no-records .masterstudy-no-records__subtitle {
  max-width: 620px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  color: #06192f !important;
  text-align: center !important;
}

.npp-theme .masterstudy-account-my-certificates__no-records .masterstudy-no-records__title,
.npp-theme .masterstudy-account-my-certificates__no-records h3,
.npp-theme .masterstudy-account-my-certificates__no-records h4:first-child {
  margin-bottom: 10px !important;
  font-size: clamp(22px, 2.4vw, 30px) !important;
  font-weight: 900 !important;
  line-height: 1.18 !important;
}

.npp-theme .masterstudy-account-my-certificates__no-records .masterstudy-no-records__subtitle,
.npp-theme .masterstudy-account-my-certificates__no-records p,
.npp-theme .masterstudy-account-my-certificates__no-records h4:not(:first-child) {
  color: #475569 !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1.55 !important;
}

.npp-theme .stm-lms-account-title ~ .no-certificates-notice {
  width: 100% !important;
  max-width: 760px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
  color: #475569 !important;
  text-align: center !important;
  background: #fff !important;
}

.npp-theme .stm-lms-account-title ~ .no-certificates-notice:first-of-type {
  margin-top: 24px !important;
  margin-bottom: 0 !important;
  padding-top: 42px !important;
  border: 1px solid rgba(55, 214, 160, .32) !important;
  border-bottom: 0 !important;
  border-radius: 18px 18px 0 0 !important;
  background: linear-gradient(135deg, rgba(55, 214, 160, .12), rgba(56, 91, 206, .08)), #fff !important;
  color: #06192f !important;
  font-size: clamp(22px, 2.4vw, 30px) !important;
  font-weight: 900 !important;
  line-height: 1.18 !important;
  box-shadow: 0 18px 46px rgba(11, 30, 54, .1) !important;
}

.npp-theme .stm-lms-account-title ~ .no-certificates-notice:last-of-type {
  margin-top: 0 !important;
  padding-top: 8px !important;
  padding-bottom: 42px !important;
  border: 1px solid rgba(55, 214, 160, .32) !important;
  border-top: 0 !important;
  border-radius: 0 0 18px 18px !important;
  color: #475569 !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1.55 !important;
  box-shadow: 0 18px 46px rgba(11, 30, 54, .1) !important;
}

@media (max-width: 560px) {
  .npp-theme .masterstudy-account-my-certificates__no-records,
  .npp-theme .stm-lms-account-title ~ .no-certificates-notice:first-of-type,
  .npp-theme .stm-lms-account-title ~ .no-certificates-notice:last-of-type {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}


/* My certificates empty state refined finish */
.npp-theme .masterstudy-account-my-certificates__no-records {
  width: min(760px, 100%) !important;
  min-height: 230px !important;
  margin: 10px auto 0 !important;
  padding: 38px 34px 40px !important;
  border: 1px solid rgba(56, 91, 206, .12) !important;
  border-radius: 16px !important;
  background:
    radial-gradient(circle at 50% 0, rgba(55, 214, 160, .12), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
  box-shadow: 0 18px 44px rgba(6, 25, 47, .07) !important;
}

.npp-theme .masterstudy-account-my-certificates__no-records::before,
.npp-theme .stm-lms-account-title ~ .no-certificates-notice:first-of-type::before {
  width: 46px !important;
  height: 46px !important;
  margin-bottom: 18px !important;
  border-radius: 14px !important;
  border-color: rgba(55, 214, 160, .28) !important;
  background-color: rgba(55, 214, 160, .1) !important;
  background-size: 25px !important;
  box-shadow: none !important;
}

.npp-theme .masterstudy-account-my-certificates__no-records .masterstudy-no-records__title,
.npp-theme .masterstudy-account-my-certificates__no-records h3,
.npp-theme .masterstudy-account-my-certificates__no-records h4:first-child {
  max-width: 560px !important;
  margin-bottom: 9px !important;
  color: #06192f !important;
  font-size: clamp(21px, 2vw, 26px) !important;
  font-weight: 850 !important;
  line-height: 1.22 !important;
}

.npp-theme .masterstudy-account-my-certificates__no-records .masterstudy-no-records__subtitle,
.npp-theme .masterstudy-account-my-certificates__no-records p,
.npp-theme .masterstudy-account-my-certificates__no-records h4:not(:first-child) {
  max-width: 570px !important;
  color: #5f6f82 !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1.65 !important;
}

.npp-theme .stm-lms-account-title ~ .no-certificates-notice {
  max-width: 760px !important;
  background: transparent !important;
}

.npp-theme .stm-lms-account-title ~ .no-certificates-notice:first-of-type {
  margin-top: 24px !important;
  padding-top: 38px !important;
  border-color: rgba(56, 91, 206, .12) !important;
  background:
    radial-gradient(circle at 50% 0, rgba(55, 214, 160, .12), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
  color: #06192f !important;
  font-size: clamp(21px, 2vw, 26px) !important;
  font-weight: 850 !important;
  box-shadow: 0 18px 44px rgba(6, 25, 47, .07) !important;
}

.npp-theme .stm-lms-account-title ~ .no-certificates-notice:last-of-type {
  padding-bottom: 38px !important;
  border-color: rgba(56, 91, 206, .12) !important;
  color: #5f6f82 !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
  box-shadow: 0 18px 44px rgba(6, 25, 47, .07) !important;
}

@media (max-width: 560px) {
  .npp-theme .masterstudy-account-my-certificates__no-records {
    padding: 30px 20px 32px !important;
    border-radius: 14px !important;
  }

  .npp-theme .stm-lms-account-title ~ .no-certificates-notice:first-of-type {
    padding-top: 30px !important;
  }

  .npp-theme .stm-lms-account-title ~ .no-certificates-notice:last-of-type {
    padding-bottom: 32px !important;
  }
}


/* My certificates empty state attention cue */
.npp-theme .masterstudy-account-my-certificates__no-records {
  border-color: rgba(245, 158, 11, .28) !important;
  background:
    radial-gradient(circle at 50% 0, rgba(245, 158, 11, .14), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #fffaf0 100%) !important;
}

.npp-theme .masterstudy-account-my-certificates__no-records::before,
.npp-theme .stm-lms-account-title ~ .no-certificates-notice:first-of-type::before {
  border-color: rgba(245, 158, 11, .34) !important;
  background-color: rgba(245, 158, 11, .13) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%2306192f%27 stroke-width=%271.9%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpath d=%27M12 3 2.8 19h18.4L12 3z%27/%3E%3Cpath d=%27M12 9v4%27/%3E%3Cpath d=%27M12 17h.01%27/%3E%3C/svg%3E") !important;
}

.npp-theme .stm-lms-account-title ~ .no-certificates-notice:first-of-type {
  border-color: rgba(245, 158, 11, .28) !important;
  background:
    radial-gradient(circle at 50% 0, rgba(245, 158, 11, .14), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #fffaf0 100%) !important;
}

.npp-theme .stm-lms-account-title ~ .no-certificates-notice:last-of-type {
  border-color: rgba(245, 158, 11, .28) !important;
}


/* My certificates empty state centered content */
.npp-theme .masterstudy-account-my-certificates__no-records {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

.npp-theme .masterstudy-account-my-certificates__no-records > * {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

/* My certificates: remove empty-state icon for students */
body.npp-theme.npp-account-my-certificates .masterstudy-account-my-certificates__no-records::before,
body.npp-theme.npp-account-my-certificates .stm-lms-account-title ~ .no-certificates-notice:first-of-type::before {
  content: none !important;
  display: none !important;
}

.npp-theme .stm-lms-account-title ~ .no-certificates-notice:first-of-type,
.npp-theme .stm-lms-account-title ~ .no-certificates-notice:last-of-type {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

.npp-theme .stm-lms-account-title ~ .no-certificates-notice:first-of-type::before {
  flex: 0 0 auto !important;
}


/* My certificates empty state course link */
.npp-theme .npp-certificates-course-link {
  color: #385bce !important;
  font-weight: 800 !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}

.npp-theme .npp-certificates-course-link:hover {
  color: #06192f !important;
}


/* My certificates inline course link flow */
.npp-theme .npp-certificates-course-link {
  display: inline !important;
  white-space: nowrap !important;
  vertical-align: baseline !important;
}


/* My certificates legacy empty text inline flow */
.npp-theme .stm-lms-account-title ~ .no-certificates-notice:last-of-type {
  display: block !important;
  text-align: center !important;
}

.npp-theme .stm-lms-account-title ~ .no-certificates-notice:last-of-type .npp-certificates-course-link {
  display: inline !important;
}



/* MasterStudy certificates remove glyph only - no click or layout changes */
.npp-theme .masterstudy-instructor-certificates__delete::before {
  content: "\00d7" !important;
  display: inline-block !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #dc2626 !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  pointer-events: none !important;
}

.npp-theme .masterstudy-instructor-certificates__delete:hover::before,
.npp-theme .masterstudy-instructor-certificates__delete:focus-visible::before {
  color: #fff !important;
}


/* MasterStudy ghost link cleanup */
.npp-theme .stm_lms_acc_tabs__secondary:not(.active) .stm_lms_acc_tabs__secondary_inner,
body.page-id-23788 .stm_lms_acc_tabs__secondary:not(.active) .stm_lms_acc_tabs__secondary_inner {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.npp-theme .stm_lms_acc_tabs__secondary:not(.active) .stm_lms_acc_tabs__secondary_inner a,
.npp-theme .stm_lms_acc_tabs__secondary:not(.active) .stm_lms_acc_tabs__secondary_inner .float_menu_item__inline,
.npp-theme .stm_lms_acc_tabs__secondary:not(.active) .stm_lms_acc_tabs__secondary_inner .dropdown_menu_item,
body.page-id-23788 .stm_lms_acc_tabs__secondary:not(.active) .stm_lms_acc_tabs__secondary_inner a,
body.page-id-23788 .stm_lms_acc_tabs__secondary:not(.active) .stm_lms_acc_tabs__secondary_inner .float_menu_item__inline,
body.page-id-23788 .stm_lms_acc_tabs__secondary:not(.active) .stm_lms_acc_tabs__secondary_inner .dropdown_menu_item {
  pointer-events: none !important;
}

.npp-theme .stm_lms_acc_tabs__secondary.active .stm_lms_acc_tabs__secondary_inner,
body.page-id-23788 .stm_lms_acc_tabs__secondary.active .stm_lms_acc_tabs__secondary_inner {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.npp-theme .stm_lms_acc_tabs__secondary.active .stm_lms_acc_tabs__secondary_inner a,
.npp-theme .stm_lms_acc_tabs__secondary.active .stm_lms_acc_tabs__secondary_inner .float_menu_item__inline,
.npp-theme .stm_lms_acc_tabs__secondary.active .stm_lms_acc_tabs__secondary_inner .dropdown_menu_item,
body.page-id-23788 .stm_lms_acc_tabs__secondary.active .stm_lms_acc_tabs__secondary_inner a,
body.page-id-23788 .stm_lms_acc_tabs__secondary.active .stm_lms_acc_tabs__secondary_inner .float_menu_item__inline,
body.page-id-23788 .stm_lms_acc_tabs__secondary.active .stm_lms_acc_tabs__secondary_inner .dropdown_menu_item {
  pointer-events: auto !important;
}


/* PWA install section */
.npp-pwa-section {
  background:
    radial-gradient(ellipse at 12% 0%, rgba(53, 211, 153, .10), transparent 38%),
    radial-gradient(ellipse at 88% 100%, rgba(255, 214, 95, .035), transparent 44%),
    var(--npp-soft);
}

.npp-pwa-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  gap: 28px;
  align-items: center;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(55, 214, 160, .2);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 12%, rgba(55, 214, 160, .16), transparent 28%),
    linear-gradient(135deg, #06192f 0%, #0c253f 46%, #0f3d4c 100%);
  color: #fff;
  box-shadow: 0 22px 60px rgba(6, 25, 47, .18);
}

.npp-pwa-copy .npp-eyebrow,
.npp-pwa-copy h2,
.npp-pwa-copy p {
  color: #fff;
}

.npp-pwa-copy .npp-eyebrow {
  color: #37d6a0;
}

.npp-pwa-copy h2 {
  max-width: 620px;
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
}

.npp-pwa-copy p:not(.npp-eyebrow) {
  max-width: 580px;
  color: rgba(255, 255, 255, .78);
}

.npp-pwa-copy .npp-pwa-desktop-copy {
  display: grid;
}

.npp-pwa-actions .npp-pwa-desktop-copy {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(55, 214, 160, .28);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(55, 214, 160, .14), rgba(255, 255, 255, .05));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.npp-pwa-desktop-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #37d6a0;
  color: #06192f;
}

.npp-pwa-desktop-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.npp-pwa-desktop-copy strong,
.npp-pwa-desktop-copy small {
  display: block;
}

.npp-pwa-desktop-copy strong {
  margin-bottom: 3px;
  color: #fff;
  font-size: 15px;
  line-height: 1.25;
}

.npp-pwa-desktop-copy small {
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
  line-height: 1.45;
}

.npp-pwa-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

body.home .npp-pwa-actions {
  grid-template-columns: 1fr !important;
}

.npp-pwa-hidden,
.npp-pwa-desktop-copy.npp-pwa-hidden,
.npp-pwa-card.npp-pwa-hidden,
.npp-pwa-card[hidden] {
  display: none !important;
}

.npp-pwa-card {
  appearance: none;
  display: flex;
  min-height: 172px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.npp-pwa-card:hover,
.npp-pwa-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(55, 214, 160, .58);
  background: rgba(55, 214, 160, .14);
  box-shadow: 0 18px 36px rgba(0, 0, 0, .18);
  outline: none;
}

.npp-pwa-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border-radius: 12px;
  background: #37d6a0;
  color: #06192f;
}

.npp-pwa-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

html body.home .npp-pwa-install-ios .npp-pwa-icon svg {
  fill: currentColor !important;
  stroke: none !important;
}

html body.home .npp-pwa-install-desktop .npp-pwa-icon svg {
  width: 17px !important;
  height: 17px !important;
  fill: currentColor !important;
  stroke: none !important;
}

html.npp-pwa-standalone body.home .npp-pwa-section {
  display: none !important;
}

@media (display-mode: standalone), (display-mode: window-controls-overlay), (display-mode: minimal-ui) {
  body.home .npp-pwa-section {
    display: none !important;
  }
}

html.npp-pwa-ios body.home .npp-pwa-install-android,
html.npp-pwa-ios body.home .npp-pwa-install-desktop,
html.npp-pwa-android body.home .npp-pwa-install-ios,
html.npp-pwa-android body.home .npp-pwa-install-desktop,
html.npp-pwa-desktop body.home .npp-pwa-install-android,
html.npp-pwa-desktop body.home .npp-pwa-install-ios {
  display: none !important;
}

html.npp-pwa-ios body.home .npp-pwa-box,
html.npp-pwa-android body.home .npp-pwa-box,
html.npp-pwa-desktop body.home .npp-pwa-box {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 22px;
  padding: clamp(24px, 3vw, 34px);
}

html.npp-pwa-ios body.home .npp-pwa-actions,
html.npp-pwa-android body.home .npp-pwa-actions,
html.npp-pwa-desktop body.home .npp-pwa-actions {
  align-self: center;
}

html.npp-pwa-ios body.home .npp-pwa-card,
html.npp-pwa-android body.home .npp-pwa-card,
html.npp-pwa-desktop body.home .npp-pwa-card {
  min-height: 92px;
}


.npp-pwa-card strong {
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
}

.npp-pwa-card small {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  line-height: 1.45;
}

.npp-pwa-install-android.npp-pwa-waiting small::after,
.npp-pwa-install-desktop.npp-pwa-waiting small::after {
  content: " Abra em uma janela normal do navegador. No Mac, use Chrome/Edge ou Safari em Arquivo > Adicionar ao Dock.";
  color: #37d6a0;
  font-weight: 700;
}

.npp-pwa-modal[hidden] {
  display: none !important;
}

.npp-pwa-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(6, 25, 47, .72);
  backdrop-filter: blur(8px);
}

.npp-pwa-modal-card {
  position: relative;
  width: min(440px, 100%);
  padding: 30px;
  border-radius: 18px;
  background: #fff;
  color: #06192f;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .28);
}

.npp-pwa-modal-card h2 {
  margin: 0 0 16px;
  color: #06192f;
  font-size: 26px;
}

.npp-pwa-modal-intro {
  margin: 0 0 16px;
  color: #43556a;
  line-height: 1.55;
}

.npp-pwa-ios-browser-note {
  margin: 0 0 16px;
  padding: 12px 14px;
  border: 1px solid rgba(55, 214, 160, .28);
  border-radius: 12px;
  background: rgba(55, 214, 160, .1);
  color: #06192f;
  font-weight: 800;
  line-height: 1.45;
}

.npp-pwa-steps {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: #43556a;
  list-style: none;
  line-height: 1.45;
}

.npp-pwa-steps li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid #e3edf3;
  border-radius: 12px;
  background: #f8fbfd;
}

.npp-pwa-step-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #37d6a0;
  color: #06192f;
}

.npp-pwa-step-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.npp-pwa-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: #eef4f7;
  color: #06192f;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.npp-pwa-modal-open {
  overflow: hidden;
}

/* OneSignal visual refinement */
.npp-theme #onesignal-slidedown-container,
.npp-theme .onesignal-slidedown-container,
.npp-theme .onesignal-popover-container,
.npp-theme .npp-onesignal-refined {
  font-family: inherit !important;
}

.npp-theme #onesignal-slidedown-container #onesignal-slidedown-dialog,
.npp-theme .onesignal-slidedown-container #onesignal-slidedown-dialog,
.npp-theme .onesignal-popover-container .popover-body,
.npp-theme .onesignal-popover-container .popover-container {
  border: 1px solid rgba(55, 214, 160, .22) !important;
  border-radius: 16px !important;
  background: #06192f !important;
  color: #fff !important;
  box-shadow: 0 22px 60px rgba(6, 25, 47, .26) !important;
}

.npp-theme #onesignal-slidedown-container #onesignal-slidedown-dialog *:not(button),
.npp-theme .onesignal-slidedown-container #onesignal-slidedown-dialog *:not(button),
.npp-theme .onesignal-popover-container *:not(button) {
  color: inherit !important;
  font-family: inherit !important;
}

.npp-theme #onesignal-slidedown-container button,
.npp-theme .onesignal-slidedown-container button,
.npp-theme .onesignal-popover-container button {
  min-height: 40px !important;
  border-radius: 10px !important;
  font-family: inherit !important;
  font-weight: 800 !important;
}

.npp-theme #onesignal-slidedown-allow-button,
.npp-theme .onesignal-slidedown-allow-button,
.npp-theme .onesignal-popover-container .primary,
.npp-theme .onesignal-popover-container .allow {
  border-color: #37d6a0 !important;
  background: #37d6a0 !important;
  color: #06192f !important;
}

.npp-theme #onesignal-slidedown-cancel-button,
.npp-theme .onesignal-slidedown-cancel-button,
.npp-theme .onesignal-popover-container .secondary,
.npp-theme .onesignal-popover-container .cancel {
  border-color: rgba(255, 255, 255, .18) !important;
  background: rgba(255, 255, 255, .08) !important;
  color: #fff !important;
}

.npp-theme .onesignal-bell-launcher,
.npp-theme .onesignal-bell-container .onesignal-bell-launcher,
.npp-theme .npp-onesignal-refined.onesignal-bell-launcher {
  border: 1px solid rgba(55, 214, 160, .34) !important;
  border-radius: 999px !important;
  background: #37d6a0 !important;
  box-shadow: 0 16px 40px rgba(55, 214, 160, .28) !important;
}

@media (max-width: 760px) {
  html.npp-pwa-ios body.home .npp-pwa-box,
  html.npp-pwa-android body.home .npp-pwa-box,
  html.npp-pwa-desktop body.home .npp-pwa-box,
  .npp-pwa-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    width: min(100% - 24px, 420px);
    padding: 26px 18px;
    border-radius: 16px;
    text-align: center;
  }

  html.npp-pwa-ios body.home .npp-pwa-copy,
  html.npp-pwa-android body.home .npp-pwa-copy,
  html.npp-pwa-desktop body.home .npp-pwa-copy {
    min-width: 0;
  }

  html.npp-pwa-ios body.home .npp-pwa-copy h2,
  html.npp-pwa-android body.home .npp-pwa-copy h2,
  html.npp-pwa-desktop body.home .npp-pwa-copy h2,
  .npp-pwa-copy h2 {
    max-width: 100%;
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.08;
  }

  .npp-pwa-copy h2,
  .npp-pwa-copy p:not(.npp-eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }

  html.npp-pwa-ios body.home .npp-pwa-copy p:not(.npp-eyebrow),
  html.npp-pwa-android body.home .npp-pwa-copy p:not(.npp-eyebrow),
  html.npp-pwa-desktop body.home .npp-pwa-copy p:not(.npp-eyebrow),
  .npp-pwa-copy p:not(.npp-eyebrow) {
    max-width: 100%;
    line-height: 1.55;
  }

  body.home .npp-pwa-actions .npp-pwa-desktop-copy,
  body.home .npp-pwa-desktop-copy,
  .npp-pwa-desktop-copy {
    display: none !important;
  }

  html.npp-pwa-ios body.home .npp-pwa-actions,
  html.npp-pwa-android body.home .npp-pwa-actions,
  html.npp-pwa-desktop body.home .npp-pwa-actions,
  .npp-pwa-actions {
    grid-template-columns: 1fr;
    width: 100%;
    align-self: stretch;
  }

  html.npp-pwa-ios body.home .npp-pwa-card,
  html.npp-pwa-android body.home .npp-pwa-card,
  html.npp-pwa-desktop body.home .npp-pwa-card,
  .npp-pwa-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 3px;
    align-items: center;
    justify-items: start;
    min-height: auto;
    padding: 16px;
    text-align: left;
  }

  html.npp-pwa-ios body.home .npp-pwa-icon,
  html.npp-pwa-android body.home .npp-pwa-icon,
  html.npp-pwa-desktop body.home .npp-pwa-icon,
  .npp-pwa-icon {
    grid-row: 1 / 3;
    width: 48px;
    height: 48px;
  }

  .npp-pwa-modal-card {
    padding: 28px 22px;
  }
}

.npp-floating-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9998;
  display: inline-flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(55, 214, 160, .42);
  border-radius: 50%;
  background: linear-gradient(135deg, #37d6a0 0%, #42e0b5 100%);
  color: #06192f;
  box-shadow: 0 18px 46px rgba(6, 25, 47, .26), 0 10px 30px rgba(55, 214, 160, .28);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.npp-floating-chat:hover,
.npp-floating-chat:focus-visible {
  color: #06192f;
  filter: saturate(1.08);
  transform: translateY(-3px);
  box-shadow: 0 22px 54px rgba(6, 25, 47, .3), 0 14px 34px rgba(55, 214, 160, .34);
  outline: none;
}

.npp-floating-chat__icon {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
}

.npp-floating-chat__icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.npp-floating-chat__badge {
  position: absolute;
  top: -5px;
  right: -5px;
  display: inline-flex;
  min-width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  padding: 0 7px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #ff3b4f;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(255, 59, 79, .34);
}

.npp-floating-chat__badge[hidden] {
  display: none !important;
}

.npp-floating-chat_has-unread {
  animation: npp-chat-pulse 1.8s ease-in-out infinite;
}

@keyframes npp-chat-pulse {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-2px) scale(1.04);
  }
}

@media (max-width: 760px) {
  .npp-floating-chat {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }

  body.npp-account-route .npp-floating-chat,
  body.page-id-23788 .npp-floating-chat {
    right: 18px;
    bottom: calc(96px + env(safe-area-inset-bottom, 0px));
    z-index: 1000001;
  }
}

@media (min-width: 761px) and (max-width: 1279.98px) {
  body.npp-account-route .npp-floating-chat,
  body.page-id-23788 .npp-floating-chat {
    right: 24px;
    bottom: calc(104px + env(safe-area-inset-bottom, 0px));
    z-index: 1000001;
  }
}


/* MasterStudy account layout: consistent width, mobile breathing and chat flow. */
body.page-id-23788.npp-account-route {
  overflow-x: hidden !important;
}

body.page-id-23788.npp-account-route :is(.npp-main, .npp-content, .site-main, .entry-content) {
  overflow-x: hidden !important;
}

body.page-id-23788.npp-account-route :is(
  .stm-lms-wrapper,
  .stm-lms-wrapper.user-account-page,
  .stm_lms_account_classic,
  .masterstudy-account,
  .masterstudy-account-container,
  .masterstudy-account-content,
  .masterstudy-account__content,
  .masterstudy-account__main,
  .masterstudy-student-profile,
  .masterstudy-dashboard,
  .masterstudy-dashboard__content
) {
  box-sizing: border-box !important;
  min-width: 0 !important;
  max-width: 100% !important;
}

@media (min-width: 1024px) {
  body.page-id-23788.npp-account-route :is(
    .stm-lms-wrapper,
    .stm-lms-wrapper.user-account-page,
    .stm_lms_account_classic,
    .masterstudy-account
  ) {
    width: min(100% - 64px, 1180px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body.page-id-23788.npp-account-route .masterstudy-account {
    align-items: flex-start !important;
    gap: 40px !important;
  }

  body.page-id-23788.npp-account-route .masterstudy-account-sidebar {
    flex: 0 0 260px !important;
    width: 260px !important;
    max-width: 260px !important;
  }

  body.page-id-23788.npp-account-route .masterstudy-account-container {
    flex: 1 1 auto !important;
    width: auto !important;
    min-width: 0 !important;
  }
}

body.page-id-23788.npp-account-chat #masterstudy-account-messages,
body.page-id-23788.npp-account-chat .masterstudy-account-messages {
  width: min(100%, 860px) !important;
  max-width: 860px !important;
  min-width: 0 !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__layout {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 18px !important;
  align-items: stretch !important;
  width: 100% !important;
  max-width: 100% !important;
}

body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__list {
  order: 1 !important;
}

body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__panel {
  order: 2 !important;
}

body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__empty {
  order: 3 !important;
}

body.page-id-23788.npp-account-chat #masterstudy-account-messages :is(
  .masterstudy-account-messages__layout,
  .masterstudy-account-messages__list,
  .masterstudy-account-messages__empty,
  .masterstudy-account-messages__loader,
  .masterstudy-account-messages__panel,
  .masterstudy-account-messages__list-inner,
  .masterstudy-account-messages__conversations,
  .masterstudy-account-messages__panel-card,
  .masterstudy-account-messages__chat-container,
  .masterstudy-account-messages__thread,
  .masterstudy-account-messages__composer
) {
  box-sizing: border-box !important;
  min-width: 0 !important;
  max-width: 100% !important;
}

body.page-id-23788.npp-account-chat #masterstudy-account-messages :is(
  .masterstudy-account-messages__list,
  .masterstudy-account-messages__empty,
  .masterstudy-account-messages__panel
) {
  width: 100% !important;
}

body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__panel-card {
  display: flex !important;
  flex-direction: column !important;
  min-height: 520px !important;
  overflow: hidden !important;
  border-radius: 18px !important;
}

body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__thread {
  flex: 1 1 auto !important;
  min-height: 280px !important;
  overflow-y: auto !important;
  padding: 18px !important;
}

body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__composer {
  flex: 0 0 auto !important;
  display: flex !important;
  gap: 10px !important;
  align-items: center !important;
  padding: 12px !important;
}

body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__input {
  flex: 1 1 auto !important;
  width: auto !important;
  min-width: 0 !important;
  min-height: 44px !important;
  resize: none !important;
}

body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__send {
  flex: 0 0 auto !important;
}

body.page-id-23788.npp-account-chat #masterstudy-account-messages select {
  max-width: 100% !important;
}

@media (max-width: 760px) {
  html.npp-account-route,
  html.npp-account-route body,
  body.page-id-23788.npp-account-route {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  body.page-id-23788.npp-account-route :is(.npp-main, .npp-content, .site-main, .entry-content) {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow-x: hidden !important;
  }

  body.page-id-23788.npp-account-route :is(
    .stm-lms-wrapper,
    .stm-lms-wrapper.user-account-page,
    .stm_lms_account_classic,
    .masterstudy-account,
    .masterstudy-account-container,
    .masterstudy-account-content,
    .masterstudy-account__content,
    .masterstudy-account__main,
    .masterstudy-student-profile,
    .masterstudy-dashboard,
    .masterstudy-dashboard__content
  ) {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    min-width: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow-x: hidden !important;
  }

  body.page-id-23788 .masterstudy-enrolled-courses-sorting {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body.page-id-23788 .masterstudy-enrolled-courses-sorting__block-wrapper,
  body.page-id-23788 .masterstudy-enrolled-courses-sorting__block,
  body.page-id-23788 .masterstudy-enrolled-courses-sorting__block-content {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
  }

  body.page-id-23788 :is(
    .masterstudy-enrolled-courses,
    .masterstudy-enrolled-courses__list,
    .masterstudy-enrolled-courses-tabs,
    .masterstudy-enrolled-quizzes,
    .masterstudy-account-my-certificates,
    .masterstudy-account-settings,
    .masterstudy-account-orders
  ) {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    overflow-x: hidden !important;
  }

  body.page-id-23788.npp-account-route :is(table, .masterstudy-table, .stm_lms_table) {
    display: block !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  body.page-id-23788 :is(
    .masterstudy-enrolled-course,
    .masterstudy-enrolled-courses-card,
    .stm_lms_courses__single,
    .stm_lms_instructor_courses__single
  ) {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    overflow: hidden !important;
    border-radius: 16px !important;
  }

  body.page-id-23788.npp-account-chat #masterstudy-account-messages,
  body.page-id-23788.npp-account-chat .masterstudy-account-messages {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__layout {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  body.page-id-23788.npp-account-chat #masterstudy-account-messages :is(
    .masterstudy-account-messages__list,
    .masterstudy-account-messages__empty,
    .masterstudy-account-messages__panel,
    .masterstudy-account-messages__chat-container
  ) {
    position: relative !important;
    inset: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__panel:not(.is-hidden),
  body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__chat-container:not(.is-hidden) {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
  }

  body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__panel-card {
    min-height: 420px !important;
    height: auto !important;
  }

  body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__thread {
    min-height: 240px !important;
    max-height: 50vh !important;
    overflow-y: auto !important;
    padding: 14px !important;
  }

  body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__composer {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }

  body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__input {
    flex: 1 1 auto !important;
    min-width: 0 !important;
  }

  body.page-id-23788.npp-account-chat #masterstudy-account-messages select {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 14px !important;
    white-space: normal !important;
    text-overflow: ellipsis !important;
  }
}

/* MasterStudy chat: equal selector/chat space on larger screens and visible composer on mobile. */
@media (min-width: 761px) {
  body.page-id-23788.npp-account-chat #masterstudy-account-messages,
  body.page-id-23788.npp-account-chat .masterstudy-account-messages {
    width: 100% !important;
    max-width: 100% !important;
  }

  body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 24px !important;
    align-items: stretch !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__list {
    grid-column: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__panel,
  body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__chat-container,
  body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__empty {
    grid-column: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__panel-card {
    min-height: 560px !important;
  }

  body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__thread {
    min-height: 360px !important;
  }
}

@media (max-width: 760px) {
  body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__layout {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__list {
    order: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__panel,
  body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__chat-container {
    order: 2 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    inset: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
  }

  body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__empty {
    order: 3 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__panel-card {
    display: flex !important;
    flex-direction: column !important;
    min-height: 430px !important;
    height: auto !important;
  }

  body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__thread {
    flex: 1 1 auto !important;
    min-height: 250px !important;
    max-height: 46vh !important;
    overflow-y: auto !important;
  }

  body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__composer {
    display: flex !important;
    flex: 0 0 auto !important;
    align-items: center !important;
    gap: 8px !important;
    position: relative !important;
  }

  body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__input {
    display: block !important;
    flex: 1 1 auto !important;
    width: auto !important;
    min-width: 0 !important;
  }
}

/* Final override: chat page must stay stacked, with selector first and chat below. */
body.page-id-23788.npp-account-chat #masterstudy-account-messages,
body.page-id-23788.npp-account-chat .masterstudy-account-messages {
  width: min(100%, 860px) !important;
  max-width: 860px !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  overflow: visible !important;
}

body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 18px !important;
  width: 100% !important;
  max-width: 100% !important;
  align-items: stretch !important;
}

body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__list {
  order: 1 !important;
  grid-column: 1 !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__panel,
body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__chat-container,
body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__empty {
  order: 2 !important;
  grid-column: 1 !important;
  position: relative !important;
  inset: auto !important;
  transform: none !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__panel:not(.is-hidden),
body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__chat-container:not(.is-hidden) {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
}

body.page-id-23788.npp-account-chat #masterstudy-account-messages .npp-chat-empty {
  display: none !important;
}

body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__panel-card {
  display: flex !important;
  flex-direction: column !important;
  min-height: 520px !important;
  height: auto !important;
}

body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__thread {
  flex: 1 1 auto !important;
  min-height: 320px !important;
  max-height: 58vh !important;
  overflow-y: auto !important;
}

body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__composer {
  display: flex !important;
  flex: 0 0 auto !important;
  align-items: center !important;
  gap: 10px !important;
  position: relative !important;
}

body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__input {
  display: block !important;
  flex: 1 1 auto !important;
  width: auto !important;
  min-width: 0 !important;
}

@media (max-width: 760px) {
  body.page-id-23788.npp-account-chat #masterstudy-account-messages,
  body.page-id-23788.npp-account-chat .masterstudy-account-messages {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    overflow: hidden !important;
  }

  body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__layout {
    gap: 14px !important;
  }

  body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__panel-card {
    min-height: 440px !important;
  }

  body.page-id-23788.npp-account-chat #masterstudy-account-messages .masterstudy-account-messages__thread {
    min-height: 250px !important;
    max-height: 46vh !important;
  }
}

/* Chat repair 2026-07-02: preserve MasterStudy DOM, restore custom selector and keep mobile usable. */
body.npp-theme.npp-account-chat,
body.npp-account-chat {
  overflow-x: hidden !important;
}

body.npp-theme.npp-account-chat .stm_lms_user_account__content {
  width: min(1120px, calc(100vw - 32px)) !important;
  max-width: 1120px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  overflow: visible !important;
}

body.npp-theme.npp-account-chat #stm_lms_chat {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  overflow: visible !important;
}

body.npp-theme.npp-account-chat #stm_lms_chat > .row,
body.npp-theme.npp-account-chat #stm_lms_chat.npp-instructor-chat-layout > .row {
  display: grid !important;
  grid-template-columns: minmax(280px, 340px) minmax(0, 1fr) !important;
  gap: 24px !important;
  align-items: start !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.npp-theme.npp-account-chat #stm_lms_chat > .row > [class*="col-"],
body.npp-theme.npp-account-chat #stm_lms_chat.npp-instructor-chat-layout > .row > [class*="col-"] {
  display: block !important;
  float: none !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  flex: none !important;
}

body.npp-theme.npp-account-chat #stm_lms_chat > .row > [class*="col-"]:first-child {
  grid-column: 1 !important;
}

body.npp-theme.npp-account-chat #stm_lms_chat > .row > [class*="col-"]:not(:first-child) {
  grid-column: 2 !important;
}

body.npp-theme.npp-account-chat #stm_lms_chat .npp-instructor-chat-panel {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  padding: 18px !important;
}

body.npp-theme.npp-account-chat #stm_lms_chat .npp-instructor-chat-panel__head,
body.npp-theme.npp-account-chat #stm_lms_chat .npp-instructor-chat-panel__tools,
body.npp-theme.npp-account-chat #stm_lms_chat .npp-instructor-chat-student,
body.npp-theme.npp-account-chat #stm_lms_chat .npp-instructor-chat-panel__tabs {
  max-width: 100% !important;
  min-width: 0 !important;
}

body.npp-theme.npp-account-chat #stm_lms_chat .npp-chat-empty {
  display: none !important;
}

body.npp-theme.npp-account-chat #stm_lms_chat .stm_lms_chat__chat-container {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 560px !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

body.npp-theme.npp-account-chat #stm_lms_chat #stm_lms_chat_messages {
  display: block !important;
  flex: 1 1 auto !important;
  min-height: 360px !important;
  max-height: 58vh !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

body.npp-theme.npp-account-chat #stm_lms_chat .stm_lms_chat_messages__send {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 10px !important;
  align-items: center !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

body.npp-theme.npp-account-chat #stm_lms_chat .stm_lms_chat_messages__send-message,
body.npp-theme.npp-account-chat #stm_lms_chat select,
body.npp-theme.npp-account-chat #stm_lms_chat input,
body.npp-theme.npp-account-chat #stm_lms_chat textarea {
  min-width: 0 !important;
  max-width: 100% !important;
}

body.npp-theme .masterstudy-orders-container > .ms_lms_loader_ {
  display: none !important;
}

body.npp-theme .masterstudy-orders-container.orders-loading > .ms_lms_loader_ {
  display: block !important;
}

@media (min-width: 992px) {
  body.npp-theme .masterstudy-orders .masterstudy-orders-table__header {
    display: grid !important;
    grid-template-columns: minmax(120px, .75fr) minmax(220px, 1fr) minmax(340px, 1.25fr) !important;
    gap: 24px !important;
    align-items: center !important;
  }

  body.npp-theme .masterstudy-orders .masterstudy-orders-table__body-row > .masterstudy-orders-course-info {
    display: grid !important;
    grid-template-columns: 110px minmax(0, 1fr) 120px !important;
    gap: 22px !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body.npp-theme .masterstudy-orders .masterstudy-orders-course-info__common,
  body.npp-theme .masterstudy-orders .masterstudy-orders-course-info__title,
  body.npp-theme .masterstudy-orders .masterstudy-orders-course-info__category {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  body.npp-theme .masterstudy-orders .masterstudy-orders-course-info__title a {
    display: inline-block !important;
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
  }

  body.npp-theme .masterstudy-orders .masterstudy-orders-course-info__price {
    justify-self: end !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 767px) {
  body.npp-theme.npp-account-chat .stm_lms_user_account__content {
    width: min(560px, calc(100vw - 24px)) !important;
    max-width: calc(100vw - 24px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body.npp-theme.npp-account-chat #stm_lms_chat > .row,
  body.npp-theme.npp-account-chat #stm_lms_chat.npp-instructor-chat-layout > .row {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 16px !important;
  }

  body.npp-theme.npp-account-chat #stm_lms_chat > .row > [class*="col-"],
  body.npp-theme.npp-account-chat #stm_lms_chat > .row > [class*="col-"]:first-child,
  body.npp-theme.npp-account-chat #stm_lms_chat > .row > [class*="col-"]:not(:first-child) {
    grid-column: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body.npp-theme.npp-account-chat #stm_lms_chat .npp-instructor-chat-panel {
    padding: 16px !important;
    text-align: left !important;
  }

  body.npp-theme.npp-account-chat #stm_lms_chat .npp-instructor-chat-panel__head {
    text-align: left !important;
  }

  body.npp-theme.npp-account-chat #stm_lms_chat .stm_lms_chat__chat-container {
    min-height: 560px !important;
  }

  body.npp-theme.npp-account-chat #stm_lms_chat #stm_lms_chat_messages {
    min-height: 360px !important;
    max-height: 54vh !important;
  }
}

/* Account route frame: use the approved order-details framing across MasterStudy pages. */
body.npp-theme.npp-account-route {
  --npp-account-frame: min(1180px, calc(100vw - 64px));
  --npp-account-content-frame: min(860px, 100%);
  overflow-x: hidden !important;
}

body.npp-theme.npp-account-route :is(.npp-main, .npp-content, .site-main, .entry-content) {
  overflow-x: hidden !important;
}

body.npp-theme.npp-account-route :is(
  .stm-lms-wrapper.user-account-page,
  .stm_lms_account_classic,
  .masterstudy-account
) {
  box-sizing: border-box !important;
  width: var(--npp-account-frame) !important;
  max-width: var(--npp-account-frame) !important;
  min-width: 0 !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.npp-theme.npp-account-route .stm-lms-wrapper.user-account-page > .container {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.npp-theme.npp-account-route :is(
  .masterstudy-account-container,
  .masterstudy-account-content,
  .masterstudy-account__content,
  .masterstudy-account__main,
  .stm_lms_user_account__content
) {
  box-sizing: border-box !important;
  min-width: 0 !important;
  max-width: 100% !important;
}

body.npp-theme.npp-account-route :is(
  .masterstudy-enrolled-courses,
  .masterstudy-enrolled-courses__list,
  .masterstudy-enrolled-courses-tabs,
  .masterstudy-enrolled-quizzes,
  .masterstudy-account-my-certificates,
  .masterstudy-account-settings,
  .masterstudy-account-orders,
  .masterstudy-account-messages,
  #masterstudy-account-messages,
  .masterstudy-orders,
  .masterstudy-orders-container,
  .masterstudy-orders-row,
  .masterstudy-orders-details,
  #stm_lms_chat
) {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

@media (min-width: 1024px) {
  body.npp-theme.npp-account-route .masterstudy-account {
    gap: 40px !important;
    align-items: flex-start !important;
  }

  body.npp-theme.npp-account-route .masterstudy-account-container {
    flex: 1 1 auto !important;
    width: auto !important;
  }

  body.npp-theme.npp-account-route .masterstudy-account-container > :is(
    .masterstudy-enrolled-courses,
    .masterstudy-enrolled-quizzes,
    .masterstudy-account-my-certificates,
    .masterstudy-account-settings,
    .masterstudy-account-orders,
    .masterstudy-account-messages,
    #masterstudy-account-messages
  ) {
    max-width: var(--npp-account-content-frame) !important;
    margin-left: 0 !important;
    margin-right: auto !important;
  }
}

@media (max-width: 760px) {
  body.npp-theme.npp-account-route {
    --npp-account-frame: min(560px, calc(100vw - 48px));
    --npp-account-content-frame: 100%;
  }

  body.npp-theme.npp-account-route :is(.npp-main, .npp-content, .site-main, .entry-content) {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  body.npp-theme.npp-account-route :is(
    .stm-lms-wrapper,
    .stm-lms-wrapper.user-account-page,
    .stm_lms_account_classic,
    .masterstudy-account,
    .masterstudy-account-container,
    .masterstudy-account-content,
    .masterstudy-account__content,
    .masterstudy-account__main,
    .stm_lms_user_account__content
  ) {
    box-sizing: border-box !important;
    width: var(--npp-account-frame) !important;
    max-width: var(--npp-account-frame) !important;
    min-width: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow-x: hidden !important;
  }

  body.npp-theme.npp-account-route .stm-lms-wrapper.user-account-page > .container {
    width: 100% !important;
    max-width: 100% !important;
  }
}

body.npp-theme.npp-account-route .npp-enrolled-assignments {
  box-sizing: border-box;
  width: 100%;
}

body.npp-theme.npp-account-route .npp-enrolled-assignments__header {
  align-items: flex-start;
  border-bottom: 1px solid #dbe0e9;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 26px;
  padding-bottom: 22px;
}

body.npp-theme.npp-account-route .npp-enrolled-assignments__header h2 {
  color: #001931;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
}

body.npp-theme.npp-account-route .npp-enrolled-assignments__header p {
  color: #4d5e6f;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  margin: 8px 0 0;
  max-width: 480px;
}

body.npp-theme.npp-account-route .npp-enrolled-assignments__header > span {
  align-items: center;
  background: #eef4fb;
  border-radius: 999px;
  color: #1f6fff;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  min-width: 34px;
  padding: 0 12px;
}

body.npp-theme.npp-account-route .npp-enrolled-assignments__list {
  display: grid;
  gap: 14px;
  width: 100%;
}

body.npp-theme.npp-account-route .npp-enrolled-assignment {
  align-items: center;
  background: #ffffff;
  border: 1px solid #dbe0e9;
  border-radius: 10px;
  box-sizing: border-box;
  color: #001931;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 132px;
  padding: 22px;
  text-decoration: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
  width: 100%;
}

body.npp-theme.npp-account-route .npp-enrolled-assignment:hover,
body.npp-theme.npp-account-route .npp-enrolled-assignment:focus-visible {
  border-color: rgba(53, 211, 153, .65);
  box-shadow: 0 18px 48px rgba(7, 17, 31, .08);
  color: #001931;
  outline: 0;
  transform: translateY(-1px);
}

body.npp-theme.npp-account-route .npp-enrolled-assignment--next {
  background: linear-gradient(135deg, #fff7f7 0%, #ffffff 58%);
  border-color: rgba(255, 77, 91, .38);
  box-shadow: 0 18px 44px rgba(255, 77, 91, .09);
}

body.npp-theme.npp-account-route .npp-enrolled-assignment--next:hover,
body.npp-theme.npp-account-route .npp-enrolled-assignment--next:focus-visible {
  border-color: rgba(255, 77, 91, .58);
  box-shadow: 0 20px 52px rgba(255, 77, 91, .14);
}

body.npp-theme.npp-account-route .npp-enrolled-assignment--next .npp-enrolled-assignment__eyebrow {
  color: #ff3945 !important;
}

body.npp-theme.npp-account-route .npp-enrolled-assignment--next .npp-enrolled-assignment__action {
  background: #ff4d5b;
  box-shadow: 0 14px 32px rgba(255, 77, 91, .22);
  color: #ffffff;
}

body.npp-theme.npp-account-route .npp-enrolled-assignment--locked {
  background: #f3f6fa;
  border-color: #d8e0ea;
  color: #6b7a8f;
  cursor: not-allowed;
  opacity: .78;
}

body.npp-theme.npp-account-route .npp-enrolled-assignment--locked:hover,
body.npp-theme.npp-account-route .npp-enrolled-assignment--locked:focus-visible {
  border-color: #d8e0ea;
  box-shadow: none;
  color: #6b7a8f;
  transform: none;
}

body.npp-theme.npp-account-route .npp-enrolled-assignment__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}

body.npp-theme.npp-account-route .npp-enrolled-assignment__eyebrow {
  color: #1fc99a !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

body.npp-theme.npp-account-route .npp-enrolled-assignment__content strong {
  color: #001931;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.25;
}

body.npp-theme.npp-account-route .npp-enrolled-assignment__content span:not(.npp-enrolled-assignment__eyebrow),
body.npp-theme.npp-account-route .npp-enrolled-assignment__content small {
  color: #4d5e6f;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

body.npp-theme.npp-account-route .npp-enrolled-assignment--locked .npp-enrolled-assignment__content strong,
body.npp-theme.npp-account-route .npp-enrolled-assignment--locked .npp-enrolled-assignment__content span,
body.npp-theme.npp-account-route .npp-enrolled-assignment--locked .npp-enrolled-assignment__content small {
  color: #6b7a8f !important;
}

body.npp-theme.npp-account-route .npp-enrolled-assignment__lock-note {
  color: #8793a5 !important;
  font-style: italic;
}

body.npp-theme.npp-account-route .npp-enrolled-assignment__side {
  align-items: flex-end;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 12px;
}

body.npp-theme.npp-account-route .npp-enrolled-assignment__status,
body.npp-theme.npp-account-route .npp-enrolled-assignment__action {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  justify-content: center;
  line-height: 1;
  min-height: 30px;
  padding: 8px 12px;
  text-transform: uppercase;
  white-space: nowrap;
}

body.npp-theme.npp-account-route .npp-enrolled-assignment__status {
  background: #eef4fb;
  color: #4d5e6f;
}

body.npp-theme.npp-account-route .npp-enrolled-assignment__status--draft {
  background: rgba(31, 111, 255, .12);
  color: #1f6fff;
}

body.npp-theme.npp-account-route .npp-enrolled-assignment__status--pending {
  background: rgba(255, 180, 40, .16);
  color: #a56400;
}

body.npp-theme.npp-account-route .npp-enrolled-assignment__status--passed,
body.npp-theme.npp-account-route .npp-enrolled-assignment__status--publish {
  background: rgba(53, 211, 153, .16);
  color: #0f8d68;
}

body.npp-theme.npp-account-route .npp-enrolled-assignment__status--not_passed {
  background: rgba(255, 77, 91, .12);
  color: #c9283a;
}

body.npp-theme.npp-account-route .npp-enrolled-assignment__action {
  background: #35d399;
  box-shadow: 0 14px 32px rgba(53, 211, 153, .24);
  color: #06111f;
  min-width: 118px;
  padding-left: 18px;
  padding-right: 18px;
}

body.npp-theme.npp-account-route .npp-enrolled-assignment--locked .npp-enrolled-assignment__action {
  background: #dce3ec;
  box-shadow: none;
  color: #526073;
}

@media (max-width: 767px) {
  body.npp-theme.npp-account-route .npp-enrolled-assignments__header {
    margin-bottom: 22px;
    padding-bottom: 18px;
  }

  body.npp-theme.npp-account-route .npp-enrolled-assignments__header h2 {
    font-size: 24px;
  }

  body.npp-theme.npp-account-route .npp-enrolled-assignment {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    min-height: 0;
    padding: 18px;
  }

  body.npp-theme.npp-account-route .npp-enrolled-assignment__side {
    align-items: stretch;
    flex-direction: row;
    justify-content: space-between;
  }

  body.npp-theme.npp-account-route .npp-enrolled-assignment__action {
    min-width: 0;
  }
}

@media (max-width: 380px) {
  body.npp-theme.npp-account-route {
    --npp-account-frame: min(560px, calc(100vw - 20px));
  }

  body.npp-theme.npp-account-route .masterstudy-enrolled-courses-sorting,
  body.npp-theme.npp-account-route .masterstudy-enrolled-courses-sorting__block-wrapper,
  body.npp-theme.npp-account-route .masterstudy-enrolled-courses-sorting__block,
  body.npp-theme.npp-account-route .masterstudy-enrolled-courses-sorting__block-content {
    overflow: visible !important;
  }

  body.npp-theme.npp-account-route .masterstudy-enrolled-courses-sorting__block-content {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 8px 10px !important;
    text-align: left !important;
    white-space: normal !important;
  }

  body.npp-theme.npp-account-route .masterstudy-enrolled-courses-sorting__block-content a,
  body.npp-theme.npp-account-route .masterstudy-enrolled-courses-sorting__block-content button,
  body.npp-theme.npp-account-route .masterstudy-enrolled-courses-sorting__block-content span {
    flex: 0 1 auto !important;
    max-width: 100% !important;
    white-space: nowrap !important;
  }

  body.npp-theme.npp-account-route .masterstudy-enrolled-courses-tabs {
    align-items: flex-start !important;
    overflow: visible !important;
  }

  body.npp-theme.npp-account-route .masterstudy-enrolled-courses-tabs__blocks {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px 10px !important;
    justify-content: flex-start !important;
    margin-left: 0 !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: visible !important;
    width: 100% !important;
  }

  body.npp-theme.npp-account-route .masterstudy-enrolled-courses-tabs__block {
    flex: 0 1 auto !important;
    margin-right: 0 !important;
    max-width: 100% !important;
    padding-bottom: 8px !important;
  }

  body.npp-theme.npp-account-route .masterstudy-enrolled-courses-tabs__block-content,
  body.npp-theme.npp-account-route .masterstudy-enrolled-courses-tabs__block-title,
  body.npp-theme.npp-account-route .masterstudy-enrolled-courses-tabs__block-value {
    flex-shrink: 0 !important;
    white-space: nowrap !important;
  }

  body.npp-theme.npp-account-route .npp-enrolled-assignment {
    gap: 16px;
    padding: 16px;
    overflow: hidden;
  }

  body.npp-theme.npp-account-route .npp-enrolled-assignment__side {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
    width: 100%;
  }

  body.npp-theme.npp-account-route .npp-enrolled-assignment__status,
  body.npp-theme.npp-account-route .npp-enrolled-assignment__action {
    box-sizing: border-box;
    max-width: 100%;
    min-width: 0;
    width: 100%;
    white-space: normal;
  }

  body.npp-theme.npp-account-route .masterstudy-account-enrolled-quizzes {
    gap: 36px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  body.npp-theme.npp-account-route .masterstudy-account-enrolled-quizzes-container {
    gap: 34px;
    width: 100%;
    max-width: 100%;
  }

  body.npp-theme.npp-account-route .masterstudy-account-enrolled-quizzes__course,
  body.npp-theme.npp-account-route .masterstudy-account-enrolled-quizzes__header,
  body.npp-theme.npp-account-route .masterstudy-account-enrolled-quizzes-items,
  body.npp-theme.npp-account-route .masterstudy-account-enrolled-quizzes-item {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  body.npp-theme.npp-account-route .masterstudy-account-enrolled-quizzes-items {
    padding-inline: 14px;
  }

  body.npp-theme.npp-account-route .masterstudy-account-enrolled-quizzes-item {
    align-items: stretch;
    gap: 18px;
  }

  body.npp-theme.npp-account-route .masterstudy-account-enrolled-quizzes-item__name-container,
  body.npp-theme.npp-account-route .masterstudy-account-enrolled-quizzes-item__name-container-title {
    min-width: 0;
    width: 100%;
  }

  body.npp-theme.npp-account-route .masterstudy-account-enrolled-quizzes-item__name-container-title {
    align-items: flex-start;
    justify-content: space-between;
  }

  body.npp-theme.npp-account-route .masterstudy-account-enrolled-quizzes-item__name-container-title a {
    flex: 1 1 auto;
    min-width: 0;
  }

  body.npp-theme.npp-account-route .masterstudy-account-enrolled-quizzes-item__status {
    flex: 0 0 auto;
    margin-left: 8px;
  }

  body.npp-theme.npp-account-route .masterstudy-account-enrolled-quizzes-item__info {
    align-items: center;
    display: grid;
    gap: 8px;
    grid-template-columns: minmax(0, 1fr) auto;
    justify-content: normal;
    width: 100%;
  }

  body.npp-theme.npp-account-route .masterstudy-account-enrolled-quizzes-item__progress-wrapper {
    gap: 8px;
    min-width: 0;
  }

  body.npp-theme.npp-account-route .masterstudy-account-enrolled-quizzes-item__progress {
    gap: 6px;
    min-width: 0;
  }

  body.npp-theme.npp-account-route .masterstudy-account-enrolled-quizzes-item__progress--grade-text {
    width: auto;
    min-width: 74px;
    font-size: 13px;
    white-space: nowrap;
  }

  body.npp-theme.npp-account-route .masterstudy-account-enrolled-quizzes-item__progress--percent {
    margin-right: 0;
    white-space: nowrap;
  }

  body.npp-theme.npp-account-route .masterstudy-account-enrolled-quizzes-item__details {
    box-sizing: border-box;
    flex: 0 0 auto;
    margin-left: 0;
    max-width: 86px;
    min-width: 0;
    overflow: hidden;
    padding: 11px 12px;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.npp-theme .masterstudy-account-mobile-menu {
    box-sizing: border-box;
    height: 88px;
    gap: 2px;
    justify-content: space-between;
    padding: 6px 10px 12px;
  }

  body.npp-theme .masterstudy-account-mobile-menu a.masterstudy-account-mobile-menu__link {
    box-sizing: border-box;
    flex: 1 1 0;
    gap: 4px;
    height: 66px;
    min-width: 0;
    max-width: 72px;
    overflow: visible;
    padding: 8px 4px 7px;
  }

  body.npp-theme .masterstudy-account-mobile-menu .npp-account-svg-icon {
    flex-basis: 28px;
    height: 28px;
    margin-right: 0;
    width: 28px;
  }

  body.npp-theme .masterstudy-account-mobile-menu__item {
    display: block !important;
    font-size: 11px;
    line-height: 1.15;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

body.npp-theme.npp-account-route .npp-enrolled-quizzes-static .masterstudy-account-enrolled-quizzes-item__progress--grade {
  background: var(--accent-100, #227aff);
  color: #fff;
}

body.npp-theme.npp-account-route .npp-enrolled-quizzes-static .masterstudy-account-enrolled-quizzes-item__status.passed {
  background: var(--success-100, #4ac928);
}

body.npp-theme.npp-account-route .npp-enrolled-quizzes-static .masterstudy-account-enrolled-quizzes-item__status.failed {
  background: var(--danger-100, #ff3945);
}

body.npp-theme .masterstudy-course-player-assignments_draft .masterstudy-course-player-assignments__task {
  background: #f4f8ff;
  border: 1px solid #dbe8ff;
  box-shadow: 0 18px 42px rgba(34, 122, 255, 0.08);
}

body.npp-theme .masterstudy-course-player-assignments_draft .masterstudy-course-player-assignments__accordion-button {
  color: #001931;
}

body.npp-theme .masterstudy-course-player-assignments_draft .masterstudy-course-player-assignments__accordion-content {
  display: block;
}

.npp-assignment-submitted-modal {
  align-items: center;
  background: rgba(7, 17, 31, .68);
  backdrop-filter: blur(10px);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 20px;
  position: fixed;
  z-index: 999999;
}

.npp-assignment-submitted-modal__dialog {
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(53, 211, 153, .26);
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .24);
  box-sizing: border-box;
  color: #06111f;
  display: flex;
  flex-direction: column;
  max-width: 440px;
  padding: 34px 30px 30px;
  position: relative;
  text-align: center;
  width: min(100%, 440px);
}

.npp-assignment-submitted-modal__close {
  align-items: center;
  background: #edf3f9;
  border: 0;
  border-radius: 50%;
  color: #334155;
  cursor: pointer;
  display: inline-flex;
  font-size: 24px;
  font-weight: 700;
  height: 34px;
  justify-content: center;
  line-height: 1;
  padding: 0 0 3px;
  position: absolute;
  right: 14px;
  top: 14px;
  width: 34px;
}

.npp-assignment-submitted-modal__mark {
  align-items: center;
  background: #35d399;
  border-radius: 50%;
  box-shadow: 0 18px 38px rgba(53, 211, 153, .28);
  color: #06111f;
  display: inline-flex;
  font-size: 28px;
  font-weight: 900;
  height: 58px;
  justify-content: center;
  margin-bottom: 18px;
  width: 58px;
}

.npp-assignment-submitted-modal h2 {
  color: #06111f;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 10px;
}

.npp-assignment-submitted-modal p {
  color: #4d5e6f;
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 22px;
}

.npp-assignment-submitted-modal__button {
  background: #35d399;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 16px 36px rgba(53, 211, 153, .24);
  color: #06111f;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  min-height: 46px;
  padding: 13px 22px;
  text-transform: uppercase;
}

.npp-assignment-submitted-modal_closing {
  opacity: .01;
  transition: opacity .12s ease;
}

body.npp-assignment-submitted-modal-open {
  overflow: hidden;
}

body.npp-theme.npp-account-assignments .masterstudy-table__item.npp-teacher-assignment-has-pending,
body.npp-theme.npp-account-assignments .masterstudy-table__item:has(.masterstudy-tcell__data[data-key="pending"][data-value]:not([data-value=""]):not([data-value="0"])) {
  background: linear-gradient(90deg, rgba(255, 236, 239, .98) 0%, #fff 58%);
  border-left: 4px solid #ff3b5f;
  box-shadow: inset 0 0 0 1px rgba(255, 59, 95, .16);
}

body.npp-theme.npp-account-assignments .masterstudy-table__item.npp-teacher-assignment-has-pending .masterstudy-tcell__data[data-key="pending"],
body.npp-theme.npp-account-assignments .masterstudy-table__item.npp-teacher-assignment-has-pending .masterstudy-tcell__data[data-key="pending"] *,
body.npp-theme.npp-account-assignments .masterstudy-table__item:has(.masterstudy-tcell__data[data-key="pending"][data-value]:not([data-value=""]):not([data-value="0"])) .masterstudy-tcell__data[data-key="pending"],
body.npp-theme.npp-account-assignments .masterstudy-table__item:has(.masterstudy-tcell__data[data-key="pending"][data-value]:not([data-value=""]):not([data-value="0"])) .masterstudy-tcell__data[data-key="pending"] * {
  color: #b61735 !important;
  font-weight: 900;
}

body.npp-theme.npp-account-assignments .masterstudy-table__item.npp-teacher-assignment-has-pending .masterstudy-tcell__data[data-key="pending"]::before,
body.npp-theme.npp-account-assignments .masterstudy-table__item:has(.masterstudy-tcell__data[data-key="pending"][data-value]:not([data-value=""]):not([data-value="0"])) .masterstudy-tcell__data[data-key="pending"]::before {
  background: #ff3b5f;
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(255, 59, 95, .12);
}

body.npp-theme.npp-account-assignments .masterstudy-table__item.npp-teacher-assignment-has-pending .masterstudy-table__component .masterstudy-button,
body.npp-theme.npp-account-assignments .masterstudy-table__item.npp-teacher-assignment-has-pending .masterstudy-table__component a,
body.npp-theme.npp-account-assignments .masterstudy-table__item:has(.masterstudy-tcell__data[data-key="pending"][data-value]:not([data-value=""]):not([data-value="0"])) .masterstudy-table__component .masterstudy-button,
body.npp-theme.npp-account-assignments .masterstudy-table__item:has(.masterstudy-tcell__data[data-key="pending"][data-value]:not([data-value=""]):not([data-value="0"])) .masterstudy-table__component a {
  background: #ffe8ed;
  color: #9f1230;
}

@media (min-width: 1200px) {
  body.npp-theme.npp-account-assignments .masterstudy-table__wrapper {
    overflow: visible;
  }

  body.npp-theme.npp-account-assignments .masterstudy-thead {
    display: grid;
    grid-template-columns: minmax(330px, 2.7fr) 68px 104px 124px 104px 132px;
    align-items: center;
    column-gap: 8px;
  }

  body.npp-theme.npp-account-assignments .masterstudy-table__item {
    display: grid;
    grid-template-columns: minmax(142px, 1.15fr) minmax(188px, 1.55fr) 68px 104px 124px 104px 132px;
    align-items: center;
    column-gap: 8px;
    padding-left: 16px;
    padding-right: 16px;
  }

  body.npp-theme.npp-account-assignments .masterstudy-table__item.masterstudy-table__item--hidden,
  body.npp-theme.npp-account-assignments .masterstudy-table__item.masterstudy-table__item--clone.masterstudy-table__item--hidden {
    display: none !important;
  }

  body.npp-theme.npp-account-assignments .masterstudy-thead > .masterstudy-tcell,
  body.npp-theme.npp-account-assignments .masterstudy-table__item > .masterstudy-tcell {
    box-sizing: border-box;
    flex: none;
    min-width: 0;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  body.npp-theme.npp-account-assignments .masterstudy-table__item > .masterstudy-tcell:nth-child(n+3):nth-child(-n+6),
  body.npp-theme.npp-account-assignments .masterstudy-thead > .masterstudy-tcell:nth-child(n+2):nth-child(-n+5) {
    justify-content: center;
    text-align: center;
  }

  body.npp-theme.npp-account-assignments .masterstudy-table__item > .masterstudy-tcell:last-child,
  body.npp-theme.npp-account-assignments .masterstudy-thead > .masterstudy-tcell:last-child {
    justify-content: flex-end;
    width: 132px;
  }

  body.npp-theme.npp-account-assignments .masterstudy-table__component,
  body.npp-theme.npp-account-assignments .masterstudy-table__component .masterstudy-button,
  body.npp-theme.npp-account-assignments .masterstudy-table__component a {
    box-sizing: border-box;
    width: 132px;
    max-width: 132px;
    min-width: 132px;
  }

  body.npp-theme.npp-account-assignments .masterstudy-table__component .masterstudy-button,
  body.npp-theme.npp-account-assignments .masterstudy-table__component a {
    padding-left: 10px;
    padding-right: 10px;
    white-space: nowrap;
  }
}

@media (max-width: 767px) {
  body.npp-theme.npp-account-assignments .masterstudy-table__wrapper {
    max-width: 100%;
    overflow: visible;
  }

  body.npp-theme.npp-account-assignments .masterstudy-table__item {
    background: #fff;
    border: 1px solid #dbe0e9;
    border-radius: 10px;
    box-sizing: border-box;
    box-shadow: 0 10px 24px rgba(7, 17, 31, .06);
    margin-bottom: 12px;
    max-width: 100%;
    overflow: hidden;
    padding: 16px !important;
    width: 100%;
  }

  body.npp-theme.npp-account-assignments .masterstudy-table__item.masterstudy-table__item--clone {
    border: 1px solid #dbe0e9;
  }

  body.npp-theme.npp-account-assignments .masterstudy-table__item > .masterstudy-tcell {
    box-sizing: border-box;
    max-width: 100%;
    min-width: 0;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }

  body.npp-theme.npp-account-assignments .masterstudy-table__item > .masterstudy-tcell:first-child,
  body.npp-theme.npp-account-assignments .masterstudy-table__item > .masterstudy-tcell:nth-child(2) {
    overflow-wrap: anywhere;
  }

  body.npp-theme.npp-account-assignments .masterstudy-table__component,
  body.npp-theme.npp-account-assignments .masterstudy-table__component .masterstudy-button,
  body.npp-theme.npp-account-assignments .masterstudy-table__component a {
    box-sizing: border-box;
    max-width: 100%;
    min-height: 44px;
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  body.npp-theme.npp-account-assignments .masterstudy-table__wrapper {
    max-width: 100%;
    overflow: visible;
  }

  body.npp-theme.npp-account-assignments .masterstudy-table__item.masterstudy-table__item--clone {
    background: #fff;
    border: 1px solid #dbe0e9;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(7, 17, 31, .06);
    box-sizing: border-box;
    max-width: 100%;
    overflow: hidden;
  }
}

@media (max-width: 380px) {
  body.npp-theme.npp-account-route .npp-enrolled-quizzes-static .masterstudy-account-enrolled-quizzes-item__progress--grade {
    display: none;
  }
}

/* Instructor dashboard: keep desktop action buttons inside the account frame. */
.page-id-23788 .masterstudy-course-card .masterstudy-instructor-course-actions__modal-btn i.stmlms-course-modal-menu {
  align-items: center !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: #4d5e6f !important;
  display: inline-flex !important;
  font-family: stmlms !important;
  font-size: 18px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  height: auto !important;
  justify-content: center !important;
  line-height: 1 !important;
  margin: 0 !important;
  min-width: 0 !important;
  width: auto !important;
}

.page-id-23788 .masterstudy-course-card .masterstudy-instructor-course-actions__modal-btn i.stmlms-course-modal-menu::before {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: currentColor !important;
  content: "\eb9a" !important;
  font-family: stmlms !important;
  font-size: inherit !important;
  height: auto !important;
  line-height: 1 !important;
  width: auto !important;
}

@media (max-width: 480px) {
  body.npp-theme.npp-account-route :is(
    .masterstudy-analytics-short-report-page,
    .masterstudy-analytics-revenue-page,
    .masterstudy-analytics-engagement-page,
    .masterstudy-analytics-instructor-students-page,
    .masterstudy-analytics-reviews-page
  ) {
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-x: hidden !important;
    width: 100% !important;
  }

  body.npp-theme.npp-account-route .masterstudy-analytics-short-report-page__tabs,
  body.npp-theme.npp-account-route [class*="masterstudy-analytics-"][class*="-page__tabs"] {
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: visible !important;
    width: 100% !important;
  }

  body.npp-theme.npp-account-route .masterstudy-analytics-short-report-page__tabs .masterstudy-tabs,
  body.npp-theme.npp-account-route [class*="masterstudy-analytics-"][class*="-page__tabs"] .masterstudy-tabs {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    grid-template-columns: none !important;
    height: auto !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: visible !important;
    width: 100% !important;
  }

  body.npp-theme.npp-account-route .masterstudy-analytics-short-report-page__tabs .masterstudy-tabs__item,
  body.npp-theme.npp-account-route [class*="masterstudy-analytics-"][class*="-page__tabs"] .masterstudy-tabs__item {
    flex: 1 1 0 !important;
    font-size: 10px !important;
    letter-spacing: 0 !important;
    line-height: 1.1 !important;
    margin: 0 !important;
    max-width: none !important;
    min-width: 0 !important;
    overflow: visible !important;
    padding-left: 2px !important;
    padding-right: 2px !important;
    text-align: center !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    width: auto !important;
  }
}

@media (max-width: 480px) {
  body.npp-theme.npp-account-painel .masterstudy-analytics-short-report-page {
    align-items: stretch !important;
    border: 0 !important;
    display: grid !important;
    gap: 10px !important;
    grid-template-columns: 1fr !important;
    height: auto !important;
    margin: 24px 0 18px !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: visible !important;
    width: 100% !important;
  }

  body.npp-theme.npp-account-painel .masterstudy-analytics-short-report-page__title {
    border-top: 1px solid #dbe0e9 !important;
    font-size: 22px !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    padding-top: 16px !important;
    width: 100% !important;
  }

  body.npp-theme.npp-account-painel .masterstudy-analytics-short-report-page > .masterstudy-button,
  body.npp-theme.npp-account-painel .masterstudy-analytics-short-report-page > a.masterstudy-button {
    box-sizing: border-box !important;
    justify-content: center !important;
    margin: 0 !important;
    max-width: 100% !important;
    min-height: 44px !important;
    width: 100% !important;
  }

  body.npp-theme.npp-account-painel .masterstudy-analytics-short-report-page__tabs {
    border-bottom: 1px solid #dbe0e9 !important;
    display: block !important;
    margin: 0 !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: visible !important;
    padding: 2px 0 0 !important;
    width: 100% !important;
  }

  body.npp-theme.npp-account-painel .masterstudy-analytics-short-report-page__tabs .masterstudy-tabs {
    display: grid !important;
    gap: 0 !important;
    grid-template-columns: 1.35fr repeat(4, 1fr) !important;
    height: auto !important;
    margin: 0 !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: visible !important;
    width: 100% !important;
  }

  body.npp-theme.npp-account-painel .masterstudy-analytics-short-report-page__tabs .masterstudy-tabs__item {
    align-items: center !important;
    display: flex !important;
    font-size: 9px !important;
    justify-content: center !important;
    letter-spacing: 0 !important;
    line-height: 1.1 !important;
    margin: 0 !important;
    max-width: 100% !important;
    min-height: 38px !important;
    min-width: 0 !important;
    overflow: hidden !important;
    padding: 0 1px !important;
    text-align: center !important;
    text-overflow: clip !important;
    white-space: nowrap !important;
    width: 100% !important;
  }

  body.page-id-23788.npp-account-route .masterstudy-analytics-short-report-page__tabs,
  body.page-id-23788.npp-account-route .masterstudy-analytics-short-report-page__tabs .masterstudy-tabs {
    box-sizing: border-box !important;
    left: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    position: relative !important;
    transform: none !important;
  }

  body.page-id-23788.npp-account-route .masterstudy-analytics-short-report-page__tabs .masterstudy-tabs__item {
    box-sizing: border-box !important;
    min-width: 0 !important;
    overflow: visible !important;
    transform: none !important;
  }

  body.page-id-23788.npp-account-route .masterstudy-analytics-short-report-page__tabs .masterstudy-tabs__item:first-child {
    flex-basis: 68px !important;
    font-size: 8px !important;
    min-width: 68px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  body.npp-theme.npp-account-painel .masterstudy-analytics-short-report-page-stats,
  body.npp-theme.npp-account-painel .masterstudy-analytics-short-report-page-stats__wrapper,
  body.npp-theme.npp-account-painel .masterstudy-analytics-short-report-page-stats__block,
  body.npp-theme.npp-account-painel .masterstudy-analytics-short-report-page-stats__block .masterstudy-stats-block {
    box-sizing: border-box !important;
    max-width: 100% !important;
    min-width: 0 !important;
    width: 100% !important;
  }

  body.npp-theme.npp-account-painel .masterstudy-analytics-short-report-page-stats__wrapper {
    display: grid !important;
    gap: 10px !important;
    grid-template-columns: 1fr !important;
  }

  body.npp-theme.npp-account-painel .masterstudy-analytics-short-report-page-stats__block {
    border: 1px solid #dbe0e9 !important;
    border-radius: 12px !important;
    outline: 0 !important;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  body.npp-theme.npp-account-sales .masterstudy-date-field {
    align-items: center !important;
    box-sizing: border-box !important;
    display: flex !important;
    gap: 0 !important;
    height: 44px !important;
    max-width: 100% !important;
    min-height: 44px !important;
    min-width: 0 !important;
    overflow: hidden !important;
    padding: 0 10px !important;
    width: 100% !important;
  }

  body.npp-theme.npp-account-sales .masterstudy-date-field-label,
  body.npp-theme.npp-account-sales .masterstudy-date-field-value {
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
    white-space: nowrap !important;
  }

  body.npp-theme.npp-account-sales .masterstudy-date-field-label {
    color: #4d5e6f !important;
    flex: 0 0 auto !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    margin-right: 6px !important;
    max-width: 36% !important;
    text-overflow: ellipsis !important;
  }

  body.npp-theme.npp-account-sales .masterstudy-date-field-value {
    color: #001931 !important;
    flex: 1 1 auto !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    justify-content: flex-start !important;
    line-height: 1 !important;
    text-overflow: ellipsis !important;
  }

  body.npp-theme.npp-account-sales .masterstudy-date-field::after {
    right: 8px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }
}

@media (max-width: 767.98px) {
  body.npp-theme.npp-account-grades .stm-lms-wrapper.user-account-page,
  body.npp-theme.npp-account-grades .stm-lms-wrapper.user-account-page > .container,
  body.npp-theme.npp-account-grades .masterstudy-grades-instructor {
    box-sizing: border-box !important;
    max-width: 100% !important;
    min-width: 0 !important;
    width: 100% !important;
  }

  body.npp-theme.npp-account-grades .stm-lms-wrapper.user-account-page > .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  body.npp-theme.npp-account-grades .masterstudy-grades-instructor {
    margin-left: 0 !important;
    overflow: hidden !important;
  }

  body.npp-theme.npp-account-grades .masterstudy-grades-instructor__header {
    gap: 14px !important;
    margin: 0 0 18px !important;
    padding: 0 !important;
  }

  body.npp-theme.npp-account-grades .masterstudy-grades-instructor__title {
    font-size: 26px !important;
    line-height: 1.15 !important;
  }

  body.npp-theme.npp-account-grades .masterstudy-grades-instructor__sorting,
  body.npp-theme.npp-account-grades .masterstudy-grades-instructor__search-wrapper,
  body.npp-theme.npp-account-grades .masterstudy-grades-instructor__sorting select.masterstudy-grades-instructor__select,
  body.npp-theme.npp-account-grades .masterstudy-grades-instructor__sorting input.masterstudy-grades-instructor__search {
    box-sizing: border-box !important;
    max-width: 100% !important;
    min-width: 0 !important;
    width: 100% !important;
  }

  body.npp-theme.npp-account-grades .masterstudy-grades-instructor__sorting {
    gap: 10px !important;
    margin-top: 0 !important;
  }

  body.npp-theme.npp-account-grades .masterstudy-grades-instructor__search-wrapper {
    margin: 0 !important;
  }

  body.npp-theme.npp-account-grades .masterstudy-grades-instructor-table {
    box-sizing: border-box !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
    padding: 0 !important;
    width: 100% !important;
  }

  body.npp-theme.npp-account-grades .masterstudy-grades-instructor-table__wrapper,
  body.npp-theme.npp-account-grades .masterstudy-datatable,
  body.npp-theme.npp-account-grades .dt-container,
  body.npp-theme.npp-account-grades .dt-layout-row,
  body.npp-theme.npp-account-grades .dt-layout-cell {
    box-sizing: border-box !important;
    max-width: 100% !important;
    min-width: 0 !important;
    width: 100% !important;
  }

  body.npp-theme.npp-account-grades .masterstudy-grades-instructor-table .dt-layout-table {
    display: block !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    padding-bottom: 8px !important;
    width: 100% !important;
  }

  body.npp-theme.npp-account-grades .masterstudy-grades-instructor-table table.dataTable {
    min-width: 760px !important;
    width: 760px !important;
  }

  body.npp-theme.npp-account-grades .dt-layout-row:last-child {
    align-items: center !important;
    display: grid !important;
    gap: 12px !important;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
  }
}

@media (max-width: 480px) {
  body.npp-theme.npp-account-grades .masterstudy-grade-details__block {
    box-sizing: border-box !important;
    max-height: calc(100dvh - 32px) !important;
    max-width: calc(100vw - 24px) !important;
    min-width: 0 !important;
    overflow-y: auto !important;
    width: calc(100vw - 24px) !important;
  }

  body.npp-theme.npp-account-grades .masterstudy-grade-details__content,
  body.npp-theme.npp-account-grades .masterstudy-grade-details__course,
  body.npp-theme.npp-account-grades .masterstudy-grade-details__student,
  body.npp-theme.npp-account-grades .masterstudy-grade-details__date,
  body.npp-theme.npp-account-grades .masterstudy-grade-details__mark,
  body.npp-theme.npp-account-grades .masterstudy-grade-details__exams {
    box-sizing: border-box !important;
    max-width: 100% !important;
    min-width: 0 !important;
    width: 100% !important;
  }

  body.npp-theme.npp-account-grades .masterstudy-grade-details__course,
  body.npp-theme.npp-account-grades .masterstudy-grade-details__student,
  body.npp-theme.npp-account-grades .masterstudy-grade-details__date {
    display: grid !important;
    gap: 6px !important;
    grid-template-columns: 1fr !important;
  }

  body.npp-theme.npp-account-grades .masterstudy-grade-details__mark {
    align-items: center !important;
    display: grid !important;
    gap: 10px !important;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
  }

  body.npp-theme.npp-account-grades .masterstudy-grade-details__mark-progress {
    transform: scale(.78) !important;
    transform-origin: center !important;
  }

  body.npp-theme.npp-account-grades .masterstudy-grade-details__regenerate .masterstudy-button,
  body.npp-theme.npp-account-grades .masterstudy-grade-details__regenerate a {
    justify-content: center !important;
    max-width: 100% !important;
    width: 100% !important;
  }
}

/* Instructor certificates tablet layout */
@media (min-width: 768px) and (max-width: 1100px) {
  body.npp-theme.npp-account-route .masterstudy-instructor-certificates,
  body.npp-theme.npp-account-route .masterstudy-instructor-certificates__header,
  body.npp-theme.npp-account-route .masterstudy-instructor-certificates__content,
  body.npp-theme.npp-account-route .masterstudy-instructor-certificates__list {
    box-sizing: border-box !important;
    max-width: 100% !important;
    min-width: 0 !important;
    width: 100% !important;
  }

  body.npp-theme.npp-account-route .masterstudy-instructor-certificates__header {
    align-items: stretch !important;
    display: grid !important;
    gap: 14px !important;
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body.npp-theme.npp-account-route .masterstudy-instructor-certificates__header-top,
  body.npp-theme.npp-account-route .masterstudy-instructor-certificates__filters,
  body.npp-theme.npp-account-route .masterstudy-instructor-certificates__filters-selects {
    box-sizing: border-box !important;
    display: grid !important;
    gap: 12px !important;
    max-width: 100% !important;
    min-width: 0 !important;
    width: 100% !important;
  }

  body.npp-theme.npp-account-route .masterstudy-instructor-certificates__filters {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2.06fr) !important;
  }

  body.npp-theme.npp-account-route .masterstudy-instructor-certificates__filters-selects {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  }

  body.npp-theme.npp-account-route .masterstudy-instructor-certificates__filters-search,
  body.npp-theme.npp-account-route .masterstudy-instructor-certificates__filters-search .masterstudy-search,
  body.npp-theme.npp-account-route .masterstudy-instructor-certificates__filters-selects .masterstudy-select {
    box-sizing: border-box !important;
    margin: 0 !important;
    max-width: 100% !important;
    min-width: 0 !important;
    width: 100% !important;
  }

  body.npp-theme.npp-account-route .masterstudy-instructor-certificates__heading {
    align-items: center !important;
    box-sizing: border-box !important;
    display: grid !important;
    grid-template-columns: minmax(190px, 1.35fr) minmax(88px, .62fr) minmax(132px, .9fr) 56px 128px !important;
    gap: 14px !important;
    height: 40px !important;
    padding: 0 16px !important;
    width: 100% !important;
  }

  body.npp-theme.npp-account-route .masterstudy-instructor-certificates__heading-title,
  body.npp-theme.npp-account-route .masterstudy-instructor-certificates__heading-category,
  body.npp-theme.npp-account-route .masterstudy-instructor-certificates__heading-instructor,
  body.npp-theme.npp-account-route .masterstudy-instructor-certificates__heading-id,
  body.npp-theme.npp-account-route .masterstudy-instructor-certificates__heading-actions {
    box-sizing: border-box !important;
    margin: 0 !important;
    min-width: 0 !important;
    width: auto !important;
  }

  body.npp-theme.npp-account-route .masterstudy-instructor-certificates__list {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
  }

  body.npp-theme.npp-account-route .masterstudy-instructor-certificates__item.masterstudy-instructor-certificates__item--hidden,
  body.npp-theme.npp-account-route .masterstudy-instructor-certificates__list-not-found.masterstudy-instructor-certificates__item--hidden {
    display: none !important;
  }

  body.npp-theme.npp-account-route .masterstudy-instructor-certificates__item:not(.masterstudy-instructor-certificates__item--hidden) {
    box-sizing: border-box !important;
    display: grid !important;
    gap: 14px !important;
    grid-template-columns: 82px minmax(94px, 1fr) minmax(88px, .62fr) minmax(132px, .9fr) 56px 128px !important;
    padding: 12px 16px !important;
    width: 100% !important;
  }

  body.npp-theme.npp-account-route .masterstudy-instructor-certificates__item-wrapper {
    box-sizing: border-box !important;
    display: contents !important;
  }

  body.npp-theme.npp-account-route .masterstudy-instructor-certificates__item-image,
  body.npp-theme.npp-account-route .masterstudy-instructor-certificates__item-title,
  body.npp-theme.npp-account-route .masterstudy-instructor-certificates__item-category,
  body.npp-theme.npp-account-route .masterstudy-instructor-certificates__item-instructor,
  body.npp-theme.npp-account-route .masterstudy-instructor-certificates__item-id {
    box-sizing: border-box !important;
    margin: 0 !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-wrap: anywhere !important;
    width: 100% !important;
  }

  body.npp-theme.npp-account-route .masterstudy-instructor-certificates__item-heading,
  body.npp-theme.npp-account-route .masterstudy-instructor-certificates__item-meta-title {
    display: none !important;
  }

  body.npp-theme.npp-account-route .masterstudy-instructor-certificates__item-image {
    justify-content: flex-start !important;
    width: 82px !important;
  }

  body.npp-theme.npp-account-route .masterstudy-instructor-certificates__item-image img {
    max-width: 80px !important;
    width: 80px !important;
  }

  body.npp-theme.npp-account-route .masterstudy-instructor-certificates__item-title,
  body.npp-theme.npp-account-route .masterstudy-instructor-certificates__item-category,
  body.npp-theme.npp-account-route .masterstudy-instructor-certificates__item-instructor,
  body.npp-theme.npp-account-route .masterstudy-instructor-certificates__item-id {
    align-items: center !important;
    display: flex !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
  }

  body.npp-theme.npp-account-route .masterstudy-instructor-certificates__item-wrapper:last-child {
    margin: 0 !important;
  }

  body.npp-theme.npp-account-route .masterstudy-instructor-certificates__item-meta {
    box-sizing: border-box !important;
    display: contents !important;
    margin: 0 !important;
    min-width: 0 !important;
    width: 100% !important;
  }

  body.npp-theme.npp-account-route .masterstudy-instructor-certificates__item-actions {
    display: grid !important;
    gap: 8px !important;
    grid-template-columns: 1fr 40px !important;
    justify-content: end !important;
    margin: 0 !important;
    max-width: 132px !important;
    min-width: 132px !important;
    width: 132px !important;
  }

  body.npp-theme.npp-account-route .masterstudy-instructor-certificates__item-actions .masterstudy-button,
  body.npp-theme.npp-account-route .masterstudy-instructor-certificates__delete {
    margin: 0 !important;
  }

  body.npp-theme.npp-account-route .masterstudy-instructor-certificates__item-actions .masterstudy-button {
    min-width: 80px !important;
  }
}
