@import url('question.css');
@import url('act-btns.css');
@import url('floating-widget.css');

/* variables */
:root {
  --t3as-primary-color: #f2f1f1;
  --t3as-secondary-color: #d5d4d4;
  --t3as-text-color: #000;
  --t3as-gray-color: #b0b0b0;
  --t3as-light-gray-color: #f4f8fb;
  --t3as-medium-gray-color: #e7ecea;
  --t3as-dark-gray-color: #666;
  --t3as-error-color: #dc3545;
  --t3as-icon-size-small: 16px;
  --t3as-icon-size: 20px;
  --t3as-icon-size-medium: 32px;
  --t3as-icon-size-large: 48px;
  --t3as-icon-size-mega: 64px;
}

.tx-ns-t3as .icon {
  color: inherit;
  display: inline-flex;
  flex-shrink: 0;
  position: relative;
  white-space: nowrap;
}

.ns-t3as-main-wrap,
.ns-t3as-main-wrap *,
.ns-t3as-main-wrap *:before,
.ns-t3as-main-wrap *:after {
  box-sizing: border-box;
}

.tx-ns-t3as.ns-t3as-search--with-style .icon {
  color: var(--t3as-text-color, #000);
}

.tx-ns-t3as .icon.icon-size-small {
  --t3as-icon-size: var(--t3as-icon-size-small);
}

.tx-ns-t3as .icon.icon-size-medium {
  --t3as-icon-size: var(--t3as-icon-size-medium);
}

.tx-ns-t3as .icon.icon-size-large {
  --t3as-icon-size: var(--t3as-icon-size-large);
}

.tx-ns-t3as button,
.tx-ns-t3as a {
  outline: 2px dashed transparent !important;
  outline-offset: 2px;
}

.tx-ns-t3as button:focus-visible,
.tx-ns-t3as a:focus-visible {
  outline-color: inherit !important;
}

.t3as-flex {
  display: flex;
}

.t3as-flex-center {
  align-items: center;
}

.t3as-flex-wrap {
  flex-wrap: wrap;
}

.t3as-flex-nowrap {
  flex-wrap: nowrap;
}

.t3as-flex-column {
  flex-direction: column;
}

.t3as-flex-column-reverse {
  flex-direction: column-reverse;
}

.t3as-flex-row {
  flex-direction: row;
}

.t3as-flex-row-reverse {
  flex-direction: row-reverse;
}

.t3as-justify-center {
  justify-content: center;
}

.t3as-justify-end {
  justify-content: flex-end;
}

.t3as-justify-start {
  justify-content: flex-start;
}

.t3as-justify-between {
  justify-content: space-between;
}

.t3as-absolute-center-horizontal,
.t3as-absolute-center,
.t3as-absolute-full {
  position: absolute;
}

.t3as-absolute-center-horizontal {
  left: 50%;
  transform: translateX(-50%);
}

.t3as-absolute-center {
  top: 50%;
  transform: translateY(-50%);
}

.t3as-absolute-full,
.t3as-fixed-full {
  bottom: 0;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
}

.t3as-fixed-full {
  position: fixed;
}

.ns-t3as-full-width {
  padding-left: 20px;
  padding-right: 20px;
}

.tx-ns-t3as-search {
  margin-bottom: 40px;
  padding: 40px 0;
  position: relative;
}

.ns-t3as-search-box {
  position: relative;
}

.ns-t3as-search-box,
.ns-t3as-search-form,
.ns-t3as-search-box__inner {
  position: relative;
  width: 100%;
}

.ns-t3as-search-form {
  align-items: center;
}

.ns-t3as-search-box__inner,
.ns-t3as-recent-search-wrap {
  background-color: #f4f8fb;
  border-radius: 25px;
  flex-wrap: wrap;
  padding: 15px;
}

.ns-t3as-search--with-style .ns-t3as-container {
  margin: 0 auto;
  max-width: 1200px;
}

.ns-t3as-search--with-style .ns-t3as-search-form .ns-t3as-search-form__input {
  border: 1px solid var(--t3as-medium-gray-color);
  box-shadow: none;
  color: var(--t3as-text-color);
  font-size: 16px;
}

.ns-t3as-search-form .ns-t3as-search-form__input {
  border-radius: 25px;
  padding: 10px 50px 10px 20px;
  transition: all 0.3s ease 0s;
  width: 100%;
}

.ns-t3as-search-form__input::placeholder {
  color: var(--t3as-gray-color);
}

.ns-t3as-search-form__input::-webkit-input-placeholder {
  color: var(--t3as-gray-color);
}

.ns-t3as-search-form__input::-moz-placeholder {
  color: var(--t3as-gray-color);
}

.ns-t3as-search--with-style .ns-t3as-search-form__input::placeholder {
  color: var(--t3as-text-color);
  opacity: 0.5;
}

.ns-t3as-search--with-style .ns-t3as-search-form__input::-webkit-input-placeholder {
  color: var(--t3as-text-color);
  opacity: 0.5;
}

.ns-t3as-search--with-style .ns-t3as-search-form__input::-moz-placeholder {
  color: var(--t3as-text-color);
  opacity: 0.5;
}

.ns-t3as-search-form__icon {
  left: 15px;
}

.ns-t3as-search-form__icon,
.ns-t3as-search-form__icon .icon,
.ns-t3as-search-form__icon span {
  line-height: 20px;
}

.ns-t3as-search-form__icon svg {
  color: var(--t3as-gray-color);
  max-width: 16px;
  transition: color 0.3s ease 0s;
}

.ns-t3as-search--with-style .ns-t3as-search-form__icon svg {
  color: var(--t3as-text-color);
}

.ns-t3as-search-form--with-btn .ns-t3as-search-form__input {
  padding-right: 110px;
}

.ns-t3as-search-form--no-btn .ns-t3as-search-form__input {
  padding-left: 40px;
}

.ns-t3as-search--with-style .ns-t3as-search-form .ns-t3as-search-form__input:focus {
  border-color: var(--t3as-dark-gray-color);
  box-shadow: none;
  outline: none;
}

.ns-t3as-search-form__input:focus ~ .ns-t3as-search-form__icon svg {
  color: inherit;
}

.ns-t3as-search--with-style .ns-t3as-search-form__input:focus ~ .ns-t3as-search-form__icon svg {
  color: var(--t3as-text-color);
}

.ns-t3as-search--with-style .ns-t3as-btn {
  background: var(--t3as-primary-color);
  border: 0;
  border-radius: 20px;
  color: var(--t3as-text-color);
  padding: 7px 25px;
  transition: all 0.3s ease 0s;
}

.ns-t3as-search-form .ns-t3as-search-form__button {
  align-items: center;
  border-radius: 0 25px 25px 0;
  cursor: pointer;
  display: inline-flex;
  height: 100%;
  justify-content: center;
  min-width: 45px;
  padding: 5px 25px;
}

.ns-t3as-search-form__button.ns-t3as-act-btn--disabled {
  cursor: not-allowed;
  opacity: 0.5;
  pointer-events: none;
}

.ns-t3as-search-form__button .icon {
  width: auto;
}

.ns-t3as-search--with-style .ns-t3as-btn:hover {
  background: var(--t3as-secondary-color);
}

.ns-t3as-search-ai-result-wrap {
  margin-bottom: 20px;
  margin-top: 20px;
  position: relative;
}

.ns-t3as-search-key-features__inner {
  max-height: 0;
  overflow: hidden;
  position: relative;
  transition: max-height 0.5s ease-in-out, opacity 0.3s ease-in-out;
}

.ns-t3as-search-key-features__inner.show {
  max-height: 1000px;
  opacity: 1;
}

.ns-t3as-search-key-feature-block {
  margin-bottom: 20px;
}

.ns-t3as-search-key-feature-block:last-child {
  margin-bottom: 0;
}

.ns-t3as-search-key-feature-block strong {
  display: block;
  line-height: normal;
  margin-bottom: 0;
}

.ns-t3as-border-square input,
.ns-t3as-border-square textarea,
.ns-t3as-border-square button,
.ns-t3as-border-square .ns-t3as-btn,
.ns-t3as-border-square .btn,
.ns-t3as-border-square .ns-t3as-recent-search-wrap,
.ns-t3as-border-square .ns-t3as-recent-search-inner,
.ns-t3as-border-square .t3as-recent-search-lists a,
.ns-t3as-border-square .ns-t3as-search-box__inner,
.ns-t3as-border-square .ns-t3as-search-results-link,
.ns-t3as-border-square .ns-t3as-search-results-wrap,
.ns-t3as-border-square .ns-t3as-search-form__input {
  border-radius: 0;
}

.ns-t3as-border-medium-rounded input,
.ns-t3as-border-medium-rounded textarea,
.ns-t3as-border-medium-rounded button,
.ns-t3as-border-medium-rounded .ns-t3as-btn,
.ns-t3as-border-medium-rounded .btn,
.ns-t3as-border-medium-rounded .ns-t3as-recent-search-wrap,
.ns-t3as-border-medium-rounded .ns-t3as-recent-search-inner,
.ns-t3as-border-medium-rounded .t3as-recent-search-lists a,
.ns-t3as-border-medium-rounded .ns-t3as-search-box__inner,
.ns-t3as-border-medium-rounded .ns-t3as-search-results-link,
.ns-t3as-border-medium-rounded .ns-t3as-search-results-wrap,
.ns-t3as-border-medium-rounded .ns-t3as-search-form__input {
  border-radius: 10px;
}

.ns-t3as-border-semi-rounded input,
.ns-t3as-border-semi-rounded textarea,
.ns-t3as-border-semi-rounded button,
.ns-t3as-border-semi-rounded .ns-t3as-btn,
.ns-t3as-border-semi-rounded .btn,
.ns-t3as-border-semi-rounded .ns-t3as-recent-search-wrap,
.ns-t3as-border-semi-rounded .t3as-recent-search-lists a,
.ns-t3as-border-semi-rounded .ns-t3as-search-box__inner,
.ns-t3as-border-semi-rounded .ns-t3as-recent-search-inner,
.ns-t3as-border-semi-rounded .ns-t3as-search-results-link,
.ns-t3as-border-semi-rounded .ns-t3as-search-results-wrap,
.ns-t3as-border-semi-rounded .ns-t3as-search-form__input {
  border-radius: 4px;
}

.ns-t3as-more-link {
  cursor: pointer;
  font-weight: 700;
  text-decoration: underline;
}

.ns-t3as-more-link:hover {
  text-decoration: none;
}

.ns-t3as-search-key-less-text {
  display: none;
}

.ns-t3as-search-key-more > span,
.ns-t3as-act-btn svg {
  pointer-events: none;
}

.ns-t3as-search-key-more--active .ns-t3as-search-key-more-text {
  display: none;
}

.ns-t3as-search-key-more--active .ns-t3as-search-key-less-text {
  display: block;
}

.ns-t3as-recent-search-wrap {
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 10px);
  transition: all 0.3s ease 0s;
  width: 100%;
  z-index: 1;
}

