/**
    How to add a new icon?
    * Add the SVG source file to '~/Assets/Icons/svg'
    * In case you want to add a color variation to this icon, check the Gulp task called 'icons'
    * Add a variable here with SVG file name in the following template: $svg-icons-{file-name}_{color}: '{file-name}_{color}.svg'
    * Add a new 'scss' file, name it using the following template: '_svg-icons-{file-name}_{color}.scss'. Use other files as example for the content
*/
/*
  HEX to filter conversion:
  https://isotropic.co/tool/hex-color-to-css-filter/
*/
.svg-icons {
  vertical-align: middle;
  display: inline-block;
  background-size: 1em;
  width: 1em;
  height: 1em;
}

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

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

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

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

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

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

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

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

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

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

.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-muted {
  --t-btn-background: #eeeef1;
  --t-btn-color: #797986;
  --t-btn-border-color: #eeeef1;
  --t-btn-hover-background: #e8e8ec;
  --t-btn-hover-color: #797986;
  --t-btn-hover-border-color: #e8e8ec;
  --t-btn-active-background: #d7d7de;
  --t-btn-active-color: #797986;
  --t-btn-active-border-color: #d7d7de;
  --t-btn-disabled-color: #c4c4cd;
  --t-btn-disabled-background: #eeeef1;
  --t-btn-disabled-border-color: #eeeef1;
  --t-btn-focus-background: #eeeef1;
  --t-btn-focus-color: #797986;
  --t-btn-focus-border-color: #eeeef1;
}
.t-btn.t-btn-muted i {
  filter: invert(48%) sepia(7%) saturate(548%) hue-rotate(202deg) brightness(97%) contrast(89%);
}
.t-btn.t-btn-muted:hover i {
  filter: invert(48%) sepia(7%) saturate(548%) hue-rotate(202deg) brightness(97%) contrast(89%);
}
.t-btn.t-btn-muted:active i, .t-btn.t-btn-muted:active:hover i {
  filter: invert(48%) sepia(7%) saturate(548%) hue-rotate(202deg) brightness(97%) contrast(89%);
}
.t-btn.t-btn-muted:focus i {
  filter: invert(48%) sepia(7%) saturate(548%) hue-rotate(202deg) brightness(97%) contrast(89%);
}
.t-btn.t-btn-muted:disabled i, .t-btn.t-btn-muted.t-btn-disabled i, .t-btn.t-btn-muted:disabled:hover i, .t-btn.t-btn-muted.t-btn-disabled:hover i, .t-btn.t-btn-muted:disabled:focus i, .t-btn.t-btn-muted.t-btn-disabled:focus i, .t-btn.t-btn-muted:disabled:active i, .t-btn.t-btn-muted.t-btn-disabled:active i, .t-btn.t-btn-muted:disabled:active:hover i, .t-btn.t-btn-muted.t-btn-disabled:active:hover i {
  filter: invert(83%) sepia(1%) saturate(1002%) hue-rotate(199deg) brightness(96%) contrast(90%);
}

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

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

.t-btn.t-btn-circle {
  --t-btn-border-radius: 50%;
}

.tw-modal-close-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 2;
}

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

.tool-video-dialog .modal-content {
  position: relative;
  border-radius: 12px;
  padding: 16px;
  background-color: #fff;
  line-height: 0;
}

.tool-video-dialog .modal-dialog {
  margin-left: auto;
  margin-right: auto;
  max-width: min(1100px, 100vw - 16px);
}

.tool-video-dialog__close {
  position: absolute;
  top: -40px;
  right: 0;
}

.tool-video-dialog__iframe {
  border-radius: 8px;
}

.modal-backdrop {
  background-color: #0a0c49;
}

@media (min-width: 576px) {
  .tool-video-dialog .modal-dialog {
    max-width: min(1100px, 100vw - 48px);
  }
}
@media (min-width: 768px) {
  .tool-video-dialog__close {
    right: -40px;
  }
  .tool-video-dialog .modal-dialog {
    max-width: min(1100px, 100vw - 148px);
  }
}
.tool-video-preview {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  border-radius: 8px;
  box-shadow: -1px 1px 5px rgba(0, 70, 151, 0.1);
}

