@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap");

body {
  background-color: #f7f5f2;
  font-family: Inter;
}

.a-collection-element-container {
  display: flex;
  gap: 8px;
  flex-direction: column;
}

.a-collection-element {
  border: 1px solid #e1dfdc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  border-radius: 4px;
  width: 100%;
  background: #ffffff;
  color: #1a1918;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 64px;
  cursor: pointer;
  text-decoration: none;
  padding-left: 24px;
  padding-right: 24px;
}

.a-input {
  padding-right: 48px;
  border-radius: 8px;
  border: 2px solid #e1dfdc;
  background: #fff;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.5rem;
}

.top-header {
  z-index: 1;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgb(249, 248, 246);
  height: 73px;
  margin-left: max(25vw, 320px);
  border-bottom: 1px solid rgba(26, 25, 24, 0.1);
}

.menu-button {
  position: absolute;
  left: 10px;
  bottom: 0;
  display: none;
  padding: 20px;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  background: #726c65;
  border-radius: 100px;
  margin: 4px 0;
}

.top-header .left {
  position: absolute;
  left: 30px;
  top: 15px;
  border-radius: 4px;
  border: 1px solid #e1dfdc;
}

.top-header .right {
  position: absolute;
  right: 30px;
  top: 28px;
  border-radius: 4px;
  border: 1px solid #e1dfdc;
}

.centered-top-info {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #1a1918;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  overflow: auto;
}

.left-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background: #f7f5f2;
  width: max(25vw, 320px);
  border-right: 1px solid rgba(26, 25, 24, 0.1);
}

.menu-user-button {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #f7f5f2;
  border-bottom: 1px solid #e1dfdc;
}

.menu-user-button .user-icon {
  border: 1px solid #e1dfdc;
  border-radius: 8px;
  padding: 8px;
}

.username {
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  color: #1a1918;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.user-menu {
  z-index: 1;
  display: none;
  position: absolute;
  left: 16px;
  right: 16px;
  top: 100%;
  padding-top: 8px;
  padding-bottom: 8px;

  border-radius: 4px;
  background: #f7f5f2;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.16);
}

.user-menu-element {
  cursor: pointer;
  display: flex;
  padding: 16px 24px;
  align-items: start;
  color: #1a1918;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

#langSelector {
  cursor: pointer;
  border: none;
  font-weight: bold;
  font-family: Inter;
  font-size: 16px;
  background-color: #f7f5f3;
  border-radius: 4px;
  width: 100%;
}

.user-menu.show {
  display: block;
}

.all-conversations {
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 16px;
  padding-bottom: 24px;
}

.header {
  color: #8c8c8b;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
  padding-top: 8px;
  cursor: pointer;
}

.conversation-list {
  overflow: auto;
}

.conversation-list.big {
  height: calc(100vh - 440px);
}

.conversation-list.small {
  height: 200px;
}