.ns-t3as-recent-search-inner {
  background: #fff;
  border: 1px solid var(--t3as-medium-gray-color);
  border-radius: 25px;
  padding: 15px 10px 10px;
}

.ns-t3as-recent-search-wrap--active {
  opacity: 1;
  pointer-events: auto;
}

.ns-t3as-recent-search-title {
  color: currentColor;
  padding-left: 12px;
}

.ns-t3as-search--with-style .ns-t3as-recent-search-title {
  color: var(--t3as-text-color);
}

.t3as-recent-search-lists {
  list-style: none;
  margin: 0;
  padding: 0;
}

.t3as-recent-search-lists li {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0 0 5px;
  padding: 0 !important;
  transition: all 0.3s ease-in-out 0s;
}

.t3as-recent-search-lists li::before,
.t3as-recent-search-lists li::after {
  display: none !important;
}

.t3as-recent-search-lists li a {
  border-radius: 25px;
  cursor: pointer;
  display: block;
  opacity: 0.7;
  overflow: hidden;
  padding: 8px 25px 8px 40px;
  position: relative;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.t3as-recent-search-lists li a::before {
  background-color: currentColor;
  content: '';
  height: 16px;
  left: 15px;
  mask-image: url('data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjguNDU1IDI4LjQ1NSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSJjdXJyZW50Q29sb3IiIGQ9Ik0yNy43NjEgMjQuNDA4bC02LjAyLTYuMDJhMTEuODc5IDExLjg3OSAwIDEwLTMuMzUzIDMuMzUzbDYuMDIgNi4wMmEyLjM3MSAyLjM3MSAwIDAwMy4zNTMtMy4zNTNNMy41NTcgMTEuODU3YTguMyA4LjMgMCAxMTguMyA4LjMgOC4zMDkgOC4zMDkgMCAwMS04LjMtOC4zIi8+PC9zdmc+');
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
}

.ns-t3as-icon-search-edges li a::before {
  mask-image: url('data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgNTAgNTAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTIxIDNDMTEuNjAyIDMgNCAxMC42MDIgNCAyMHM3LjYwMiAxNyAxNyAxN2MzLjM1NSAwIDYuNDYtLjk4NCA5LjA5NC0yLjY1NmwxMi4yODEgMTIuMjgxIDQuMjUtNC4yNUwzNC41IDMwLjI4MUMzNi42OCAyNy40MjEgMzggMjMuODggMzggMjBjMC05LjM5OC03LjYwMi0xNy0xNy0xN3ptMCA0YzcuMiAwIDEzIDUuOCAxMyAxM3MtNS44IDEzLTEzIDEzUzggMjcuMiA4IDIwIDEzLjggNyAyMSA3eiIvPjwvc3ZnPg==');
}

.ns-t3as-icon-search-compact li a::before {
  mask-image: url('data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgNjQgNjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTI0IDIuODg5QzEyLjM2NiAyLjg4OSAyLjg4OSAxMi4zNjYgMi44ODkgMjRTMTIuMzY2IDQ1LjExMSAyNCA0NS4xMTFhMjEgMjEgMCAwMDEzLjI5OS00LjczOGwxNC44MzIgMTguNThzMy4yNDguNDgzIDUuMjY1LTEuNjE5YzIuMDMxLTIuMTE4IDEuNTU1LTUuMiAxLjU1NS01LjJMNDAuMzczIDM3LjNBMjEgMjEgMCAwMDQ1LjExMSAyNGMwLTExLjYzNC05LjQ3Ny0yMS4xMTEtMjEuMTExLTIxLjExMXptMCA0LjIyMkExNi44NTcgMTYuODU3IDAgMDE0MC44ODkgMjQgMTYuODU3IDE2Ljg1NyAwIDAxMjQgNDAuODg5IDE2Ljg1NyAxNi44NTcgMCAwMTcuMTExIDI0IDE2Ljg1NyAxNi44NTcgMCAwMTI0IDcuMTExeiIvPjwvc3ZnPg==');
}

.ns-t3as-icon-search-magnify-glass li a::before {
  mask-image: url('data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEzLjI2MiAxNC44NjdsMi40OCAyLjQ4Yy0uMzc5LjcyMy0uNDE4IDEuNDQyLS4wMiAxLjg0bDQuNTI4IDQuNTI4Yy41Ny41NyAxLjgxMy4yNTggMi43NjYtLjcuOTU3LS45NTYgMS4yNy0yLjE5NS42OTktMi43NjVsLTQuNTI0LTQuNTI3Yy0uNDAyLS4zOTktMS4xMi0uMzYtMS44NDMuMDE1bC0yLjQ4LTIuNDc2ek04LjUgMEE4LjQ5OSA4LjQ5OSAwIDAwMCA4LjVDMCAxMy4xOTUgMy44MDUgMTcgOC41IDE3UzE3IDEzLjE5NSAxNyA4LjUgMTMuMTk1IDAgOC41IDB6bTAgMTVhNi41IDYuNSAwIDExMC0xMyA2LjUgNi41IDAgMDEwIDEzeiIvPjwvc3ZnPg==');
}

.t3as-recent-search-lists li a:hover {
  background-color: var(--t3as-light-gray-color);
  opacity: 1;
}

.ns-t3as-search--with-style .t3as-recent-search-lists a::before {
  background-color: var(--t3as-text-color);
}

[data-t3as='ai-search-open'] * {
  pointer-events: none;
}

.ns-t3as-search-results-wrap {
  border-radius: 25px;
  margin: 20px 0;
}

.ns-t3as-search-results p a.ns-t3as-search-results-link {
  display: inline-block;
  margin-left: 3px;
  vertical-align: top;
}

.ns-t3as-additional-link {
  text-decoration: underline;
  color: inherit;
}

.ns-t3as-search--with-style .ns-t3as-additional-link {
  color: var(--t3as-text-color) !important;
}

.ns-t3as-additional-link:hover {
  text-decoration: none !important;
}

.ns-t3as-search-results-link {
  background-color: var(--t3as-light-gray-color);
  border-radius: 50%;
  color: var(--t3as-text-color);
  display: inline-flex;
  line-height: normal;
  max-width: 26px;
  min-height: 26px;
  min-width: 26px;
  padding: 5px;
  position: relative;
  text-decoration: none;
  text-indent: -9999px;
  transition: all 0.3s ease 0s;
}

.ns-t3as-search-results-link::before {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTYgMTYiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0iY3VycmVudENvbG9yIj48cGF0aCBkPSJNMTMuNyAzLjhsLTEuNC0xLjRjLS44LS44LTItLjgtMi44IDBMNS45IDUuOWMtLjguOC0uOCAyIDAgMi44bDEuMiAxLjIuOS0uOEw2LjkgOGMtLjQtLjQtLjQtMSAwLTEuNGwzLjItMy4yYy40LS40IDEtLjQgMS40IDBsMS4xIDEuMWMuNC40LjQgMSAwIDEuNGwtMS4zIDEuM2MuMi40LjQuOS40IDEuNGwyLTJjLjctLjguNy0yLjEgMC0yLjh6Ii8+PHBhdGggZD0iTTguOSA2LjFsLS45LjhMOS4xIDhjLjQuNC40IDEgMCAxLjRsLTMuMiAzLjJjLS40LjQtMSAuNC0xLjQgMGwtMS4xLTEuMWMtLjQtLjQtLjQtMSAwLTEuNGwxLjMtMS4zYy0uMi0uNC0uNC0uOS0uNC0xLjRsLTIgMmMtLjguOC0uOCAyIDAgMi44bDEuNCAxLjRjLjguOCAyIC44IDIuOCAwbDMuNS0zLjVjLjgtLjguOC0yIDAtMi44TDguOSA2LjF6Ii8+PC9nPjwvc3ZnPg==');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  height: 16px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
}

.ns-t3as-search-results-link:hover {
  background-color: var(--t3as-medium-gray-color);
}

.ns-t3as-link-hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.ns-t3as-click-disable {
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.ns-t3as-loader {
  position: relative;
}

.ns-t3as-loader :last-child {
  margin-bottom: 0;
}

.ns-t3as-skeleton-loader {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ns-t3as-skeleton-text {
  animation: t3as-shimmer 0.8s infinite linear;
  height: 20px;
  width: 100%;
  background: var(--t3as-medium-gray-color);
  background: linear-gradient(90deg,#e0e0e0 25%,#f5f5f5 50%,#e0e0e0 75%);
  background-size: 200% 100%;
  border-radius: 4px;
}

.ns-t3as-skeleton-text--short {
  width: 60%;
}

@keyframes t3as-shimmer {
  0% {
    background-position: 100%;
  }

  100% {
    background-position: -100%;
  }
}

.ns-t3as-search-results-wrap {
  border: 1px solid var(--t3as-medium-gray-color);
  padding: 15px 20px;
  position: relative;
  width: 100%;
}

.ns-t3as-search-results :last-child {
  margin-bottom: 0;
}

.typewriter-cursor {
  animation: blink 1s step-start infinite;
  color: #000;
  display: inline-block;
  font-weight: bold;
  margin-left: 2px;
}

@keyframes blink {
  50% { opacity: 0; }
}

.ns-t3as-search-preparing {
  color: var(--t3as-gray-color);
  display: block;
  font-size: 16px;
  margin-bottom: 10px;
}

.ns-t3as-search-preparing .typewriter-cursor {
  color: inherit;
}

.ns-t3as-search-results-wrap .ns-t3as-search-results :last-child {
  margin-bottom: 0;
}

.ns-t3as-search-results-wrap .ns-t3as-search-results br {
  display: none;
}

.ns-t3as-dots-loader {
  --t3as-dot-size: 5px;
  --t3as-g: no-repeat radial-gradient(circle closest-side, var(--t3as-gray-color) 90%, transparent);
  animation: ns-t3as-dots-loader 1s infinite linear;
  backface-visibility: hidden;
  background: var(--t3as-g) 0% 50%, var(--t3as-g) 50% 50%, var(--t3as-g) 100% 50%;
  background-size: var(--t3as-dot-size) var(--t3as-dot-size);
  display: inline-block;
  height: 10px;
  margin-left: 5px;
  position: relative;
  transform: translateZ(0);
  width: 25px;
}

@keyframes ns-t3as-dots-loader {
  20% {background-position: 0%   0%, 50%  50%,100%  50%}
  40% {background-position: 0% 100%, 50%   0%,100%  50%}
  60% {background-position: 0%  50%, 50% 100%,100%   0%}
  80% {background-position: 0%  50%, 50%  50%,100% 100%}
}

.nst3as-ai-search-result-injector {
  display: none;
  margin-bottom: 30px;
}

.ns-t3as-search--with-style .ns-t3as-search-results ul {
  list-style: none;
}

.ns-t3as-search--with-style .ns-t3as-search-results > ul,
.ns-t3as-search--with-style .ns-t3as-search-results > ol {
  margin: 0 0 20px;
  padding: 0;
}

.ns-t3as-search--with-style .ns-t3as-search-results ol {
  list-style-type: upper-roman;
  padding-left: 0;
}

.ns-t3as-search--with-style .ns-t3as-search-results ul ul,
.ns-t3as-search--with-style .ns-t3as-search-results ol ul,
.ns-t3as-search--with-style .ns-t3as-search-results ul ol,
.ns-t3as-search--with-style .ns-t3as-search-results ol ol {
  margin-bottom: 10px;
  margin-top: 10px;
}

.ns-t3as-search--with-style .ns-t3as-search-results ul li,
.ns-t3as-search--with-style .ns-t3as-search-results ol li {
  margin: 0 0 10px;
}

.ns-t3as-search--with-style .ns-t3as-search-results ul li {
  padding: 0 0 0 18px;
  position: relative;
}

.ns-t3as-search--with-style .ns-t3as-search-results ol > li {
  padding-left: 30px;
}

.ns-t3as-search--with-style .ns-t3as-search-results ul li::after,
.ns-t3as-search--with-style .ns-t3as-search-results ul ol li::before {
  display: none;
}

.ns-t3as-search--with-style .ns-t3as-search-results ul li::before {
  background-color: var(--t3as-text-color);
  border: 0;
  border-radius: 50%;
  content: '';
  height: 5px;
  left: 0;
  position: absolute;
  top: 10px;
  width: 5px;
}

.ns-t3as-border-square .ns-t3as-search-results ul li::before {
  border-radius: 0;
}

.ns-t3as-search-box__title {
  gap: 10px;
  margin-bottom: 15px;
}

.ns-t3as-main-wrap.ns-t3as-search--with-style {
  color: var(--t3as-text-color);
}

.ns-t3as-search--with-style .ns-t3as-search-results * {
  color: inherit;
}

.ns-t3as-error-message {
  display: none;
  width: 100%;
}

.ns-t3as-error-message__text {
  color: var(--t3as-error-color);
  display: block;
  font-size: 14px;
  line-height: 20px;
  margin-top: 7px;
  width: 100%;
}

.ns-t3as-error-message--active {
  display: block;
}

.ns-t3as-search-form--with-btn .ns-t3as-search-form__button {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.ns-t3as-search-results a:not(.ns-t3as-search-results-link) {
  text-decoration: underline;
}

.ns-t3as-search-results a:not(.ns-t3as-search-results-link):hover {
  text-decoration: none;
}

@media (min-width: 993px) {
  .ns-t3as-recent-search-wrap {
    padding-left: 15px;
    padding-right: 15px;
  }

  .ns-t3as-search-form .ns-t3as-search-form__input {
    padding-bottom: 12px;
    padding-top: 12px;
  }

  .ns-t3as-search-results-wrap {
    margin-bottom: 25px;
    margin-top: 25px;
    padding-bottom: 20px;
    padding-top: 20px;
  }

  .ns-t3as-search-preparing {
    font-size: 18px;
  }

  .ns-t3as-search--with-style .ns-t3as-search-results ul li {
    padding-left: 20px;
  }

  .ns-t3as-search--with-style .ns-t3as-search-results ul li::before {
    height: 6px;
    top: 10px;
    width: 6px;
  }
}

@media (min-width: 1200px) {
  .ns-t3as-full-width {
    padding-left: 40px;
    padding-right: 40px;
  }

  .ns-t3as-search-ai-result-wrap {
    margin-bottom: 30px;
    margin-top: 30px;
  }

  .ns-t3as-search-box__inner,
  .ns-t3as-recent-search-wrap {
    padding: 20px;
  }
}