.tool-video-preview__poster {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.tool-video-preview__poster::after {
  content: "";
  width: 64px;
  height: 64px;
  background: url("https://cdn.twee.com/e/dist_20250807111911/decorators/play-circle.svg");
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

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

.tool-video-preview__title {
  font-size: 20px;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #222229;
}

.tool-video-preview__title::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.tool-video-preview__description {
  font-size: 14px;
  color: #797986;
}

@media (min-width: 576px) {
  .tool-video-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
  }
}
.svg-icons-search {
  background-image: url(https://cdn.twee.com/e/dist_20250807111911/icons/icons-sprite.svg#svg--search);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .category-selector {
    --container-horizontal-padding: 24px;
  }
}
@media (min-width: 768px) {
  .category-selector {
    --container-horizontal-padding: 32px;
  }
}
@media (min-width: 1024px) {
  .category-selector {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    flex-wrap: wrap;
    overflow: visible;
    padding-bottom: 0;
  }
  .tools-with-search__nav {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 26px;
  }
  .tools-with-search__search-input {
    min-width: 260px;
    flex-shrink: 0;
  }
}
.svg-icons-star {
  background-image: url(https://cdn.twee.com/e/dist_20250807111911/icons/icons-sprite.svg#svg--star);
}

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

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

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

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

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

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

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

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

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

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

.tool-badge {
  --tool-badge-top: 10px;
  position: absolute;
  width: 200px;
  top: var(--tool-badge-top);
  left: calc(-90px + var(--tool-badge-top));
  font-size: 14px;
  line-height: 27px;
  color: #ffffff;
  box-shadow: -1px 1px 5px rgba(0, 70, 151, 0.1);
  transform: rotate(-45deg);
  z-index: 1;
  text-align: center;
  white-space: nowrap;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .t-container-wide {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 768px) {
  .t-container-wide {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 1024px) {
  .t-container-wide {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (min-width: 1280px) {
  .t-container-wide {
    max-width: 1440px;
  }
}
.t-btn.t-btn-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.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%);
}

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

.tools-screen-empty-message {
  padding: 96px 0;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.tools-screen-empty-message .tw-message-box__button {
  margin-top: 24px;
}

.tools-screen__heading .page-heading__title {
  background-image: url('data:image/svg+xml,<svg width="289" height="33" viewBox="0 0 289 33" fill="none" xmlns="http://www.w3.org/2000/svg"><g style="mix-blend-mode:multiply"><path d="M278.5 0V24H279.072C279.685 24 280.297 23.891 280.824 23.578C282.574 22.538 286.5 19.383 286.5 12C286.5 9.811 287.435 6.933 288.401 4.544C289.251 2.443 287.758 0 285.491 0H278.5ZM262.17 14.1985L261.09 2.2472L262.17 14.1985ZM183.787 18.4856L183.114 6.50457L183.787 18.4856ZM10.5 32.904V8.90402H9.92801C9.315 8.90402 8.703 9.01302 8.17599 9.32602C6.42599 10.366 2.5 13.521 2.5 20.904C2.5 23.093 1.565 25.971 0.598999 28.36C-0.251007 30.461 1.242 32.904 3.509 32.904H10.5ZM278.5 0C274.585 0 270.982 0.60078 268.198 1.10302C265.125 1.65738 263.166 2.05971 261.09 2.2472L263.25 26.1498C266.691 25.839 270.13 25.142 272.459 24.7217C275.078 24.2493 276.881 24 278.5 24V0ZM261.09 2.2472C235.47 4.56191 209.788 5.00479 183.114 6.50457L184.461 30.4667C209.804 29.0417 237.195 28.5038 263.25 26.1498L261.09 2.2472ZM183.114 6.50457C125.695 9.73306 68.7431 8.90402 10.5 8.90402V32.904C68.2567 32.904 126.171 33.7442 184.461 30.4667L183.114 6.50457Z" fill="%23FFE09A"/></g></svg>');
}

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

.tools-screen__subtitle {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 24px;
}

.tools-screen__block--center {
  text-align: center;
}

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

@media (min-width: 768px) {
  .tools-screen__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .tools-screen__top-tools {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1280px) {
  .tools-screen__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}