.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;
  }
}
.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;
  }
}
/**
    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/
*/
.svg-icons {
  vertical-align: middle;
  display: inline-block;
  background-size: 1em;
  width: 1em;
  height: 1em;
}

.svg-icons.lazyload {
  background-image: none;
}

.svg-icons_baseline {
  vertical-align: baseline;
}

.svg-icons--color-white {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(64deg) brightness(107%) contrast(101%);
}

.svg-icons--color-border {
  filter: invert(89%) sepia(4%) saturate(231%) hue-rotate(164deg) brightness(103%) contrast(93%);
}

.svg-icons--color-muted {
  filter: invert(90%) sepia(8%) saturate(170%) hue-rotate(158deg) brightness(87%) contrast(87%);
}

.svg-icons--color-gray-60 {
  filter: invert(70%) sepia(7%) saturate(323%) hue-rotate(202deg) brightness(90%) contrast(100%);
}

.svg-icons--color-gray-70 {
  filter: invert(48%) sepia(7%) saturate(548%) hue-rotate(202deg) brightness(97%) contrast(89%);
}

.svg-icons--color-yellow-60 {
  filter: invert(88%) sepia(100%) saturate(1110%) hue-rotate(314deg) brightness(103%) contrast(101%);
}

.svg-icons--color-yellow-40 {
  filter: invert(89%) sepia(15%) saturate(1180%) hue-rotate(332deg) brightness(104%) contrast(102%);
}

