.page-heading__title {
  display: flex;
  padding-left: 8px;
  padding-right: 8px;
  padding-bottom: 8px;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.page-heading__underline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  height: 48px;
  width: 100%;
}

.page-heading__description {
  max-width: 640px;
  color: #797986;
  font-size: 14px;
  text-align: center;
  margin: 16px auto 0;
}

.page-heading--mb {
  margin-bottom: 24px;
}

.page-heading--small .page-heading__title {
  font-size: 24px;
}

@media (min-width: 768px) {
  .page-heading__title {
    font-size: 48px;
  }
}
.t-container-wide {
  width: 100%;
  padding: 32px 16px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 576px) {
  .t-container-wide {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 768px) {
  .t-container-wide {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 1024px) {
  .t-container-wide {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (min-width: 1280px) {
  .t-container-wide {
    max-width: 1440px;
  }
}
.t-btn {
  --t-btn-background: null;
  --t-btn-color: null;
  --t-btn-border-color: null;
  --t-btn-hover-background: null;
  --t-btn-hover-color: null;
  --t-btn-hover-border-color: null;
  --t-btn-active-background: null;
  --t-btn-active-color: null;
  --t-btn-active-border-color: null;
  --t-btn-disabled-background: null;
  --t-btn-disabled-color: null;
  --t-btn-disabled-border-color: null;
  --t-btn-focus-background: null;
  --t-btn-focus-color: null;
  --t-btn-focus-border-color: null;
  --t-btn-border-radius: 8px;
  --t-btn-padding-y: 9px;
  --t-btn-padding-x: 23px;
  --t-btn-padding-left: var(--t-btn-padding-x);
  --t-btn-font-size: 14px;
  --t-btn-icon-size: 20px;
  --t-btn-border-width: 1px;
  --t-btn-font-weight: 400;
  --t-btn-min-width: auto;
  --t-btn-min-height: auto;
  --t-btn-gap: 6px;
  --t-btn-line-height: 20px;
  --t-btn-focus-box-shadow: 0 0 0 3px #cfccff;
  --t-btn-text-decoration: none;
  padding: var(--t-btn-padding-y) var(--t-btn-padding-x);
  padding-left: var(--t-btn-padding-left);
  border-radius: var(--t-btn-border-radius);
  font-size: var(--t-btn-font-size);
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  line-height: var(--t-btn-line-height);
  gap: var(--t-btn-gap);
  min-height: var(--t-btn-min-height);
  min-width: var(--t-btn-min-width);
  font-weight: var(--t-btn-font-weight);
  -webkit-text-decoration: var(--t-btn-text-decoration);
  text-decoration: var(--t-btn-text-decoration);
  background-color: var(--t-btn-background);
  color: var(--t-btn-color);
  cursor: pointer;
  border: var(--t-btn-border-width) solid var(--t-btn-border-color);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, opacity 0.15s ease-in-out;
}
.t-btn i {
  flex-shrink: 0;
  font-size: var(--t-btn-icon-size);
}
.t-btn:hover {
  background-color: var(--t-btn-hover-background);
  color: var(--t-btn-hover-color);
  border-color: var(--t-btn-hover-border-color);
}
.t-btn:active, .t-btn:active:hover {
  background-color: var(--t-btn-active-background);
  color: var(--t-btn-active-color);
  border-color: var(--t-btn-active-border-color);
}
.t-btn:focus-visible {
  background-color: var(--t-btn-focus-background);
  color: var(--t-btn-focus-color);
  border-color: var(--t-btn-focus-border-color);
  box-shadow: var(--t-btn-focus-box-shadow);
  outline: none;
}
.t-btn:disabled, .t-btn.t-btn-disabled, .t-btn:disabled:hover, .t-btn.t-btn-disabled:hover, .t-btn:disabled:focus, .t-btn.t-btn-disabled:focus, .t-btn:disabled:active, .t-btn.t-btn-disabled:active, .t-btn:disabled:active:hover, .t-btn.t-btn-disabled:active:hover {
  background-color: var(--t-btn-disabled-background);
  color: var(--t-btn-disabled-color);
  border-color: var(--t-btn-disabled-border-color);
  cursor: not-allowed;
}

/**
    How to add a new icon?
    * Add the SVG source file to '~/Assets/Icons/svg'
    * In case you want to add a color variation to this icon, check the Gulp task called 'icons'
    * Add a variable here with SVG file name in the following template: $svg-icons-{file-name}_{color}: '{file-name}_{color}.svg'
    * Add a new 'scss' file, name it using the following template: '_svg-icons-{file-name}_{color}.scss'. Use other files as example for the content
*/
/*
  HEX to filter conversion:
  https://isotropic.co/tool/hex-color-to-css-filter/
*/
.t-btn.t-btn-primary {
  --t-btn-background: #746dff;
  --t-btn-color: #ffffff;
  --t-btn-border-color: #746dff;
  --t-btn-hover-background: #9590ff;
  --t-btn-hover-color: #ffffff;
  --t-btn-hover-border-color: #9590ff;
  --t-btn-active-background: #5336d6;
  --t-btn-active-color: #ffffff;
  --t-btn-active-border-color: #5336d6;
  --t-btn-disabled-color: #a2a2af;
  --t-btn-disabled-background: #e8e8ec;
  --t-btn-disabled-border-color: #e8e8ec;
  --t-btn-focus-background: #746dff;
  --t-btn-focus-color: #ffffff;
  --t-btn-focus-border-color: #746dff;
}
.t-btn.t-btn-primary i {
  filter: invert(99%) sepia(100%) saturate(2%) hue-rotate(72deg) brightness(105%) contrast(100%);
}
.t-btn.t-btn-primary:hover i {
  filter: invert(99%) sepia(100%) saturate(2%) hue-rotate(72deg) brightness(105%) contrast(100%);
}
.t-btn.t-btn-primary:active i, .t-btn.t-btn-primary:active:hover i {
  filter: invert(99%) sepia(100%) saturate(2%) hue-rotate(72deg) brightness(105%) contrast(100%);
}
.t-btn.t-btn-primary:focus i {
  filter: invert(99%) sepia(100%) saturate(2%) hue-rotate(72deg) brightness(105%) contrast(100%);
}
.t-btn.t-btn-primary:disabled i, .t-btn.t-btn-primary.t-btn-disabled i, .t-btn.t-btn-primary:disabled:hover i, .t-btn.t-btn-primary.t-btn-disabled:hover i, .t-btn.t-btn-primary:disabled:focus i, .t-btn.t-btn-primary.t-btn-disabled:focus i, .t-btn.t-btn-primary:disabled:active i, .t-btn.t-btn-primary.t-btn-disabled:active i, .t-btn.t-btn-primary:disabled:active:hover i, .t-btn.t-btn-primary.t-btn-disabled:active:hover i {
  filter: invert(70%) sepia(7%) saturate(323%) hue-rotate(202deg) brightness(90%) contrast(100%);
}

.t-btn.t-btn-white {
  --t-btn-background: #ffffff;
  --t-btn-color: #222229;
  --t-btn-border-color: #d7d7de;
  --t-btn-hover-background: #f5f5f5;
  --t-btn-hover-color: #222229;
  --t-btn-hover-border-color: #d7d7de;
  --t-btn-active-background: #e8e8ec;
  --t-btn-active-color: #222229;
  --t-btn-active-border-color: #d7d7de;
  --t-btn-disabled-color: #222229;
  --t-btn-disabled-background: #f5f5f5;
  --t-btn-disabled-border-color: #d7d7de;
  --t-btn-focus-background: #ffffff;
  --t-btn-focus-color: #222229;
  --t-btn-focus-border-color: #d7d7de;
}
.t-btn.t-btn-white:hover i {
  filter: invert(10%) sepia(11%) saturate(766%) hue-rotate(201deg) brightness(99%) contrast(92%);
}
.t-btn.t-btn-white:active i, .t-btn.t-btn-white:active:hover i {
  filter: invert(10%) sepia(11%) saturate(766%) hue-rotate(201deg) brightness(99%) contrast(92%);
}
.t-btn.t-btn-white:focus i {
  filter: invert(10%) sepia(11%) saturate(766%) hue-rotate(201deg) brightness(99%) contrast(92%);
}
.t-btn.t-btn-white:disabled i, .t-btn.t-btn-white.t-btn-disabled i, .t-btn.t-btn-white:disabled:hover i, .t-btn.t-btn-white.t-btn-disabled:hover i, .t-btn.t-btn-white:disabled:focus i, .t-btn.t-btn-white.t-btn-disabled:focus i, .t-btn.t-btn-white:disabled:active i, .t-btn.t-btn-white.t-btn-disabled:active i, .t-btn.t-btn-white:disabled:active:hover i, .t-btn.t-btn-white.t-btn-disabled:active:hover i {
  filter: invert(10%) sepia(11%) saturate(766%) hue-rotate(201deg) brightness(99%) contrast(92%);
}

.tw-message-box {
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 6px;
  min-height: 200px;
  background-color: var(--tw-message-box-background-color, #ffffff);
}

.tw-message-box__emoji {
  display: flex;
  font-size: 24px;
  margin-bottom: 24px;
  line-height: 1;
}
.tw-message-box__emoji .svg-icons {
  font-size: 40px;
}

.tw-message-box__title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 8px;
  color: var(--tw-message-box-title-color, var(--tw-message-box-color, #222229));
}

.tw-message-box__content {
  font-size: 14px;
  text-align: center;
  color: var(--tw-message-box-content-color, var(--tw-message-box-color, #222229));
}

.tw-message-box__content p {
  margin-bottom: 0;
}

.tw-message-box__content p + p {
  margin-top: 10px;
}

.tw-message-box__content a {
  text-decoration: underline;
}
.tw-message-box__content a, .tw-message-box__content a:hover {
  color: inherit;
  font-weight: bold;
}

.tw-message-box__content a:hover {
  text-decoration: none;
}

.tw-message-box--error {
  --tw-message-box-background-color: #fff0f3;
  --tw-message-box-title-color: #cf0025;
  --tw-message-box-content-color: #cf0025;
}
.tw-message-box--error .tw-message-box__emoji .svg-icons {
  filter: invert(61%) sepia(53%) saturate(7343%) hue-rotate(324deg) brightness(107%) contrast(107%);
}

.tw-message-box--warning {
  --tw-message-box-background-color: #fff4da;
  --tw-message-box-title-color: #ba7c26;
  --tw-message-box-content-color: #ba7c26;
}
.tw-message-box--warning .tw-message-box__emoji .svg-icons {
  filter: invert(81%) sepia(29%) saturate(7084%) hue-rotate(0deg) brightness(105%) contrast(104%);
}

.tw-message-box--info {
  --tw-message-box-background-color: #f3f3ff;
  --tw-message-box-title-color: #746dff;
  --tw-message-box-content-color: #746dff;
}
.tw-message-box--info .tw-message-box__emoji .svg-icons {
  filter: invert(52%) sepia(54%) saturate(841%) hue-rotate(205deg) brightness(106%) contrast(103%);
}

.tw-message-box--success {
  --tw-message-box-background-color: #e1ffee;
  --tw-message-box-title-color: #00860d;
  --tw-message-box-content-color: #00860d;
}
.tw-message-box--success .tw-message-box__emoji .svg-icons {
  filter: invert(52%) sepia(27%) saturate(5829%) hue-rotate(113deg) brightness(100%) contrast(92%);
}

.tw-message-box--muted {
  --tw-message-box-background-color: #f5f5f5;
  --tw-message-box-title-color: #222229;
  --tw-message-box-color: #797986;
}
.tw-message-box--muted .tw-message-box__emoji .svg-icons {
  filter: invert(48%) sepia(7%) saturate(548%) hue-rotate(202deg) brightness(97%) contrast(89%);
}

.tw-message-box--horizontal {
  display: flex;
  flex-direction: row;
  padding: 10px;
  gap: 10px;
  min-height: 0;
}
.tw-message-box--horizontal .tw-message-box__emoji {
  margin-bottom: 0;
  flex-shrink: 0;
}
.tw-message-box--horizontal .tw-message-box__content {
  text-align: left;
  flex-grow: 1;
}
.tw-message-box--horizontal .tw-message-box__button {
  flex-shrink: 0;
}

.team-plan-checkout-pricing-selector {
  border: 1px solid #d7d7de;
  border-radius: 6px;
  padding: 20px;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.team-plan-checkout-pricing-selector__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.team-plan-checkout-pricing-selector__title {
  font-weight: 700;
  font-size: 16px;
}

.team-plan-checkout-pricing-selector__actions {
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  border: 1px solid #d7d7de;
  align-self: center;
  overflow: hidden;
}

.t-btn.team-plan-checkout-pricing-selector__btn {
  --t-btn-border-radius: 0;
  --t-btn-border-width: 0;
  width: 40px;
  height: 40px;
  line-height: 1;
}

.team-plan-checkout-pricing-selector__input {
  width: 80px;
  height: 40px;
  text-align: center;
  border: 1px solid #d7d7de;
  border-width: 0 1px;
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
  appearance: textfield;
}
.team-plan-checkout-pricing-selector__input:focus {
  outline: none;
}
.team-plan-checkout-pricing-selector__input::-webkit-inner-spin-button, .team-plan-checkout-pricing-selector__input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.team-plan-checkout-pricing-selector__subtitle {
  color: #797986;
}

.team-plan-checkout-pricing-selector__savings {
  color: #797986;
  text-align: center;
}

.team-plan-checkout-pricing-selector__savings-value {
  font-size: 16px;
  color: #0abc54;
  font-weight: 700;
}

.team-plan-checkout-pricing-selector__savings-value-usd {
  font-weight: normal;
  font-size: 0.75em;
}

.team-plan-checkout-pricing-selector__total {
  padding: 20px;
  background: #f3f3ff;
  text-align: center;
}

.team-plan-checkout-pricing-selector__total-label {
  color: #797986;
}

.team-plan-checkout-pricing-selector__total-value {
  font-size: 24px;
  font-weight: 700;
}

.team-plan-checkout-pricing-selector__total-value-usd {
  font-weight: normal;
  font-size: 0.75em;
}

.team-plan-checkout-pricing-selector__total-original {
  color: #797986;
}

.team-plan-checkout-pricing-selector__cta {
  display: flex;
  justify-content: center;
}

.team-plan-checkout-pricing-selector__contact-us {
  min-height: 162px;
  justify-content: center;
}
.team-plan-checkout-pricing-selector__contact-us .tw-message-box__content {
  font-weight: bold;
}

.team-plan-checkout-pricing-selector--invalid .team-plan-checkout-pricing-selector__total,
.team-plan-checkout-pricing-selector--invalid .team-plan-checkout-pricing-selector__savings {
  filter: blur(5px);
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media (min-width: 768px) {
  .team-plan-checkout-pricing-selector__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.tw-badge-pill {
  --tw-badge-pill-bg: #f5f5f5;
  --tw-badge-pill-color: black;
  font-size: 14px;
  line-height: 20px;
  background-color: var(--tw-badge-pill-bg);
  color: var(--tw-badge-pill-color);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 9999px;
}

.tw-badge-pill__icon {
  font-size: 16px;
}

.tw-badge-pill--sm {
  font-size: 12px;
  line-height: 16px;
  gap: 6px;
  padding: 2px 8px;
}

.tw-badge-pill--sm .tw-badge-pill__icon {
  font-size: 14px;
}

.tw-badge-pill--blue {
  --tw-badge-pill-bg: #f3f3ff;
  --tw-badge-pill-color: #746dff;
}
.tw-badge-pill--blue i {
  filter: invert(40%) sepia(70%) saturate(711%) hue-rotate(207deg) brightness(103%) contrast(102%);
}

.tw-badge-pill--purple {
  --tw-badge-pill-bg: #e8e7ff;
  --tw-badge-pill-color: #5336d6;
}
.tw-badge-pill--purple i {
  filter: invert(40%) sepia(70%) saturate(711%) hue-rotate(207deg) brightness(103%) contrast(102%);
}

.tw-badge-pill--cerulean {
  --tw-badge-pill-bg: #ebfeff;
  --tw-badge-pill-color: #007ea8;
}
.tw-badge-pill--cerulean i {
  filter: invert(24%) sepia(100%) saturate(1817%) hue-rotate(174deg) brightness(101%) contrast(103%);
}

.tw-badge-pill--yellow {
  --tw-badge-pill-bg: #fff4da;
  --tw-badge-pill-color: #ba7c26;
}
.tw-badge-pill--yellow i {
  filter: invert(54%) sepia(30%) saturate(6834%) hue-rotate(23deg) brightness(97%) contrast(101%);
}

.tw-badge-pill--green {
  --tw-badge-pill-bg: #c5ffdd;
  --tw-badge-pill-color: #00860d;
}
.tw-badge-pill--green i {
  filter: invert(29%) sepia(90%) saturate(1232%) hue-rotate(120deg) brightness(89%) contrast(101%);
}

.tw-badge-pill--primary {
  --tw-badge-pill-bg: #746dff;
  --tw-badge-pill-color: #ffffff;
}
.tw-badge-pill--primary i {
  filter: invert(99%) sepia(100%) saturate(2%) hue-rotate(72deg) brightness(105%) contrast(100%);
}

.tw-badge-pill--white {
  --tw-badge-pill-bg: #ffffff;
  --tw-badge-pill-color: #000000;
}

.team-plan-checkout-pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.team-plan-checkout-pricing-table th,
.team-plan-checkout-pricing-table td {
  padding: 14px 16px;
  text-align: left;
}

.team-plan-checkout-pricing-table th {
  padding-top: 22px;
}

.team-plan-checkout-pricing-table__header {
  font-weight: 700;
}

.team-plan-checkout-pricing-table-row {
  border-bottom: 1px solid #eeeef1;
}

.team-plan-checkout-pricing-table-row__price {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.team-plan-checkout-pricing-table-row__monthly-price {
  font-size: 18px;
  font-weight: 700;
}

.team-plan-checkout-pricing-table-row__monthly-price span {
  font-size: 14px;
  font-weight: 400;
  color: #797986;
}

.team-plan-checkout-pricing-table-row__annual-price {
  color: #797986;
}

.faq-minimal {
  padding: 8px 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-minimal__header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.faq-minimal__indicator {
  font-size: 14px;
  line-height: 1;
}

.faq-minimal__title {
  font-size: 16px;
  font-weight: 700;
}

.faq-minimal__body {
  padding: 0 16px 16px 30px;
  color: #797986;
  font-size: 16px;
}

.team-plan-checkout-faq {
  max-width: 920px;
  margin: 60px auto 0;
}

.team-plan-checkout-faq__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.team-plan-checkout-faq__grid {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .team-plan-checkout-faq__grid {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1280px) {
  .team-plan-checkout-faq__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
.team-plan-checkout-pending-intents {
  border: 1px solid #eeeef1;
  background: #fcf0ff;
  padding: 16px 20px 20px;
  border-radius: 8px;
  margin: 24px auto;
  max-width: 700px;
}

.team-plan-checkout-pending-intents__subheading {
  font-size: 18px;
  margin: 0 0 8px;
  font-weight: 700;
}

.team-plan-checkout-pending-intents__description {
  margin: 0 0 16px;
  font-size: 14px;
  color: #797986;
}

.team-plan-checkout-pending-intents__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.team-plan-checkout-pending-intents__item {
  background: #ffffff;
  border: 1px solid #eeeef1;
  border-radius: 6px;
  padding: 12px 14px 14px;
}

.team-plan-checkout-pending-intents__item-header {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: baseline;
  margin-bottom: 6px;
}

.team-plan-checkout-pending-intents__school {
  font-weight: 700;
  color: #222229;
}

.team-plan-checkout-pending-intents__seats {
  font-size: 12px;
  color: #797986;
}

.team-plan-checkout-pending-intents__meta {
  font-size: 12px;
  color: #222229;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  margin-bottom: 8px;
}

.team-plan-checkout-pending-intents__actions a {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  color: #746dff;
  background: #fcf0ff;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background 0.15s ease, color 0.15s ease;
}

.team-plan-checkout-pending-intents__actions a:hover,
.team-plan-checkout-pending-intents__actions a:focus {
  background: #f9e1ff;
  color: #5336d6;
}

.team-plan-checkout-pending-intents__separator {
  color: #d7d7de;
}

.team-plan-checkout__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.team-plan-checkout__payment-message {
  margin-top: 48px;
}

@media (min-width: 768px) {
  .team-plan-checkout__payment-message {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1024px) {
  .team-plan-checkout__content {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}