/**
    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-add-circle {
  background-image: url(https://cdn.twee.com/e/dist_20250730123908/icons/icons-sprite.svg#svg--add-circle);
}

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

.faq-card {
  position: relative;
  padding: 24px;
  background-color: white;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 8px;
}

.faq-card__header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  z-index: 2;
}

.faq-card:focus-within {
  box-shadow: 0 0 0 4px #e8e7ff;
}

.faq-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  gap: 5px;
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  min-height: 0;
}

.faq-card__title {
  font-size: 20px;
  font-weight: bold;
}

.faq-card__toggle-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.faq-card__body {
  color: #797986;
}

.faq-card-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.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-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-lg {
  --t-btn-padding-y: 11px;
  --t-btn-padding-x: 39px;
  --t-btn-icon-size: 24px;
  --t-btn-line-height: 24px;
  --t-btn-font-weight: 700;
}

.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;
  }
}
.tool-faq-section {
  background: #f3f3ff;
  padding: 16px 0;
}

.tool-faq-section__title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
}

.tool-faq-section__list {
  max-width: 880px;
  margin: 0 auto;
}

.tool-faq-section__link-wrapper {
  text-align: center;
  margin-top: 40px;
}

.tool-faq-section__link {
  width: 100%;
}

@media (min-width: 1024px) {
  .tool-faq-section__link {
    width: auto;
  }
}
.tool-step-block {
  display: inline-flex;
  gap: 16px;
  padding: 16px;
  box-shadow: -1px 1px 5px rgba(0, 70, 151, 0.1);
  flex-basis: 100%;
  border-radius: 8px;
}

.tool-step-block__icon {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  background-color: #ffb200;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

.tool-step-block__title {
  font-size: 20px;
  font-weight: 700;
}

.tool-step-block__description {
  font-size: 16px;
  color: #797986;
  margin-top: 8px;
}

.tool-instructions-section {
  padding: 16px 0;
}

.tool-instructions-section__instructions {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 880px;
  margin: 0 auto;
}

.tool-instructions-section__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

.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-chevron-right {
  background-image: url(https://cdn.twee.com/e/dist_20250730123908/icons/icons-sprite.svg#svg--chevron-right);
}

.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.twee-link-button {
  -moz-column-gap: 12px;
  column-gap: 12px;
}

.twee-link-button__badge {
  background-color: white;
  color: #746dff;
  display: inline-flex;
  padding: 4px 16px;
  border-radius: 9999px;
  font-size: 12px;
  line-height: 1.25;
}

@media (max-width: 575.98px) {
  .t-btn.twee-link-button {
    --t-btn-padding-x: 16px;
  }
}
.tw-free-badge {
  background-color: white;
  color: #746dff;
  display: inline-flex;
  padding: 4px 16px;
  border-radius: 9999px;
  font-size: 12px;
  line-height: 1.25;
  font-weight: bold;
}

.tool-about-section__breadcrumbs {
  margin-bottom: 8px;
}

.tool-about-section__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 32px;
}

.tool-about-section__description {
  font-size: 16px;
  color: #797986;
}

.tool-about-section__top-block {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}

.tool-about-section__link {
  width: 100%;
  margin-top: 40px;
}

.tool-about-section__video {
  align-self: flex-start;
}

@media (min-width: 1024px) {
  .tool-about-section__top-block {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
  .tool-about-section__link {
    width: auto;
  }
}
.svg-icons-clock {
  background-image: url(https://cdn.twee.com/e/dist_20250730123908/icons/icons-sprite.svg#svg--clock);
}

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

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

.svg-icons-users {
  background-image: url(https://cdn.twee.com/e/dist_20250730123908/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;
}

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

.svg-icons-star-filled {
  background-image: url(https://cdn.twee.com/e/dist_20250730123908/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;
}

.other-lessons {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.other-lessons__title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}

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

@media (min-width: 576px) {
  .other-lessons__lessons {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .other-lessons {
    gap: 40px;
  }
}
@media (min-width: 1280px) {
  .other-lessons__lessons {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.tool-other-lessons-section {
  padding: 16px 0;
}

.tool-other-lessons-section {
  background: #f3f3ff;
}

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

.svg-icons-close-circle {
  background-image: url(https://cdn.twee.com/e/dist_20250730123908/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_20250730123908/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%);
}

.t-btn.t-btn-blue-light {
  --t-btn-background: #e8e7ff;
  --t-btn-color: #746dff;
  --t-btn-border-color: #e8e7ff;
  --t-btn-hover-background: #cfccff;
  --t-btn-hover-color: #746dff;
  --t-btn-hover-border-color: #cfccff;
  --t-btn-active-background: #cfccff;
  --t-btn-active-color: #746dff;
  --t-btn-active-border-color: #cfccff;
  --t-btn-disabled-color: #746dff;
  --t-btn-disabled-background: #e8e7ff;
  --t-btn-disabled-border-color: #e8e7ff;
  --t-btn-focus-background: #e8e7ff;
  --t-btn-focus-color: #746dff;
  --t-btn-focus-border-color: #e8e7ff;
}
.t-btn.t-btn-blue-light i {
  filter: invert(40%) sepia(70%) saturate(711%) hue-rotate(207deg) brightness(103%) contrast(102%);
}
.t-btn.t-btn-blue-light:hover i {
  filter: invert(40%) sepia(70%) saturate(711%) hue-rotate(207deg) brightness(103%) contrast(102%);
}
.t-btn.t-btn-blue-light:active i, .t-btn.t-btn-blue-light:active:hover i {
  filter: invert(40%) sepia(70%) saturate(711%) hue-rotate(207deg) brightness(103%) contrast(102%);
}
.t-btn.t-btn-blue-light:focus i {
  filter: invert(40%) sepia(70%) saturate(711%) hue-rotate(207deg) brightness(103%) contrast(102%);
}
.t-btn.t-btn-blue-light:disabled i, .t-btn.t-btn-blue-light.t-btn-disabled i, .t-btn.t-btn-blue-light:disabled:hover i, .t-btn.t-btn-blue-light.t-btn-disabled:hover i, .t-btn.t-btn-blue-light:disabled:focus i, .t-btn.t-btn-blue-light.t-btn-disabled:focus i, .t-btn.t-btn-blue-light:disabled:active i, .t-btn.t-btn-blue-light.t-btn-disabled:active i, .t-btn.t-btn-blue-light:disabled:active:hover i, .t-btn.t-btn-blue-light.t-btn-disabled:active:hover i {
  filter: invert(40%) sepia(70%) saturate(711%) hue-rotate(207deg) brightness(103%) contrast(102%);
}

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

.t-btn.tool-filter-button {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
  --t-btn-icon-size: 16px;
}

.tools-with-search {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.tools-search-input {
  flex-grow: 1;
  max-width: 260px;
}

.tools-with-search__nav {
  display: flex;
  gap: 16px;
  flex-direction: column;
}

.category-selector {
  --container-horizontal-padding: 16px;
  display: flex;
  overflow: auto;
  gap: 8px;
  margin-left: calc(var(--container-horizontal-padding) * -1);
  margin-right: calc(var(--container-horizontal-padding) * -1);
  padding: 0 var(--container-horizontal-padding) 8px;
}

@media (min-width: 576px) {
  .category-selector {
    --container-horizontal-padding: 24px;
  }
}
@media (min-width: 768px) {
  .category-selector {
    --container-horizontal-padding: 32px;
  }
}
@media (min-width: 1024px) {
  .category-selector {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    flex-wrap: wrap;
    overflow: visible;
    padding-bottom: 0;
  }
  .tools-with-search__nav {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 26px;
  }
  .tools-with-search__search-input {
    min-width: 260px;
    flex-shrink: 0;
  }
}
.tool-badge {
  --tool-badge-top: 10px;
  position: absolute;
  width: 200px;
  top: var(--tool-badge-top);
  left: calc(-90px + var(--tool-badge-top));
  font-size: 14px;
  line-height: 27px;
  color: #ffffff;
  box-shadow: -1px 1px 5px rgba(0, 70, 151, 0.1);
  transform: rotate(-45deg);
  z-index: 1;
  text-align: center;
  white-space: nowrap;
}

.tool-badge--blue {
  background-color: #746dff;
}

.tool-badge--red {
  background-color: #ff4b6c;
}

.tool-badge--green {
  background-color: #0abc54;
}

.tool-preview-theme--gray {
  --tool-preview-bg: #f5f5f5;
  --tool-preview-category-bg: #eeeef1;
  --tool-preview-category-color: #222229;
  --tool-preview-border: #d7d7de;
}

.tool-preview-theme--cerulean {
  --tool-preview-bg: #ebfeff;
  --tool-preview-category-bg: #d8fcff;
  --tool-preview-category-color: #00bfc9;
  --tool-preview-border: #c5fafd;
}

.tool-preview-theme--phlox {
  --tool-preview-bg: #fcf0ff;
  --tool-preview-category-bg: #f9e1ff;
  --tool-preview-category-color: #e260ff;
  --tool-preview-border: #e260ff;
}

.tool-preview-theme--blue {
  --tool-preview-bg: #f3f3ff;
  --tool-preview-category-bg: #e8e7ff;
  --tool-preview-category-color: #746dff;
  --tool-preview-border: #cfccff;
}

.tool-preview-theme--yellow {
  --tool-preview-bg: #fffaed;
  --tool-preview-category-bg: #fff4da;
  --tool-preview-category-color: #ba7c26;
  --tool-preview-border: #ffe09a;
}

.tool-preview-theme--green {
  --tool-preview-bg: #e1ffee;
  --tool-preview-category-bg: #c5ffdd;
  --tool-preview-category-color: #0abc54;
  --tool-preview-border: #acffcf;
}

.tool-preview-theme--red {
  --tool-preview-bg: #fff0f3;
  --tool-preview-category-bg: #ffe4e9;
  --tool-preview-category-color: #ff4b6c;
  --tool-preview-border: #ffd3db;
}

.tool-preview-category__thumbnail-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--tool-preview-bg);
}

.tool-preview-category__thumbnail {
  width: 48px;
  height: 72px;
}

.tool-preview-category {
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  width: 72px;
}

.tool-preview-category__name {
  font-size: 10px;
  line-height: 18px;
  text-align: center;
  border-radius: 0;
  background-color: var(--tool-preview-category-bg);
  color: var(--tool-preview-category-color);
}
.tool-preview-category__name:last-of-type:first-of-type, .tool-preview-category__name:last-of-type:not(:first-of-type) {
  border-radius: 0 0 4px 4px;
}

.tool-preview {
  position: relative;
  display: flex;
  gap: 16px;
  background: white;
  padding: 16px;
  border-radius: 8px;
  box-shadow: -1px 1px 5px rgba(0, 70, 151, 0.1);
  align-items: flex-start;
  border: 1px solid transparent;
  will-change: border-color, background-color;
  transition: border-color 250ms ease-out, background-color 250ms ease-out;
  cursor: pointer;
  overflow: hidden;
}

.tool-preview:hover {
  border-color: #746dff;
}

.tool-preview__name {
  font-size: 16px;
  font-weight: bold;
  display: flex;
  gap: 8px;
  justify-content: space-between;
  align-items: flex-start;
  line-height: 20px;
}

.tool-preview__name-value {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #222229;
}

a.tool-preview__name-value::after {
  content: "";
  position: absolute;
  inset: 0;
}

.tool-preview__description {
  font-size: 12px;
  color: #797986;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 15px;
}

.tool-preview__preloader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: rgba(255, 255, 255, 0.8);
  z-index: 2;
}

.tool-preview__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.tool-other-tools-section {
  padding: 16px 0;
}

.tool-other-tools-section__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
  grid-auto-rows: 1fr;
}

.tool-other-tools-section__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
}

.tool-other-tools-section__category-selector {
  margin-bottom: 32px;
  justify-content: center;
}

@media (min-width: 768px) {
  .tool-other-tools-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1280px) {
  .tool-other-tools-section__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}