.svg-icons-arrow-right {
  background-image: url(https://cdn.twee.com/e/dist_20250715150525/icons/icons-sprite.svg#svg--arrow-right);
}

.svg-icons-chevron-down {
  background-image: url(https://cdn.twee.com/e/dist_20250715150525/icons/icons-sprite.svg#svg--chevron-down);
}

.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;
}

.t-btn.t-btn-pill {
  --t-btn-border-radius: 9999px;
}

.t-btn.t-btn-sm {
  --t-btn-padding-y: 5px;
  --t-btn-padding-x: 12px;
}

.category-card {
  --category-card-bg: #746dff;
  --category-card-bg-hover: #5336d6;
  --category-card-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  padding: 16px;
  position: relative;
  background: var(--category-card-bg);
  color: var(--category-card-color);
}

.category-card.category-card--compact {
  border-radius: 9999px;
  padding: 16px 24px;
  transition: background 0.2s ease-in-out;
}
.category-card.category-card--compact .category-card__title {
  font-size: 16px;
}
.category-card.category-card--compact .category-card__arrow-right {
  font-size: 32px;
}
.category-card.category-card--compact:hover {
  background: var(--category-card-bg-hover);
}

.category-card__bg-icon {
  position: absolute;
  top: 15px;
  right: 0;
  pointer-events: none;
  opacity: 0.25;
  display: none;
}

.category-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.category-card__chevron {
  font-size: 24px;
  transition: transform 0.3s ease;
  display: block;
}

.category-card__chevron--open {
  transform: rotate(180deg);
}

.category-card__title {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  flex-grow: 1;
  text-align: left;
  color: var(--category-card-color);
}

.category-card__arrow-right,
.category-card__item-arrow-right {
  font-size: 24px;
  flex-shrink: 0;
}

.category-card__items {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 16px;
}

.t-btn.category-card__item {
  --t-btn-background: rgba(0, 0, 0, 0.2);
  --t-btn-hover-background: rgba(0, 0, 0, 0.5);
}

.category-card--purple-light {
  --category-card-bg: #9590ff;
  --category-card-bg-hover: #746dff;
  --category-card-color: #ffffff;
}
.category-card--purple-light .category-card__arrow-right,
.category-card--purple-light .category-card__item-arrow-right,
.category-card--purple-light .category-card__chevron,
.category-card--purple-light .category-card__bg-icon {
  filter: invert(99%) sepia(100%) saturate(2%) hue-rotate(72deg) brightness(105%) contrast(100%);
}

.category-card--purple {
  --category-card-bg: #746dff;
  --category-card-bg-hover: #5336d6;
  --category-card-color: #ffffff;
}
.category-card--purple .category-card__arrow-right,
.category-card--purple .category-card__item-arrow-right,
.category-card--purple .category-card__chevron,
.category-card--purple .category-card__bg-icon {
  filter: invert(99%) sepia(100%) saturate(2%) hue-rotate(72deg) brightness(105%) contrast(100%);
}

.category-card--yellow-light {
  --category-card-bg: #fff4da;
  --category-card-bg-hover: #ffe09a;
  --category-card-color: #5336d6;
}
.category-card--yellow-light .category-card__arrow-right,
.category-card--yellow-light .category-card__item-arrow-right,
.category-card--yellow-light .category-card__chevron,
.category-card--yellow-light .category-card__bg-icon {
  filter: invert(26%) sepia(37%) saturate(5017%) hue-rotate(243deg) brightness(83%) contrast(104%);
}
.category-card--yellow-light .t-btn.category-card__item {
  --t-btn-background: rgba(255, 255, 255, 0.2);
  --t-btn-hover-background: rgba(255, 255, 255, 0.5);
}

.category-card--yellow {
  --category-card-bg: #ffe09a;
  --category-card-bg-hover: #ffcc56;
  --category-card-color: #5336d6;
}
.category-card--yellow .category-card__arrow-right,
.category-card--yellow .category-card__item-arrow-right,
.category-card--yellow .category-card__chevron,
.category-card--yellow .category-card__bg-icon {
  filter: invert(26%) sepia(37%) saturate(5017%) hue-rotate(243deg) brightness(83%) contrast(104%);
}
.category-card--yellow .t-btn.category-card__item {
  --t-btn-background: rgba(255, 255, 255, 0.2);
  --t-btn-hover-background: rgba(255, 255, 255, 0.5);
}

.category-card--aqua {
  --category-card-bg: #c5fafd;
  --category-card-bg-hover: #44dde5;
  --category-card-color: #5336d6;
}
.category-card--aqua .category-card__arrow-right,
.category-card--aqua .category-card__item-arrow-right,
.category-card--aqua .category-card__chevron,
.category-card--aqua .category-card__bg-icon {
  filter: invert(26%) sepia(37%) saturate(5017%) hue-rotate(243deg) brightness(83%) contrast(104%);
}
.category-card--aqua .t-btn.category-card__item {
  --t-btn-background: rgba(255, 255, 255, 0.2);
  --t-btn-hover-background: rgba(255, 255, 255, 0.5);
}

.category-card--pink {
  --category-card-bg: #f9e1ff;
  --category-card-bg-hover: #f3c0ff;
  --category-card-color: #5336d6;
}
.category-card--pink .category-card__arrow-right,
.category-card--pink .category-card__item-arrow-right,
.category-card--pink .category-card__chevron,
.category-card--pink .category-card__bg-icon {
  filter: invert(26%) sepia(37%) saturate(5017%) hue-rotate(243deg) brightness(83%) contrast(104%);
}
.category-card--pink .t-btn.category-card__item {
  --t-btn-background: rgba(255, 255, 255, 0.2);
  --t-btn-hover-background: rgba(255, 255, 255, 0.5);
}

.category-card--lavender {
  --category-card-bg: #cfccff;
  --category-card-bg-hover: #9590ff;
  --category-card-color: #5336d6;
}
.category-card--lavender .category-card__arrow-right,
.category-card--lavender .category-card__item-arrow-right,
.category-card--lavender .category-card__chevron,
.category-card--lavender .category-card__bg-icon {
  filter: invert(26%) sepia(37%) saturate(5017%) hue-rotate(243deg) brightness(83%) contrast(104%);
}
.category-card--lavender .t-btn.category-card__item {
  --t-btn-background: rgba(255, 255, 255, 0.2);
  --t-btn-hover-background: rgba(255, 255, 255, 0.5);
}

@media (min-width: 1024px) {
  .category-card {
    padding: 32px;
    border-radius: 24px;
  }
  .category-card__items {
    padding-top: 32px;
  }
  .category-card__title {
    font-size: 24px;
  }
  .category-card__arrow-right {
    font-size: 48px;
  }
  .category-card__bg-icon {
    display: block;
  }
}
.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;
}

.worksheets-category-subtitle {
  font-size: 16px;
  font-style: italic;
  padding: 4px 24px;
  background-color: #f3f3ff;
  border-radius: 4px;
  text-align: center;
}

