/* toolbar-search.css?file=../ui/components/Loader/FetchingHorizontalLoader/FetchingHorizontalLoader.styl */
.toolbar_search_loader {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 8px;
  padding: 0;
  text-align: center;
}
.toolbar_search_loader:before,
.toolbar_search_loader:after {
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color_main);
  transform: scale(.75);
  opacity: .5;
  content: "";
}
.toolbar_search_loader.toolbar_search___light3:before,
.toolbar_search_loader.toolbar_search___light3:after {
  background: var(--color_white);
}
.toolbar_search_loader.toolbar_search___small {
  width: 16px;
  height: 4px;
}
.toolbar_search_loader.toolbar_search___small:before,
.toolbar_search_loader.toolbar_search___small:after {
  width: 4px;
  height: 4px;
  background: var(--color_secondary);
}
.toolbar_search_loader.toolbar_search___small:before {
  margin: -4px 0 0 -10px;
}
.toolbar_search_loader.toolbar_search___small:after {
  margin: -4px -6px 0 0;
}
.toolbar_search_loader:before {
  left: 50%;
  margin: -4px 0 0 -15px;
  animation: toolbar_search_show .9s 0s infinite linear;
}
.toolbar_search_loader:after {
  right: 50%;
  margin: -4px -15px 0 0;
  animation: toolbar_search_show .9s .3s infinite linear;
}
.toolbar_search_loader .toolbar_search_item {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background: var(--color_main);
  transform: scale(.75);
  opacity: .5;
  animation: toolbar_search_show .9s .15s infinite linear;
}
.toolbar_search_loader .toolbar_search_item.toolbar_search___small {
  width: 4px;
  height: 4px;
  background: var(--color_secondary);
}
.toolbar_search_loader .toolbar_search_item.toolbar_search___light3 {
  background: var(--color_white);
}
@keyframes toolbar_search_show {
  0% {
    transform: scale(.75);
    opacity: .5;
  }
  25% {
    transform: scale(.75);
    opacity: .5;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(.75);
    opacity: .5;
  }
}