.conversation-element {
  width: 100%;
  border-radius: 2px;
  margin-top: 8px;
  padding: 16px;
  cursor: pointer;
  position: relative;
  padding-right: 76px;
  border: 1px solid transparent;

  color: #1a1918;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}

.conversation-element img {
  display: none;
}

.conversation-element.active {
  background: #f4efe8;
  border-radius: 4px;
  border: 1px solid #e1dfdc;
}

.conversation-element.active .bin {
  display: inline;
  position: absolute;
  right: 16px;
}

.conversation-element.active .share,
.conversation-element.active .share-collection {
  display: inline;
  position: absolute;
  right: 50px;
}

.search-container {
  width: 100%;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-bottom: 112px;
}

.search-container .logo {
  padding: 24px;
}

.search-label {
  color: var(--neutrals-black, #1a1918);
  text-align: center;
  /* Headlines/Headline-L */
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 48px; /* 150% */
  margin-top: 28px;
}

.under-search-label {
  line-height: 24px;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  margin-bottom: 12px;
}
.under-search-label .dbRecordCount {
  color: #285ff5;
  font-weight: bold;
}

.results-container {
  width: 100%;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 112px;
}

.generation-in-progress .results-container {
  padding-bottom: 173px;
}

.results-content {
  width: 100%;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-top: 12px;
}

.containers-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 48px;
  padding-right: 48px;
  margin-top: 82px;
  margin-left: max(25vw, 320px);
}

.prompt-input-wrapper {
  position: relative;
  display: flex;
  margin-bottom: 10px;
  width: 100%;
  max-width: 704px;
}

.prompt-source-selector {
  background-color: #f4efe8;
  border: 2px solid #e1dfdc;
  border-right: 0px;
  border-radius: 8px 0 0 8px;
  padding: 10px;
  min-width: 100px;

  cursor: pointer;

  color: var(--neutrals-black, #1a1918);
  text-align: center;
  align-content: center;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
}

.source-selector-menu {
  z-index: 1;
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 4px);
  padding-top: 8px;
  padding-bottom: 8px;

  border-radius: 4px;
  background: #f7f5f2;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.16);
}

.source-selector-menu.show {
  display: block;
}

.source-selector-menu-element {
  cursor: pointer;
  display: flex;
  padding: 16px 24px;
  align-items: start;
  color: #1a1918;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.show .source-selector-menu-element:first-of-type {
  font-weight: bold;
}

.source-selector-menu-element:hover {
  background-color: #f4efe8;
}

.input-group.prompt-input {
  position: relative;
  width: 100%;
}

.below-send-text {
  color: #8c8c8b;
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 10px;
}

.chat-footer {
  position: fixed;
  bottom: 0;
  left: max(25vw, 320px);
  padding-left: 48px;
  right: 0;
  padding-right: 48px;
  height: auto;
  background-color: #f7f5f2;
  display: flex;
  justify-content: center;
  padding-bottom: 24px;
  padding-top: 24px;
}

.chat-footer-content {
  position: relative;
  max-width: 864px;
  width: 100%;
  background-color: #f7f5f2;
}

.footer-bottom {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-info {
  color: #000;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.footer-links {
  color: #285ff5;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: block;
}
.footer-links a {
  color: #285ff5;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}

.input-group.prompt-input textarea {
  padding-right: 48px;

  border-radius: 0 8px 8px 0;
  border: 2px solid #e1dfdc;
  background: #fff;

  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */

  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.5rem;
}

.input-group.prompt-input textarea::placeholder {
  color: #8c8c8b;
  font-weight: 400;
}

.input-group.prompt-input textarea:focus-visible {
  outline: none;
}

.toasts-placeholder {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  pointer-events: none;
  z-index: 2;
}

.toast {
  height: 42px;
  padding-left: 24px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 24px;
  text-align: center;

  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

.toast.toast-error {
  background-color: #f52834;
  color: white;
}

.toast.toast-info {
  background-color: #00a739;
  color: white;
}

.left-menu-footer {
  position: absolute;
  bottom: 24px;
  left: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.left-menu-footer .button-secondary {
  border: 1px solid #e1dfdc;
}

.new-session-button {
  float: right;
  border-radius: 4px;
  border-width: 0;
  background-color: #285ff5;
  color: #ffffff;
  padding: 15px;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.upgrade-button {
  display: none;
  padding: 17px;
  border-radius: 4px;
  background: var(--neutrals-neutral-200, #f4efe8);
  color: var(--neutrals-black, #1a1918);
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 100%;
  border-width: 0;
  margin-bottom: 16px;
}

.upgrade-button.show {
  display: block;
  background: var(--neutrals-neutral-200, #f4efe8);
  color: var(--neutrals-black, #1a1918);
}

.question-wrapper {
  text-align: right;
  position: relative;
}

.question-wrapper img {
  position: absolute;
  bottom: 10px;
  right: 0;
  border-radius: 4px;
  border: 1px solid #e1dfdc;
}

.answer-wrapper {
  position: relative;
}

.answer-wrapper img {
  position: absolute;
  bottom: 10px;
  left: 0;
  border-radius: 4px;
  border: 1px solid #e1dfdc;
}

.question {
  display: inline-block;
  background-color: #f4efe8;
  color: #1a1918;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 14px;
  margin-bottom: 10px;
  margin-left: 36px;
  margin-right: 36px;
  max-width: calc(100% - 72px);
  overflow-wrap: break-word;
  border-radius: 4px;
  border: 1px solid #e1dfdc;
}

.answer {
  display: inline-block;
  background-color: #ffffff;
  color: #1a1918;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 14px;
  margin-bottom: 10px;
  margin-left: 36px;
  margin-right: 36px;
  max-width: calc(100% - 72px);
  overflow-wrap: break-word;
  border-radius: 4px;
  border: 1px solid #e1dfdc;
}

.answer a {
  text-decoration: underline !important;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
}

.welcome-info-demo,
.welcome-info-creative {
  display: none;
}

.welcome-info-demo.show,
.welcome-info-creative.show {
  display: inline-block;
}

.form-control {
  border-radius: 0;
  border-width: 0;
  position: relative;
}

.form-control ~ .suggestion {
  display: none;
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  right: 0;
  background: white;
  border: 2px solid #e1dfdc;
}
textarea:placeholder-shown.form-control:focus-visible ~ .suggestion {
  display: block;
}
textarea:placeholder-shown.form-control ~ .suggestion:hover {
  display: block;
}

.form-control ~ .suggestion .suggestion-element {
  display: flex;
  width: 100%;
  padding: 12px 8px 12px 16px;
  align-items: center;
  gap: 8px;

  color: #1a1918;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}

.form-control ~ .suggestion .suggestion-element:hover {
  background: #f4efe8;
  cursor: pointer;
}

.send-button {
  cursor: pointer;
  padding: 6px 12px;
  position: absolute !important;
  right: 2px;
  top: 2px;
  bottom: 2px;
  border-radius: 6px;
  border-width: 0;
  background: white;
  transition-duration: 0s;
}

.send-button:hover {
}

.send-button:hover .r {
  display: none;
}

.send-button:hover .h {
  display: inline;
  border-radius: 4px;
  background: #285ff5;
  padding: 4px;
  width: 30px;
  height: 30px;
}
.send-button .h {
  display: none;
}
.send-button .r {
  margin-right: 4px;
}

.send-button img {
  vertical-align: unset;
}

.send-tips {
  display: flex;
  align-items: center;
  gap: 8px;
}

.send-tips .send-tips-label {
  color: #1a1918;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 133.333% */
  white-space: nowrap;
}

.send-tips .send-tips-button {
  cursor: pointer;
  color: #1a1918;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 133.333% */
  padding: 4px 8px;

  border-radius: 4px;
  border: 1px solid #e1dfdc;
  background: #f4efe8;

  text-align: center;
}

.top-filter {
  z-index: 2;
  position: fixed;
  top: 12px;
  right: 12px;
}

.filter-button.button-secondary {
  border: 1px solid #e1dfdc;
  display: inline-flex;
  gap: 12px;
}

.filter-button-mobile {
  display: none;
}

.filter-menu {
  z-index: 2;
  width: 420px;
  display: none;
  position: fixed;
  right: 12px;
  top: 86px;
  padding: 0px;
  border-radius: 4px;
  background: #f7f5f2;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.16);
  bottom: 12px;
}

.filter-menu.show {
  display: block;
}

.filter-menu-close {
  cursor: pointer;
}

.filter-menu-header {
  background: #f7f5f2;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;

  padding: 20px;
  display: flex;
  align-items: start;
  gap: 10px;
  justify-content: space-between;
  color: #1a1918;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid #e1dfdc;
}
.filter-menu-body {
  background: #f7f5f2;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;

  overflow: scroll;
  max-height: calc(100% - 160px);
}

.selectable-trigger {
  cursor: pointer;
}

.selectable-selected .selectable-selected-hidden {
  display: none;
}

.selectable-unselected .selectable-unselected-hidden {
  display: none;
}

.wrappable-trigger {
  cursor: pointer;
}

.wrappable-wrapped .wrappable-wrapped-hidden {
  display: none;
}

.wrappable-unwrapped .wrappable-unwrapped-hidden {
  display: none;
}

.filter-menu-section {
  border-top: 1px solid #e1dfdc;
  border-bottom: 1px solid #e1dfdc;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.filter-menu-section > div:nth-child(2) {
  margin-top: -1em;
}

.filter-menu-section-header {
  display: flex;
  flex-direction: row;
  gap: 8px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.filter-menu-item-header {
  margin-left: 1em;
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.filter-menu-item-elements {
  margin-left: 1em;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-menu-item-elements::after {
  content: "";
  flex: auto;
}

.filter-menu-item-element {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: left;
}

.filter-menu-footer {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  background: #f7f5f2;
  padding: 20px;
  display: flex;
  align-items: start;
  gap: 10px;
  justify-content: space-between;
  color: #1a1918;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  white-space: nowrap;
  border-top: 1px solid #e1dfdc;
}

.filter-menu-element {
  cursor: pointer;
  display: flex;
  padding: 16px 24px;
  align-items: start;
  color: #1a1918;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.show-more,
.show-less {
  border-radius: 0;
}

.top-question {
  margin-top: 10px;
  margin-left: 36px;
}

.blinking-cursor {
  font-weight: 100;
  color: #2e3d48;
  -webkit-animation: 1s blink step-end infinite;
  -moz-animation: 1s blink step-end infinite;
  -ms-animation: 1s blink step-end infinite;
  -o-animation: 1s blink step-end infinite;
  animation: 1s blink step-end infinite;
}

@keyframes "blink" {
  from,
  to {
    color: transparent;
  }
  50% {
    color: black;
  }
}

@-moz-keyframes blink {
  from,
  to {
    color: transparent;
  }
  50% {
    color: black;
  }
}

@-webkit-keyframes "blink" {
  from,
  to {
    color: transparent;
  }
  50% {
    color: black;
  }
}

@-ms-keyframes "blink" {
  from,
  to {
    color: transparent;
  }
  50% {
    color: black;
  }
}

@-o-keyframes "blink" {
  from,
  to {
    color: transparent;
  }
  50% {
    color: black;
  }
}

.stop-button {
  z-index: -1;
  visibility: hidden;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -54px;

  width: fit-content;
  display: inline-flex;
  padding: 6px 16px;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  color: #1a1918;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.4px;
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid #e1dfdc;

  transition-property: bottom, visibility;
  transition-duration: 0.5s;
}

.generation-in-progress .stop-button {
  visibility: visible;
  bottom: 123px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.help-tiles {
  display: none;
  position: absolute;
  background: #f7f5f2;
  left: 0;
  bottom: calc(100% + 24px);
  right: 0;
  grid-template-columns: repeat(2, 2fr);
  grid-template-rows: repeat(2, 2fr);
  gap: 16px;
}

.help-tiles.visible {
  display: grid;
}

.help-tile {
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
  display: flex;
  background: #f7f5f2;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid #e1dfdc;
}

.help-tile:hover {
  background: #f4efe8;
}

.help-tile-label {
  color: #1a1918;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.help-tile-content {
  color: #726c65;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.4px; /* 160% */
  opacity: 0.87;
}

.mode-toggle {
  width: 100%;
  margin-bottom: 24px;
}

.mode-toggle .mode-toggle-bg {
  border-radius: 8px;
  width: 100%;
  justify-content: space-between;
  gap: 0;
}

.mode-toggle .mode-toggle-element {
  border-radius: 4px;
  padding-top: 7px;
  padding-bottom: 7px;
  width: 50%;
}

.mode-toggle .mode-toggle-help-wrapper img {
  display: block;
}

.mode-toggle .mode-toggle-help-wrapper .mode-toggle-info {
  left: calc(50% - 120px);
}

.result-wrapper {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #e1dfdc;
  background: #fff;
  position: relative;
}

.result-wrapper .result-heading {
  padding: 24px;
  padding-left: 96px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.result-wrapper .result-heading div.company-logo {
  position: absolute;
  left: 24px;
  top: 24px;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 8px;
  border: 1px solid #e1dfdc;
  background: white;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.result-wrapper .result-heading .company-logo img {
  width: 100%;
}

.result-wrapper.generic .result-heading {
  padding-left: 308px;
}

.result-wrapper.generic .result-body {
  padding-left: 24px;
}

.result-wrapper.generic .result-heading div.front-image {
  position: absolute;
  margin: auto;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 260px;
  height: 195px;
  flex-shrink: 0;
  border-radius: 8px;
  background: white;
  overflow: hidden;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.result-wrapper.generic .result-heading .front-image img {
  width: 100%;
  border-radius: 8px;
}

.result-wrapper.generic .top-media {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.result-wrapper.generic .top-media img {
  width: 100%;
}

.result-wrapper .result-heading .labels {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.result-wrapper .result-heading .labels .name-brand {
  color: #1a1918;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 133.333% */
}

.result-wrapper .result-heading .labels .agency {
  color: #8c8c8b;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 171.429% */
}

.result-wrapper .result-heading .tags {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;
}

.result-wrapper .result-heading .one-line-description {
  margin-top: 12px;
  color: #1a1918;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 171.429% */
}

.result-wrapper .result-heading .show-more,
.result-wrapper .result-heading .show-less {
  display: flex;
  gap: 8px;

  cursor: pointer;
  color: #285ff5;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
}

.result-wrapper .result-heading .show-more img,
.result-wrapper .result-heading .show-less img {
  width: 12px;
}

.result-wrapper .result-heading .tags .tag {
  color: #1a1918;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 171.429% */
}

.result-wrapper .result-body {
  padding: 24px;
  padding-left: 96px;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.result-wrapper .result-body .result-element {
  border-radius: 8px;
  border: 1px solid #e1dfdc;
  background: #fff;
}

.result-wrapper .result-body .result-element-heading {
  display: flex;
  gap: 16px;
  position: relative;

  color: #1a1918;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
  padding: 16px 24px;
  cursor: pointer;
}

.result-wrapper .result-body .result-element-heading.selected {
  border-radius: 8px 8px 0px 0px;
  background: #f4efe8;
}

.result-wrapper .result-body .result-element-heading img {
  position: absolute;
  right: 24px;
  top: 24px;
}

.result-wrapper .result-body .result-element-body {
  position: relative;
  color: #1a1918;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 171.429% */

  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 16px;
  padding-top: 16px;
}

.blurred {
  filter: blur(8px);
  -webkit-filter: blur(8px);
}

.paywall .result-heading,
.paywall .result-body,
.paywall .result-footer {
  filter: blur(4px);
  -webkit-filter: blur(4px);
  pointer-events: none;
}

.paywall-upgrade-button {
  display: none;
}

.paywall .paywall-upgrade-button {
  display: block;
  position: absolute;
  left: 20%;
  width: 60%;
  top: calc(50% - 32px);
  border: 1px solid #e1dfdc;
}

.paywall.subscription-active .paywall-upgrade-button {
  display: none;
}

.paywall-display-button {
  display: none;
}

.paywall.subscription-active .paywall-display-button {
  display: block;
  position: absolute;
  left: calc(50% - 33px);
  width: 66px;
  font-size: 24px;
  top: calc(50% - 32px);
  border: 1px solid #e1dfdc;
}

.result-wrapper .result-body .result-element-body .button-secondary {
  position: absolute;
  left: 20%;
  width: 60%;
  top: calc(50% - 32px);
  border: 1px solid #e1dfdc;
}

.result-wrapper .result-body .result-element-body-loader {
  display: none;
  color: #1a1918;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 171.429% */

  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 16px;
  padding-top: 16px;
}

.result-wrapper
  .result-body
  .result-element.loading
  .result-element-body-loader {
  display: block;
}

.result-wrapper.loader {
  display: flex;
  gap: 15px;
  padding: 24px;
  flex-direction: column;
}

.result-wrapper .result-footer {
  border-top: 1px solid #e1dfdc;
  padding: 12px;
  padding-right: 16px;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 12px;
}

.result-wrapper .result-footer .share-button img,
.result-wrapper .result-footer .share-collection-button img {
  height: 24px;
}

.result-wrapper .result-footer .share-button,
.result-wrapper .result-footer .share-collection-button {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.wrapped {
  display: none !important;
}

.flipped-arrow {
  transform: rotate(-180deg);
}

@keyframes placeHolderShimmer {
  0% {
    background-position: -30vw 0;
  }
  100% {
    background-position: 100vw 0;
  }
}

.c-animated-background {
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeHolderShimmer;
  animation-timing-function: ease-out;
  background: linear-gradient(to right, #eee 10%, #dddddd 50%, #fff 28%);
  width: 100%;
  position: relative;
  height: 24px;
  -webkit-backface-visibility: hidden;
  animation-direction: alternate;
}

.c-animated-background-delayed {
  animation-direction: alternate-reverse;
}

.no-items-found {
  margin-top: 100px;
  max-width: 704px;
  color: #1a1918;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.no-items-found .label {
  color: var(--Neutrals-Black, #1a1918);
  /* Headlines/Headline-L */
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 48px; /* 150% */
}

.free-badge {
  position: absolute;
  top: -12px;
  right: 24px;

  display: inline-flex;
  padding: 4px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: #e2e6f2;
  gap: 8px;
  padding-right: 8px;
  padding-left: 8px;
}

.free-badge div {
  color: #285ff5;
  font-family: "Proxima Nova";
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px; /* 133.333% */
  letter-spacing: 0.36px;
  text-transform: uppercase;
}

.a-player-wrapper {
  position: relative;
  margin-top: 10px;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
}

.a-player {
  width: 100%;
  height: 100%;
}

.award-shows-indicator {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  margin-right: 4px;
  padding: 4px 12px;
  background: #e2e6f2;
  color: #285ff5;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.36px;
  text-transform: uppercase;
  border-radius: 100px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.award-shows-indicator:hover {
  background: #d0d6e6;
}

.award-shows-indicator svg {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

.award-shows-info {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  padding: 20px;
  background: #fff;
  border: 1px solid #e1dfdc;
  border-radius: 8px;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.16);
  z-index: 10;
}

.award-shows-indicator.show .award-shows-info {
  display: block;
}

.award-shows-info h3 {
  margin: 0 0 12px 0;
  color: #1a1918;
  font-family: Inter;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.award-shows-info ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.award-shows-info ul li {
  text-align: left;
  color: #1a1918;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 4px;
}

.award-shows-info ul li:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .filter-button.button-secondary {
    display: none;
  }

  .filter-button-mobile {
    padding: 6px;
    display: flex;
    align-items: start;
    gap: 4px;
    justify-content: space-between;
    color: #1a1918;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    white-space: nowrap;
  }

  .filter-menu {
    z-index: 99999;
    top: 20px;
    left: 0;
    right: 0;
    width: 100%;
  }

  .show .filter-menu-background {
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
  }

  .prompt-input-wrapper {
    flex-direction: column;
  }

  .input-group.prompt-input textarea {
    padding-right: 48px;

    border-radius: 0 0 8px 8px;
  }

  .prompt-source-selector {
    border-radius: 8px 8px 0 0;

    border: 2px solid #e1dfdc;
    border-bottom: 0;
  }

  .source-selector-menu {
    z-index: 99999;
    position: fixed;
    left: 16px;
    right: 16px;
    top: 16px;
  }

  .show .source-selector-menu-background {
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
  }

  .show .source-selector-menu-element {
    padding: 24px;
    background: #f7f5f2;
    border-bottom: 2px solid #e1dfdc;
  }

  .show .source-selector-menu-element:first-of-type {
    border-radius: 4px 4px 0 0;
  }
  .show .source-selector-menu-element:last-of-type {
    border-radius: 0 0 4px 4px;
    border-bottom: 0;
  }

  .a-player-wrapper {
    margin: 16px;
    width: calc(100% - 32px);
  }

  .result-wrapper .result-body .video-result-element {
    border-radius: 0;
    border: none;
    border-top: 1px solid #e1dfdc;
  }

  .free-badge {
    width: fit-content;
    right: 0;
    left: 0;
    margin: auto;
  }

  .result-wrapper .result-body .result-element-body .button-secondary {
    left: 0;
    right: 0;
    margin: auto;
    width: fit-content;
    padding-left: 16px;
    padding-right: 16px;
    line-height: 60px;
    border-radius: 8px;
  }

  .result-wrapper .result-body .result-element-body .blurred {
    max-height: 122px;
    overflow: hidden;
  }
  /* .send-button {
    top: 1px;
    bottom: -2px;
  } */

  .send-button img {
    vertical-align: middle;
  }

  .left-menu {
    display: none;
    z-index: 100000;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
  }
  .left-menu .visible-part {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: #f7f5f2;
    width: 80%;
    border-right: 1px solid rgba(26, 25, 24, 0.1);
  }
  .all-conversations {
    padding: 24px;
  }
  .header {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .conversation-list {
    height: calc(100vh - 260px);
  }
  .conversation-element {
    font-size: 14px;
  }
  .containers-wrapper {
    margin-top: 70px;
    margin-left: 0;
    padding-bottom: 106px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .containers-wrapper .send-tips {
    flex-direction: column;
  }

  .centered-top-info {
    top: 8px;
    left: 60px;
    right: 40px;
    font-size: 14px;
    font-weight: 400;
  }

  .top-header {
    background: #ffffff;
    height: 60px;
    margin-left: 0;
  }

  .top-header.wrapped {
    display: block !important;
  }

  .top-header .left {
    display: none;
  }
  .top-header .right {
    display: none;
  }
  .menu-button {
    display: inline;
  }
  .new-session-button {
    font-size: 14px;
  }
  .closing-part {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    width: 20%;
  }

  .results-container {
    padding-bottom: 50px;
  }

  .results-container.extended {
    padding-bottom: 170px;
  }

  .generation-in-progress .results-container {
    padding-bottom: 100px;
  }

  .chat-footer {
    height: 134px;
    left: 0;
    right: 0;
    padding-left: 0;
    padding-right: 0;
    background: rgb(255 255 255);
  }

  .chat-footer-content {
    background-color: #ffffff;
  }
  /* .input-group.prompt-input {
    height: 56px;
    border-top: 1px solid rgba(26, 25, 24, 0.1);
  } */
  /* .input-group.prompt-input textarea {
    padding: 16px;
    padding-right: 48px;
    border-bottom: 1px solid rgba(26, 25, 24, 0.1);
  } */
  .footer-bottom {
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 3px;
  }
  .footer-info {
    font-size: 10px;
  }
  .footer-links {
    font-size: 10px;
  }
  .footer-links a {
    font-size: 10px;
  }

  .generation-in-progress .stop-button {
    bottom: 146px;
  }

  .help-tiles {
    gap: 10px;
    bottom: 100%;
    padding-bottom: 10px;
  }

  .help-tile {
    padding: 10px;
    align-items: center;
    text-align: center;
  }

  .help-tile-content {
    display: none;
  }

  .help-title-label {
    font-size: 14px;
  }

  .mode-toggle {
    bottom: -98px;
  }

  .result-wrapper .result-heading {
    padding: 16px;
  }

  .result-wrapper .result-heading div.company-logo {
    position: relative;
    top: 0;
    left: 0;
  }

  .result-wrapper.generic .result-heading {
    padding: 16px;
    padding-left: 16px;
  }

  .result-wrapper.generic .result-heading div.front-image {
    position: relative;
    top: 0;
    left: 0;
  }

  .result-wrapper.generic .result-body {
    padding-left: 0;
  }

  .result-wrapper .result-body {
    padding: 0;
    gap: 0;
  }
  .result-wrapper .result-body .result-element-heading {
    padding: 10px 16px;
  }

  .result-wrapper .result-body .result-element-heading.selected {
    border-radius: 0;
  }

  .result-wrapper .result-body .result-element-heading img {
    right: 22px;
    top: 20px;
  }

  .result-wrapper .result-body .result-element {
    border-radius: 0;
    border: none;
    border-top: 1px solid #e1dfdc;
  }
  .result-wrapper .result-body .result-footer {
    height: 8px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
  }

  .result-wrapper .result-body .result-element-body {
    padding: 16px;
  }

  .result-wrapper .result-heading .tags .tag {
    white-space: nowrap;
  }

  .award-shows-indicator {
    margin-left: 4px;
    margin-right: 4px;
    padding: 3px 8px;
    font-size: 11px;
  }

  .award-shows-info {
    /* width: calc(100vw - 32px); */
    left: 32px;
  }
}