.svg-icons-clock {
  background-image: url(https://cdn.twee.com/e/dist_20250715150525/icons/icons-sprite.svg#svg--clock);
}

.svg-icons-video-square {
  background-image: url(https://cdn.twee.com/e/dist_20250715150525/icons/icons-sprite.svg#svg--video-square);
}

.svg-icons-audio-volume-high {
  background-image: url(https://cdn.twee.com/e/dist_20250715150525/icons/icons-sprite.svg#svg--audio-volume-high);
}

.svg-icons-users {
  background-image: url(https://cdn.twee.com/e/dist_20250715150525/icons/icons-sprite.svg#svg--users);
}

.tw-badge-pill {
  --tw-badge-pill-bg: #f2f6f8;
  --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--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: #e4e9ff;
  --tw-badge-pill-color: #5c3cba;
}
.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--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;
}

.cb-fixed-ratio {
  display: block;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cb-fixed-ratio.cb-fixed-ratio_contain .cb-fixed-ratio__element {
  -o-object-fit: contain;
  object-fit: contain;
}
.cb-fixed-ratio .cb-fixed-ratio__element {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cb-fixed-ratio_tool-thumbnail {
  padding-bottom: 100%;
}

.cb-fixed-ratio_tool-preview-icon {
  padding-bottom: 100%;
}

.cb-fixed-ratio_video {
  padding-bottom: 56.25%;
}

.cb-fixed-ratio_logo {
  padding-bottom: 33.3333333333%;
}

.cb-fixed-ratio_pdf-logo {
  padding-bottom: 100%;
}

.cb-fixed-ratio_pdf-logo-editor {
  padding-bottom: 56.25%;
}

.cb-fixed-ratio--school-logo {
  padding-bottom: 100%;
}

.cb-fixed-ratio--project-tool {
  padding-bottom: 75%;
}

.cb-fixed-ratio_lesson-cover {
  padding-bottom: 58.8235294118%;
}

.svg-icons-star {
  background-image: url(https://cdn.twee.com/e/dist_20250715150525/icons/icons-sprite.svg#svg--star);
}

.svg-icons-star-filled {
  background-image: url(https://cdn.twee.com/e/dist_20250715150525/icons/icons-sprite.svg#svg--star-filled);
}

.cb-preloader {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTUgMTJoM00xMiA1djNNMTkgMTJoLTNNMTIgMTl2LTNNNy4wNSAxNi45NWwyLjEyMS0yLjEyMU03LjA1IDcuMDVsMi4xMjEgMi4xMjFNMTYuOTUgNy4wNWwtMi4xMjEgMi4xMjEiIHN0cm9rZT0iIzAwMCIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPjwvc3ZnPg==);
  background-repeat: no-repeat;
  background-size: 14px;
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
  animation: cb-preloader-spin 1s steps(8) infinite;
}
@keyframes cb-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}

.cb-preloader--medium {
  background-size: 30px;
  width: 30px;
  height: 30px;
}

.cb-preloader--em {
  background-size: 1em;
  width: 1em;
  height: 1em;
}

.cb-preloader--color-white {
  filter: invert(99%) sepia(99%) saturate(0%) hue-rotate(282deg) brightness(109%) contrast(101%);
}

.t-favorite-button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  min-height: 0;
  padding: 0;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.t-favorite-button--lightgray.t-favorite-button--default .t-favorite-button__icon {
  filter: invert(70%) sepia(7%) saturate(323%) hue-rotate(202deg) brightness(90%) contrast(100%);
}
.t-favorite-button--lightgray .cb-preloader {
  filter: invert(70%) sepia(7%) saturate(323%) hue-rotate(202deg) brightness(90%) contrast(100%);
}

.t-favorite-button--gray.t-favorite-button--default .t-favorite-button__icon {
  filter: invert(48%) sepia(7%) saturate(548%) hue-rotate(202deg) brightness(97%) contrast(89%);
}
.t-favorite-button--gray .cb-preloader {
  filter: invert(48%) sepia(7%) saturate(548%) hue-rotate(202deg) brightness(97%) contrast(89%);
}

.t-favorite-button--white.t-favorite-button--default .t-favorite-button__icon {
  filter: invert(99%) sepia(100%) saturate(2%) hue-rotate(72deg) brightness(105%) contrast(100%);
}
.t-favorite-button--white .cb-preloader {
  filter: invert(99%) sepia(100%) saturate(2%) hue-rotate(72deg) brightness(105%) contrast(100%);
}

.t-favorite-button:hover .t-favorite-button__icon,
.t-favorite-button--hovered .t-favorite-button__icon {
  filter: invert(88%) sepia(100%) saturate(1110%) hue-rotate(314deg) brightness(103%) contrast(101%);
}

.t-favorite-button--favorite .t-favorite-button__icon {
  filter: invert(89%) sepia(15%) saturate(1180%) hue-rotate(332deg) brightness(104%) contrast(102%);
}

.base-project-preview {
  position: relative;
  background-color: #ffffff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  box-shadow: -1px 1px 5px rgba(0, 70, 151, 0.1);
}

.base-project-preview__cover-container {
  position: relative;
  height: 140px;
  background: #f5f5f5;
}

.base-project-preview__cover-container--gradient::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 42px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.base-project-preview__cover-container--gradient::before,
.base-project-preview__cover-image {
  border-radius: 8px 8px 0 0;
}

.base-project-preview__header {
  display: flex;
  gap: 5px;
  align-items: center;
}

.base-project-preview__overlay {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 4;
  pointer-events: none;
}

.base-project-preview__overlay > * {
  pointer-events: auto;
}

.base-project-preview__cover-image {
  height: 100%;
}

.base-project-preview__favorite {
  z-index: 3;
  margin-left: auto;
  padding: 12px;
}

.base-project-preview__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 16px 16px;
  flex-grow: 1;
}

.base-project-preview__name {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.5;
  color: black;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.base-project-preview__name:hover, .base-project-preview__name:focus {
  color: #746dff;
}

.base-project-preview__name::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
}

.base-project-preview__footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  flex-wrap: wrap;
}

.base-project-preview__badges {
  position: absolute;
  right: 16px;
  bottom: 0;
  transform: translateY(50%);
  display: flex;
  gap: 8px;
  z-index: 2;
  align-items: center;
}

.base-project-preview__level-badge {
  padding: 4px 8px;
  text-align: center;
  background: #e8e7ff;
  border-radius: 12px;
  font-size: 14px;
  font-weight: bold;
  color: #746dff;
  white-space: nowrap;
}

.base-project-preview__attributes {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  flex-basis: 100%;
}

.base-project-preview-attribute {
  display: flex;
  align-items: center;
  gap: 4px;
}

.base-project-preview-attribute__icon {
  font-size: 20px;
  line-height: 1;
  filter: invert(40%) sepia(70%) saturate(711%) hue-rotate(207deg) brightness(103%) contrast(102%);
}

.base-project-preview-attribute__text {
  font-size: 14px;
  color: #746dff;
  line-height: 1;
}

.base-project-preview__description {
  font-size: 12px;
  line-height: 1.25;
  color: #797986;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.base-project-preview__subscription-type {
  display: inline-flex;
  padding: 9px 22px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 0px 8px 0px 0px;
  background: #746dff;
  color: #ffffff;
  font-weight: 700;
  position: absolute;
  bottom: 0;
  left: 0;
}

.base-project-preview__cover-container-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f5f5f5;
  opacity: 0.5;
  pointer-events: none;
}

.lesson-preview__access-tier {
  background-color: white;
  color: #746dff;
  font-weight: bold;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 6px 0;
  line-height: 1.25;
}

.lesson-preview__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lessons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 576px) {
  .lessons-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .lessons-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.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%);
}