/* toolbar-search.css?file=../ui/components/Spin/Spin.styl */
.toolbar_search_spin {
  display: inline-block;
}
.toolbar_search_spin.toolbar_search___center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.toolbar_search_spin.toolbar_search___absolute {
  position: absolute;
}
.toolbar_search_spin.toolbar_search___fixed {
  position: fixed;
}
.toolbar_search_spin.toolbar_search___absolute,
.toolbar_search_spin.toolbar_search___fixed {
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.toolbar_search_spin-container.toolbar_search___with-label {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.toolbar_search_spin-icon-wrapper {
  line-height: 0;
}
.toolbar_search_spin-icon-wrapper.toolbar_search___default {
  width: 32px;
  height: 32px;
}
.toolbar_search_spin-icon-wrapper.toolbar_search___small2 {
  width: 16px;
  height: 16px;
}
.toolbar_search_spin-label {
  margin-top: 16px;
  font-size: var(--fs-l);
  line-height: 21px;
  color: var(--color_secondary);
}
.toolbar_search_spin-icon svg {
  animation: toolbar_search_rotate 3.5s linear infinite;
}
.toolbar_search_spin-icon svg circle {
  stroke: var(--color_orange);
  animation: toolbar_search_arcs 3.9s cubic-bezier(.82, .1, .48, 1) infinite;
}
@media (prefers-color-scheme: dark) {
  :root.__ui-theme_enabled:not(.__ui-theme_light) .toolbar_search_spin-icon svg circle {
    stroke: var(--color_white);
  }
}
:root.__ui-theme_enabled.__ui-theme_dark .toolbar_search_spin-icon svg circle,
:root.ds-colors.dark-theme .toolbar_search_spin-icon svg circle {
  stroke: var(--color_white);
}
@keyframes toolbar_search_rotate {
  to {
    transform: rotate(360deg);
  }
}
@keyframes toolbar_search_arcs {
  0% {
    stroke-dashoffset: 87.9646;
  }
  12.5% {
    stroke-dashoffset: 65.97345;
  }
  25% {
    stroke-dashoffset: 43.9823;
  }
  37.5% {
    stroke-dashoffset: 21.99115;
  }
  50% {
    stroke-dashoffset: 0;
  }
  62.5% {
    stroke-dashoffset: -21.99115;
  }
  75% {
    stroke-dashoffset: -43.9823;
  }
  87.5% {
    stroke-dashoffset: -65.97345;
  }
  to {
    stroke-dashoffset: -87.9646;
  }
}

/* toolbar-search.css?file=../ui/components/Spinner/Spinner.styl */
.toolbar_search_spinner {
  position: relative;
  display: inline-block;
  color: var(--color_white);
  vertical-align: middle;
}
.toolbar_search_spinner.toolbar_search___size-162 {
  width: 16px;
  height: 16px;
}
.toolbar_search_spinner.toolbar_search___size-202 {
  width: 20px;
  height: 20px;
}
.toolbar_search_spinner.toolbar_search___size-40 {
  width: 40px;
  height: 40px;
}
.toolbar_search_spinner.toolbar_search___size-48 {
  width: 48px;
  height: 48px;
}
.toolbar_search_spinner.toolbar_search___view-secondary2 {
  color: var(--color_secondary);
}
.toolbar_search_spinner.toolbar_search___light4 {
  color: var(--color_orange);
}
.toolbar_search_spinner.toolbar_search___outline2,
.toolbar_search_spinner.toolbar_search___clean2 {
  color: var(--color_secondary);
}
.toolbar_search_spinner:before,
.toolbar_search_spinner:after,
.toolbar_search_el:before,
.toolbar_search_el:after {
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  margin: 0;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: toolbar_search_spinner 1.2s cubic-bezier(.5, 0, .5, 1) infinite;
  content: "";
}
.toolbar_search_spinner.toolbar_search___size-48:before,
.toolbar_search_spinner.toolbar_search___size-48:after,
.toolbar_search_spinner.toolbar_search___size-48 .toolbar_search_el:before,
.toolbar_search_spinner.toolbar_search___size-48 .toolbar_search_el:after {
  border-width: 4px;
}
.toolbar_search_spinner:after {
  animation-delay: -.45s;
}
.toolbar_search_el:before {
  animation-delay: -.3s;
}
.toolbar_search_el:after {
  animation-delay: -.15s;
}
@keyframes toolbar_search_spinner {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

/* toolbar-search.css?file=../ui/components/Button/ButtonCore.styl */
.toolbar_search_button-core {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  margin: 0;
  border: 0;
  overflow: visible;
  color: var(--color_white);
  font-weight: 400;
  white-space: nowrap;
  text-align: center;
  background-color: var(--color_orange_new);
  outline: none;
  transition: box-shadow .1s ease-in, background-color .1s ease-in;
  user-select: none;
}
.toolbar_search_button-core.toolbar_search___size-l2 {
  height: 40px;
  padding: 8px 16px;
  border-radius: 16px;
  font-size: var(--fs-l);
  line-height: var(--lh-n);
}
.toolbar_search_button-core.toolbar_search___size-m {
  height: 32px;
  padding: 0 16px;
  border-radius: 16px;
  font-size: var(--fs-n);
  line-height: 32px;
}
.toolbar_search_button-core.toolbar_search___size-s {
  height: 24px;
  padding: 0 12px;
  border-radius: 12px;
  font-size: var(--fs-s);
  line-height: 24px;
}
.toolbar_search_button-core.toolbar_search___wide3 {
  width: 100%;
}
.toolbar_search_button-core.toolbar_search___circle {
  min-width: 0;
  padding: 0;
}
.toolbar_search_button-core.toolbar_search___circle.toolbar_search___size-m {
  width: 32px;
}
.toolbar_search_button-core.toolbar_search___circle.toolbar_search___size-s {
  width: 24px;
}
.toolbar_search_button-core.toolbar_search___view-secondary {
  color: var(--color_secondary);
  background-color: var(--color_main-008);
}
.toolbar_search_button-core.toolbar_search___view-secondary.toolbar_search___high_contrast {
  color: var(--color_main);
}
.toolbar_search_button-core.toolbar_search___light {
  color: var(--color_orange_new);
  background-color: var(--color_orange-light);
}
.toolbar_search_button-core.toolbar_search___white {
  color: #333;
  background-color: var(--color_white);
}
.toolbar_search_button-core.toolbar_search___white-secondary {
  color: var(--color_white);
  background-color: var(--color_white-008);
}
.toolbar_search_button-core.toolbar_search___eye-catching {
  background-color: #87189d;
}
.toolbar_search_button-core.toolbar_search___view_accent {
  color: var(--color_white);
  background-color: #1abaff;
}
.toolbar_search_button-core.toolbar_search___dark {
  color: var(--color_white);
  background-color: #0009;
}
.toolbar_search_button-core.toolbar_search___outline {
  color: var(--color_secondary);
  background-color: var(--color_surface);
  box-shadow: inset 0 0 0 1px var(--color_gray-stub);
}
.toolbar_search_button-core.toolbar_search___clean {
  color: var(--color_secondary);
  background-color: transparent;
}
.toolbar_search_button-core.toolbar_search___no-radius {
  border-radius: 0;
}
.toolbar_search_button-core.toolbar_search___radius-8 {
  border-radius: 8px;
}
.toolbar_search_button-core.toolbar_search___radius-16 {
  border-radius: 16px;
}
.toolbar_search_button-core.toolbar_search___radius-40 {
  border-radius: 40px;
}
.toolbar_search_button-core.toolbar_search___center-align {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: normal;
}
.toolbar_search_content2 {
  display: block;
}
.toolbar_search_content2.toolbar_search___center-align {
  display: flex;
  align-items: center;
}
.toolbar_search_spinner2 {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.toolbar_search_button-core.toolbar_search___loading .toolbar_search_content2 {
  z-index: -1;
  opacity: 0;
}
.toolbar_search_button-core.toolbar_search___loading .toolbar_search_spinner2 {
  display: flex;
}
.toolbar_search_button-core-container:hover.toolbar_search_button-core,
.toolbar_search_button-core-container:focus.toolbar_search_button-core,
.toolbar_search_button-core-container:active.toolbar_search_button-core,
.toolbar_search_button-core-container.toolbar_search___active.toolbar_search_button-core,
.toolbar_search_button-core-container:hover .toolbar_search_button-core,
.toolbar_search_button-core-container:focus .toolbar_search_button-core,
.toolbar_search_button-core-container:active .toolbar_search_button-core,
.toolbar_search_button-core-container.toolbar_search___active .toolbar_search_button-core {
  color: var(--color_white);
  text-decoration: none;
  background-color: var(--color_orange_hover);
  box-shadow: 0 0 0 1px var(--color_orange_hover);
}
.toolbar_search_button-core-container:hover .toolbar_search_button-core.toolbar_search___view-secondary,
.toolbar_search_button-core-container:focus .toolbar_search_button-core.toolbar_search___view-secondary,
.toolbar_search_button-core-container:active .toolbar_search_button-core.toolbar_search___view-secondary,
.toolbar_search_button-core-container.toolbar_search___active .toolbar_search_button-core.toolbar_search___view-secondary {
  color: var(--dynamic-text-and-icons-base-primary);
  background-color: var(--color_main-012);
  outline: none;
  box-shadow: 0 0 0 1px var(--color_main-012);
}
.toolbar_search_button-core-container:hover .toolbar_search_button-core.toolbar_search___view-secondary.toolbar_search___high_contrast,
.toolbar_search_button-core-container:focus .toolbar_search_button-core.toolbar_search___view-secondary.toolbar_search___high_contrast,
.toolbar_search_button-core-container:active .toolbar_search_button-core.toolbar_search___view-secondary.toolbar_search___high_contrast,
.toolbar_search_button-core-container.toolbar_search___active .toolbar_search_button-core.toolbar_search___view-secondary.toolbar_search___high_contrast {
  color: var(--color_main);
}
.toolbar_search_button-core-container:hover .toolbar_search_button-core.toolbar_search___light,
.toolbar_search_button-core-container:focus .toolbar_search_button-core.toolbar_search___light,
.toolbar_search_button-core-container:active .toolbar_search_button-core.toolbar_search___light,
.toolbar_search_button-core-container.toolbar_search___active .toolbar_search_button-core.toolbar_search___light {
  color: var(--color_orange_new);
  background-color: var(--color_orange-light_hover);
  outline: none;
  box-shadow: 0 0 0 1px var(--color_orange-light_hover);
}
.toolbar_search_button-core-container:hover .toolbar_search_button-core.toolbar_search___white,
.toolbar_search_button-core-container:focus .toolbar_search_button-core.toolbar_search___white,
.toolbar_search_button-core-container:active .toolbar_search_button-core.toolbar_search___white,
.toolbar_search_button-core-container.toolbar_search___active .toolbar_search_button-core.toolbar_search___white {
  color: #333;
  background-color: var(--color_white);
  outline: none;
  box-shadow: 0 0 0 1px var(--color_main-012);
}
.toolbar_search_button-core-container:hover .toolbar_search_button-core.toolbar_search___white-secondary,
.toolbar_search_button-core-container:focus .toolbar_search_button-core.toolbar_search___white-secondary,
.toolbar_search_button-core-container:active .toolbar_search_button-core.toolbar_search___white-secondary,
.toolbar_search_button-core-container.toolbar_search___active .toolbar_search_button-core.toolbar_search___white-secondary {
  color: var(--color_white);
  background-color: var(--color_white-012);
  outline: none;
  box-shadow: 0 0 0 1px var(--color_white-012);
}
.toolbar_search_button-core-container:hover .toolbar_search_button-core.toolbar_search___outline,
.toolbar_search_button-core-container:focus .toolbar_search_button-core.toolbar_search___outline,
.toolbar_search_button-core-container:active .toolbar_search_button-core.toolbar_search___outline,
.toolbar_search_button-core-container.toolbar_search___active .toolbar_search_button-core.toolbar_search___outline {
  color: var(--color_secondary);
  background-color: var(--color_on-surface);
  outline: none;
  box-shadow: 0 0 0 1px #0000001f;
}
.toolbar_search_button-core-container:hover .toolbar_search_button-core.toolbar_search___clean,
.toolbar_search_button-core-container:focus .toolbar_search_button-core.toolbar_search___clean,
.toolbar_search_button-core-container:active .toolbar_search_button-core.toolbar_search___clean,
.toolbar_search_button-core-container.toolbar_search___active .toolbar_search_button-core.toolbar_search___clean {
  color: var(--color_secondary);
  background-color: transparent;
  outline: none;
  box-shadow: none;
}
.toolbar_search_button-core-container:hover .toolbar_search_button-core.toolbar_search___eye-catching,
.toolbar_search_button-core-container:focus .toolbar_search_button-core.toolbar_search___eye-catching,
.toolbar_search_button-core-container:active .toolbar_search_button-core.toolbar_search___eye-catching,
.toolbar_search_button-core-container.toolbar_search___active .toolbar_search_button-core.toolbar_search___eye-catching {
  background-color: #6b0380;
  box-shadow: 0 0 0 1px #6b0380;
}
.toolbar_search_button-core-container:hover .toolbar_search_button-core.toolbar_search___view_accent,
.toolbar_search_button-core-container:focus .toolbar_search_button-core.toolbar_search___view_accent,
.toolbar_search_button-core-container:active .toolbar_search_button-core.toolbar_search___view_accent,
.toolbar_search_button-core-container.toolbar_search___active .toolbar_search_button-core.toolbar_search___view_accent {
  background-color: #1abaff;
  box-shadow: 0 0 0 1px #1abaff;
}
.toolbar_search_button-core-container:hover .toolbar_search_button-core.toolbar_search___dark,
.toolbar_search_button-core-container:focus .toolbar_search_button-core.toolbar_search___dark,
.toolbar_search_button-core-container:active .toolbar_search_button-core.toolbar_search___dark,
.toolbar_search_button-core-container.toolbar_search___active .toolbar_search_button-core.toolbar_search___dark {
  background-color: #000c;
  box-shadow: 0 0 0 1px #000c;
}
.toolbar_search_button-core-container:disabled.toolbar_search_button-core,
.toolbar_search_button-core-container:disabled .toolbar_search_button-core {
  background-color: var(--color_orange_new);
  box-shadow: none;
}
.toolbar_search_button-core-container:disabled .toolbar_search_button-core.toolbar_search___view-secondary {
  background-color: var(--color_main-008);
  box-shadow: none;
}
.toolbar_search_button-core-container:disabled .toolbar_search_button-core.toolbar_search___light {
  background-color: var(--color_orange-light);
  box-shadow: none;
}
.toolbar_search_button-core-container:disabled .toolbar_search_button-core.toolbar_search___white {
  background-color: var(--color_white);
  box-shadow: none;
}
.toolbar_search_button-core-container:disabled .toolbar_search_button-core.toolbar_search___white-secondary {
  background-color: var(--color_white-008);
  box-shadow: none;
}
.toolbar_search_button-core-container:disabled .toolbar_search_button-core.toolbar_search___outline {
  background-color: var(--color_surface);
  box-shadow: none;
}
.toolbar_search_button-core-container:disabled .toolbar_search_button-core.toolbar_search___clean {
  background-color: transparent;
}
.toolbar_search_button-core-container:disabled .toolbar_search_button-core.toolbar_search___eye-catching {
  background-color: #87189d;
  box-shadow: none;
}
.toolbar_search_button-core-container:disabled .toolbar_search_button-core.toolbar_search___view_accent {
  background-color: #1abaff;
  box-shadow: none;
}
.toolbar_search_button-core-container:disabled .toolbar_search_button-core.toolbar_search___dark {
  background-color: #0009;
  box-shadow: none;
}
.toolbar_search_button-core-container:hover .toolbar_search_button-core,
.toolbar_search_button-core-container:active .toolbar_search_button-core {
  outline: none;
}

/* toolbar-search.css?file=../ui/components/Button/Button.styl */
.toolbar_search_button {
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  overflow: visible;
  font: inherit;
  text-decoration: none;
  text-align: inherit;
  background: none;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  opacity: 1;
  transition: opacity .3s ease;
}
.toolbar_search_button:focus-visible {
  outline: var(--focus-outline);
}
.toolbar_search_button:hover,
.toolbar_search_button:active {
  outline: none;
}
.toolbar_search_button.toolbar_search___wide4 {
  width: 100%;
}
.toolbar_search_button.toolbar_search___disabled {
  cursor: default;
  opacity: .5;
}
.toolbar_search_button.toolbar_search___no-animation {
  transition: none;
}

/* toolbar-search.css?file=../ui/components/Icon/Icon.styl */
.toolbar_search_icon {
  display: inline-block;
}
.toolbar_search_icon > svg {
  display: block;
}
.toolbar_search_icon.toolbar_search___is-flipped {
  transform: scaleX(-1);
}
.toolbar_search_icon.toolbar_search___margin-right {
  margin-right: 4px;
}
.toolbar_search_icon.toolbar_search___margin-left {
  margin-left: 4px;
}
.toolbar_search_icon.toolbar_search___size-8 {
  width: 8px;
  height: 8px;
}
.toolbar_search_icon.toolbar_search___size-10 {
  width: 10px;
  height: 10px;
}
.toolbar_search_icon.toolbar_search___size-12 {
  width: 12px;
  height: 12px;
}
.toolbar_search_icon.toolbar_search___size-163 {
  width: 16px;
  height: 16px;
}
.toolbar_search_icon.toolbar_search___size-18 {
  width: 18px;
  height: 18px;
}
.toolbar_search_icon.toolbar_search___size-203 {
  width: 20px;
  height: 20px;
}
.toolbar_search_icon.toolbar_search___size-243 {
  width: 24px;
  height: 24px;
}
.toolbar_search_icon.toolbar_search___size-26 {
  width: 26px;
  height: 26px;
}
.toolbar_search_icon.toolbar_search___size-28 {
  width: 28px;
  height: 28px;
}
.toolbar_search_icon.toolbar_search___size-322 {
  width: 32px;
  height: 32px;
}
.toolbar_search_icon.toolbar_search___size-36 {
  width: 36px;
  height: 36px;
}
.toolbar_search_icon.toolbar_search___size-402 {
  width: 40px;
  height: 40px;
}
.toolbar_search_icon.toolbar_search___size-44 {
  width: 44px;
  height: 44px;
}
.toolbar_search_icon.toolbar_search___size-489 {
  width: 48px;
  height: 48px;
}
.toolbar_search_icon.toolbar_search___size-54 {
  width: 54px;
  height: 54px;
}
.toolbar_search_icon.toolbar_search___size-56 {
  width: 56px;
  height: 56px;
}
.toolbar_search_icon.toolbar_search___size-60 {
  width: 60px;
  height: 60px;
}
.toolbar_search_icon.toolbar_search___size-6410 {
  width: 64px;
  height: 64px;
}
.toolbar_search_icon.toolbar_search___size-80 {
  width: 80px;
  height: 80px;
}
.toolbar_search_icon.toolbar_search___size-962 {
  width: 96px;
  height: 96px;
}
.toolbar_search_icon.toolbar_search___size-100 {
  width: 100px;
  height: 100px;
}
.toolbar_search_icon.toolbar_search___size-120 {
  width: 120px;
  height: 120px;
}
.toolbar_search_icon.toolbar_search___size-1282 {
  width: 128px;
  height: 128px;
}
.toolbar_search_icon.toolbar_search___size-132 {
  width: 132px;
  height: 132px;
}
.toolbar_search_icon.toolbar_search___size-144 {
  width: 144px;
  height: 144px;
}
.toolbar_search_icon.toolbar_search___size-1522 {
  width: 152px;
  height: 152px;
}
.toolbar_search_icon.toolbar_search___size-160 {
  width: 160px;
  height: 160px;
}
.toolbar_search_icon.toolbar_search___size-176 {
  width: 176px;
  height: 176px;
}
.toolbar_search_icon.toolbar_search___size-208 {
  width: 208px;
  height: 208px;
}
.toolbar_search_icon.toolbar_search___size-240 {
  width: 240px;
  height: 240px;
}
.toolbar_search_icon.toolbar_search___size-288 {
  width: 288px;
  height: 288px;
}
.toolbar_search_icon.toolbar_search___size-full {
  width: 100%;
  height: 100%;
}
.svg-fill {
  fill: currentColor;
}
.svg-stroke {
  stroke: currentColor;
}

/* toolbar-search.css?file=../ui/components/Button/ButtonClean.styl */
.toolbar_search_button-clean {
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  overflow: visible;
  font: inherit;
  text-decoration: none;
  text-align: inherit;
  background: none;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
}
.toolbar_search_button-clean:focus-visible {
  outline: var(--focus-outline);
}

/* toolbar-search.css?file=../ui/components/InfoBubble/InfoBubble.styl */
.toolbar_search_wrapper2 {
  position: relative;
  display: inline-block;
}
.toolbar_search_close {
  position: absolute;
  top: 6px;
  right: 6px;
  color: var(--color_white);
  opacity: .5;
}
.toolbar_search_close:hover {
  color: #2a94ff;
  background-color: var(--color_surface);
  opacity: 1;
}
.toolbar_search_bubble {
  position: absolute;
  top: auto;
  bottom: 100%;
  left: 50%;
  z-index: 20;
  box-sizing: border-box;
  width: auto;
  min-width: 224px;
  margin: 0 0 10px;
  padding: 12px 16px;
  border-color: #2a94ff;
  border-radius: 8px;
  color: var(--color_white);
  font-size: 12px;
  line-height: 1.4;
  white-space: normal;
  text-align: center;
  background: #2a94ff;
  box-shadow: 0 12px 24px var(--color_black-032), 0 0 0 1px var(--color_main-004);
  transform: translate(-50%);
}
.toolbar_search_bubble:before {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -8px;
  border: 8px solid transparent;
  border-top-color: inherit;
  content: "";
}
.toolbar_search_bubble.toolbar_search___top-right {
  right: 50%;
  left: auto;
  transform: translate(23px);
}
.toolbar_search_bubble.toolbar_search___top-right:before {
  right: 16px;
  left: auto;
  margin-left: 0;
}
.toolbar_search_bubble.toolbar_search___top-left {
  left: 50%;
  transform: translate(-23px);
}
.toolbar_search_bubble.toolbar_search___top-left:before {
  left: 16px;
  margin-left: 0;
}
.toolbar_search_bubble.toolbar_search___bottom-center {
  top: 100%;
  bottom: auto;
  left: 50%;
  margin: 10px 0 0;
  transform: translate(-50%);
}
.toolbar_search_bubble.toolbar_search___bottom-center:before {
  top: auto;
  bottom: 100%;
  border-top-color: transparent;
  border-bottom-color: inherit;
  filter: drop-shadow(0 -1px 0 var(--color_main-004));
}
.toolbar_search_bubble.toolbar_search___bottom-right {
  inset: 100% 50% auto auto;
  margin: 10px 0 0;
  transform: translate(23px);
}
.toolbar_search_bubble.toolbar_search___bottom-right:before {
  inset: auto 16px 100% auto;
  border-top-color: transparent;
  border-bottom-color: inherit;
  filter: drop-shadow(0 -1px 0 var(--color_main-004));
}
.toolbar_search_bubble.toolbar_search___bottom-left {
  top: 100%;
  bottom: auto;
  left: 50%;
  margin: 10px 0 0;
  transform: translate(-23px);
}
.toolbar_search_bubble.toolbar_search___bottom-left:before {
  top: auto;
  bottom: 100%;
  left: 23px;
  border-top-color: transparent;
  border-bottom-color: inherit;
  filter: drop-shadow(0 -1px 0 var(--color_main-004));
}
.toolbar_search_bubble.toolbar_search___left-center {
  inset: 50% 100% auto auto;
  margin: 0 10px 0 0;
  transform: translateY(-50%);
}
.toolbar_search_bubble.toolbar_search___left-center:before {
  top: 50%;
  bottom: auto;
  left: 100%;
  margin: -8px 0 0;
  border-top-color: transparent;
  border-left-color: inherit;
  filter: drop-shadow(1px 0 0 var(--color_main-004));
}
.toolbar_search_bubble.toolbar_search___right-center {
  inset: 50% 0 auto 100%;
  margin: 0 0 0 10px;
  transform: translateY(-50%);
}
.toolbar_search_bubble.toolbar_search___right-center:before {
  inset: 50% 100% auto auto;
  margin: -8px 0 0;
  border-top-color: transparent;
  border-right-color: inherit;
  filter: drop-shadow(-1px 0 0 var(--color_main-004));
}

/* toolbar-search.css?file=../ui/components/VoiceAssistant/VoiceAssistant.styl */
.toolbar_search_container {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}
.toolbar_search_btn {
  position: absolute;
  top: 0;
  right: 4px;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 0 4px;
  border: none;
  font-size: 11px;
  line-height: 13px;
  background: none;
  outline: none;
  cursor: pointer;
  pointer-events: initial;
}
.toolbar_search_btn:hover,
.toolbar_search_btn:focus,
.toolbar_search_btn:active {
  outline: none;
}
.toolbar_search_btn:active {
  opacity: .6;
}
.toolbar_search_btn.toolbar_search___hidden {
  visibility: hidden;
}
.toolbar_search_btn.toolbar_search___wide {
  top: -2px;
  right: 0;
  opacity: 0;
}
.toolbar_search_btn.toolbar_search___animated {
  animation-name: toolbar_search_fade-out;
  animation-duration: .6s;
  animation-fill-mode: forwards;
}
.toolbar_search_btn-content-wrapper {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 4px 4px 4px 12px;
  border-radius: 12px;
  background: var(--color_gray-6);
}
.toolbar_search_btn:hover .toolbar_search_btn-content-wrapper {
  background-color: var(--color_gray-5);
}
.toolbar_search_container.toolbar_search___wide .toolbar_search_btn:hover .toolbar_search_btn-content-wrapper {
  background-color: var(--color_gray-stub);
}
.toolbar_search_btn-text {
  margin-right: 4px;
  color: var(--color_secondary);
  font-size: inherit;
  line-height: inherit;
}
.toolbar_search_container .toolbar_search_tooltip2 {
  padding: 5px 10px;
  border-radius: 20px;
}
.toolbar_search_icon2 {
  color: var(--color_secondary);
  vertical-align: middle;
  cursor: pointer;
}
.toolbar_search_btn:hover .toolbar_search_icon2,
.toolbar_search_btn:hover .toolbar_search_btn-content-wrapper .toolbar_search_icon2 {
  color: var(--color_secondary);
}
.toolbar_search_bubble2 {
  min-width: 180px;
  max-width: 180px;
  font-size: 14px;
  line-height: 16px;
  text-align: left;
}
.toolbar_search_container.toolbar_search___active2 .toolbar_search_icon2,
.toolbar_search_icon-big {
  color: var(--color_orange);
}
.toolbar_search_container.toolbar_search___failed .toolbar_search_btn:not(.toolbar_search___wide) .toolbar_search_icon2,
.toolbar_search_container.toolbar_search___failed .toolbar_search_btn:not(.toolbar_search___wide) .toolbar_search_icon-big,
.toolbar_search_container.toolbar_search___failed .toolbar_search_animation-circle {
  border-color: var(--color_gray-6);
  color: var(--color_red);
}
.toolbar_search_control-container {
  --container-height: 268px;
  position: absolute;
  right: 0;
  bottom: calc(-4px - var(--container-height));
  left: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  height: var(--container-height);
  padding: 16px;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--color_surface);
  box-shadow: var(--box-shadow_toolbar-dropdown);
  pointer-events: initial;
}
.toolbar_search_container.toolbar_search___wide .toolbar_search_control-container {
  --container-height: 260px;
  bottom: calc(-4px - var(--container-height));
  height: var(--container-height);
  padding: 24px 16px;
}
.toolbar_search_container.toolbar_search___active2 .toolbar_search_control-container {
  display: flex;
}
.toolbar_search_container.toolbar_search___failed .toolbar_search_control-container {
  --container-height: 305px;
  bottom: calc(-4px - var(--container-height));
  height: var(--container-height);
}
.toolbar_search_container.toolbar_search___wide.toolbar_search___failed .toolbar_search_control-container {
  --container-height: 228px;
  bottom: calc(-4px - var(--container-height));
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  height: var(--container-height);
  padding-right: 32px;
  padding-left: 32px;
}
.toolbar_search_container.toolbar_search___wide.toolbar_search___failed.toolbar_search___redesign-2022 .toolbar_search_control-container {
  --container-height: 277px;
  bottom: calc(-4px - var(--container-height));
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  height: var(--container-height);
  padding: 16px;
}
.toolbar_search_title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 288px;
}
.toolbar_search_command {
  color: var(--color_main);
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
}
.toolbar_search_sub-text {
  margin-top: 8px;
  color: var(--color_secondary);
  font-size: 12px;
  line-height: 14px;
  text-align: center;
}
.toolbar_search_sub-text.toolbar_search___bolder {
  color: var(--color_main);
}
.toolbar_search_sub-text.toolbar_search___lighter {
  color: var(--color_secondary);
}
.toolbar_search_container.toolbar_search___wide.toolbar_search___failed .toolbar_search_sub-text {
  text-align: left;
}
.toolbar_search_image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.toolbar_search_btn-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.toolbar_search_btn-close {
  margin: 6px;
}
.toolbar_search_btn-close:last-child {
  margin-top: 2px;
  margin-bottom: 0;
}
.toolbar_search_btn-close.toolbar_search___hidden {
  display: none;
}
.toolbar_search_animation-block {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin-top: 6px;
}
.toolbar_search_animation-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  box-sizing: border-box;
  width: 64px;
  height: 64px;
  margin-top: -32px;
  margin-left: -32px;
  border: 2px solid rgba(238, 130, 8, .32);
  border-radius: 50%;
  transform-origin: 50% 50%;
}
.toolbar_search_animation-circle.toolbar_search___animated {
  --duration: 3s;
  animation-name: toolbar_search_animation-circle-fade;
  animation-duration: var(--duration);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.toolbar_search_animation-circle.toolbar_search___animated:nth-child(2) {
  border-width: 1px;
  animation-delay: 1s;
}
.toolbar_search_animation-circle.toolbar_search___animated:nth-child(3) {
  border-width: 1px;
  animation-delay: 2s;
}
.toolbar_search_notify-block {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  width: 288px;
  height: 103px;
  margin-top: 16px;
  padding: 16px;
  border: var(--delimiter_global);
  border-color: var(--color_gray-stub);
  border-radius: 8px;
  background-color: var(--color_surface);
  box-shadow: var(--box-shadow_toolbar-dropdown);
}
.toolbar_search_container.toolbar_search___wide.toolbar_search___failed .toolbar_search_notify-block {
  margin-top: 0;
}
.toolbar_search_container.toolbar_search___wide.toolbar_search___failed.toolbar_search___redesign-2022 .toolbar_search_notify-block {
  margin: 16px auto 0;
  box-shadow: none;
}
.toolbar_search_notify-btn {
  box-sizing: border-box;
  height: 39px;
  padding: 10px 12px;
  border: var(--delimiter_global);
  border-color: var(--color_gray-stub);
  border-radius: 4px;
  color: #1263f0;
  font-size: 13px;
  line-height: 15px;
  background-color: var(--color_surface);
}
.toolbar_search_notify-btn.toolbar_search___selected {
  border: 2px solid var(--color_orange);
}
.toolbar_search_notify-btn + .toolbar_search_notify-btn {
  margin-left: 8px;
}
.toolbar_search_notify-text {
  margin-top: 2px;
  color: var(--color_main);
  font-size: 12px;
  line-height: 14px;
}
.toolbar_search_notify-icon {
  min-width: 16px;
  margin-right: 8px;
  color: var(--color_secondary);
}
.toolbar_search_btn-block {
  display: flex;
  margin-top: 16px;
}
.toolbar_search_notify-info-block {
  margin-top: 16px;
}
.toolbar_search_container.toolbar_search___wide.toolbar_search___failed .toolbar_search_notify-info-block {
  position: relative;
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
}
.toolbar_search_container.toolbar_search___wide.toolbar_search___failed .toolbar_search_notify-info-block:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color_main-008);
  content: "";
}
.toolbar_search_container.toolbar_search___wide.toolbar_search___failed.toolbar_search___redesign-2022 .toolbar_search_notify-info-block {
  flex-direction: column;
}
.toolbar_search_notify-info {
  display: flex;
}
.toolbar_search_notify-info + .toolbar_search_notify-info {
  margin-top: 16px;
}
.toolbar_search_container.toolbar_search___wide.toolbar_search___failed .toolbar_search_notify-info {
  width: 268px;
  margin-top: 0;
}
.toolbar_search_container.toolbar_search___wide.toolbar_search___failed.toolbar_search___redesign-2022 .toolbar_search_notify-info {
  width: 100%;
  margin-top: 0;
}
.toolbar_search_container.toolbar_search___wide.toolbar_search___failed.toolbar_search___redesign-2022 .toolbar_search_notify-info + .toolbar_search_notify-info {
  margin-top: 12px;
}
.toolbar_search_notify-info-text {
  margin-top: 0;
  text-align: left;
}
.toolbar_search___redesign-2022 .toolbar_search_title-wrapper {
  max-width: 100%;
}
@keyframes toolbar_search_fade-out {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes toolbar_search_animation-circle-fade {
  0% {
    border-color: #ee820852;
    transform: scale(1);
  }
  to {
    border-color: #ee82081f;
    transform: scale(1.7);
  }
}

/* toolbar-search.css?file=../ui/components/IconLoader/IconLoader.styl */
.toolbar_search_loader2 {
  animation: toolbar_search_spin2 .5s steps(12) infinite;
}
@keyframes toolbar_search_spin2 {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

/* toolbar-search.css?file=../ui/components/Input/Input.styl */
.toolbar_search_input {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0 8px;
  border: var(--input_border);
  border-radius: 3px;
  color: var(--color_secondary);
  font-size: 14px;
  line-height: 17px;
  background-color: var(--color_surface);
  outline: none;
}
.toolbar_search_input:-ms-input-placeholder::selection {
  background-color: transparent;
}
.toolbar_search_input::-ms-clear {
  display: none;
}
.toolbar_search_input::-webkit-inner-spin-button,
.toolbar_search_input::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}
.toolbar_search_input:focus {
  border-color: var(--color_gray-4);
  color: var(--color_main);
}
.toolbar_search_input.toolbar_search___error {
  border-color: var(--color_red);
}
.toolbar_search_input[type=text]:disabled {
  background-color: var(--color_on-surface);
}
.toolbar_search_input[type=text]:disabled.toolbar_search___preset-disabled {
  color: var(--color_secondary);
}
.toolbar_search_input.toolbar_search___redesign-2024 {
  color: var(--color_main);
  border-radius: 4px;
}
.toolbar_search_input.toolbar_search___redesign-2024::placeholder {
  color: var(--color_secondary);
}
.toolbar_search_input.toolbar_search___redesign-2024::-webkit-input-placeholder,
.toolbar_search_input.toolbar_search___redesign-2024:-moz-placeholder,
.toolbar_search_input.toolbar_search___redesign-2024::-moz-placeholder,
.toolbar_search_input.toolbar_search___redesign-2024:-ms-input-placeholder {
  color: var(--color_secondary);
}
.toolbar_search_input::-webkit-input-placeholder {
  overflow: hidden;
  color: inherit;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.toolbar_search_input:-moz-placeholder {
  overflow: hidden;
  color: inherit;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.toolbar_search_input::-moz-placeholder {
  overflow: hidden;
  color: inherit;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.toolbar_search_input:-ms-input-placeholder {
  overflow: hidden;
  color: inherit;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.toolbar_search_input::placeholder {
  overflow: hidden;
  color: inherit;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.toolbar_search___size-s2 {
  height: 24px;
  font-size: 12px;
}
.toolbar_search___size-m2 {
  height: 32px;
}
.toolbar_search___size-l {
  height: 48px;
}
.toolbar_search___soft {
  border-radius: 8px;
}
.toolbar_search___rounded.toolbar_search___size-s2 {
  border-radius: 12px;
}
.toolbar_search___rounded.toolbar_search___size-m2 {
  border-radius: 16px;
}
.toolbar_search___rounded.toolbar_search___size-l {
  border-radius: 24px;
}

/* toolbar-search.css?file=ui/toolbarSearch/components/InputBlock/SearchInputToolbar/SearchInputToolbar.styl */
.toolbar_search_label {
  position: relative;
  display: block;
}
.toolbar_search_input2 {
  padding-right: 32px;
}
.toolbar_search_clear {
  margin: 0;
  padding: 0;
  border: 0;
  text-decoration: none;
  background: none;
  outline: none;
  -webkit-appearance: none;
}
.toolbar_search_clear:hover,
.toolbar_search_clear:active {
  outline: none;
}
.toolbar_search_search-icon-left,
.toolbar_search_process,
.toolbar_search_clear,
.toolbar_search_search {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 100%;
  color: var(--color_secondary);
}
.toolbar_search_search-icon-left,
.toolbar_search_search,
.toolbar_search_clear {
  cursor: pointer;
}
.toolbar_search_search-icon-left {
  left: 0;
  z-index: 1;
}
.toolbar_search_search-left {
  padding-left: 32px;
}

/* toolbar-search.css?file=ui/toolbarSearch/components/InputBlock/InputBlock.styl */
.toolbar_search_label-input {
  width: 100%;
}
.toolbar_search_input-field {
  height: 32px;
  padding: 0 36px 0 32px;
  border: none;
  border-radius: 8px;
  background-color: var(--dynamic-surface-base-tertiary);
}
.toolbar_search_input-field.toolbar_search___right-icon {
  padding: 0 36px 0 12px;
}
.toolbar_search_input-field.toolbar_search___redesigned {
  border-radius: 100px;
  color: var(--color_secondary);
}
.toolbar_search_input-right-icon {
  margin-right: 4px;
}
.toolbar_search_input-right-icon.toolbar_search___with-assistant {
  display: none;
}

/* toolbar-search.css?file=ui/toolbarSearch/components/ToolbarOverlay/ToolbarOverlay.styl */
.toolbar_search_overlay {
  position: fixed;
  right: 0;
  left: 0;
  height: 100%;
  background-color: var(--color_black-06);
}

/* toolbar-search.css?file=../ui/components/Card/Card.styl */
.toolbar_search_card {
  display: flex;
  flex-direction: column;
}
.toolbar_search_card.toolbar_search___h {
  flex-direction: row;
}

/* toolbar-search.css?file=../ui/components/Card/CardCaption.styl */
.toolbar_search_card-caption {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  max-height: 36px;
  margin-bottom: 4px;
  color: var(--color_main);
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
}
.toolbar_search_card-caption-small {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  max-height: 18px;
  display: inline-block;
  margin-bottom: 4px;
  color: var(--color_main);
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

/* toolbar-search.css?file=../ui/components/Card/CardRight.styl */
.toolbar_search_card-right2 {
  margin-left: 16px;
}

/* toolbar-search.css?file=../ui/components/Card/CardSection.styl */
.toolbar_search_card-section {
  display: flex;
  flex: 1 1 50%;
  flex-direction: column;
  min-width: 0;
}
.toolbar_search_card-section.toolbar_search___horizontal {
  flex-direction: row;
}
.toolbar_search_card-section.toolbar_search___content-width {
  flex: 0 0 0;
  min-width: auto;
}

/* toolbar-search.css?file=../ui/components/Link/Link.styl */
.toolbar_search_link {
  text-decoration: none;
}
.toolbar_search_link:hover {
  text-decoration: underline;
}
.toolbar_search_link.toolbar_search___primary {
  color: var(--color_main);
}
.toolbar_search_link.toolbar_search___secondary {
  color: var(--color_secondary);
}
.toolbar_search_link.toolbar_search___active5 {
  color: var(--color_orange);
}
.toolbar_search_link.toolbar_search___black {
  color: var(--color_main);
}
.toolbar_search_link.toolbar_search___white2 {
  color: var(--color_white);
}
.toolbar_search_link.toolbar_search___orange {
  color: var(--color_orange);
  text-decoration: none;
}
.toolbar_search_link.toolbar_search___orange:hover {
  color: var(--color_action_active_new);
}
.toolbar_search_link.toolbar_search___none {
  text-decoration: none;
  cursor: auto;
}
.toolbar_search_link.toolbar_search___none:hover {
  color: inherit;
  text-decoration: none;
}
.toolbar_search_link.toolbar_search___no-text-decor,
.toolbar_search_link.toolbar_search___no-text-decor:hover {
  text-decoration: none;
}

/* toolbar-search.css?file=ui/toolbarSearch/components/common.styl */
.toolbar_search_suggest-ul {
  margin-right: 0;
  margin-left: 0;
  padding-bottom: 0;
}
.toolbar_search_suggest-ul.toolbar_search___padding-around {
  padding: 8px;
}
.toolbar_search_add-padding {
  padding-bottom: 6px;
}
.toolbar_search_action-icon {
  color: #fff;
  transition: color .1s ease-in-out;
}
.toolbar_search_icon-color {
  color: var(--color_gray-4);
}
.toolbar_search_icon-color-all-results {
  color: var(--color_secondary);
}
.toolbar_search_action-btn {
  width: 24px;
  height: 24px;
  transition: color .1s ease-in-out;
}
.toolbar_search_action-btn.toolbar_search___size-164 {
  width: 16px;
  height: 16px;
}
.toolbar_search_info-w2 .toolbar_search_card-caption2 {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 14px;
}
.toolbar_search_card-info2 {
  margin-top: 4px;
  font-size: 12px;
}
.toolbar_search_tooltip-content {
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
  line-height: 14px;
}
.toolbar_search_tooltip3 {
  position: fixed;
}
.toolbar_search_card-right {
  align-items: center;
  margin-left: 12px;
}
.toolbar_search_card-right.toolbar_search___height-8 {
  line-height: 8px;
}
.toolbar_search_card-w {
  align-items: center;
  padding: 6px 12px;
}
.toolbar_search_card-w:hover,
.toolbar_search_card-w.toolbar_search___active3 {
  background-color: var(--color_on-surface);
}
.toolbar_search_card-w:hover .toolbar_search_action-icon,
.toolbar_search_card-w.toolbar_search___active3 .toolbar_search_action-icon {
  color: var(--color_gray-4);
}
.toolbar_search_card-w.toolbar_search___redesigned2 {
  padding: 8px;
  border-radius: 8px;
}
.toolbar_search_link2 {
  display: flex;
  flex-grow: 1;
  align-items: center;
}
.toolbar_search_card-info-delimiter:before {
  display: inline;
  margin: 0 8px;
  content: "\2022";
}
.toolbar_search___hidden2 {
  display: none;
}

/* toolbar-search.css?file=ui/toolbarSearch/components/Suggestion/SuggestionCard/SuggestionCard.styl */
.toolbar_search_icon3 {
  margin-right: 12px;
  color: var(--color_gray-4);
}
.toolbar_search_wrapper {
  align-items: center;
  padding: 6px 12px;
}
.toolbar_search_wrapper:hover,
.toolbar_search_wrapper.toolbar_search___active6 {
  background: var(--color_on-surface);
}
.toolbar_search_info-w {
  max-width: 200px;
}
.toolbar_search_info-w .toolbar_search_card-caption3 {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 14px;
}
.toolbar_search_click-area {
  display: flex;
  flex-grow: 1;
  align-items: center;
}
.toolbar_search_tag_highlight {
  font-weight: 600;
}

/* toolbar-search.css?file=ui/toolbarSearch/components/Suggestion/SuggestionList/SuggestionList.styl */
.toolbar_search_history {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid var(--color_main-008);
}

/* toolbar-search.css?file=ui/toolbarSearch/components/ToolbarSearch/ToolbarSearch.styl */
.toolbar_search_dropdown-results {
  position: absolute;
  right: -78px;
  display: block;
  width: 320px;
  margin-top: 14px;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--color_surface);
  box-shadow: var(--box-shadow_toolbar-dropdown), 0 0 2px #00000014;
}
.toolbar_search_dropdown-results.toolbar_search___wide2 {
  right: 0;
  margin-top: 4px;
}
.toolbar_search_dropdown-results.toolbar_search___fadein {
  animation: toolbar_search_fadein .5s;
}
.toolbar_search_dropdown-results.toolbar_search___full-width {
  width: 412px;
  left: 0;
}
.toolbar_search_dropdown-results.toolbar_search___round2 {
  border-radius: 16px;
}
.toolbar_search_show-all-results {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px 11px;
  border-bottom: 1px solid var(--color_gray-5);
  color: var(--color_main);
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  text-align: left;
  text-decoration: none;
  background-color: var(--color_surface);
  transition: background .1s ease-in-out, color .1s ease-in-out;
}
.toolbar_search_show-all-results:hover,
.toolbar_search_show-all-results.toolbar_search___active4 {
  background-color: var(--color_on-surface);
}
.toolbar_search_suggest-title {
  display: flex;
  align-items: center;
  padding: 12px;
  color: var(--color_secondary);
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
  text-align: left;
  background-color: var(--color_surface);
  transition: background .1s ease-in-out;
}
.toolbar_search_suggest-title:hover,
.toolbar_search_suggest-title.toolbar_search___active4 {
  background: var(--color_on-surface);
}
.toolbar_search_suggest-title.toolbar_search___redesign {
  padding: 6px 4px;
  font-size: 14px;
  border-radius: 8px;
}
.toolbar_search_suggest-title.toolbar_search___redesign .toolbar_search_suggest-title_text {
  margin: 0;
  font-weight: 400;
  color: var(--color_main);
}
.toolbar_search_suggest-title.toolbar_search___redesign .toolbar_search_suggest-title-arrow-icon {
  color: var(--color_secondary);
  margin-left: auto;
  margin-right: 8px;
}
.toolbar_search_suggest-title_text {
  margin-right: 4px;
}
.toolbar_search_suggest-label-icon {
  padding: 8px;
  color: var(--color_secondary);
  border-radius: 100%;
  background-color: var(--color_background);
  margin-right: 12px;
}
.toolbar_search_ico-search {
  color: var(--color_secondary);
  padding: 12px 8px;
  cursor: pointer;
}
.toolbar_search_ico-search:hover {
  background-color: var(--color_main-004);
}
.toolbar_search_search-wrapper.toolbar_search___wide2 {
  width: 412px;
}
.toolbar_search_search-wrapper.toolbar_search___mini {
  opacity: 0;
}
.toolbar_search_search-wrapper.toolbar_search___mini.toolbar_search___open {
  width: 412px;
  opacity: 100%;
  transition: opacity .3s ease-out;
}
.toolbar_search_search-wrapper.toolbar_search___mini.toolbar_search___hidden3 {
  width: 0;
  opacity: 0;
  transition: opacity .3s ease-out;
}
.toolbar_search_show-all-results-wrapper {
  border-bottom: 1px solid var(--color_main-008);
  margin: 0 -8px 8px;
  padding: 0 8px;
}
.toolbar_search_show-all-results-wrapper.toolbar_search___padding-bottom {
  padding-bottom: 8px;
}
@keyframes toolbar_search_fadein {
  0% {
    transform: translateY(16px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* toolbar-search.css?file=../ui/components/Avatars/AvatarCore/AvatarCore.styl */
.toolbar_search_avatar {
  position: relative;
  display: inline-block;
  border-radius: 4px;
  overflow: hidden;
  background-position: 50% 50%;
  background-size: cover;
}
.toolbar_search_avatar.toolbar_search___border:after {
  content: "";
  position: absolute;
  inset: 0;
  border: var(--delimiter_global);
  border-radius: inherit;
}
.toolbar_search_avatar.toolbar_search___block {
  display: block;
}
.toolbar_search_avatar.toolbar_search___trimmed {
  border-radius: 8px;
}
.toolbar_search_avatar.toolbar_search___round {
  border-radius: 50%;
}
.toolbar_search_avatar.toolbar_search___round:before {
  border-radius: 50%;
}
.toolbar_search_avatar.toolbar_search___size-165 {
  width: 16px;
  height: 16px;
}
.toolbar_search_avatar.toolbar_search___size-204 {
  width: 20px;
  height: 20px;
}
.toolbar_search_avatar.toolbar_search___size-244 {
  width: 24px;
  height: 24px;
}
.toolbar_search_avatar.toolbar_search___size-282 {
  width: 28px;
  height: 28px;
}
.toolbar_search_avatar.toolbar_search___size-323 {
  width: 32px;
  height: 32px;
}
.toolbar_search_avatar.toolbar_search___size-362 {
  width: 36px;
  height: 36px;
}
.toolbar_search_avatar.toolbar_search___size-403 {
  width: 40px;
  height: 40px;
}
.toolbar_search_avatar.toolbar_search___size-442 {
  width: 44px;
  height: 44px;
}
.toolbar_search_avatar.toolbar_search___size-4810 {
  width: 48px;
  height: 48px;
}
.toolbar_search_avatar.toolbar_search___size-562 {
  width: 56px;
  height: 56px;
}
.toolbar_search_avatar.toolbar_search___size-6411 {
  width: 64px;
  height: 64px;
}
.toolbar_search_avatar.toolbar_search___size-802 {
  width: 80px;
  height: 80px;
}
.toolbar_search_avatar.toolbar_search___size-963 {
  width: 96px;
  height: 96px;
}
.toolbar_search_avatar.toolbar_search___size-1283 {
  width: 128px;
  height: 128px;
}
.toolbar_search_avatar.toolbar_search___size-1442 {
  width: 144px;
  height: 144px;
}
.toolbar_search_avatar.toolbar_search___size-1523 {
  width: 152px;
  height: 152px;
}
.toolbar_search_avatar.toolbar_search___size-1602 {
  width: 160px;
  height: 160px;
}
.toolbar_search_avatar.toolbar_search___size-1762 {
  width: 176px;
  height: 176px;
}
.toolbar_search_avatar.toolbar_search___size-2082 {
  width: 208px;
  height: 208px;
}
.toolbar_search_avatar.toolbar_search___size-2402 {
  width: 240px;
  height: 240px;
}
.toolbar_search_avatar.toolbar_search___size-2882 {
  width: 288px;
  height: 288px;
}
.toolbar_search_img {
  display: block;
}

/* toolbar-search.css?file=../ui/components/Avatars/ArtistAvatar/ArtistAvatar.styl */
.toolbar_search_stub7 {
  background-color: var(--color_gray-stub);
  opacity: .2;
}
.toolbar_search_artist-stub.toolbar_search___size-245 {
  width: 24px;
  height: 24px;
}
.toolbar_search_artist-stub.toolbar_search___size-4811 {
  width: 24px;
  height: 24px;
  margin-top: 12px;
  margin-left: 12px;
}
.toolbar_search_artist-stub.toolbar_search___size-6412 {
  width: 48px;
  height: 48px;
  margin-top: 8px;
  margin-left: 8px;
}
.toolbar_search_artist-stub.toolbar_search___size-803 {
  width: 48px;
  height: 48px;
  margin-top: 16px;
  margin-left: 16px;
}
.toolbar_search_artist-stub.toolbar_search___size-1284 {
  width: 48px;
  height: 48px;
  margin-top: 40px;
  margin-left: 40px;
}
.toolbar_search_artist-stub.toolbar_search___size-1524 {
  width: 48px;
  height: 48px;
  margin-top: 52px;
  margin-left: 52px;
}
.toolbar_search_artist-stub.toolbar_search___size-1603 {
  width: 48px;
  height: 48px;
  margin-top: 56px;
  margin-left: 56px;
}

/* toolbar-search.css?file=../ui/components/Card/CardPhoto.styl */
.toolbar_search_card-photo {
  position: relative;
  flex-shrink: 0;
}
.toolbar_search_card-photo.toolbar_search___24 {
  width: 24px;
  height: 24px;
}
.toolbar_search_card-photo.toolbar_search___32 {
  width: 32px;
  height: 32px;
}
.toolbar_search_card-photo.toolbar_search___40 {
  width: 40px;
}
.toolbar_search_card-photo.toolbar_search___48 {
  width: 48px;
  height: 48px;
}
.toolbar_search_card-photo.toolbar_search___60 {
  width: 60px;
}
.toolbar_search_card-photo.toolbar_search___64 {
  width: 64px;
}
.toolbar_search_card-photo.toolbar_search___80 {
  width: 80px;
  height: 80px;
}
.toolbar_search_card-photo.toolbar_search___84 {
  width: 84px;
}
.toolbar_search_card-photo.toolbar_search___96 {
  width: 96px;
  height: 96px;
}
.toolbar_search_card-photo.toolbar_search___112 {
  width: 112px;
  height: 112px;
}
.toolbar_search_card-photo.toolbar_search___120 {
  width: 120px;
  height: auto;
}
.toolbar_search_card-photo.toolbar_search___128 {
  width: 128px;
  height: 128px;
}
.toolbar_search_card-photo.toolbar_search___131 {
  width: 131px;
  height: 131px;
}
.toolbar_search_card-photo.toolbar_search___152 {
  width: 152px;
  height: 152px;
}
.toolbar_search_card-photo.toolbar_search___160 {
  width: 160px;
  height: 160px;
}
.toolbar_search_card-photo.toolbar_search___176 {
  width: 176px;
  height: 176px;
}
.toolbar_search_card-photo.toolbar_search___204 {
  width: 204px;
  height: 204px;
}
.toolbar_search_card-photo.toolbar_search___208 {
  width: 208px;
  height: 208px;
}
.toolbar_search_card-photo.toolbar_search___gap-right {
  margin-right: 16px;
}
.toolbar_search_card-photo.toolbar_search___gap-right__small {
  margin-right: 8px;
}
.toolbar_search_card-photo.toolbar_search___gap-right__medium {
  margin-right: 12px;
}

/* toolbar-search.css?file=../ui/components/Avatars/GameAvatar/GameAvatar.styl */
.toolbar_search_game-stub.toolbar_search___size-64 {
  background-image: url("./group_games-NAWR5U77.png");
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx), (min-resolution: 144dpi) {
  .toolbar_search_game-stub.toolbar_search___size-64 {
    background-image: url("./group_games@2x-EEIFKGZ4.png");
  }
}

/* toolbar-search.css?file=../ui/components/Card/CardInfo.styl */
.toolbar_search_card-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-shrink: 1;
  color: var(--color_secondary);
}
.toolbar_search_card-info.toolbar_search___lighter2 {
  color: var(--color_secondary);
}
.toolbar_search_card-info.toolbar_search___small3 {
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: inline-block;
}

/* toolbar-search.css?file=../ui/components/Row/Row.styl */
.toolbar_search_row:not(.toolbar_search___clear) {
  padding: 16px 0;
}
.toolbar_search_row:not(.toolbar_search___clear) + .toolbar_search_row:not(.toolbar_search___clear) {
  border-top: 1px solid var(--color_main-008);
}

/* toolbar-search.css?file=../ui/components/Avatars/CommunityAvatar/Army.styl */
.toolbar_search_stub.toolbar_search___size-482,
.toolbar_search_stub.toolbar_search___size-642 {
  background-image: url("./group_army-K6FHJPBS.png");
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx), (min-resolution: 144dpi) {
  .toolbar_search_stub.toolbar_search___size-482,
  .toolbar_search_stub.toolbar_search___size-642 {
    background-image: url("./group_army@2x-UDX732QF.png");
  }
}

/* toolbar-search.css?file=../ui/components/Avatars/CommunityAvatar/Colleage.styl */
.toolbar_search_stub2.toolbar_search___size-483,
.toolbar_search_stub2.toolbar_search___size-643 {
  background-image: url("./group_colleage-ODU5KKDC.png");
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx), (min-resolution: 144dpi) {
  .toolbar_search_stub2.toolbar_search___size-483,
  .toolbar_search_stub2.toolbar_search___size-643 {
    background-image: url("./group_colleage@2x-DA7JYTD6.png");
  }
}

/* toolbar-search.css?file=../ui/components/Avatars/CommunityAvatar/Holiday.styl */
.toolbar_search_stub3.toolbar_search___size-484,
.toolbar_search_stub3.toolbar_search___size-644 {
  background-image: url("./group_holiday-K2DUK4CG.png");
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx), (min-resolution: 144dpi) {
  .toolbar_search_stub3.toolbar_search___size-484,
  .toolbar_search_stub3.toolbar_search___size-644 {
    background-image: url("./group_holiday@2x-GIKQF7QV.png");
  }
}

/* toolbar-search.css?file=../ui/components/Avatars/CommunityAvatar/School.styl */
.toolbar_search_stub4.toolbar_search___size-485,
.toolbar_search_stub4.toolbar_search___size-645 {
  background-image: url("./group_school-RJ5YFXF6.png");
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx), (min-resolution: 144dpi) {
  .toolbar_search_stub4.toolbar_search___size-485,
  .toolbar_search_stub4.toolbar_search___size-645 {
    background-image: url("./group_school@2x-HOIBCKKR.png");
  }
}

/* toolbar-search.css?file=../ui/components/Avatars/CommunityAvatar/University.styl */
.toolbar_search_stub5.toolbar_search___size-486,
.toolbar_search_stub5.toolbar_search___size-646 {
  background-image: url("./group_university-VMA2B4TU.png");
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx), (min-resolution: 144dpi) {
  .toolbar_search_stub5.toolbar_search___size-486,
  .toolbar_search_stub5.toolbar_search___size-646 {
    background-image: url("./group_university@2x-V7UCEH2H.png");
  }
}

/* toolbar-search.css?file=../ui/components/Avatars/CommunityAvatar/Workplace.styl */
.toolbar_search_stub6.toolbar_search___size-487,
.toolbar_search_stub6.toolbar_search___size-647 {
  background-image: url("./group_workplace-GJNANCMY.png");
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx), (min-resolution: 144dpi) {
  .toolbar_search_stub6.toolbar_search___size-487,
  .toolbar_search_stub6.toolbar_search___size-647 {
    background-image: url("./group_workplace@2x-WMLVAJML.png");
  }
}

/* toolbar-search.css?file=../ui/components/Tooltip/Tooltip.styl */
.toolbar_search_main {
  position: relative;
}
.toolbar_search_main.toolbar_search___inner,
.toolbar_search_wrap.toolbar_search___inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.toolbar_search_tooltip {
  position: absolute;
  z-index: 3201;
  display: block;
  color: var(--color_black-08);
  font-size: 12px;
  line-height: 1.4;
  pointer-events: none;
}
.toolbar_search_tooltip.toolbar_search___top .toolbar_search_container2:not(.toolbar_search___free) {
  padding-bottom: 8px;
  transform: translate(-50%, -100%);
}
.toolbar_search_tooltip.toolbar_search___top .toolbar_search_arrow {
  bottom: 0;
}
.toolbar_search_tooltip.toolbar_search___top .toolbar_search_arrow:before {
  top: -1px;
  border-width: 5px 8px 0;
  border-top-color: currentColor;
}
.toolbar_search_tooltip.toolbar_search___top.toolbar_search___inner {
  left: 50%;
}
.toolbar_search_tooltip.toolbar_search___bottom .toolbar_search_container2:not(.toolbar_search___free) {
  padding-top: 8px;
  transform: translate(-50%, -50%);
}
.toolbar_search_tooltip.toolbar_search___bottom .toolbar_search_arrow {
  top: 0;
}
.toolbar_search_tooltip.toolbar_search___bottom .toolbar_search_arrow:before {
  bottom: -1px;
  border-width: 0 8px 5px;
  border-bottom-color: currentColor;
}
.toolbar_search_tooltip.toolbar_search___bottom.toolbar_search___inner {
  top: 100%;
  left: 50%;
}
.toolbar_search_tooltip.toolbar_search___bottom.toolbar_search___inner .toolbar_search_container2:not(.toolbar_search___free) {
  transform: translate(-50%);
}
.toolbar_search_tooltip.toolbar_search___right .toolbar_search_container2:not(.toolbar_search___free) {
  padding-left: 10px;
  transform: translateY(-100%);
}
.toolbar_search_tooltip.toolbar_search___right .toolbar_search_arrow {
  top: 25%;
  left: 0;
  width: 10px;
  height: 25px;
  margin-left: 0;
}
.toolbar_search_tooltip.toolbar_search___right .toolbar_search_arrow:before {
  right: 0;
  left: 0;
  border-width: 8px 5px 5px 0;
  border-right-color: currentColor;
}
.toolbar_search_tooltip.toolbar_search___right.toolbar_search___inner {
  top: 50%;
  left: 100%;
}
.toolbar_search_tooltip.toolbar_search___right.toolbar_search___inner .toolbar_search_container2:not(.toolbar_search___free) {
  transform: translateY(-50%);
}
.toolbar_search_tooltip.toolbar_search___left .toolbar_search_container2:not(.toolbar_search___free) {
  padding-right: 10px;
  transform: translate(-100%, -100%);
}
.toolbar_search_tooltip.toolbar_search___left .toolbar_search_arrow {
  top: 25%;
  right: 0;
  left: auto;
  width: 10px;
  height: 25px;
  margin-left: 0;
}
.toolbar_search_tooltip.toolbar_search___left .toolbar_search_arrow:before {
  left: 0;
  border-width: 5px 0 8px 5px;
  border-left-color: currentColor;
}
.toolbar_search_tooltip.toolbar_search___left.toolbar_search___inner {
  top: 50%;
}
.toolbar_search_tooltip.toolbar_search___left.toolbar_search___inner .toolbar_search_container2:not(.toolbar_search___free) {
  transform: translate(-100%, -50%);
}
.toolbar_search_tooltip .toolbar_search_content {
  box-sizing: border-box;
  padding: 12px;
  border-radius: 8px;
  color: var(--color_white);
  box-shadow: var(--box-shadow_global);
  background-color: var(--color_black-08);
}
.toolbar_search_tooltip.toolbar_search___top:not(.toolbar_search___light2) .toolbar_search_arrow:before {
  top: 0;
}
.toolbar_search_tooltip.toolbar_search___bottom:not(.toolbar_search___light2) .toolbar_search_arrow:before {
  bottom: 0;
}
.toolbar_search_tooltip.toolbar_search___right .toolbar_search_arrow,
.toolbar_search_tooltip.toolbar_search___left .toolbar_search_arrow {
  position: absolute;
  top: 50%;
  height: 12px;
  transform: translateY(-50%);
}
.toolbar_search_tooltip.toolbar_search___right .toolbar_search_arrow:before {
  border-width: 6px 6px 6px 0;
}
.toolbar_search_tooltip.toolbar_search___left .toolbar_search_arrow:before {
  border-width: 6px 0 6px 6px;
}
.toolbar_search_tooltip.toolbar_search___dark2 {
  color: var(--color_black-08);
}
.toolbar_search_tooltip.toolbar_search___dark2 .toolbar_search_content {
  background-color: var(--color_black-08);
}
.toolbar_search_tooltip.toolbar_search___light2 {
  color: var(--color_surface);
}
.toolbar_search_tooltip.toolbar_search___light2 .toolbar_search_content {
  border: 1px solid var(--color_main-008);
  color: var(--color_main);
  background-color: var(--color_surface);
  box-shadow: 0 12px 24px var(--color_main-008);
}
.toolbar_search_container2 {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 200px;
  pointer-events: auto;
}
.toolbar_search_tooltip.toolbar_search___inner .toolbar_search_container2 {
  position: relative;
}
.toolbar_search_tooltip.toolbar_search_exit-done .toolbar_search_container2,
.toolbar_search_tooltip.toolbar_search___hide .toolbar_search_container2 {
  visibility: hidden;
  opacity: 0;
}
.toolbar_search_content {
  display: inline-block;
  padding: 4px 8px 6px;
  border-radius: 4px;
  color: #f0f0f0;
  background-color: #333c;
}
.toolbar_search_content.toolbar_search___text-ellipsis {
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 180px;
}
.toolbar_search_content.toolbar_search___text-center {
  text-align: center;
}
.toolbar_search_arrow {
  position: absolute;
  left: 50%;
  height: 8px;
  margin-left: -8px;
}
.toolbar_search_arrow:before {
  position: absolute;
  border-color: transparent;
  border-style: solid;
  content: "";
}

/* toolbar-search.css?file=../ui/components/Badge/Badge.styl */
.toolbar_search_badge {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 4px;
  vertical-align: text-bottom;
}
.toolbar_search_badge:last-child {
  margin-right: 4px;
}

/* toolbar-search.css?file=ui/toolbarSearch/components/Group/Title/Title.styl */
.toolbar_search_light {
  color: var(--color_secondary);
}

/* toolbar-search.css?file=ui/toolbarSearch/components/UserCard/UserCard.styl */
.toolbar_search_error-message {
  color: var(--color_red);
  line-height: 12px;
}
.toolbar_search_user-card-wrapper {
  position: relative;
}
.toolbar_search_user-message-link {
  position: absolute;
  right: 12px;
  bottom: 20px;
  color: var(--color_white);
  transition: color .1s ease-in-out;
}
.toolbar_search_user-message-link:hover,
.toolbar_search_user-message-link.toolbar_search___active7 {
  color: var(--color_gray-4);
}
.toolbar_search_place-for-icon {
  width: 24px;
}

/* toolbar-search.css?file=../ui/components/Avatars/HobbyAvatar/HobbyAvatar.styl */
.toolbar_search_image2 {
  transform: translate(12px, 12px);
}

/* toolbar-search.css?file=../ui/components/Avatars/MovieAlbumAvatar/MovieAlbumAvatar.styl */
.toolbar_search_movie-album-stub.toolbar_search___size-648 {
  background-image: url("./group_channel-MZZKGLP5.png");
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx), (min-resolution: 144dpi) {
  .toolbar_search_movie-album-stub.toolbar_search___size-648 {
    background-image: url("./group_channel@2x-SFL53R7P.png");
  }
}
.toolbar_search_movie-album-stub.toolbar_search___size-24 {
  background-image: url("./group-event-L7WO5PVF.png");
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx), (min-resolution: 144dpi) {
  .toolbar_search_movie-album-stub.toolbar_search___size-24 {
    background-image: url("./group-event@2x-BRIEN6LZ.png");
  }
}

/* toolbar-search.css?file=../ui/components/Avatars/MovieAvatar/MovieAvatar.styl */
.toolbar_search_thumbnail-basic {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: 183px;
  border: var(--delimiter_global-light);
  border-radius: 8px;
}
.toolbar_search_thumbnail-basic.toolbar_search___size-16 {
  height: 16px;
}
.toolbar_search_thumbnail-basic.toolbar_search___size-20 {
  height: 20px;
}
.toolbar_search_thumbnail-basic.toolbar_search___size-242 {
  height: 24px;
}
.toolbar_search_thumbnail-basic.toolbar_search___size-32 {
  height: 32px;
}
.toolbar_search_thumbnail-basic.toolbar_search___size-404 {
  height: 40px;
}
.toolbar_search_thumbnail-basic.toolbar_search___size-488 {
  height: 48px;
}
.toolbar_search_thumbnail-basic.toolbar_search___size-649 {
  height: 64px;
}
.toolbar_search_thumbnail-basic.toolbar_search___size-96 {
  height: 96px;
}
.toolbar_search_thumbnail-basic.toolbar_search___size-128 {
  height: 128px;
}
.toolbar_search_thumbnail-basic.toolbar_search___size-152 {
  height: 152px;
}
.toolbar_search_thumbnail-basic.toolbar_search___size-2403 {
  height: 240px;
}
.toolbar_search_thumbnail-img {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.toolbar_search_thumbnail-stub.toolbar_search___size-16,
.toolbar_search_thumbnail-stub.toolbar_search___size-20,
.toolbar_search_thumbnail-stub.toolbar_search___size-242 {
  background: url("./event-movie-L4CJOQ3D.png") 50% no-repeat var(--color_gray-stub);
}
.toolbar_search_thumbnail-stub.toolbar_search___size-32 {
  background: url("./event-movie-VEKIRIQE.png") 50% no-repeat var(--color_gray-stub);
}
.toolbar_search_thumbnail-stub.toolbar_search___size-488 {
  background: url("./event-movie-L5UXMDHF.png") 50% no-repeat var(--color_gray-stub);
}
.toolbar_search_thumbnail-stub.toolbar_search___size-649 {
  background: url("./event-movie-24YYR7TW.png") 50% no-repeat var(--color_gray-stub);
}
.toolbar_search_thumbnail-stub.toolbar_search___size-96,
.toolbar_search_thumbnail-stub.toolbar_search___size-128 {
  background: url("./event-movie-QAC5XEHS.png") 50% no-repeat var(--color_gray-stub);
}
.toolbar_search_thumbnail-stub.toolbar_search___size-152,
.toolbar_search_thumbnail-stub.toolbar_search___size-224 {
  background: url("./event-movie-5GUJ6HDS.png") 50% no-repeat var(--color_gray-stub);
}

/* toolbar-search.css?file=../ui/components/UserOnlineStatus/UserOnlineStatus.styl */
.toolbar_search_user-online-status {
  position: absolute;
  bottom: -2px;
  left: -2px;
  display: inline-block;
}
.toolbar_search_user-online-status.toolbar_search___web {
  width: 8px;
  height: 8px;
  border: 2px solid var(--color_surface);
  border-radius: 50%;
  background-color: var(--color_orange);
}
.toolbar_search_user-online-status.toolbar_search___mob {
  width: 10px;
  height: 12px;
  border-bottom: 1px solid var(--color_surface);
  border-radius: 2px;
  color: var(--color_orange);
  background-color: var(--color_surface);
}
.toolbar_search_icon4 {
  display: block;
  margin: 0 -1px;
}

/* toolbar-search.css?file=../ui/components/MultiLine/MultiLine.styl */
.toolbar_search_paragraph + .toolbar_search_paragraph {
  margin-top: 12px;
}

/* toolbar-search.css?file=ui/toolbarSearch/components/Suggestion/Suggests/Suggests.styl */
.toolbar_search_suggests {
  display: flex;
  flex-direction: column;
  padding: 8px;
  box-sizing: border-box;
}
.toolbar_search_suggest-list {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
}
.toolbar_search_suggest-item {
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  padding: 8px;
  border-radius: 8px;
  font-size: var(--fs-n);
  width: 100%;
  box-sizing: border-box;
  position: relative;
}
.toolbar_search_suggest-item:hover {
  background-color: var(--color_on-surface);
  text-decoration: none;
}
.toolbar_search_suggest-item .toolbar_search_suggest-item-right-icon {
  position: absolute;
  right: 8px;
}
.toolbar_search_all-results-wrapper.toolbar_search___separator {
  border-bottom: 1px solid var(--color_gray-5);
  padding-bottom: 8px;
}
/*# sourceMappingURL=toolbar-search-ERT5ESJW.css.map */
