@charset "UTF-8";
/* stylelint-disable */
/* stylelint-enable */
:root {
  --grid-max-width: calc(1300px + 2 * var(--grid-padding));
  --grid-padding: 16px;
}
@media screen and (min-width: 1440px) {
  :root {
    --grid-padding: 40px;
  }
}

@keyframes loading-shimmer {
  from {
    transform: translateX(-400px);
  }
  to {
    transform: translateX(400px);
  }
}
.loading-placeholder-text,
.loading-placeholder-filler,
.loading-placeholder-cta {
  position: relative;
  overflow: hidden;
}
.loading-placeholder-text::after,
.loading-placeholder-filler::after,
.loading-placeholder-cta::after {
  content: "";
  position: absolute;
  inset: 0 -400px;
  background: linear-gradient(to right, var(--grey-light) 10%, transparent 50%, var(--grey-light) 100%);
  background-size: 800px;
  animation-name: loading-shimmer;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.loading-placeholder-text,
.loading-placeholder-cta {
  border-radius: var(--border-radius-medium);
}

.loading-placeholder-text {
  min-width: 20px;
  height: 16px;
}

.loading-placeholder-filler {
  position: absolute;
  inset: 0;
}

.loading-placeholder-cta {
  height: 48px;
}

.chat-hero {
  background-color: var(--black);
  margin-top: -70px;
  padding-top: 32px;
  padding-bottom: 20px;
}
@media screen and (min-width: 651px) {
  .chat-hero {
    padding-top: 56px;
    padding-bottom: 40px;
    margin-top: -94px;
  }
}

.chat-hero__grid-container {
  position: relative;
}

.chat-hero__title {
  font-size: var(--heading-bold-font-size);
  line-height: var(--heading-bold-line-height);
  font-family: var(--font-family-headlines);
  text-transform: var(--heading-text-transform);
  letter-spacing: var(--heading-bold-letter-spacing);
  background-image: linear-gradient(90deg, var(--iridescent-bold));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  margin-top: 32px;
  margin-bottom: 16px;
  max-width: 330px;
}
@media screen and (min-width: 651px) {
  .chat-hero__title {
    max-width: 460px;
  }
}
@media screen and (min-width: 1025px) {
  .chat-hero__title {
    max-width: 600px;
    margin-top: 48px;
  }
}
.chat-hero__title .inline-icon {
  fill: #FFE2C6;
}
@media screen and (min-width: 651px) {
  .chat-hero__title .inline-icon {
    height: 48px;
    width: 48px;
  }
}
@media screen and (min-width: 1025px) {
  .chat-hero__title .inline-icon {
    height: 60px;
    width: 60px;
  }
}

.chat-hero__subtitle {
  color: var(--factory-white);
  margin-top: 0;
  margin-bottom: 16px;
}

.chat-hero__avatar {
  background-image: url("/assets/www/pages/conversations/show/images/mat-4e715dda.png"), linear-gradient(0deg, var(--iridescent-bold));
  background-size: contain;
  border-radius: 50%;
  position: absolute;
  height: 100px;
  width: 100px;
  bottom: -40px;
  right: 16px;
}
@media screen and (min-width: 651px) {
  .chat-hero__avatar {
    right: 40px;
    height: 160px;
    width: 160px;
    bottom: -60px;
  }
}
@media screen and (min-width: 1025px) {
  .chat-hero__avatar {
    height: 272px;
    width: 272px;
    bottom: -88px;
  }
}

.conversation {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 32px;
  padding-bottom: 86px;
}

.message-form__container {
  background-color: var(--factory-white);
  border-top: 1px solid var(--border-colour);
  padding-top: 12px;
  padding-bottom: 12px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

.message-form {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.message-form__input {
  height: 48px;
  border-radius: 24px;
  padding-left: 20px;
  padding-right: 60px;
  width: 100%;
  box-shadow: 1px 1px 16px 0 rgb(var(--black-rgb), 10%);
  resize: none;
}
.message-form__input::-moz-placeholder {
  color: var(--grey-dark);
}
.message-form__input::placeholder {
  color: var(--grey-dark);
}

.message-form__submit {
  background-color: transparent;
  position: absolute;
  right: 6px;
  top: 0;
  border: 0;
  height: 100%;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.message-form__submit-icon {
  border-radius: 50%;
  background-color: var(--blue);
  padding: 8px;
  height: 36px;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.message-form__footer-container {
  width: 100%;
  text-align: center;
  padding-top: 12px;
}

.message-form__footer-text {
  font-size: var(--caption-font-size);
  line-height: var(--caption-line-height);
  color: var(--text-black-dim);
}

.message-form__footer-link {
  color: var(--text-black-dim);
  text-decoration: underline;
}

.message {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  max-width: 650px;
}
@media screen and (max-width: 650px) {
  .message {
    max-width: 90%;
  }
}

.messages > div:last-child > .message:last-child {
  margin-bottom: 32px;
}

.message__avatar {
  background-size: contain;
  border-radius: 50%;
  height: 48px;
  width: 48px;
  flex-shrink: 0;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .message__avatar {
    height: 64px;
    width: 64px;
  }
}

.message__avatar--mat {
  background-image: url("/assets/www/pages/conversations/show/images/mat-4e715dda.png"), linear-gradient(0deg, var(--iridescent-bold));
}

.message__bubble {
  border-radius: var(--border-radius-medium);
  padding: 12px 16px;
}

.message__text p {
  margin: 0;
}
.message__text ol,
.message__text ul {
  margin: 16px 0;
}
.message__text a {
  font-weight: var(--normal);
  text-decoration: underline;
}

.message--you .message__content {
  overflow-x: hidden;
}
@media screen and (min-width: 1025px) {
  .message--you .message__content {
    overflow-x: auto;
  }
}
.message--you .message__bubble {
  background-color: var(--black);
}
.message--you .message__text {
  background-image: linear-gradient(90deg, var(--iridescent-bold));
}
.message--you .message__text > * {
  mix-blend-mode: multiply;
  background: var(--black);
  color: var(--white);
}
.message--you .message__text a {
  color: var(--white);
  text-decoration: underline;
}
.message--you .message__text ol,
.message--you .message__text ul {
  margin: 0;
  padding: 16px 0;
}
.message--you .message__text ol {
  mix-blend-mode: unset;
}
.message--you .message__text h1,
.message--you .message__text h2,
.message--you .message__text h3,
.message--you .message__text h4 {
  margin: 0;
  padding-top: 24px;
}
.message--you .message__text hr {
  margin: 0;
}
.message--you .message__text ol > li {
  position: relative;
  padding: 16px;
  text-indent: 32px;
  z-index: 0;
}
.message--you .message__text ol > li::before {
  margin-left: 12px;
  text-indent: 0;
}
.message--you .message__text ol > li::after {
  content: "";
  background-color: var(--grey-dark);
  border-radius: var(--border-radius-medium);
  position: absolute;
  inset: 0;
  z-index: -1;
}
.message--you .message__text ol > li strong {
  margin-bottom: 4px;
}
.message--you .message__text ol ul {
  margin-bottom: 0;
}
.message--you .message__text ol li {
  margin-bottom: 16px;
}
.message--you .message__text ol li:last-of-type {
  margin-bottom: 0;
}
.message--you .message__text ol li,
.message--you .message__text ol li a {
  color: var(--white);
}
.message--you .message__text ul > li {
  padding-left: 16px;
  text-indent: 0;
  list-style-type: none;
}
.message--you .message__text ul > li:last-of-type {
  margin-bottom: 0;
}
.message--you .message__text ul > li::before {
  content: "•";
  color: var(--white);
  display: inline-block;
  width: 12px;
  margin-left: -12px;
}
.message--you .message__text ul > li:has(img)::before {
  display: none;
}

.message--me {
  margin-left: auto;
  justify-content: flex-end;
}
.message--me .message__content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.message--me .message__bubble {
  background-color: var(--white);
}
.message--me .message__text {
  color: var(--black);
}

.message__sound-control {
  border: 0;
  background-color: transparent;
  position: absolute;
  padding: 0;
  bottom: -24px;
  right: 0;
}
.message__sound-control:hover .message__sound-line {
  display: none;
}
.message__sound-control:hover .message__sound-pause-icon {
  display: block;
}

.message__audio {
  visibility: hidden;
  position: absolute;
  height: 0;
}

.message__sound-play-icon {
  display: none;
  border: 0;
  background: transparent;
  box-sizing: border-box;
  width: 0;
  height: 20px;
  border-color: transparent transparent transparent var(--black);
  transition: 100ms all ease;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  pointer-events: none;
}

.message__sound-pause-icon {
  display: none;
  box-sizing: border-box;
  width: 0;
  height: 16px;
  cursor: pointer;
  border-color: transparent transparent transparent var(--black);
  will-change: border-width;
  border-style: double;
  border-width: 0 0 0 12px;
  pointer-events: none;
}

.message__sound-control--off .message__sound-play-icon {
  display: block;
}
.message__sound-control--off .message__sound-line {
  display: none;
}
.message__sound-control--off:hover .message__sound-pause-icon {
  display: none;
}

.message__sound {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--blue);
  border-radius: 50%;
  height: 40px;
  width: 40px;
  position: relative;
  border: none;
}

.message__sound-line {
  height: 16px;
  width: 5px;
  margin: 0 2px;
  background: var(--black);
  display: inline-block;
  border-radius: 20px;
  animation: wavin 0.2s linear infinite alternate;
}
.message__sound-line:nth-child(3) {
  animation-delay: 0s;
}
.message__sound-line:nth-child(4) {
  animation: wavin-odd 0.3s ease-in infinite alternate;
  animation-delay: -0.5s;
}
.message__sound-line:nth-child(5) {
  animation-delay: -1s;
}

.message__rating {
  margin-top: 20px;
  display: inline-flex;
  justify-content: flex-end;
  gap: 15px;
  width: 100%;
}

@keyframes wavin {
  50% {
    height: 13px;
  }
  100% {
    height: 28px;
  }
}
@keyframes wavin-odd {
  33% {
    height: 27px;
  }
  100% {
    height: 18px;
  }
}
.suggestions {
  overflow-x: auto;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}
@media screen and (min-width: 1025px) {
  .suggestions {
    padding-right: 0;
  }
}

.suggestion__container {
  display: grid;
  gap: 12px;
  grid-auto-flow: column;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  overflow-x: auto;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.suggestion-card__text {
  font-size: var(--body-medium-font-size);
  line-height: var(--body-medium-line-height);
  font-weight: var(--normal);
}

.subsequent-suggestion-card {
  align-self: stretch;
  background: var(--sandy-footwell);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 90px;
  min-width: 239px;
  justify-content: center;
  padding: 12px;
  cursor: default;
  width: 270px;
}

.initial-suggestions {
  bottom: 0;
  display: flex;
  justify-content: center;
  padding-right: 32px;
  position: fixed;
  margin-bottom: 122px;
  overflow-x: auto;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .initial-suggestions {
    bottom: 0;
    left: 0;
    margin-bottom: 122px;
    padding-right: 0;
  }
}

.initial-suggestions__container {
  display: grid;
  gap: 12px;
  grid-auto-flow: column;
  grid-template-columns: repeat(auto-fit, minmax(239px, 1fr));
  overflow-x: auto;
}

.initial-suggestion-card {
  align-self: stretch;
  background: var(--sandy-footwell);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 90px;
  justify-content: center;
  padding: 12px;
  cursor: default;
  width: 239px;
}

.initial-suggestion-card__new-line {
  font-size: var(--body-medium-font-size);
  line-height: var(--body-medium-line-height);
  font-weight: var(--normal);
  margin: 0;
  padding: 0 12px;
}

.initial-suggestion-card__first-line {
  font-size: var(--body-medium-font-size);
  line-height: var(--body-medium-line-height);
  margin: 0;
  padding: 0 12px;
}

.body--grey {
  background-color: var(--factory-white);
}

@media screen and (max-width: 650px) {
  .main-nav__menu-utilities {
    display: none !important;
  }
}