.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.tw-pagination-item {
  --t-btn-padding-y: 0;
  --t-btn-padding-x: 0;
  --t-btn-min-width: 32px;
  --t-btn-min-height: 32px;
  --t-btn-border-radius: 4px;
}

.t-btn.tw-pagination-item--active {
  --t-btn-font-weight: 700;
}

.svg-icons-chevron-left {
  background-image: url(https://cdn.twee.com/e/dist_20250715150525/icons/icons-sprite.svg#svg--chevron-left);
}

.svg-icons-chevron-right {
  background-image: url(https://cdn.twee.com/e/dist_20250715150525/icons/icons-sprite.svg#svg--chevron-right);
}

.tw-pagination__controls {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.svg-icons-search {
  background-image: url(https://cdn.twee.com/e/dist_20250715150525/icons/icons-sprite.svg#svg--search);
}

.svg-icons-close-circle {
  background-image: url(https://cdn.twee.com/e/dist_20250715150525/icons/icons-sprite.svg#svg--close-circle);
}

.t-search-input {
  position: relative;
}

.t-search-input__icon {
  position: absolute;
  font-size: 24px;
  top: 50%;
  transform: translateY(-50%);
  left: 8px;
  filter: invert(90%) sepia(8%) saturate(170%) hue-rotate(158deg) brightness(87%) contrast(87%);
}

.t-search-input__input {
  padding-left: 40px;
}

.t-search-input__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  height: 18px;
  width: 18px;
  background-image: url(https://cdn.twee.com/e/dist_20250715150525/icons/icons-sprite.svg#svg--close-circle);
  background-size: contain;
  filter: invert(70%) sepia(7%) saturate(323%) hue-rotate(202deg) brightness(90%) contrast(100%);
  cursor: pointer;
}

.t-search-input__input::-webkit-search-cancel-button:hover {
  filter: invert(10%) sepia(11%) saturate(766%) hue-rotate(201deg) brightness(99%) contrast(92%);
}

.tw-tabs-switch-button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background-color: #f5f5f5;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  will-change: background-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;
  position: relative;
}

.tw-tabs-switch-button:disabled {
  cursor: not-allowed;
}

.tw-tabs-switch-button:not(:disabled):hover,
.tw-tabs-switch-button:not(:disabled):focus {
  background-color: #e8e8ec;
}

.tw-tabs-switch-button__icon {
  font-size: 24px;
  line-height: 0;
  filter: invert(10%) sepia(11%) saturate(766%) hue-rotate(201deg) brightness(99%) contrast(92%);
}

.tw-tabs-switch-button:disabled .tw-tabs-switch-button__icon {
  filter: invert(83%) sepia(1%) saturate(1002%) hue-rotate(199deg) brightness(96%) contrast(90%);
}

.tw-tabs-switch-button__text {
  font-weight: bold;
  color: #222229;
}

.tw-tabs-switch-button:disabled .tw-tabs-switch-button__text {
  color: #c4c4cd;
}

.tw-tabs-switch-button--active {
  background-color: white;
}
.tw-tabs-switch-button--active:not(:disabled):hover, .tw-tabs-switch-button--active:not(:disabled):focus {
  background-color: white;
}

.tw-tabs-switch {
  display: flex;
  gap: 10px;
  padding: 5px;
  background-color: #f5f5f5;
  border-radius: 10px;
  width: 100%;
}

.tw-tabs-switch .tw-tabs-switch-button {
  flex-grow: 1;
  flex-basis: 0;
  flex-shrink: 0;
}

.svg-icons-document-text {
  background-image: url(https://cdn.twee.com/e/dist_20250715150525/icons/icons-sprite.svg#svg--document-text);
}

.svg-icons-clipboard-text {
  background-image: url(https://cdn.twee.com/e/dist_20250715150525/icons/icons-sprite.svg#svg--clipboard-text);
}

.library-type-tabs {
  position: relative;
}

@media (max-width: 575.98px) {
  .tw-tabs-switch-button__icon {
    display: none;
  }
}
.t-btn.worksheet-category-badge {
  --t-btn-icon-size: 24px;
  gap: 4px;
}

.worksheet-category-badge__text {
  font-size: 16px;
}

.worksheet-category-other-categories-section {
  text-align: center;
  padding: 40px 0;
}

.worksheet-category-other-categories-section__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}

.worksheet-category-other-categories-section__categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
}

@media (min-width: 1024px) {
  .worksheet-category-other-categories-section__categories {
    grid-template-columns: repeat(3, 1fr);
  }
}
.tw-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.tw-breadcrumbs__chevron {
  flex-shrink: 0;
  font-size: 24px;
  filter: invert(48%) sepia(7%) saturate(548%) hue-rotate(202deg) brightness(97%) contrast(89%);
}

.tw-breadcrumbs__item,
.tw-breadcrumbs__main-item {
  font-size: 16px;
  font-weight: bold;
}

.tw-breadcrumbs__item {
  color: #797986;
  flex-shrink: 0;
}

.tw-breadcrumbs__main-item {
  color: #222229;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tw-breadcrumbs--secondary .tw-breadcrumbs__item {
  font-size: 14px;
  font-weight: normal;
  color: #222229;
  text-decoration: underline;
}
.tw-breadcrumbs--secondary .tw-breadcrumbs__main-item {
  color: #797986;
  font-size: 14px;
  font-weight: normal;
}

.tw-breadcrumbs--no-wrap.tw-breadcrumbs {
  flex-wrap: nowrap;
}
.tw-breadcrumbs--no-wrap .tw-breadcrumbs__main-item {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.t-btn.t-btn-secondary {
  --t-btn-background: transparent;
  --t-btn-color: #746dff;
  --t-btn-border-color: #746dff;
  --t-btn-hover-background: transparent;
  --t-btn-hover-color: #9590ff;
  --t-btn-hover-border-color: #9590ff;
  --t-btn-active-background: transparent;
  --t-btn-active-color: #5336d6;
  --t-btn-active-border-color: #5336d6;
  --t-btn-disabled-color: #e8e8ec;
  --t-btn-disabled-background: transparent;
  --t-btn-disabled-border-color: #d7d7de;
  --t-btn-focus-background: transparent;
  --t-btn-focus-color: #746dff;
  --t-btn-focus-border-color: #746dff;
}
.t-btn.t-btn-secondary i {
  filter: invert(40%) sepia(70%) saturate(711%) hue-rotate(207deg) brightness(103%) contrast(102%);
}
.t-btn.t-btn-secondary:hover i {
  filter: invert(52%) sepia(54%) saturate(841%) hue-rotate(205deg) brightness(106%) contrast(103%);
}
.t-btn.t-btn-secondary:active i, .t-btn.t-btn-secondary:active:hover i {
  filter: invert(26%) sepia(37%) saturate(5017%) hue-rotate(243deg) brightness(83%) contrast(104%);
}
.t-btn.t-btn-secondary:focus i {
  filter: invert(52%) sepia(54%) saturate(841%) hue-rotate(205deg) brightness(106%) contrast(103%);
}
.t-btn.t-btn-secondary:disabled i, .t-btn.t-btn-secondary.t-btn-disabled i, .t-btn.t-btn-secondary:disabled:hover i, .t-btn.t-btn-secondary.t-btn-disabled:hover i, .t-btn.t-btn-secondary:disabled:focus i, .t-btn.t-btn-secondary.t-btn-disabled:focus i, .t-btn.t-btn-secondary:disabled:active i, .t-btn.t-btn-secondary.t-btn-disabled:active i, .t-btn.t-btn-secondary:disabled:active:hover i, .t-btn.t-btn-secondary.t-btn-disabled:active:hover i {
  filter: invert(70%) sepia(7%) saturate(323%) hue-rotate(202deg) brightness(90%) contrast(100%);
}

.worksheets-error-banner {
  min-height: 350px;
  justify-content: center;
}

.worksheets-error-banner__reset {
  margin-top: 24px;
}

.worksheet-category__tabs {
  margin: 32px auto 0;
  width: 100%;
  max-width: calc(100% - 16px - 16px);
}

.worksheet-category__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.worksheet-category__breadcrumbs {
  margin-bottom: 16px;
  justify-content: center;
}

.worksheet-category__title,
.worksheet-category__description {
  margin: 0;
  padding: 0;
}

.page-heading__title .worksheets-heading__heading .page-heading__description {
  padding: 0 70px;
  font-size: 12px;
}

.worksheet-category__count {
  display: none;
}

.worksheet-category__search {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 32px;
}

.worksheet-category__search-input {
  flex-grow: 1;
}

.worksheet-category__categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.worksheet-category__pagination {
  margin-top: 40px;
}

.worksheet-category__other-categories {
  border-top: 1px solid #d7d7de;
}

@media (min-width: 576px) {
  .worksheet-category__tabs {
    max-width: 480px;
  }
}
@media (min-width: 1024px) {
  .worksheet-category__categories-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
@media (min-width: 1280px) {
  .worksheet-category__count {
    display: block;
    min-width: 100px;
    text-align: right;
    font-size: 14px;
    color: #797986;
  }
  .worksheet-category__lessons-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}