/**
    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/
*/
.quiz-section__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.quiz-section--hidden {
  display: none;
}

.content-block {
  position: relative;
}

.content-block--card {
  background: white;
  padding: 50px 20px 40px;
  border-radius: 16px;
  box-shadow: -10px 20px 50px rgba(33, 81, 126, 0.1);
}

.content-block__title-container {
  position: relative;
}

.content-block__title {
  font-weight: bold;
  overflow-wrap: break-word;
}

h3.content-block__title {
  font-size: 18px;
}

h2.content-block__title {
  font-size: 24px;
}

.content-block__side-icon {
  position: absolute;
  top: -40px;
  left: calc(-20px - 32px / 2);
  z-index: 1;
}

.content-block__side-icon-badge {
  width: 32px;
  height: 32px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  box-shadow: -5px 10px 15px rgba(0, 70, 151, 0.1);
}

.content-block__side-icon-number {
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.content-block-preloader-badge__outer,
.content-block-preloader-badge__inner {
  opacity: 0.75;
}

.content-block-preloader-badge__inner {
  animation: output-preloader-inner 1000ms ease-in-out infinite;
  will-change: transform;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.content-block__description {
  color: #797986;
  font-size: 14px;
  margin-top: 8px;
  white-space: pre-line;
}

@media (min-width: 768px) {
  .content-block--card {
    padding-left: 40px;
    padding-right: 40px;
  }
  .content-block__side-icon-number {
    font-size: 18px;
  }
  .content-block__side-icon {
    top: 50%;
    transform: translateY(-50%);
    left: calc(-40px - 32px / 2);
  }
}
@media (min-width: 1024px) {
  .content-block__side-icon-badge {
    width: 50px;
    height: 50px;
  }
  .content-block__side-icon {
    left: calc(-40px - 50px / 2);
  }
}
@keyframes output-preloader-inner {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.6);
  }
  70% {
    transform: scale(1.15);
  }
}
.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-play {
  background-image: url(https://cdn.twee.com/e/dist_20250715150525/icons/icons-sprite.svg#svg--play);
}

.media-preview-info {
  padding: 10px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
}

.media-preview-info__icon {
  flex-shrink: 0;
  font-size: 24px;
  filter: invert(67%) sepia(7%) saturate(345%) hue-rotate(160deg) brightness(87%) contrast(86%);
}

.media-preview-info__body {
  flex-grow: 1;
  display: flex;
  gap: 10px;
  overflow: hidden;
}

.media-preview-info__time {
  flex-shrink: 0;
  font-size: 14px;
  color: #8d959a;
}

.media-preview-info__link {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
}

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

.media-oembed-preview {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.media-oembed-preview iframe {
  border: none;
  border-radius: 6px;
}

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

.tw-player-progressbar {
  position: relative;
  height: 10px;
  cursor: pointer;
}

.tw-player-progressbar__background {
  position: absolute;
  inset: 0;
  height: 10px;
  background: repeating-linear-gradient(to right, #cfccff 0px, #cfccff 2px, transparent 2px, transparent 4px);
  background-attachment: fixed;
  z-index: 0;
}

.tw-player-progressbar__cursor {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 10px;
  width: 2px;
  background-color: black;
  z-index: 3;
}

.tw-player-progressbar__handle {
  position: absolute;
  top: 50%;
  height: 12px;
  width: 12px;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #746dff;
  box-shadow: 0 0 0 2px white;
  z-index: 4;
}

.tw-player-progressbar__handle:hover,
.tw-player-progressbar__handle:active {
  background-color: #9590ff;
}

.tw-player-progressbar__progress {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 10px;
  background: repeating-linear-gradient(to right, #746dff 0px, #746dff 2px, transparent 2px, transparent 4px);
  background-attachment: fixed;
  z-index: 1;
}

.tw-player-progressbar__tooltip {
  position: absolute;
  bottom: 25px; /* Above the caret */
  background: black;
  color: white;
  padding: 3px 6px;
  font-size: 12px;
  border-radius: 3px;
  transform: translateX(-50%);
  white-space: nowrap;
  display: block;
  z-index: 3;
}

.tw-player-progressbar__cut {
  position: absolute;
  top: 0;
  bottom: 0;
  background: repeating-linear-gradient(to right, #eeeef1 0px, #eeeef1 2px, transparent 2px, transparent 4px);
  background-attachment: fixed;
  z-index: 2;
}

.tw-player-progressbar__cut--start {
  left: 0;
}

.tw-player-progressbar__cut--end {
  right: 0;
}

.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-circle {
  --t-btn-border-radius: 50%;
}

.t-btn.t-btn-icon {
  --t-btn-padding-x: 0px;
  --t-btn-padding-y: 0px;
  --t-btn-icon-size: 24px;
  --t-btn-line-height: 0;
  --t-btn-border-width: 0;
  --t-btn-min-height: 0;
}

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

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

.form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8571428571;
  color: #222229;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: var(--bs-border-width) solid #d7d7de;
  border-radius: var(--bs-border-radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-select {
    transition: none;
  }
}
.form-select:focus {
  border-color: #746dff;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(116, 109, 255, 0.25);
}
.form-select[multiple], .form-select[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}
.form-select:disabled {
  background-color: #f5f5f5;
  border-color: #d7d7de;
}
.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #222229;
}

.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
  border-radius: var(--bs-border-radius-sm);
}

.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
  border-radius: var(--bs-border-radius-lg);
}

[data-bs-theme=dark] .form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dee2e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.tw-select-toggle {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tw-select-toggle__text {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.tw-select-menu {
  outline: none;
  min-width: var(--button-width);
  --bs-dropdown-padding-x: 0;
  --bs-dropdown-padding-y: 4px;
  --bs-dropdown-border-radius: 4px;
}

.tw-select-menu__header {
  padding: 10px 10px 0;
  margin-bottom: 10px;
}

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

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

.tw-select-option {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  min-height: 0;
  display: flex;
  align-items: center;
  width: 100%;
  gap: 8px;
  min-height: 48px;
  padding: 12px 14px;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.45;
  text-align: left;
  white-space: nowrap;
}

.tw-select-option--level-1 {
  padding-left: 32px;
}

.tw-select-option--level-2 {
  padding-left: 50px;
}

.tw-select-option--active,
.tw-select-option--focus {
  background-color: #f5f5f5;
}

.tw-select-option--disabled {
  color: var(--bs-tertiary-color);
  cursor: default;
}

.tw-select-option--default {
  color: #c4c4cd;
}
.tw-select-option--default.tw-select-option--active, .tw-select-option--default.tw-select-option--focus, .tw-select-option--default.tw-select-option--selected {
  background-color: #f5f5f5;
}

.tw-select-option__check {
  font-size: 24px;
  margin-left: auto;
  filter: invert(44%) sepia(76%) saturate(2989%) hue-rotate(120deg) brightness(106%) contrast(92%);
}

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

.tw-player-speed-control-button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  min-height: 0;
  height: 32px;
  padding-left: 4px;
  padding-right: 4px;
  border-radius: 4px;
}

.tw-player-speed-control-button:focus {
  outline: 1px solid #746dff;
}

.tw-player-speed-control-button[aria-expanded=true] {
  background-color: white;
}

.tw-player-speed-control-button__content {
  display: inline-block;
  color: #746dff;
  font-size: 12px;
  min-width: 24px;
  border-top: 1px dashed #746dff;
  border-bottom: 1px dashed #746dff;
}

.tw-player-speed-control .tw-select-option {
  padding-top: 8px;
  padding-bottom: 8px;
  min-height: 40px;
}

.tw-audio-player-skeleton.tw-audio-player {
  display: flex;
  flex-direction: column;
}
.tw-audio-player-skeleton.tw-audio-player--grey .tw-audio-player__controls {
  padding: 8px;
  background-color: #f5f5f5;
  border-radius: 8px;
}
.tw-audio-player-skeleton .tw-audio-player__controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.tw-audio-player-skeleton .tw-audio-player__play {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}
.tw-audio-player-skeleton .tw-audio-player__progress {
  flex-grow: 1;
}
.tw-audio-player-skeleton .tw-audio-player__time {
  font-size: 12px;
  line-height: 1.25;
  text-align: right;
  min-width: 40px;
}

.tw-media-player-preloader__player-preloader {
  background-color: black;
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tw-media-player-preloader--video .tw-media-player-preloader__player {
  border-radius: 6px;
  padding-bottom: 56.25%;
}
.tw-media-player-preloader--video .cb-preloader {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(64deg) brightness(107%) contrast(101%);
}

.tw-media-player-preloader--audio .tw-media-player-preloader__player-preloader {
  background-color: #f2f6f8;
}
.tw-media-player-preloader--audio .tw-media-player-preloader__player {
  padding-bottom: 90px;
  border-radius: 60px;
}

.media-file-preview-preloader {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.text-input-preview {
  font-size: 14px;
  white-space: pre-line;
}

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

.tw-skeleton {
  background-color: #f2f6f8;
}

.tw-skeleton--animated {
  position: relative;
  overflow: hidden;
}

.tw-skeleton--animated::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f2f6f8 25%, #ffffff 50%, #f2f6f8 75%);
  animation: skeleton-loading 1.5s infinite;
  border-radius: inherit;
  z-index: 10;
  opacity: 0.5;
}

@keyframes skeleton-loading {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(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%);
}

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

.website-preview {
  position: relative;
  overflow: hidden;
  background-color: white;
  border-radius: 10px;
  box-shadow: -1px 1px 5px rgba(0, 70, 151, 0.1);
  display: flex;
  flex-direction: column;
  color: black;
}

.website-preview:hover .website-preview__title {
  color: #746dff;
}

.website-preview__clear-cache {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 2;
}

.website-preview__thumbnail {
  background-color: #f2f6f8;
}

.website-preview__thumbnail .cb-fixed-ratio {
  padding-bottom: 52.0833333333%;
}

.website-preview__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.website-preview__title {
  font-size: 14px;
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.website-preview__description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 36px;
}

.website-preview__description,
.website-preview__site-name {
  font-size: 12px;
  color: #bcc3c7;
  line-height: 18px;
}

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

.website-preview-url {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background-color: #f2f6f8;
  border-radius: 6px;
}

.website-preview-url__icon {
  font-size: 24px;
  filter: invert(90%) sepia(8%) saturate(170%) hue-rotate(158deg) brightness(87%) contrast(87%);
  flex-shrink: 0;
}

.website-preview-url__link {
  font-size: 14px;
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.website-input-preview {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.website-input-preview .website-qr-preview {
  display: none;
}

.website-qr-preview {
  display: flex;
  align-items: center;
  padding: 10px;
  background: #f2f6f8;
  gap: 10px;
  border-radius: 6px;
}

.website-qr-preview__url {
  font-size: 14px;
  word-break: break-all;
}

.input-preview {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid #d7d7de;
  border-bottom: 1px solid #d7d7de;
  padding-top: 20px;
  padding-bottom: 20px;
}

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

.quiz-questions-block {
  --quiz-questions-block-items-padding-y: 20px;
  --quiz-questions-block-items-padding-x: 10px;
  position: relative;
}

.quiz-questions-block.content-block--card {
  padding: 0;
}

.quiz-questions-block__header {
  padding-top: 40px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  position: relative;
}

.quiz-questions-block .content-block__side-icon-badge {
  background: #746dff;
}

.quiz-questions-block__input-preview {
  padding: 20px;
}

.quiz-questions-block__tts-player {
  margin-top: 20px;
  padding-left: var(--quiz-questions-block-items-padding-x);
  padding-right: var(--quiz-questions-block-items-padding-x);
}

.quiz-questions-block__header + .quiz-questions-block__tts-player {
  margin-top: 0;
}

.quiz-questions-block__tts-player + .quiz-questions-block__footer {
  margin-top: 40px;
}

.quiz-questions-block__header + .quiz-questions-block__items {
  border-top: 1px solid #d7d7de;
}

.quiz-questions-block__items {
  padding: var(--quiz-questions-block-items-padding-y) var(--quiz-questions-block-items-padding-x);
}

.quiz-questions-block__items--questions-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.quiz-questions-block__footer {
  border-top: 1px solid #d7d7de;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.quiz-questions-block--assessment-mode .form-control[readonly],
.quiz-questions-block--assessment-mode .form-select[readonly] {
  background-color: white;
}

.quiz-questions-block__debug-assessment {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 2;
}

.quiz-questions-block__header-top {
  position: relative;
}

.quiz-questions-block__top-right {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .quiz-questions-block {
    --quiz-questions-block-items-padding-y: 30px;
    --quiz-questions-block-items-padding-x: 40px;
  }
  .quiz-questions-block__header {
    padding-top: 40px;
    padding-right: 40px;
    padding-bottom: 30px;
    padding-left: 40px;
  }
  .quiz-questions-block__header-top {
    display: flex;
    align-items: center;
    min-height: 29px;
  }
  .quiz-questions-block__input-preview {
    padding: 30px 40px;
  }
  .quiz-questions-block__results {
    padding: 20px;
  }
  .quiz-questions-block__top-right {
    width: auto;
    justify-content: normal;
  }
}
@media (min-width: 1024px) {
  .quiz-questions-block__header {
    min-height: 100px;
  }
}
.svg-icons-more-vertical {
  background-image: url(https://cdn.twee.com/e/dist_20250715150525/icons/icons-sprite.svg#svg--more-vertical);
}

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

.quiz-questions-block-header-student__top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.quiz-questions-block-header-student__options-dropdown {
  margin-left: auto;
}

@media (min-width: 768px) {
  .quiz-questions-block-header-student__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.t-btn.t-btn-icon-sm {
  --t-btn-padding-x: 2px;
  --t-btn-padding-y: 2px;
  --t-btn-icon-size: 20px;
  --t-btn-line-height: 20px;
  --t-btn-border-width: 0;
  --t-btn-min-height: 0;
  --t-btn-border-radius: 4px;
}

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

.quiz-default-headline-warning-tooltip {
  --bs-tooltip-max-width: 320px;
  --bs-tooltip-padding-x: 16px;
  --bs-tooltip-padding-y: 12px;
}

.quiz-default-headline-warning-tooltip__body {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.quiz-default-headline-warning-tooltip__text {
  font-size: 12px;
  text-align: left;
}

.quiz-default-headline-warning-tooltip__close i {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(64deg) brightness(107%) contrast(101%);
}

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

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

.quiz-questions-block-copy-btn {
  filter: invert(48%) sepia(7%) saturate(548%) hue-rotate(202deg) brightness(97%) contrast(89%);
}

.quiz-questions-block-header-teacher__top-actions {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tw-text-avatar {
  background-color: black;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.tw-text-avatar__icon {
  font-weight: bold;
  color: white;
  font-size: 41.1764705882%;
  line-height: 0;
}

.quiz-progress-bar {
  display: flex;
  height: 10px;
  gap: 2px;
  border-radius: 4px;
  overflow: hidden;
}

.quiz-progress-bar-item {
  flex-shrink: 0;
}

.quiz-progress-bar-item--correct {
  background-color: #0abc54;
}

.quiz-progress-bar-item--incorrect {
  background-color: #ff4b6c;
}

.quiz-progress-bar-item--unassessed {
  background-color: #e8e8ec;
}

.quiz-progress-bar-item--pending-check {
  background-color: #746dff;
}

.quiz-progress-bar-item--progress-completed {
  background-color: #746dff;
}

.quiz-progress-bar-item--progress-incompleted {
  background-color: #e8e8ec;
}

.quiz-progress-bar-item--empty {
  background-color: #e8e8ec;
}

.pending-check-progress-bar {
  background-color: #f2f6f8;
}

.student-quiz-assessment-label {
  font-size: 12px;
  font-weight: bold;
}

.student-quiz-assessment-label--awaiting-feedback,
.student-quiz-assessment-label--awaiting-results {
  color: #746dff;
}

.student-quiz-assessment-label--feedback-provided {
  color: #797986;
}

.student-quiz-assessment-label--no-grade-required {
  color: #8d959a;
}

.quiz-student-state-label {
  font-size: 12px;
  font-weight: bold;
}

.quiz-student-state-label--none {
  color: #797986;
}

.quiz-student-state-label--in-progress {
  color: #746dff;
}

.quiz-student-state-label--completed {
  color: #0abc54;
}

.quiz-student-stats-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quiz-student-stats-row:hover {
  background-color: #f5f5f5;
}

.quiz-student-stats-row--active {
  background-color: #f3f3ff;
}

.quiz-student-stats-row__student {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
}

.quiz-student-stats-row__avatar {
  flex-shrink: 0;
}

.quiz-student-stats-row__name {
  flex-grow: 1;
  font-weight: bold;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quiz-student-stats-row-progress {
  grid-area: progress;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.quiz-student-stats-row-progress__labels {
  display: flex;
  align-items: center;
  gap: 5px;
}

.quiz-student-stats-row-progress__value {
  font-size: 12px;
  margin-left: auto;
}

.quiz-student-stats-row-progress__bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #bcc3c7;
}

@media (min-width: 768px) {
  .quiz-student-stats-row {
    flex-direction: row;
    gap: 24px;
  }
  .quiz-student-stats-row__student {
    flex-grow: 1;
  }
  .quiz-student-stats-row__progress {
    min-width: 140px;
    flex-shrink: 0;
  }
}
.quiz-score-progress-ring-svg__background {
  stroke: #d7d7de;
}

.quiz-score-progress-ring-svg__circle {
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

.quiz-score-progress-ring-svg__correct {
  stroke: #0abc54;
}

.quiz-score-progress-ring-svg__incorrect {
  stroke: #ff90a4;
}

.quiz-score-progress-ring-svg__answered {
  stroke: #746dff;
}

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

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

.quiz-student-stats-dropdown-toggle {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  min-height: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.quiz-student-stats-dropdown-toggle:focus-visible {
  outline: revert;
}

.quiz-student-stats-dropdown-toggle__progress {
  position: relative;
  width: 38px;
}

.quiz-student-stats-dropdown-toggle__svg {
  width: 100%;
  position: relative;
  z-index: 2;
}

.quiz-student-stats-dropdown-toggle__background {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: #eeeef1;
  border-radius: 50%;
}

.quiz-student-stats-dropdown-toggle__icon {
  font-size: 24px;
}

.quiz-student-stats-dropdown-menu {
  padding: 24px 24px 12px;
  max-width: min(100vw - 30px, 670px);
  width: 100vw;
}

.quiz-student-stats-list {
  display: flex;
  flex-direction: column;
}
.quiz-student-stats-list .quiz-student-stats-row {
  padding: 12px 8px;
  border-bottom: 1px solid #eeeef1;
}

.quiz-questions-block-header-assessment__top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.quiz-questions-block-header-assessment__options-dropdown {
  margin-left: auto;
}

@media (min-width: 768px) {
  .quiz-questions-block-header-assessment__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.quiz-questions-block-results-stats {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.quiz-questions-block-results-stats__title {
  font-size: 14px;
  color: #8d959a;
}

.quiz-questions-block-results-stats__totals {
  font-size: 14px;
}

.quiz-questions-block-results-stats__progress {
  width: 150px;
}

.quiz-questions-block-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.quiz-questions-block-results-notes {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quiz-questions-block-results-notes__icon {
  font-size: 24px;
}

.quiz-questions-block-results-notes__text {
  font-size: 14px;
  white-space: pre-line;
}

@media (min-width: 768px) {
  .quiz-questions-block-results {
    flex-direction: row;
    align-items: center;
  }
  .quiz-questions-block-results .quiz-questions-block-results-stats {
    margin-left: auto;
  }
}
.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;
}

.quiz-questions-block-footer-student-mode__submit {
  padding: 20px 0;
  display: flex;
  justify-content: center;
}

.quiz-questions-block-footer-student-mode__results {
  padding: 20px 0;
}

.quiz-questions-block-footer-student-mode__manual-assessment.tw-message-box {
  padding: 20px;
  border-radius: 0;
}

@media (min-width: 768px) {
  .quiz-questions-block-footer-student-mode__results {
    padding: 20px;
  }
}
.quiz-manual-assessment-warning {
  border: 1px solid #ffe09a;
  padding: 10px 20px;
}

.tw-switch-input {
  font-size: 24px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 2em;
  height: 1em;
  background-color: #d7d7de;
  box-shadow: inset 0px 4px 6px rgba(74, 172, 203, 0.1);
  border-radius: 1em;
  position: relative;
  will-change: background-color;
  transition: background-color 0.15s ease-out;
  cursor: pointer;
  flex-shrink: 0;
}

.tw-switch-input::before {
  content: "";
  width: calc(1em - 2px);
  height: calc(1em - 2px);
  background-color: white;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 1px;
  transform: translate(0, -50%);
  will-change: transform;
  transition: transform 0.15s ease-out;
}

.tw-switch-input:checked {
  background-color: #746dff;
}

.tw-switch-input:checked::before {
  transform: translate(1em, -50%);
}

.tw-switch-input:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.tw-switch-input-with-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tw-switch-input-with-label__label {
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.quiz-check-grammar-switch .tw-switch-input-with-label__label {
  color: black;
}

.quiz-ai-check-switch .quiz-ai-check-switch__label {
  color: black;
}

.quiz-ai-check-switch__upgrade-link {
  color: #746dff;
  font-size: 14px;
}

.quiz-force-interactive-switch .tw-switch-input-with-label__label {
  color: black;
}

.quiz-force-interactive-switch__preloader {
  font-size: 24px;
}

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

.tw-badge {
  display: inline-flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  line-height: 18px;
  padding: 2px 7px;
  background-color: var(--tw-badge-bg, #f3f3ff);
  color: var(--tw-badge-color, #5336d6);
  border: 1px solid var(--tw-badge-border-color, #cfccff);
  border-radius: 4px;
}

.tw-badge--error {
  --tw-badge-bg: #fff0f3;
  --tw-badge-color: #cf0025;
  --tw-badge-border-color: #ffd3db;
}
.tw-badge--error .tw-badge__icon.svg-icons {
  filter: invert(12%) sepia(93%) saturate(5880%) hue-rotate(344deg) brightness(79%) contrast(108%);
}

.tw-badge--success {
  --tw-badge-bg: #e1ffee;
  --tw-badge-color: #00860d;
  --tw-badge-border-color: #acffcf;
}
.tw-badge--success .tw-badge__icon.svg-icons {
  filter: invert(29%) sepia(90%) saturate(1232%) hue-rotate(120deg) brightness(89%) contrast(101%);
}

.tw-badge--warning {
  --tw-badge-bg: #fff4da;
  --tw-badge-color: #ba7c26;
  --tw-badge-border-color: #ffe09a;
}
.tw-badge--warning .tw-badge__icon.svg-icons {
  filter: invert(54%) sepia(30%) saturate(6834%) hue-rotate(23deg) brightness(97%) contrast(101%);
}

.tw-badge--primary {
  --tw-badge-bg: #f3f3ff;
  --tw-badge-color: #5336d6;
  --tw-badge-border-color: #cfccff;
}
.tw-badge--primary .tw-badge__icon.svg-icons {
  filter: invert(26%) sepia(37%) saturate(5017%) hue-rotate(243deg) brightness(83%) contrast(104%);
}

.tw-badge--info {
  --tw-badge-bg: #ebfeff;
  --tw-badge-color: #00bfc9;
  --tw-badge-border-color: #c5fafd;
}
.tw-badge--info .tw-badge__icon.svg-icons {
  filter: invert(66%) sepia(34%) saturate(6599%) hue-rotate(143deg) brightness(97%) contrast(101%);
}

.tw-badge:has(.tw-badge__icon) {
  padding-left: 3px;
}

.tw-badge__icon {
  font-size: 16px;
}

.quiz-ai-check-top-up-counter {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.quiz-questions-block-footer-teacher-mode {
  background-color: #f3f3ff;
  border-top: none;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quiz-questions-block-footer-teacher-mode__content {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 12px;
}

.quiz-questions-block-footer-teacher-mode__points {
  margin-left: auto;
  flex-shrink: 0;
  align-self: flex-end;
}

.quiz-points-editor {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quiz-points-editor__label {
  font-size: 14px;
}

.quiz-points-editor__input {
  max-width: 80px;
}

.quiz-questions-block-footer-teacher-mode__switches {
  display: flex;
  gap: 12px;
  flex-direction: column;
}

.quiz-questions-block-footer-teacher-mode__ai-switch {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 768px) {
  .quiz-questions-block-footer-teacher-mode {
    padding-left: 24px;
    padding-right: 24px;
  }
  .quiz-questions-block-footer-teacher-mode__switches {
    gap: 16px;
  }
  .quiz-questions-block-footer-teacher-mode__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .quiz-questions-block-footer-teacher-mode__ai-switch {
    flex-direction: row;
    gap: 16px;
  }
}
.svg-icons-edit {
  background-image: url(https://cdn.twee.com/e/dist_20250715150525/icons/icons-sprite.svg#svg--edit);
}

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

.quiz-questions-block-footer-assessment-mode__add-feedback {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.quiz-questions-block-footer-assessment-mode__in-progress {
  border-radius: 0;
}

.quiz-questions-block-footer-assessment-mode__results {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
}

@media (min-width: 768px) {
  .quiz-questions-block-footer-assessment-mode__results {
    flex-direction: row;
    padding: 20px;
  }
  .quiz-questions-block-footer-assessment-mode__stats {
    margin-left: auto;
  }
}
.quiz-questions-block__warning-message {
  padding: 20px 40px;
  border-radius: 0;
}

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

.quiz-question-notes {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.quiz-question-notes__icon {
  flex-shrink: 0;
  font-size: 24px;
  filter: invert(67%) sepia(7%) saturate(345%) hue-rotate(160deg) brightness(87%) contrast(86%);
}

.quiz-question-notes__text {
  font-size: 14px;
  color: #8d959a;
  white-space: pre-line;
}

.question-not-completed-badge {
  padding: 7px 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  white-space: nowrap;
  border-radius: 20px;
  color: #cf0025;
  font-weight: bold;
  font-size: 12px;
  line-height: 1.5;
}

.question-not-completed-badge--red {
  background-color: #fdecf2;
}

.question-not-completed-badge--white {
  background-color: white;
}

.quiz-question {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quiz-question--incorrect {
  background-color: #ffe4e9;
}
.quiz-question--incorrect .quiz-question-icon {
  background-color: #cf0025;
}
.quiz-question--incorrect .quiz-question-notes__text {
  color: #cf0025;
}
.quiz-question--incorrect .quiz-question-notes__icon {
  filter: invert(12%) sepia(93%) saturate(5880%) hue-rotate(344deg) brightness(79%) contrast(108%);
}

.quiz-question--warning {
  background-color: #fff1e4;
}
.quiz-question--warning .quiz-question-icon {
  background-color: #ffae50;
}

.quiz-question--correct {
  background-color: #e1ffee;
}
.quiz-question--correct .quiz-question-icon {
  background-color: #00860d;
}
.quiz-question--correct .quiz-question-notes__text {
  color: #00860d;
}
.quiz-question--correct .quiz-question-notes__icon {
  filter: invert(29%) sepia(90%) saturate(1232%) hue-rotate(120deg) brightness(89%) contrast(101%);
}

.quiz-question--pending-feedback {
  background-color: #e8e7ff;
}

.quiz-question-header {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.quiz-question-icon {
  font-size: 12px;
  background-color: #a2a2af;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-weight: bold;
}

.quiz-question-text {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
}

.quiz-question-title {
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

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

.skipped-indicator {
  cursor: help;
  font-size: 20px;
  filter: invert(61%) sepia(53%) saturate(7343%) hue-rotate(324deg) brightness(107%) contrast(107%);
}

.t-btn.quiz-option-btn {
  text-align: left;
  display: grid;
  grid-template-columns: 34px 1fr 24px;
  --t-btn-background: #ffffff;
  --t-btn-color: #222229;
  --t-btn-border-color: #d7d7de;
  --t-btn-hover-background: #ffffff;
  --t-btn-hover-color: #222229;
  --t-btn-hover-border-color: #d7d7de;
  --t-btn-active-background: #ffffff;
  --t-btn-active-color: #222229;
  --t-btn-active-border-color: #d7d7de;
  --t-btn-disabled-color: #222229;
  --t-btn-disabled-background: #ffffff;
  --t-btn-disabled-border-color: #d7d7de;
  --t-btn-focus-background: #ffffff;
  --t-btn-focus-color: #222229;
  --t-btn-focus-border-color: #d7d7de;
  --t-quiz-option-btn-icon-bg: #eeeef1;
  --t-btn-padding-x: 10px;
  --t-btn-padding-y: 10px;
}
.t-btn.quiz-option-btn:hover,
.t-btn.quiz-option-btn:focus-visible {
  box-shadow: 0px 0px 0px 1px #d7d7de;
}

.t-btn.quiz-option-btn--correct {
  --t-btn-border-color: #0abc54;
  --t-btn-background: #e1ffee;
  --t-btn-color: #00860d;
  --t-btn-disabled-border-color: #0abc54;
  --t-btn-disabled-background: #e1ffee;
  --t-btn-disabled-color: #00860d;
  --t-btn-active-border-color: #0abc54;
  --t-btn-active-background: #e1ffee;
  --t-btn-active-color: #00860d;
  --t-btn-hover-border-color: #0abc54;
  --t-btn-hover-background: #e1ffee;
  --t-btn-hover-color: #00860d;
  --t-btn-focus-border-color: #0abc54;
  --t-btn-focus-background: #e1ffee;
  --t-btn-focus-color: #00860d;
  --t-quiz-option-btn-icon-bg: #acffcf;
}
.t-btn.quiz-option-btn--correct .quiz-option-btn__icon i {
  filter: invert(29%) sepia(90%) saturate(1232%) hue-rotate(120deg) brightness(89%) contrast(101%);
}

.t-btn.quiz-option-btn--incorrect {
  --t-btn-border-color: #ff4b6c;
  --t-btn-background: #fff0f3;
  --t-btn-color: #cf0025;
  --t-btn-disabled-border-color: #ff4b6c;
  --t-btn-disabled-background: #fff0f3;
  --t-btn-disabled-color: #cf0025;
  --t-btn-active-border-color: #ff4b6c;
  --t-btn-active-background: #fff0f3;
  --t-btn-active-color: #cf0025;
  --t-btn-hover-border-color: #ff4b6c;
  --t-btn-hover-background: #fff0f3;
  --t-btn-hover-color: #cf0025;
  --t-btn-focus-border-color: #ff4b6c;
  --t-btn-focus-background: #fff0f3;
  --t-btn-focus-color: #cf0025;
  --t-quiz-option-btn-icon-bg: #ffd3db;
}
.t-btn.quiz-option-btn--incorrect .quiz-option-btn__icon i {
  filter: invert(12%) sepia(93%) saturate(5880%) hue-rotate(344deg) brightness(79%) contrast(108%);
}

.t-btn.quiz-option-btn--selected {
  --t-btn-border-color: #9590ff;
  --t-btn-background: #f3f3ff;
  --t-btn-color: #5336d6;
  --t-btn-disabled-border-color: #9590ff;
  --t-btn-disabled-background: #f3f3ff;
  --t-btn-disabled-color: #5336d6;
  --t-btn-active-border-color: #9590ff;
  --t-btn-active-background: #f3f3ff;
  --t-btn-active-color: #5336d6;
  --t-btn-hover-border-color: #9590ff;
  --t-btn-hover-background: #f3f3ff;
  --t-btn-hover-color: #5336d6;
  --t-btn-focus-border-color: #9590ff;
  --t-btn-focus-background: #f3f3ff;
  --t-btn-focus-color: #5336d6;
  --t-quiz-option-btn-icon-bg: #cfccff;
}
.t-btn.quiz-option-btn--selected .quiz-option-btn__correct-answer,
.t-btn.quiz-option-btn--selected .quiz-option-btn__icon i {
  filter: invert(26%) sepia(37%) saturate(5017%) hue-rotate(243deg) brightness(83%) contrast(104%);
}

.t-btn.quiz-option-btn--active {
  --t-btn-border-color: #9590ff;
  --t-btn-background: #f3f3ff;
  --t-btn-color: #5336d6;
  --t-btn-disabled-border-color: #9590ff;
  --t-btn-disabled-background: #f3f3ff;
  --t-btn-disabled-color: #5336d6;
  --t-btn-active-border-color: #9590ff;
  --t-btn-active-background: #f3f3ff;
  --t-btn-active-color: #5336d6;
  --t-btn-focus-border-color: #9590ff;
  --t-btn-focus-background: #f3f3ff;
  --t-btn-focus-color: #5336d6;
  --t-quiz-option-btn-icon-bg: #cfccff;
}

.t-btn.quiz-option-btn--warning {
  --t-btn-border-color: #ff4b6c;
  --t-btn-background: #fff0f3;
  --t-btn-color: #cf0025;
  --t-btn-disabled-border-color: #ff4b6c;
  --t-btn-disabled-background: #fff0f3;
  --t-btn-disabled-color: #cf0025;
  --t-btn-active-border-color: #ff4b6c;
  --t-btn-active-background: #fff0f3;
  --t-btn-active-color: #cf0025;
  --t-btn-hover-border-color: #ff4b6c;
  --t-btn-hover-background: #fff0f3;
  --t-btn-hover-color: #cf0025;
  --t-quiz-option-btn-icon-bg: #ffd3db;
}

.t-btn.quiz-option-btn--skipped {
  --t-btn-border-color: #d7d7de;
  --t-btn-background: #ffffff;
  --t-btn-color: #00860d;
  --t-btn-disabled-border-color: #d7d7de;
  --t-btn-disabled-background: #ffffff;
  --t-btn-disabled-color: #00860d;
  --t-btn-active-border-color: #d7d7de;
  --t-btn-active-background: #ffffff;
  --t-btn-active-color: #00860d;
  --t-btn-hover-border-color: #d7d7de;
  --t-btn-hover-background: #ffffff;
  --t-btn-hover-color: #00860d;
  --t-btn-focus-border-color: #d7d7de;
  --t-btn-focus-background: #ffffff;
  --t-btn-focus-color: #00860d;
  --t-quiz-option-btn-icon-bg: #acffcf;
}
.t-btn.quiz-option-btn--skipped .quiz-option-btn__icon i {
  filter: invert(29%) sepia(90%) saturate(1232%) hue-rotate(120deg) brightness(89%) contrast(101%);
}

.t-btn.quiz-option-btn--static {
  font-size: 14px;
  background: #f7f9f9;
  display: flex;
  justify-content: flex-start;
  cursor: default !important;
  --t-btn-padding-x: 16px;
  --t-btn-padding-y: 16px;
}

.quiz-option-btn__icon {
  color: var(--t-btn-color);
  background: var(--t-quiz-option-btn-icon-bg);
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 12px;
  line-height: 1;
  font-weight: bold;
  min-width: 34px;
  min-height: 34px;
  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;
}

.abcd-question__options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 768px) {
  .abcd-question__options {
    grid-template-columns: 1fr 1fr;
  }
}
.svg-icons-search-cross {
  background-image: url(https://cdn.twee.com/e/dist_20250715150525/icons/icons-sprite.svg#svg--search-cross);
}

.true-false-question__options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 768px) {
  .true-false-question__options {
    flex-direction: row;
  }
  .true-false-question__options .true-false-option {
    flex: 1 0 0;
  }
}
.tool-output-dialogue-item {
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 10px;
  column-gap: 10px;
}

.tool-output-dialogue-item--align-end {
  grid-template-columns: 1fr auto;
}
.tool-output-dialogue-item--align-end .tool-output-dialogue-item__avatar {
  grid-column: 2;
}
.tool-output-dialogue-item--align-end .tool-output-dialogue-item__name {
  justify-self: right;
}
.tool-output-dialogue-item--align-end .tool-output-dialogue-item__text {
  justify-self: right;
}

.tool-output-dialogue-item__avatar {
  grid-row: 1/3;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
}

.tool-output-dialogue-item__name {
  color: #bcc3c7;
  font-weight: bold;
  font-size: 12px;
  line-height: 2;
}

.tool-output-dialogue-item__text {
  background-color: #f2f6f8;
  padding: 10px 20px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 6px;
}

.tool-output-item-badge {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffb200;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #ffffff;
  font-weight: bold;
}

.tool-output-item-badge--blue {
  background: #9590ff;
}

.tool-output-item-badge--muted-background {
  color: black;
  background-color: #f2f6f8;
}

.tool-output-item-badge--sm {
  width: 20px;
  height: 20px;
}

.tool-output-correct-answers {
  position: relative;
  background: #f5f5f5;
  padding: 16px 20px 40px;
  margin-left: -20px;
  margin-right: -20px;
  margin-top: 40px;
}

.tool-output-correct-answers--column .tool-output-correct-answers__title {
  margin-bottom: 30px;
}
.tool-output-correct-answers--column .tool-output-correct-answers__answers {
  flex-direction: column;
  row-gap: 20px;
}

.tool-output-correct-answers__badge {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: -5px 10px 15px rgba(0, 70, 151, 0.1);
  position: absolute;
  top: 10px;
  left: -15px;
}

.tool-output-correct-answers__badge i {
  filter: invert(90%) sepia(8%) saturate(170%) hue-rotate(158deg) brightness(87%) contrast(87%);
}

.tool-output-correct-answers__title {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 10px;
}

.tool-output-correct-answers__answers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.tool-output-correct-answer {
  display: flex;
  align-items: baseline;
  -moz-column-gap: 10px;
  column-gap: 10px;
}

.tool-output-correct-answer__icon {
  flex-shrink: 0;
  background: #c4c4cd;
  color: #ffffff;
}

.tool-output-correct-answer__answer {
  font-size: 14px;
}

@media (min-width: 768px) {
  .tool-output-correct-answers {
    margin-left: -40px;
    margin-right: -40px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1024px) {
  .tool-output-correct-answers__badge {
    width: 40px;
    height: 40px;
    left: -20px;
    top: 5px;
  }
}
.tool-output-template-dialogue__items {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.tool-output-template-situation {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.tool-output-template-situation + .tool-output-template-situation {
  padding-top: 20px;
  border-top: 1px solid #d7d7de;
}

.tool-output-template-situation .tool-output-dialogue-item__name {
  display: none;
}

.tool-output-template-situation .tool-output-dialogue-item__text {
  max-width: 80%;
}

.tool-output-template-situations__items {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.tool-output-template-abcd-questions__questions {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.tool-output-abcd-question {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: baseline;
}

.tool-output-abcd-question__icon {
  grid-row: 1/3;
}

.tool-output-abcd-question__text {
  font-size: 14px;
  font-weight: bold;
}

.tool-output-abcd-question__options {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.tool-output-abcd-question-option {
  display: flex;
  align-items: baseline;
  -moz-column-gap: 10px;
  column-gap: 10px;
}

.tool-output-abcd-question-option__icon {
  flex-shrink: 0;
  background-color: #f2f6f8;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.tool-output-abcd-question-option__text {
  font-size: 14px;
}

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

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

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

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

.t-btn.tool-output-mix-button {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
}

.tool-output-template-matching__items {
  display: grid;
  grid-template-columns: 1fr;
}

.tool-output-match-column[data-type=right] {
  order: 1;
}

.tool-output-match-column:nth-child(n+3) {
  padding-top: 16px;
  margin-top: 10px;
  border-top: 1px solid #d7d7de;
}

.tool-output-match-column:nth-child(2) {
  margin-top: 36px;
}

.tool-output-match-column {
  display: flex;
  gap: 10px;
}

.tool-output-match-column .tool-output-item-badge {
  flex-shrink: 0;
}

.tool-output-match-column__text {
  font-size: 14px;
}

@media (max-width: 767.98px) {
  .tool-output-template-matching__items[data-mix=false] {
    display: block;
  }
  .tool-output-template-matching__items[data-mix=false] .tool-output-match-column:nth-child(2) {
    margin-top: 0;
  }
  .tool-output-template-matching__items[data-mix=false] .tool-output-match-column:nth-child(n+3) {
    padding-top: 0;
    margin-top: 0;
    border-top: none;
  }
  .tool-output-template-matching__items[data-mix=false] .tool-output-match-column[data-type=right] {
    margin-top: 12px;
    border-bottom: 1px solid #d7d7de;
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
  .tool-output-template-matching__items[data-mix=false] .tool-output-match-column[data-type=right]:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
}
@media print, (min-width: 768px) {
  .tool-output-template-matching__items {
    grid-template-columns: 1fr 1fr;
    gap: 10px 25px;
  }
  .tool-output-match-column[data-type=right] {
    order: 0;
  }
  .tool-output-match-column:nth-child(n+3),
  .tool-output-match-column:nth-child(2) {
    margin-top: 0;
  }
  .tool-output-match-column:nth-child(n+3) {
    padding-top: 10px;
  }
  .tool-output-template-word-definition-matching .tool-output-template-matching__items {
    grid-template-columns: max-content 1fr;
  }
  .tool-output-template-word-definition-matching .tool-output-match-column[data-type=left] {
    max-width: 180px;
  }
}
.tool-output-quote {
  background-color: #f2f6f8;
  padding: 20px 20px 10px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.tool-output-quote__text {
  font-size: 14px;
}

.tool-output-quote__name {
  text-align: right;
  font-size: 14px;
  color: #bcc3c7;
}

.tool-output-template-quotes__items {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.tool-output-list-item {
  display: flex;
  align-items: baseline;
  -moz-column-gap: 10px;
  column-gap: 10px;
}

.tool-output-list-item__badge {
  flex-shrink: 0;
}

.tool-output-list-item__text {
  flex-grow: 1;
  font-size: 14px;
}

.tool-output-list-item--bold .tool-output-list-item__text {
  font-weight: bold;
}

.tool-output-template-lists__lists {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}

.tool-output-list {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.tool-output-list__title {
  font-size: 14px;
  font-weight: bold;
}

.tool-output-list__items {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.tool-output-template-scramble-the-words__items {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.tool-output-scramble-the-words-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.tool-output-scramble-the-words-item__icon {
  flex-shrink: 0;
}

.tool-output-scramble-the-words-item__words {
  display: flex;
  gap: 6px 4px;
  align-items: baseline;
  flex-wrap: wrap;
}

.tool-output-scramble-the-words-word {
  font-size: 14px;
  background-color: #f2f6f8;
  border-radius: 4px;
  padding-left: 10px;
  padding-right: 10px;
}

.tool-output-template-text__text {
  white-space: pre-wrap;
  font-size: 14px;
}

.tool-output-template-list__title {
  font-size: 14px;
  font-weight: bold;
}

.tool-output-template-list__items {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.tool-output-template-rephrase-sentences__phrases {
  margin-bottom: 20px;
}

.tool-output-template-images__images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tool-output-image {
  display: flex;
  justify-content: center;
}

.tool-output-image__img {
  max-width: 100%;
  height: auto;
}

.cefr-checker-overview-level-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.cefr-checker-overview-level-item__title {
  color: #ffffff;
  font-size: 14px;
}

.cefr-checker-overview-level-item__progress-background {
  stroke: #9590ff;
  fill: transparent;
}

.cefr-checker-overview-level-item__progress-bar {
  stroke: #ffffff;
  fill: transparent;
  transition: stroke-dashoffset 1s ease-out;
}

.cefr-checker-overview-level-item__progress-indicator {
  position: relative;
}

.cefr-checker-overview-level-item__svg {
  width: 56px;
  height: 56px;
}

.cefr-checker-item-progress-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  color: #ffffff;
  font-weight: 700;
  white-space: nowrap;
}

.cefr-checker-item-progress-value__sub {
  color: #cfccff;
}

.t-btn.t-btn-text {
  color: #797986;
  border: none;
  min-height: 0;
  padding: 0;
}

.t-btn.t-btn-text i {
  font-size: 24px;
  filter: invert(90%) sepia(8%) saturate(170%) hue-rotate(158deg) brightness(87%) contrast(87%);
}

.t-btn-text--text-muted {
  color: #8d959a;
}
.t-btn-text--text-muted i {
  filter: invert(67%) sepia(7%) saturate(345%) hue-rotate(160deg) brightness(87%) contrast(86%);
}

.tw-tooltip {
  --bs-tooltip-font-size: 12px;
  --bs-tooltip-padding-y: 12px;
  --bs-tooltip-padding-x: 16px;
  --bs-tooltip-border-radius: 8px;
  --bs-tooltip-arrow-height: 8px;
  --bs-tooltip-arrow-width: 16px;
  --bs-tooltip-max-width: 400px;
  --bs-tooltip-bg: #ffffff;
  --bs-tooltip-color: #222229;
  box-shadow: 0px 8px 16px -2px rgba(27, 33, 44, 0.12);
}

.tw-tooltip--dark {
  --bs-tooltip-bg: #222229;
  --bs-tooltip-color: #ffffff;
  box-shadow: none;
}

.tw-tooltip .tooltip-inner {
  text-align: left;
}

.tw-tooltip__close {
  position: absolute;
  top: 12px;
  right: 8px;
  filter: invert(10%) sepia(11%) saturate(766%) hue-rotate(201deg) brightness(99%) contrast(92%);
}

.tw-tooltip--dark .tw-tooltip__close {
  filter: invert(99%) sepia(100%) saturate(2%) hue-rotate(72deg) brightness(105%) contrast(100%);
}

.tw-tooltip--close .tooltip-inner {
  padding-right: 40px;
}

.tw-tooltip__content {
  padding: 2px 0;
  line-height: 1.25;
}

.cefr-checker-overview-container {
  container-type: inline-size;
  container-name: cefr-checker-overview;
}

.cefr-checker-overview {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  background: #746dff;
  border-radius: 12px;
  justify-content: center;
  align-items: stretch;
}

.cefr-checker-overview__title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.cefr-checker-overview__total {
  align-self: center;
  text-align: center;
  padding: 0;
}

.cefr-checker-overview-value {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  line-height: 56px;
  margin: 0;
}

.cefr-checker-overview-value__sub {
  color: #cfccff;
  flex-shrink: 0;
}

.cefr-checker-overview__divider {
  width: 100%;
  height: 1px;
  background: #9590ff;
  border: none;
  opacity: 1;
  margin: 0;
}

.cefr-checker-overview__items {
  display: flex;
  flex-grow: 1;
}

.cefr-checker-overview__item {
  flex-basis: 33.3333%;
  flex-shrink: 0;
}

@container cefr-check (min-width: 560px) {
  .cefr-checker-overview {
    flex-direction: row;
  }
  .cefr-checker-overview__total {
    padding: 0 56px;
  }
  .cefr-checker-overview__divider {
    width: 1px;
    height: auto;
  }
}
.cefr-checker-grammar {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #d7d7de;
}

.cefr-checker-grammar__header {
  background: #f3f3ff;
  padding: 10px 24px;
}

.cefr-checker-grammar__title {
  font-size: 14px;
  color: #797986;
  margin: 0;
}

.cefr-checker-grammar__list {
  padding: 16px 24px;
  display: flex;
  gap: 16px;
  flex-direction: column;
}

.cefr-checker-grammar__item {
  display: flex;
  gap: 12px;
  align-items: center;
}

.cefr-checker-grammar__level {
  font-size: 14px;
  font-weight: bold;
  flex-shrink: 0;
}

.cefr-checker-grammar__level--a1 {
  color: #0abc54;
}

.cefr-checker-grammar__level--a2 {
  color: #ffb200;
}

.cefr-checker-grammar__level--b1 {
  color: #746dff;
}

.cefr-checker-grammar__level--b2 {
  color: #00bfc9;
}

.cefr-checker-grammar__level--c1 {
  color: #c700f4;
}

.cefr-checker-grammar__level--c2 {
  color: #ff4b6c;
}

.cefr-checker-level-bar {
  -moz-column-gap: 2px;
  column-gap: 2px;
  row-gap: 8px;
  flex-grow: 1;
  display: grid;
  grid-template-areas: "label level-bar value";
  grid-template-columns: 70px 1fr 40px;
  align-items: center;
  padding: 2px 0;
}

.cefr-checker-level-bar__percentage {
  font-size: 12px;
  color: #797986;
  opacity: 0.8;
  text-align: right;
  grid-area: value;
  line-height: 1.25;
}

.cefr-checker-level-bar__track {
  overflow: hidden;
  display: flex;
  height: 4px;
  flex-grow: 1;
  border-radius: 9999px;
}

.cefr-checker-level-bar__fill {
  transition: max-width 1s ease-out, max-height 1s ease-out;
  display: flex;
  width: 100%;
  height: 100%;
  max-width: var(--size);
  border-radius: 9999px;
}

.cefr-checker-level-bar__label {
  font-size: 12px;
  font-weight: bold;
  grid-area: label;
  line-height: 1.45;
}

.cefr-checker-level-bar__track-wrapper {
  display: flex;
  justify-content: center;
  flex-grow: 1;
  grid-area: level-bar;
}

.cefr-checker-level-bar {
  --cefr-checker-level-bar-track-bg: rgba(196, 196, 205, 0.2);
  --cefr-checker-level-bar-fill-bg: #c4c4cd;
  --cefr-checker-level-bar-label-color: rgba(196, 196, 205, 0.8);
}
.cefr-checker-level-bar .cefr-checker-level-bar__track {
  background: var(--cefr-checker-level-bar-track-bg);
}
.cefr-checker-level-bar .cefr-checker-level-bar__fill {
  background: var(--cefr-checker-level-bar-fill-bg);
}
.cefr-checker-level-bar .cefr-checker-level-bar__label {
  color: var(--cefr-checker-level-bar-label-color);
}

.cefr-checker-level-bar--a1 {
  --cefr-checker-level-bar-track-bg: rgba(10, 188, 84, 0.2);
  --cefr-checker-level-bar-fill-bg: #0abc54;
  --cefr-checker-level-bar-label-color: rgba(10, 188, 84, 0.8);
}

.cefr-checker-level-bar--a2 {
  --cefr-checker-level-bar-track-bg: rgba(255, 178, 0, 0.2);
  --cefr-checker-level-bar-fill-bg: #ffb200;
  --cefr-checker-level-bar-label-color: rgba(255, 178, 0, 0.8);
}

.cefr-checker-level-bar--b1 {
  --cefr-checker-level-bar-track-bg: rgba(116, 109, 255, 0.2);
  --cefr-checker-level-bar-fill-bg: #746dff;
  --cefr-checker-level-bar-label-color: rgba(116, 109, 255, 0.8);
}

.cefr-checker-level-bar--b2 {
  --cefr-checker-level-bar-track-bg: rgba(0, 191, 201, 0.2);
  --cefr-checker-level-bar-fill-bg: #00bfc9;
  --cefr-checker-level-bar-label-color: rgba(0, 191, 201, 0.8);
}

.cefr-checker-level-bar--c1 {
  --cefr-checker-level-bar-track-bg: rgba(199, 0, 244, 0.2);
  --cefr-checker-level-bar-fill-bg: #c700f4;
  --cefr-checker-level-bar-label-color: rgba(199, 0, 244, 0.8);
}

.cefr-checker-level-bar--c2 {
  --cefr-checker-level-bar-track-bg: rgba(255, 75, 108, 0.2);
  --cefr-checker-level-bar-fill-bg: #ff4b6c;
  --cefr-checker-level-bar-label-color: rgba(255, 75, 108, 0.8);
}

@container cefr-check (min-width: 560px) {
  .cefr-checker-level-bar {
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
  }
  .cefr-checker-level-bar__track {
    height: 80px;
    width: 16px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    flex-direction: column;
    justify-content: flex-end;
    flex-grow: 0;
  }
  .cefr-checker-level-bar__track-wrapper {
    border-bottom: 1px solid #eeeef1;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .cefr-checker-level-bar__fill {
    max-height: var(--size);
    max-width: none;
    border-radius: 0;
  }
  .cefr-checker-level-bar__label {
    font-size: 14px;
  }
}
.cefr-checker-vocabulary {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #d7d7de;
}

.cefr-checker-vocabulary__header {
  background: #f3f3ff;
  padding: 10px 24px;
}

.cefr-checker-vocabulary__title {
  font-size: 14px;
  color: #797986;
  margin: 0;
}

.cefr-checker-vocabulary__levels {
  display: flex;
  flex-direction: column;
  padding: 16px 24px;
}

@container cefr-check (min-width: 560px) {
  .cefr-checker-vocabulary__levels {
    flex-direction: row;
    justify-content: space-between;
  }
}
.cefr-check {
  display: flex;
  flex-direction: column;
  gap: 16px;
  container-type: inline-size;
  container-name: cefr-check;
}

.gap-fill-free-text-gap-node {
  display: inline-flex;
  vertical-align: bottom;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 4px;
}

.gap-fill-free-text-gap-node__hint {
  font-weight: bold;
}

.gap-fill-text-node {
  display: inline;
}

.gap-fill-two-options-gap-node {
  font-weight: bold;
  display: inline-flex;
}

.gap-fill-two-options-gap-node__separator {
  margin: 0 2px;
}

.gap-fill-nodes {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.tool-output-template-gap-fill__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tw-checkbox {
  --tw-checkbox-border-color: #222229;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 24px;
  width: 1em;
  height: 1em;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 3px;
  flex-shrink: 0;
}

.tw-checkbox::before {
  content: "";
  display: block;
  border: 1.5px solid var(--tw-checkbox-border-color);
  background-color: transparent;
  border-radius: 4px;
  width: 100%;
  height: 100%;
}

.tw-checkbox[type=radio]::before {
  border-radius: 50%;
}

.tw-checkbox:disabled::before,
.tw-checkbox.disabled::before {
  cursor: not-allowed;
  background-color: #f5f5f5;
  opacity: 0.5;
}

.tw-checkbox[type=checkbox]:checked::after {
  content: "";
  font-size: 16px;
  vertical-align: middle;
  display: inline-block;
  background-size: 1em;
  width: 1em;
  height: 1em;
  background-image: url(https://cdn.twee.com/e/dist_20250715150525/icons/icons-sprite.svg#svg--check);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(64deg) brightness(107%) contrast(101%);
}

.tw-checkbox[type=checkbox]:checked::before {
  background-color: #746dff;
  border-color: #746dff;
}

.tw-checkbox[type=checkbox]:indeterminate::after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.tw-checkbox[type=checkbox]:indeterminate::before {
  background-color: #746dff;
  border-color: #746dff;
}

.tw-checkbox[type=radio]:checked::before {
  background: #746dff;
  border-color: #746dff;
}

.tw-checkbox[type=radio]:checked::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.gap-fill-checklist-checkbox {
  display: flex;
  align-self: center;
  gap: 8px;
}

.gap-fill-checklist-checkbox__label {
  font-size: 14px;
  cursor: pointer;
  align-self: center;
}

.gap-fill-checklist-checkbox--read-only {
  opacity: 0.5;
  pointer-events: none;
}

.gap-fill-checklist {
  background: #f5f5f5;
  border-radius: 4px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.gap-fill-checklist__title {
  font-weight: bold;
  font-size: 14px;
  margin: 0;
}

.gap-fill-checklist__items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.quiz-questions-block__header + .static-output-block__content {
  border-top: 1px solid #d7d7de;
}

.static-output-block__content {
  padding: 20px;
}

.tool-output-template-matching__mix {
  display: none;
}

@media (min-width: 768px) {
  .static-output-block__content {
    padding: 30px 40px;
  }
}
.quiz-assessment-editor-header .quiz-questions-block__badge {
  background-color: #def2ff;
}
.quiz-assessment-editor-header .quiz-questions-block__badge i {
  filter: invert(73%) sepia(7%) saturate(3352%) hue-rotate(174deg) brightness(81%) contrast(98%);
}

.quiz-assessment-editor-body {
  --quiz-assessment-editor-body-padding-y: 20px;
  --quiz-assessment-editor-body-padding-x: 10px;
  padding: var(--quiz-assessment-editor-body-padding-y) var(--quiz-assessment-editor-body-padding-x);
  background-color: #fafcff;
  border-top: 1px solid #d7d7de;
}

@media (min-width: 768px) {
  .quiz-assessment-editor-body {
    --quiz-assessment-editor-body-padding-y: 30px;
    --quiz-assessment-editor-body-padding-x: 40px;
  }
}
.quiz-assessment-editor-footer {
  padding: 20px 0;
  border-top: 1px solid #d7d7de;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 0 0 10px 10px;
  background-color: white;
  position: sticky;
  bottom: 0;
}

.quiz-assessment-editor.content-block--card {
  padding: 0;
}

.quiz-assessment-editor-body--questions-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quiz-assessment-editor-preloader {
  display: flex;
  flex-direction: column;
}

.quiz-assessment-editor-preloader__body {
  flex-grow: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.quiz-assessment-editor-preloader__preloader {
  font-size: 48px;
}

.quiz-text-input {
  position: relative;
}

.quiz-text-input .form-control {
  padding: 16px 56px 16px 16px;
}

.quiz-text-input__key {
  position: absolute;
  top: 50%;
  right: 16px;
  font-size: 24px;
  transform: translateY(-50%);
}

.quiz-text-input--correct .form-control {
  color: #00860d;
}

.quiz-text-input--skipped .form-control {
  position: relative;
}

.quiz-text-input__skipped {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}

.open-question__input {
  padding-left: 34px;
}

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

.fill-the-gap-option {
  display: inline-flex;
  padding: 0px 10px;
  align-items: center;
  gap: 5px;
  border-radius: 4px;
  background: white;
  font-size: 14px;
  line-height: 1.5;
}
.fill-the-gap-option:hover {
  border-color: black;
}

.fill-the-gap-option--static {
  background: #f5f5f5;
  cursor: default;
}
.fill-the-gap-option--static:hover {
  border-color: #d7d7de;
}

.fill-the-gap-option--icon-left {
  padding-left: 5px;
}

.fill-the-gap-option--icon-right {
  padding-right: 5px;
}

.fill-the-gap-option__icon {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  flex-shrink: 0;
  filter: invert(90%) sepia(8%) saturate(170%) hue-rotate(158deg) brightness(87%) contrast(87%);
}

.fill-the-gap-option__icon--dismiss {
  font-size: 16px;
}

.fill-the-gap-option__icon--correct,
.fill-the-gap-option__icon--incorrect,
.fill-the-gap-option__icon--correct-key {
  font-size: 20px;
}

.fill-the-gap-option[disabled] {
  background: #f2f6f8;
  color: #8d959a;
  pointer-events: none;
}

.fill-the-gap-option--dragging,
.fill-the-gap-option--dragging:hover {
  border-color: #4aaccb;
}

.fill-the-gap-option[data-state=Selected] {
  background-color: #f3f3ff;
  color: #5336d6;
  border-color: #746dff;
}
.fill-the-gap-option[data-state=Selected]:hover {
  box-shadow: 0 0 0 1px #c4c4cd;
}
.fill-the-gap-option[data-state=Selected] .fill-the-gap-option__icon {
  filter: invert(26%) sepia(37%) saturate(5017%) hue-rotate(243deg) brightness(83%) contrast(104%);
}
.fill-the-gap-option[data-state=Correct] {
  background-color: #e1ffee;
  color: #00860d;
  border-color: transparent;
}
.fill-the-gap-option[data-state=Correct] .fill-the-gap-option__icon {
  filter: invert(29%) sepia(90%) saturate(1232%) hue-rotate(120deg) brightness(89%) contrast(101%);
}
.fill-the-gap-option[data-state=Incorrect] {
  background-color: #fff0f3;
  color: #cf0025;
  border-color: transparent;
}
.fill-the-gap-option[data-state=Incorrect] .fill-the-gap-option__icon {
  filter: invert(12%) sepia(93%) saturate(5880%) hue-rotate(344deg) brightness(79%) contrast(108%);
}

.rephrase-sentences-questions-block__phrases {
  padding: 10px;
  background-color: #f2f6f8;
  border-radius: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.rephrase-sentences-questions-block__phrases .fill-the-gap-option {
  cursor: default;
}

.options-list-question__options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.matching-table-question {
  --column-gap: 20px;
  --question-bullet-bg: #d7d7de;
  --answer-bullet-bg: #d7d7de;
  --line-bg: transparent;
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.matching-table-question__row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: var(--column-gap);
  column-gap: var(--column-gap);
  align-items: center;
  z-index: 2;
}

.matching-table-question__correct-answer {
  grid-column: 2;
}

.matching-table-question__answer-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--line-bg);
  height: 2px;
  width: var(--column-gap);
}

.matching-table-question__answer-line::before,
.matching-table-question__answer-line::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.matching-table-question__answer-line::before {
  left: -5px;
  background-color: var(--question-bullet-bg);
}

.matching-table-question__answer-line::after {
  right: -5px;
  background-color: var(--answer-bullet-bg);
}

.matching-table-question__correct-answer-line {
  display: none;
  background: transparent;
  position: absolute;
  border-left: 2px solid #0abc54;
  border-bottom: 2px solid #0abc54;
  border-bottom-left-radius: 6px;
  left: 25%;
  right: 25%;
  transform: translateX(calc(var(--column-gap) / 4 * -1));
}

.matching-table-question__correct-answer {
  position: relative;
}
.matching-table-question__correct-answer::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #0abc54;
  z-index: 2;
}

.matching-table-question[data-question-state=Default] {
  --question-bullet-bg: #d7d7de;
}
.matching-table-question[data-answer-state=Default] {
  --answer-bullet-bg: #d7d7de;
}
.matching-table-question[data-question-state=Default][data-answer-state=Default] {
  --line-bg: #d7d7de;
}
.matching-table-question[data-question-state=Selected] {
  --question-bullet-bg: #9590ff;
}
.matching-table-question[data-answer-state=Selected] {
  --answer-bullet-bg: #9590ff;
}
.matching-table-question[data-question-state=Selected][data-answer-state=Selected] {
  --line-bg: #9590ff;
}
.matching-table-question[data-question-state=Correct] {
  --question-bullet-bg: #0abc54;
}
.matching-table-question[data-answer-state=Correct] {
  --answer-bullet-bg: #0abc54;
}
.matching-table-question[data-question-state=Correct][data-answer-state=Correct] {
  --line-bg: #0abc54;
}
.matching-table-question[data-question-state=Incorrect] {
  --question-bullet-bg: #ff4b6c;
}
.matching-table-question[data-answer-state=Incorrect] {
  --answer-bullet-bg: #ff4b6c;
}
.matching-table-question[data-question-state=Incorrect][data-answer-state=Incorrect] {
  --line-bg: #ff4b6c;
}
.matching-table-question[data-question-state=Active] {
  --question-bullet-bg: #9590ff;
}
.matching-table-question[data-answer-state=Active] {
  --answer-bullet-bg: #9590ff;
}
.matching-table-question[data-question-state=Active][data-answer-state=Active] {
  --line-bg: #9590ff;
}
.matching-table-question[data-question-state=Warning] {
  --question-bullet-bg: #ff4b6c;
}
.matching-table-question[data-answer-state=Warning] {
  --answer-bullet-bg: #ff4b6c;
}
.matching-table-question[data-question-state=Warning][data-answer-state=Warning] {
  --line-bg: #ff4b6c;
}
.matching-table-question[data-question-state=Skipped] {
  --question-bullet-bg: #0abc54;
}
.matching-table-question[data-answer-state=Skipped] {
  --answer-bullet-bg: #0abc54;
}
.matching-table-question[data-question-state=Skipped][data-answer-state=Skipped] {
  --line-bg: #0abc54;
}

@media (max-width: 575.98px) {
  .matching-table-question .quiz-option-btn {
    grid-template-columns: 1fr;
  }
  .matching-table-question .quiz-option-btn .quiz-option-btn__icon {
    display: none;
  }
}
@media (min-width: 768px) {
  .matching-table-question {
    --column-gap: 40px;
  }
}
.matching-table-questions-block__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.words-open-question__words {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.words-open-question__word {
  display: inline-flex;
  padding: 0 10px;
  background-color: #f7f9f9;
  border-radius: 4px;
  border: 1px solid #d7d7de;
  font-size: 14px;
  line-height: 2;
}

.words-open-question__input {
  padding-left: 34px;
}

.scramble-the-words-question__input {
  flex-grow: 1;
}

.scramble-the-words-question__input .form-control {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.scramble-the-words-question__input--empty .form-control[placeholder]::before {
  content: attr(placeholder);
  color: #8d959a;
  min-height: 28px;
}

.scramble-the-words-question__words {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fill-the-gap-slot {
  display: inline-flex;
  gap: 2px;
  background-color: #f5f5f5;
  border: 1px solid #d7d7de;
  border-radius: 4px;
}

.fill-the-gap-slot--empty,
.fill-the-gap-active-slot {
  min-width: 120px;
  min-height: 23px;
}

.fill-the-gap-slot--clickable {
  cursor: pointer;
}

.fill-the-gap-active-slot {
  background-color: #f3f3ff;
  font-size: 10px;
  color: #5336d6;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-color: #5336d6;
}

.fill-the-gap-active-slot__text {
  opacity: 0.5;
}

.fill-the-gap-text-node {
  font-size: 14px;
  line-height: 29px;
}

.fill-the-gap-text-item .fill-the-gap-slot {
  vertical-align: middle;
}

.fill-the-gap-list-item .fill-the-gap-slot {
  vertical-align: middle;
}

.fill-the-gap-dialogue-message-item .fill-the-gap-slot {
  vertical-align: middle;
}

.fill-the-gap-quote-item .fill-the-gap-slot {
  vertical-align: middle;
}

.fill-the-gap-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  background: #f5f5f5;
  border-radius: 6px;
}

.fill-the-gap-options__placeholder {
  font-size: 14px;
  color: #00860d;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  line-height: 28px;
}

.fill-the-gap-free-text-questions-block__items {
  line-height: 2;
}

@media (max-width: 1023.98px) {
  .fill-the-gap-questions-block__options {
    margin-top: calc(var(--quiz-questions-block-items-padding-y) * -1);
    margin-left: calc(var(--quiz-questions-block-items-padding-x) * -1);
    margin-right: calc(var(--quiz-questions-block-items-padding-x) * -1);
    border-radius: 0;
    position: sticky;
    top: 56px;
    z-index: 1;
  }
}
.fill-the-gap-free-text-text-node {
  font-size: 14px;
  line-height: 1.8571428571;
}

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

.tw-emoji-tooltip {
  display: inline-block;
  width: 30px;
  height: 30px;
  padding: 2px;
  border-radius: 50% 50% 50% 0;
  background: #3eba3c;
}

.tw-emoji-tooltip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 50%;
  height: 100%;
}

.tw-emoji-tooltip__emoji {
  font-size: 18px;
  line-height: 1;
}

.fill-the-gap-free-text-input {
  display: inline;
  white-space: nowrap;
}

.fill-the-gap-free-text-input--clickable,
.fill-the-gap-free-text-input--clickable .fill-the-gap-free-text-input,
.fill-the-gap-free-text-input--clickable .fill-the-gap-free-text-input-container__unanswered {
  cursor: pointer;
}

.fill-the-gap-free-text-input-container {
  display: inline;
  border-bottom: 1px solid #d7d7de;
  transition: all 0.1s ease-out;
  white-space: nowrap;
  padding-bottom: 3px;
  position: relative;
}

.fill-the-gap-free-text-input-container:has(.fill-the-gap-free-text-input:not(:empty)),
.fill-the-gap-free-text-input-container--pending-feedback {
  border-bottom: 1px dashed #5c3cba;
}

.fill-the-gap-free-text-input-container:has(.fill-the-gap-free-text-input:focus[contenteditable=true]) {
  border-bottom: 1px solid #746dff;
  background-color: #e4f5ff;
}

.fill-the-gap-free-text-input-container__icon {
  position: absolute;
  display: inline-block;
  margin-right: 5px;
  filter: invert(90%) sepia(8%) saturate(170%) hue-rotate(158deg) brightness(87%) contrast(87%);
  transition: all 0.1s ease-out;
  font-size: 24px;
}

.fill-the-gap-free-text-input {
  font-size: 14px;
  position: relative;
  font-weight: 700;
  color: #5c3cba;
  transition: all 0.1s ease-out;
  white-space: pre-wrap;
  outline: none;
}
.fill-the-gap-free-text-input:focus[contenteditable=true] {
  outline: none;
  color: #222229;
}
.fill-the-gap-free-text-input[placeholder]:empty:before {
  content: attr(placeholder);
  color: #bcc3c7;
  display: inline-block;
  font-weight: 400;
  pointer-events: none;
  padding-left: 30px;
}

.fill-the-gap-free-text-input-container__icon:has(+ .fill-the-gap-free-text-input:not(:empty)),
.fill-the-gap-free-text-input-container__icon:has(+ .fill-the-gap-free-text-input:focus[contenteditable=true]) {
  display: none;
}

.fill-the-gap-free-text-input--inline {
  display: inline;
}

.fill-the-gap-free-text-input--inline-block {
  display: inline-block;
  min-width: var(--min-width);
}

.fill-the-gap-free-text-input-container--correct:has(.fill-the-gap-free-text-input:not(:empty)) {
  border-bottom: 1px solid #3eba3c;
}
.fill-the-gap-free-text-input-container--correct:has(.fill-the-gap-free-text-input:not(:empty)) .fill-the-gap-free-text-input {
  color: #3eba3c;
}

.fill-the-gap-free-text-input-container--incorrect:has(.fill-the-gap-free-text-input:not(:empty)),
.fill-the-gap-free-text-input-container--incorrect:has(.fill-the-gap-free-text-input-container__unanswered) {
  border-color: transparent;
  text-decoration-line: underline;
  text-decoration-color: #d81b60;
  text-underline-offset: 4px;
}
.fill-the-gap-free-text-input-container--incorrect:has(.fill-the-gap-free-text-input:not(:empty)) .fill-the-gap-free-text-input,
.fill-the-gap-free-text-input-container--incorrect:has(.fill-the-gap-free-text-input-container__unanswered) .fill-the-gap-free-text-input {
  color: #d81b60;
}

.fill-the-gap-free-text-input__feedback-btn {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  min-height: 0;
  display: inline;
  vertical-align: 20%;
  font-size: 24px;
  line-height: 1;
  transition: all 0.1s ease-out;
}

.fill-the-gap-free-text-input__emoji-tooltip {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  bottom: 50%;
  right: -13px;
  transform-origin: left bottom;
  transform: rotate(30deg);
  cursor: pointer;
  transition: opacity 0.1s ease-out, transform 0.2s cubic-bezier(0, 0, 0.3, 1.65);
  z-index: 1;
}

.fill-the-gap-free-text-input:hover .fill-the-gap-free-text-input__feedback-btn,
.fill-the-gap-free-text-input--question-opened .fill-the-gap-free-text-input__feedback-btn {
  opacity: 0;
}

.fill-the-gap-free-text-input:hover .fill-the-gap-free-text-input__emoji-tooltip,
.fill-the-gap-free-text-input--question-opened .fill-the-gap-free-text-input__emoji-tooltip {
  opacity: 1;
  pointer-events: auto;
  transform: rotate(0);
}

.fill-the-gap-free-text-input-container__unanswered {
  border-radius: 999px;
  color: #8d959a;
  font-weight: 400;
  padding: 2px 5px;
  background: #f2f6f8;
}

.fill-the-gap-free-text-slot-node {
  display: inline-flex;
  gap: 2px;
}

.fill-the-gap-free-text-slot-node--empty,
.fill-the-gap-free-text-active-slot {
  min-width: 120px;
  min-height: 32px;
}

.fill-the-gap-free-text-active-slot {
  background-color: #e4e9ff;
  font-size: 10px;
  color: #5c3cba;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-color: #5c3cba;
}

.fill-the-gap-free-text-active-slot__text {
  opacity: 0.5;
}

.fill-the-gap-free-text-item .fill-the-gap-free-text-slot-node {
  vertical-align: middle;
}

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

.score-type-selector-option {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  min-height: 0;
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 10px;
}

.score-type-selector-option__icon {
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  filter: invert(48%) sepia(7%) saturate(548%) hue-rotate(202deg) brightness(97%) contrast(89%);
}

.score-type-selector-option__text {
  font-size: 14px;
  color: #797986;
}

.score-type-selector-option--active .score-type-selector-option__text {
  font-weight: bold;
}

.score-type-selector-option--correct.score-type-selector-option--active {
  background-color: #e1ffee;
}
.score-type-selector-option--correct.score-type-selector-option--active .score-type-selector-option__icon {
  filter: invert(29%) sepia(90%) saturate(1232%) hue-rotate(120deg) brightness(89%) contrast(101%);
}
.score-type-selector-option--correct.score-type-selector-option--active .score-type-selector-option__text {
  color: #00860d;
}

.score-type-selector-option--incorrect.score-type-selector-option--active {
  background-color: #ffe4e9;
}
.score-type-selector-option--incorrect.score-type-selector-option--active .score-type-selector-option__icon {
  filter: invert(12%) sepia(93%) saturate(5880%) hue-rotate(344deg) brightness(79%) contrast(108%);
}
.score-type-selector-option--incorrect.score-type-selector-option--active .score-type-selector-option__text {
  color: #cf0025;
}

.score-type-selector {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 115px;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  border: 1px solid #d7d7de;
  padding: 3px;
}

@media (min-width: 768px) {
  .score-type-selector {
    grid-auto-columns: 130px;
  }
}
.fill-gap-popover-wrapper {
  z-index: 1056;
  position: fixed;
  transform: none;
  transition: none;
}

.fill-gap-popover {
  background-color: #fff;
  color: #222229;
  padding: 20px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: auto;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  z-index: 1057;
}

.fill-gap-popover-background {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #817bff 0%, #4f99ff 100%);
  z-index: 1056;
}

.fill-gap-popover__close-button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  min-height: 0;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: #f2f6f8;
  border-radius: 50%;
  font-size: 24px;
}

.fill-gap-popover__header {
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 20px;
  text-align: center;
}

.fill-gap-popover__title {
  margin-bottom: 0;
}

.fill-gap-popover__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  overflow-y: auto;
  scrollbar-gutter: stable;
}
.fill-gap-popover__body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.fill-gap-popover__body::-webkit-scrollbar-thumb {
  background: #d7d7de;
  border-radius: 20px;
  border: 1px solid white;
}
.fill-gap-popover__body::-webkit-scrollbar-thumb:hover {
  background-color: #c4c4cd;
}
.fill-gap-popover__body::-webkit-scrollbar-thumb:active {
  background-color: #c4c4cd;
}
.fill-gap-popover__body::-webkit-scrollbar-track {
  background: white;
  border-radius: 20px;
}

.fill-gap-popover__tabs {
  margin-bottom: 20px;
  display: flex;
}
.fill-gap-popover__tabs .score-type-selector-option {
  flex-grow: 1;
}

.fill-gap-popover__student-answer,
.fill-gap-popover__feedback,
.fill-gap-popover__correct-answer {
  line-height: 150%;
  font-size: 14px;
  padding: 20px;
  border-radius: 8px;
}

.fill-gap-popover__student-answer--correct,
.fill-gap-popover__correct-answer {
  background: #e4ffe7;
}

.fill-gap-popover__student-answer--incorrect {
  background: #fdecf2;
}

.fill-gap-popover__feedback,
.fill-gap-popover__student-answer--unassessed {
  background: #f2f6f8;
}

.fill-gap-popover__subtitle {
  font-weight: 700;
  margin-bottom: 10px;
}

.fill-gap-popover__footer {
  border-top: 1px solid #d7d7de;
  padding: 20px 20px 0;
  margin-left: -20px;
  margin-right: -20px;
  text-align: center;
}

.fill-gap-popover__slider {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
}

.fill-gap-popover__slider-button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  min-height: 0;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f2f6f8;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
}

.fill-gap-popover__highlighted-correct {
  border-bottom: 1px solid #3eba3c;
  color: #3eba3c;
  font-weight: bold;
}

.fill-gap-popover__highlighted-incorrect {
  color: #d81b60;
  text-decoration-line: underline;
  text-decoration-color: #d81b60;
  text-underline-offset: 4px;
  font-weight: bold;
}

.fill-gap-popover__slider-text {
  color: #8d959a;
}
.fill-gap-popover__slider-text b {
  color: #222229;
}

.fill-gap-popover__assessment-controls {
  border-top: 1px solid #d7d7de;
  padding: 20px;
  margin-left: -20px;
  margin-right: -20px;
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.fill-gap-popover__student-answer--flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fill-gap-popover__student-answer--flex .fill-gap-popover__subtitle {
  margin-bottom: 0;
}

body:has(.fill-gap-popover-wrapper) {
  overflow: hidden;
}

.fill-gap-preloader-popover__preloader {
  min-height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 48px;
}

@media (min-width: 1024px) {
  .fill-gap-popover-wrapper {
    position: absolute;
    transform: var(--popover-transform-value);
    width: 360px;
  }
  .fill-gap-popover {
    box-shadow: -10px 20px 50px rgba(33, 81, 126, 0.1);
    border-radius: 20px;
    position: static;
    width: auto;
  }
  .fill-gap-popover-background {
    display: none;
  }
  body:has(.fill-gap-popover-wrapper) {
    overflow: auto;
  }
}
@media (min-width: 1280px) {
  .fill-gap-popover__student-answer--mobile-only {
    display: none;
  }
}
.open-question-block__items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.single-option-question__option {
  display: flex;
  flex-direction: column;
}

.creative-writing-target-vocabulary__items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.essay-topics-options__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.essay-topics-options-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.essay-topics-options-block__title {
  font-size: 14px;
}

.essay-topics-options-block__options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.quiz-question-preview-block .quiz-questions-block__header {
  padding-bottom: 40px;
}

.quiz-question-preview-block .quiz-questions-block__header-top {
  gap: 24px;
}

.quiz-question-preview-block__lock {
  font-size: 24px;
  filter: invert(48%) sepia(7%) saturate(548%) hue-rotate(202deg) brightness(97%) contrast(89%);
  margin-left: auto;
  align-self: flex-start;
  flex-shrink: 0;
}

.quiz-gap-fill-two-options-gap-node {
  display: inline-flex;
  gap: 4px;
  align-items: baseline;
  font-size: 14px;
  flex-wrap: wrap;
}

.quiz-gap-fill-two-options-gap-node__separator {
  margin: 0 2px;
}

.t-btn.quiz-gap-fill-two-options-gap-node__option {
  --t-btn-padding-y: 3px;
  --t-btn-padding-x: 7px;
  display: flex;
}

.gap-fill-text-node {
  font-size: 14px;
  line-height: 1.8571428571;
}

.quiz-gap-fill-free-text-gap-node {
  display: inline-flex;
  gap: 8px;
  align-items: baseline;
}

.quiz-gap-fill-free-text-gap-node__hint {
  font-weight: bold;
  font-size: 14px;
}

.base-gap-fill-questions-block__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.base-gap-fill-questions-block__item {
  display: flex;
  gap: 12px;
}

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

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

.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-section {
  background-color: #f3f3ff;
  padding: 64px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

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

.other-lessons-section__lessons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1280px;
}

@media (min-width: 768px) {
  .other-lessons-section {
    padding-left: 80px;
    padding-right: 80px;
  }
  .other-lessons-section__lessons {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1280px) {
  .other-lessons-section__lessons {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 1680px) {
  .other-lessons-section__lessons {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.svg-icons-arrow-right {
  background-image: url(https://cdn.twee.com/e/dist_20250715150525/icons/icons-sprite.svg#svg--arrow-right);
}

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

.t-btn.worksheet-category-badge {
  --t-btn-icon-size: 24px;
  gap: 4px;
}

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

.worksheet-other-categories-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 64px;
  background: #f3f3ff;
}

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

.worksheet-other-categories-section__categories {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1280px;
}

.other-worksheets-section {
  background-color: #f3f3ff;
  padding: 64px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

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

.other-worksheets-section__worksheets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1280px;
}

@media (min-width: 768px) {
  .other-worksheets-section {
    padding-left: 80px;
    padding-right: 80px;
  }
  .other-worksheets-section__worksheets {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1280px) {
  .other-worksheets-section__worksheets {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 1680px) {
  .other-worksheets-section__worksheets {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.lesson-cover {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 16px;
  box-shadow: -10px 20px 50px rgba(33, 81, 126, 0.1);
  overflow: hidden;
}
.lesson-cover .lesson-cover-headline {
  margin-bottom: 8px;
}
.lesson-cover .lesson-cover-title,
.lesson-cover .lesson-cover-description,
.lesson-cover .lesson-cover-skills {
  margin-bottom: 24px;
}
.lesson-cover .library-lesson-upgrade-block {
  margin-top: 16px;
}
.lesson-cover .lesson-cover-footer {
  margin-top: 24px;
}

.lesson-cover-body {
  background-color: #ffffff;
  padding: 32px 16px;
}

@media (min-width: 576px) {
  .lesson-cover-body {
    padding: 32px 40px;
  }
}
.lesson-cover-headline {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
}

.lesson-cover-description {
  font-size: 14px;
  color: #797986;
  margin: 0;
}

.lesson-cover-skills {
  font-size: 14px;
}

.lesson-cover-skills__title {
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 14px;
}

.lesson-cover-skills__list {
  padding-left: 1rem;
  margin-bottom: 0;
  display: flex;
  gap: 8px;
  flex-direction: column;
}

.lesson-cover-skills__item {
  line-height: 21px;
}
.lesson-cover-skills__item::marker {
  color: #746dff;
}

.lesson-cover-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.metric-count {
  display: flex;
  align-items: center;
  gap: 8px;
}

.metric-count__icon {
  display: flex;
  font-size: 20px;
}

.metric-count__label {
  font-size: 12px;
}

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

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

.lesson-cover-metrics {
  display: flex;
  gap: 12px;
}

.lesson-cover-footer {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 1024px) {
  .lesson-cover-footer {
    flex-direction: row;
  }
}
.svg-icons-teacher {
  background-image: url(https://cdn.twee.com/e/dist_20250715150525/icons/icons-sprite.svg#svg--teacher);
}

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

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

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

.tw-badge-tile {
  --tw-badge-tile-bg-color: #f5f5f5;
  --tw-badge-tile-color: #000000;
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 8px;
  gap: 12px;
  background-color: var(--tw-badge-tile-bg-color);
  color: var(--tw-badge-tile-color);
}

.tw-badge-tile__icon {
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.tw-badge-tile--green {
  --tw-badge-tile-bg-color: #e1ffee;
  --tw-badge-tile-color: #0abc54;
}
.tw-badge-tile--green .tw-badge-tile__icon:not(.tw-badge-tile__icon--original-color) {
  filter: invert(52%) sepia(27%) saturate(5829%) hue-rotate(113deg) brightness(100%) contrast(92%);
}

.tw-badge-tile--red {
  --tw-badge-tile-bg-color: #fff0f3;
  --tw-badge-tile-color: #ff4b6c;
}
.tw-badge-tile--red .tw-badge-tile__icon:not(.tw-badge-tile__icon--original-color) {
  filter: invert(61%) sepia(53%) saturate(7343%) hue-rotate(324deg) brightness(107%) contrast(107%);
}

.tw-badge-tile--phlox {
  --tw-badge-tile-bg-color: #fcf0ff;
  --tw-badge-tile-color: #e260ff;
}
.tw-badge-tile--phlox .tw-badge-tile__icon:not(.tw-badge-tile__icon--original-color) {
  filter: invert(48%) sepia(80%) saturate(1824%) hue-rotate(246deg) brightness(98%) contrast(107%);
}

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

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

.lesson-download-pdf-banner {
  display: flex;
  padding: 16px;
  gap: 10px;
  border-radius: 8px;
  background-color: #f5f5f5;
  align-items: center;
}

.lesson-download-pdf-banner__badge {
  margin-left: auto;
  background-color: white;
  color: #746dff;
  display: inline-flex;
  padding: 4px 16px;
  border-radius: 9999px;
  font-size: 12px;
  line-height: 1.25;
  font-weight: bold;
}

.lesson-download-pdf-banner__icon {
  line-height: 0;
}

.lesson-download-pdf-banner__link {
  font-size: 14px;
  text-decoration: underline;
}

.base-lesson-cover .lesson-cover-body {
  padding-top: 16px;
}
.base-lesson-cover .base-lesson-cover__breadcrumbs {
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.base-lesson-cover__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 24px;
}

.base-lesson-cover__banners {
  margin-top: 24px;
}

.base-lesson-cover__link {
  display: flex;
  flex-direction: column;
}

@media (min-width: 576px) {
  .base-lesson-cover__features {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 576px) and (max-width: 1279.98px) {
  .base-lesson-cover__features > *:last-child {
    grid-column: span 2;
  }
}
@media (min-width: 1024px) {
  .base-lesson-cover__link {
    margin-left: auto;
  }
}
@media (min-width: 1280px) {
  .base-lesson-cover__features {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
body {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), linear-gradient(100.24deg, #fdf0ea 0%, #f5f3ff 27.45%, #dbeafe 100%);
}

.t-body-content {
  background: url("https://cdn.twee.com/e/dist_20250715150525/icons/icons-sprite.svg#svg--white-board-background");
  background-size: 24px;
}

.worksheet-screen .quiz-section__content {
  gap: 24px;
}

.worksheet-screen__content {
  --padding-x: 16px;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: calc(800px + 2 * var(--padding-x));
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 64px;
  padding-left: var(--padding-x);
  padding-right: var(--padding-x);
}

.worksheet-screen__cover {
  margin-bottom: 40px;
}

@media (min-width: 576px) {
  .worksheet-screen__content {
    --padding-x: 24px;
  }
}
@media (min-width: 768px) {
  .worksheet-screen__content {
    --padding-x: 80px;
  }
}