/**
 * Swiper 12.1.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 18, 2026
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  -webkit-flex-direction: column;
          flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-flex;
  display: flex;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  -webkit-align-items: flex-start;
          align-items: flex-start;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}
.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
.swiper-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      -webkit-scroll-snap-type: x mandatory;
          -ms-scroll-snap-type: x mandatory;
              scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      -webkit-margin-start: var(--swiper-slides-offset-before);
              margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      -webkit-margin-end: var(--swiper-slides-offset-after);
              margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      -webkit-scroll-snap-type: y mandatory;
          -ms-scroll-snap-type: y mandatory;
              scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      -webkit-margin-before: var(--swiper-slides-offset-before);
              margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      -webkit-margin-after: var(--swiper-slides-offset-after);
              margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      -webkit-scroll-snap-type: none;
          -ms-scroll-snap-type: none;
              scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: '';
      -webkit-flex-shrink: 0;
              flex-shrink: 0;
      -webkit-order: 9999;
              order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      -webkit-margin-start: var(--swiper-centered-offset-before);
              margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      -webkit-margin-before: var(--swiper-centered-offset-before);
              margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    -webkit-animation: swiper-preloader-spin 1s infinite linear;
            animation: swiper-preloader-spin 1s infinite linear;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* Slide styles end */

.tf-v1-widget{width:100%;height:100%;position:relative}.tf-v1-widget iframe{width:100%;height:100%;border:none;overflow:hidden;border-radius:8px}.tf-v1-widget-close{display:none}.tf-v1-widget-iframe-overlay{width:100%;height:100%;border:none;overflow:hidden;border-radius:8px;position:absolute;top:0;left:0}.tf-v1-widget-fullscreen{position:fixed;top:0;left:0;right:0;bottom:0;z-index:10001;width:100% !important;height:100% !important;width:100vw !important;height:100vh !important;max-height:-webkit-fill-available;max-height:-moz-available;max-height:-ms-stretch;max-height:stretch}.tf-v1-widget-fullscreen .tf-v1-widget-close{display:block;position:absolute;font-size:32px;line-height:24px;width:24px;height:24px;text-align:center;cursor:pointer;opacity:0.75;transition:opacity 0.25s ease-in-out;text-decoration:none;color:#000;top:4px;right:6px;z-index:1}.tf-v1-widget-fullscreen .tf-v1-widget-close:hover{opacity:1}@media (min-width: 481px){.tf-v1-widget-fullscreen .tf-v1-widget-close{color:#fff !important}}.tf-v1-widget-fullscreen iframe{border-radius:0}

.U1\+\+qP59-HzS0DF5xzoV8A\=\= {
  --rdp-cell-size: 40px;
  --rdp-accent-color: #0000ff;
  --rdp-background-color: #e7edff;
  --rdp-accent-color-dark: #3003e1;
  --rdp-background-color-dark: #180270;
  --rdp-outline: 2px solid var(--rdp-accent-color); /* Outline border for focused elements */
  --rdp-outline-selected: 3px solid var(--rdp-accent-color); /* Outline border for focused _and_ selected elements */

  margin: 1em;
}

/* Hide elements for devices that are not screen readers */
.aAeox3tG-d4XZMQpb2VrJA\=\= {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  appearance: none;
  position: absolute !important;
  top: 0;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  border: 0 !important;
}

/* Buttons */
.AuHZFFd0iLnTLUAb3LyYTg\=\= {
  appearance: none;
  position: relative;
  margin: 0;
  padding: 0;
  cursor: default;
  color: inherit;
  background: none;
  font: inherit;

  -moz-appearance: none;
  -webkit-appearance: none;
}

.AuHZFFd0iLnTLUAb3LyYTg\=\=:focus-visible {
  /* Make sure to reset outline only when :focus-visible is supported */
  outline: none;
}

.mKJReaIrgw8djxj1mZPT4Q\=\= {
  border: 2px solid transparent;
}

.mKJReaIrgw8djxj1mZPT4Q\=\=[disabled]:not(.OhEvWe4ctPOa9xivv-rnxw\=\=) {
  opacity: 0.25;
}

.mKJReaIrgw8djxj1mZPT4Q\=\=:not([disabled]) {
  cursor: pointer;
}

.mKJReaIrgw8djxj1mZPT4Q\=\=:focus-visible:not([disabled]) {
  color: inherit;
  background-color: var(--rdp-background-color);
  border: var(--rdp-outline);
}

.mKJReaIrgw8djxj1mZPT4Q\=\=:hover:not([disabled]):not(.OhEvWe4ctPOa9xivv-rnxw\=\=) {
  background-color: var(--rdp-background-color);
}

.so0rqF1FelNwSIKDlXzgvQ\=\= {
  display: -webkit-flex;
  display: flex;
}

.VxHtxmCGwvyPp3vzYSgLfg\=\= {
  margin: 0 1em;
}

.VxHtxmCGwvyPp3vzYSgLfg\=\=:first-child {
  margin-left: 0;
}

.VxHtxmCGwvyPp3vzYSgLfg\=\=:last-child {
  margin-right: 0;
}

.oeWDV4mFMJEE5OjiJvxM5g\=\= {
  margin: 0;
  max-width: calc(var(--rdp-cell-size) * 7);
  border-collapse: collapse;
}

.ep3\+q4cpI4g\+i7kCd2MbpA\=\= .oeWDV4mFMJEE5OjiJvxM5g\=\= {
  max-width: calc(var(--rdp-cell-size) * 8);
  border-collapse: collapse;
}

._1JsXCGP7rorh5VsHt0kHCw\=\= {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  padding: 0;
  text-align: left;
}

._8CB3PLHNgHtOlBamFPfDOA\=\= ._1JsXCGP7rorh5VsHt0kHCw\=\= {
  position: relative;
  display: block;
  text-align: center;
}

.qCtk6iwS9RhFZY6Eyb16CQ\=\= {
  position: relative;
  display: -webkit-inline-flex;
  display: inline-flex;
}

.p6PK1B4DYAyaDL1rbOMo-w\=\= {
  position: relative;
  z-index: 1;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
          align-items: center;
  margin: 0;
  padding: 0 0.25em;
  white-space: nowrap;
  color: currentColor;
  border: 0;
  border: 2px solid transparent;
  font-family: inherit;
  font-size: 140%;
  font-weight: bold;
}

.gz5nALeCMydDwThDhNiFpw\=\= {
  white-space: nowrap;
}

._8CB3PLHNgHtOlBamFPfDOA\=\= .zNCn55I2gdAdHO9j4p\+fDw\=\= .gz5nALeCMydDwThDhNiFpw\=\= {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

._8CB3PLHNgHtOlBamFPfDOA\=\= .rKAwTdI3kkkkLqnBPq1C2g\=\= .gz5nALeCMydDwThDhNiFpw\=\= {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.EPOVmfnf6KcyFNfhM-fiZg\=\= {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  width: var(--rdp-cell-size);
  height: var(--rdp-cell-size);
  padding: 0.25em;
  border-radius: 100%;
}

/* ---------- */
/* Dropdowns  */
/* ---------- */

.T9HsEBqCmm9gYBilzjcZeg\=\=,
.ntCTlEI3PzJ\+wMNKX4fTSg\=\= {
  position: relative;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
          align-items: center;
}

.\+k50gIkPG9m9LIloHFkz0g\=\= {
  -webkit-appearance: none;
          appearance: none;
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  cursor: inherit;
  opacity: 0;
  border: none;
  background-color: transparent;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.\+k50gIkPG9m9LIloHFkz0g\=\=[disabled] {
  opacity: unset;
  color: unset;
}

.\+k50gIkPG9m9LIloHFkz0g\=\=:focus-visible:not([disabled]) + .p6PK1B4DYAyaDL1rbOMo-w\=\= {
  background-color: var(--rdp-background-color);
  border: var(--rdp-outline);
  border-radius: 6px;
}

._4WYYOimlpc8bdmQqMf9\+RA\=\= {
  margin: 0 0 0 5px;
}

.XgISI2Ix61TjA8G6c92jgA\=\= {
  border: 0;
}

.ug08kchqad7uZIKW1TrUeA\=\=,
.XZJoMyZIcitS0uPl-NuCUw\=\= {
  height: 100%;
}

.AMbDNr1gofxvcYIPghLz8A\=\= {
  vertical-align: middle;
  text-transform: uppercase;
  font-size: 0.75em;
  font-weight: 700;
  text-align: center;
  height: 100%;
  height: var(--rdp-cell-size);
  padding: 0;
}

._3eMF1pR8hZYwG9k1ZelkZw\=\= {
  border: 0;
}

.ZxVwvAjkWdWfJb2HbyPUzw\=\= {
  margin: 0.5em;
}

.ukapcculVsC0Bi6vxWjIMg\=\= {
  width: var(--rdp-cell-size);
  height: 100%;
  height: var(--rdp-cell-size);
  padding: 0;
  text-align: center;
}

.Z\+pmdX1SxHOWzLH5MdUF4g\=\= {
  font-size: 0.75em;
}

.Z\+pmdX1SxHOWzLH5MdUF4g\=\=,
.ttvlJTnzACjsHxob9JUrVA\=\= {
  display: -webkit-flex;
  display: flex;
  overflow: hidden;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  box-sizing: border-box;
  width: var(--rdp-cell-size);
  max-width: var(--rdp-cell-size);
  height: var(--rdp-cell-size);
  margin: 0;
  border: 2px solid transparent;
  border-radius: 100%;
}

.-IZqq7KxTsSGMSMLvKIm4Q\=\=:not(._61tS8N\+a0vT-lQ1Hgbe94w\=\=) {
  font-weight: bold;
}

.OhEvWe4ctPOa9xivv-rnxw\=\=,
.OhEvWe4ctPOa9xivv-rnxw\=\=:focus-visible,
.OhEvWe4ctPOa9xivv-rnxw\=\=:hover {
  color: white;
  opacity: 1;
  background-color: var(--rdp-accent-color);
}

.OhEvWe4ctPOa9xivv-rnxw\=\=:focus-visible {
  /* Since the background is the same use again the outline */
  outline: var(--rdp-outline);
  outline-offset: 2px;
  z-index: 1;
}

.U1\+\+qP59-HzS0DF5xzoV8A\=\=:not([dir='rtl']) .vB5MDZ2eGhrIJrr2thybyg\=\=:not(.HO9UG04A3K-fualBHqQzCw\=\=) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.U1\+\+qP59-HzS0DF5xzoV8A\=\=:not([dir='rtl']) .HO9UG04A3K-fualBHqQzCw\=\=:not(.vB5MDZ2eGhrIJrr2thybyg\=\=) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.U1\+\+qP59-HzS0DF5xzoV8A\=\=[dir='rtl'] .vB5MDZ2eGhrIJrr2thybyg\=\=:not(.HO9UG04A3K-fualBHqQzCw\=\=) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.U1\+\+qP59-HzS0DF5xzoV8A\=\=[dir='rtl'] .HO9UG04A3K-fualBHqQzCw\=\=:not(.vB5MDZ2eGhrIJrr2thybyg\=\=) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.HO9UG04A3K-fualBHqQzCw\=\=.vB5MDZ2eGhrIJrr2thybyg\=\= {
  border-radius: 100%;
}

.hPY44nxZfMjttH77b1ZgyA\=\= {
  border-radius: 0;
}

.advanced-cropper-line-wrapper--north, .advanced-cropper-line-wrapper--south {
  height: 12px;
  width: 100%; }

.advanced-cropper-line-wrapper--north {
  cursor: n-resize; }

.advanced-cropper-line-wrapper--south {
  cursor: s-resize; }

.advanced-cropper-line-wrapper--east, .advanced-cropper-line-wrapper--west {
  width: 12px;
  height: 100%; }

.advanced-cropper-line-wrapper--east {
  cursor: e-resize; }

.advanced-cropper-line-wrapper--west {
  cursor: w-resize; }

.advanced-cropper-line-wrapper--disabled {
  cursor: auto; }

.advanced-cropper-line-wrapper__content {
  position: absolute; }
  .advanced-cropper-line-wrapper__content--east, .advanced-cropper-line-wrapper__content--west {
    height: 100%; }
  .advanced-cropper-line-wrapper__content--north, .advanced-cropper-line-wrapper__content--south {
    width: 100%; }
  .advanced-cropper-line-wrapper__content--east {
    left: 50%;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); }
  .advanced-cropper-line-wrapper__content--west {
    right: 50%;
    -webkit-transform: translateX(100%);
            transform: translateX(100%); }
  .advanced-cropper-line-wrapper__content--north {
    top: 50%; }
  .advanced-cropper-line-wrapper__content--south {
    bottom: 50%; }

.advanced-cropper-handler-wrapper {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 30px;
  height: 30px; }
  .advanced-cropper-handler-wrapper__draggable {
    width: 100%;
    height: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: center;
            justify-content: center; }
  .advanced-cropper-handler-wrapper--west-north {
    cursor: nw-resize; }
  .advanced-cropper-handler-wrapper--north {
    cursor: n-resize; }
  .advanced-cropper-handler-wrapper--east-north {
    cursor: ne-resize; }
  .advanced-cropper-handler-wrapper--east {
    cursor: e-resize; }
  .advanced-cropper-handler-wrapper--east-south {
    cursor: se-resize; }
  .advanced-cropper-handler-wrapper--south {
    cursor: s-resize; }
  .advanced-cropper-handler-wrapper--west-south {
    cursor: sw-resize; }
  .advanced-cropper-handler-wrapper--west {
    cursor: w-resize; }
  .advanced-cropper-handler-wrapper--disabled {
    cursor: auto; }

.advanced-cropper-bounding-box {
  position: relative;
  height: 100%;
  width: 100%; }
  .advanced-cropper-bounding-box__handler-wrapper {
    position: absolute; }
    .advanced-cropper-bounding-box__handler-wrapper--east, .advanced-cropper-bounding-box__handler-wrapper--west {
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      height: 100%; }
    .advanced-cropper-bounding-box__handler-wrapper--south, .advanced-cropper-bounding-box__handler-wrapper--north {
      left: 50%;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
      width: 100%; }
    .advanced-cropper-bounding-box__handler-wrapper--west, .advanced-cropper-bounding-box__handler-wrapper--west-north, .advanced-cropper-bounding-box__handler-wrapper--west-south {
      left: 0; }
    .advanced-cropper-bounding-box__handler-wrapper--east, .advanced-cropper-bounding-box__handler-wrapper--east-north, .advanced-cropper-bounding-box__handler-wrapper--east-south {
      left: 100%; }
    .advanced-cropper-bounding-box__handler-wrapper--north, .advanced-cropper-bounding-box__handler-wrapper--west-north, .advanced-cropper-bounding-box__handler-wrapper--east-north {
      top: 0; }
    .advanced-cropper-bounding-box__handler-wrapper--south, .advanced-cropper-bounding-box__handler-wrapper--west-south, .advanced-cropper-bounding-box__handler-wrapper--east-south {
      top: 100%; }
  .advanced-cropper-bounding-box__handler {
    position: absolute; }
    .advanced-cropper-bounding-box__handler--west-north {
      left: 0;
      top: 0; }
    .advanced-cropper-bounding-box__handler--north {
      left: 50%;
      top: 0; }
    .advanced-cropper-bounding-box__handler--east-north {
      left: 100%;
      top: 0; }
    .advanced-cropper-bounding-box__handler--east {
      left: 100%;
      top: 50%; }
    .advanced-cropper-bounding-box__handler--east-south {
      left: 100%;
      top: 100%; }
    .advanced-cropper-bounding-box__handler--south {
      left: 50%;
      top: 100%; }
    .advanced-cropper-bounding-box__handler--west-south {
      left: 0;
      top: 100%; }
    .advanced-cropper-bounding-box__handler--west {
      left: 0;
      top: 50%; }
  .advanced-cropper-bounding-box__line {
    position: absolute; }
    .advanced-cropper-bounding-box__line--north, .advanced-cropper-bounding-box__line--south {
      left: 0;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%); }
    .advanced-cropper-bounding-box__line--north {
      top: 0; }
    .advanced-cropper-bounding-box__line--south {
      top: 100%; }
    .advanced-cropper-bounding-box__line--west, .advanced-cropper-bounding-box__line--east {
      top: 0;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%); }
    .advanced-cropper-bounding-box__line--west {
      left: 0; }
    .advanced-cropper-bounding-box__line--east {
      left: 100%; }

.advanced-cropper-artificial-transition {
  will-change: transform; }

.advanced-cropper-background-image {
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: absolute;
  -webkit-transform-origin: center;
          transform-origin: center;
  pointer-events: none;
  max-width: none !important; }

.advanced-cropper-canvas {
  display: none; }

.advanced-cropper-source {
  width: 1px;
  height: 1px;
  visibility: hidden;
  position: absolute;
  opacity: 0; }

.advanced-cropper-fade {
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column; }
  .advanced-cropper-fade--visible {
    opacity: 1;
    visibility: visible; }

.advanced-cropper-wrapper__fade {
  -webkit-flex-grow: 1;
          flex-grow: 1;
  min-height: 0; }

.advanced-cropper-stencil-grid {
  display: table;
  border-collapse: collapse;
  table-layout: fixed;
  opacity: 0;
  transition: opacity 0.3s; }
  .advanced-cropper-stencil-grid--visible {
    opacity: 1; }
  .advanced-cropper-stencil-grid__row {
    display: table-row; }
  .advanced-cropper-stencil-grid__cell {
    display: table-cell;
    width: 1%;
    height: 1%;
    border: currentColor solid 1px; }
    .advanced-cropper-stencil-grid__cell--top {
      border-top-color: transparent; }
    .advanced-cropper-stencil-grid__cell--left {
      border-left-color: transparent; }
    .advanced-cropper-stencil-grid__cell--right {
      border-right-color: transparent; }
    .advanced-cropper-stencil-grid__cell--bottom {
      border-bottom-color: transparent; }

.advanced-cropper-stencil-overlay {
  box-sizing: content-box;
  box-shadow: 0 0 0 1000px currentColor;
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-backface-visibility: hidden; }

.advanced-cropper-stencil-wrapper {
  will-change: transform; }

.advanced-cropper-boundary {
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  direction: ltr;
  position: relative; }
  .advanced-cropper-boundary__content {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0; }
  .advanced-cropper-boundary__stretcher {
    pointer-events: none;
    position: relative;
    max-width: 100%;
    max-height: 100%; }

.advanced-cropper-circle-stencil {
  position: absolute;
  height: 100%;
  width: 100%;
  box-sizing: content-box;
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d; }
  .advanced-cropper-circle-stencil__overlay {
    border-radius: 50%;
    overflow: hidden; }
  .advanced-cropper-circle-stencil__preview {
    border-radius: 50%; }
  .advanced-cropper-circle-stencil__draggable-area, .advanced-cropper-circle-stencil__overlay, .advanced-cropper-circle-stencil__preview, .advanced-cropper-circle-stencil__grid {
    position: absolute;
    height: 100%;
    width: 100%; }
  .advanced-cropper-circle-stencil--movable {
    cursor: move; }

.advanced-cropper-rectangle-stencil {
  position: absolute;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d; }
  .advanced-cropper-rectangle-stencil__draggable-area, .advanced-cropper-rectangle-stencil__overlay, .advanced-cropper-rectangle-stencil__preview, .advanced-cropper-rectangle-stencil__grid {
    position: absolute;
    height: 100%;
    width: 100%; }
  .advanced-cropper-rectangle-stencil--movable {
    cursor: move; }

.advanced-cropper-simple-line {
  background: none;
  border-width: 0; }
  .advanced-cropper-simple-line--south, .advanced-cropper-simple-line--north {
    height: 0;
    width: 100%; }
  .advanced-cropper-simple-line--east, .advanced-cropper-simple-line--west {
    height: 100%;
    width: 0; }
  .advanced-cropper-simple-line--east {
    border-right-width: 1px; }
  .advanced-cropper-simple-line--west {
    border-left-width: 1px; }
  .advanced-cropper-simple-line--south {
    border-bottom-width: 1px; }
  .advanced-cropper-simple-line--north {
    border-top-width: 1px; }

.advanced-cropper-simple-handler {
  display: block; }

.advanced-cropper-preview {
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column; }
  .advanced-cropper-preview__content {
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }
  .advanced-cropper-preview__image {
    display: none;
    pointer-events: none;
    position: absolute;
    -webkit-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-transform-origin: center;
            transform-origin: center;
    max-width: none !important; }
    .advanced-cropper-preview__image--visible {
      display: block; }
  .advanced-cropper-preview__boundary {
    -webkit-flex-grow: 1;
            flex-grow: 1;
    min-height: 0;
    min-width: 0; }

.cropper-preview-wrapper__fade {
  -webkit-flex-grow: 1;
          flex-grow: 1;
  min-height: 0;
  width: 100%; }

.advanced-cropper {
  overflow: hidden;
  max-height: 100%;
  background: black;
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  color: white; }
  .advanced-cropper__boundary {
    -webkit-flex-grow: 1;
            flex-grow: 1;
    min-height: 0;
    min-width: 0; }
  .advanced-cropper__wrapper, .advanced-cropper__background-wrapper {
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    position: absolute; }
  .advanced-cropper__stencil-wrapper {
    position: absolute; }
  .advanced-cropper * {
    box-sizing: border-box; }

.advanced-cropper-simple-handler {
  background: currentColor;
  height: 10px;
  width: 10px; }

.advanced-cropper-simple-line {
  transition: border 0.5s;
  border-color: rgba(255, 255, 255, 0.3);
  border-style: solid; }
  .advanced-cropper-simple-line--hover {
    border-color: white; }

.advanced-cropper-circle-stencil__preview {
  border: solid 2px rgba(255, 255, 255, 0.2); }

.advanced-cropper-stencil-overlay {
  color: rgba(0, 0, 0, 0.5); }

.advanced-cropper-stencil-grid {
  color: rgba(255, 255, 255, 0.4); }

/* figtree-latin-ext-400-normal */
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(data:font/woff2;base64,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) format('woff2'), url(data:font/woff;base64,d09GRgABAAAAACCUAA8AAAAAO7QAAQABAAAAAAAAAAAAAAAAAAAAAAAAAABHREVGAAABWAAAAK0AAAEYESsQjkdQT1MAAAIIAAADdAAAB0wqdBkJR1NVQgAABXwAAACjAAABEJtJjkZPUy8yAAAGIAAAAEwAAABgX/MbXFNUQVQAAAZsAAAAPQAAAEjnccweY21hcAAABqwAAAFKAAAB3LGJcOBnYXNwAAAH+AAAAAgAAAAIAAAAEGdseWYAAAgAAAARxgAAIfSzllQ8aGVhZAAAGcgAAAA2AAAANh/PVvFoaGVhAAAaAAAAAB4AAAAkBzEBqWhtdHgAABogAAAA/wAAArR17R5BbG9jYQAAGyAAAAFfAAABbPwEBHVtYXhwAAAcgAAAABwAAAAgAMMAfm5hbWUAABycAAABLgAAAog/qF8RcG9zdAAAHcwAAALGAAAFoC/6oEV42g3KA3IoQBQF0f62jdi2bdu2bdu27VK4wtzqmjN6POEpHwHgyVOdrXnCS63XvJMf+Ci/8F3+5I80xESaqSdYqCdYYSvtcZIuuEp3PKU3/jKIYBlKpIwmTiaQJFNIkxlky1wKZBHFspQKWUWtrKdFttEuO9UTuumTAwzLUcbkBFNyhgW5xLJcZVNusycPOJTHnMpz9YxLruQNt/KBB/lEwWv5QhP6R7+PPk8guwAAAHjabdADECQ7FIXhP5le27Zt27Zt27Zt27ZtG4Vn2zZO3er1Vuo7udPJ5HYHByQkPTGJUJCclMZXrlq7MWV7dxjcl7JEenUZ2JfCfToM7EXJPr369KI8AeC02xNd6tKeqMTHkRvIK+DC1CxeNvuDmj+OzFW9ndnKi0yE//4j8nTPWjs5cHl5kzddgPdJCcAddF2JYWvAf7+H80+Wv1m+Bzb/rOA19T/h/ItNQfBl8Gvwd/A9joDNbGUbe1VHfVrv4yCOKM/91k5pxwjm6TnBRTkqp+W63CWqcresl61yUI7jgrPEpCN16S39ZKgMlxEyUkbJPJkv2qkevaWfDJXhMkJGyiiZJ/MlIU3++4Om0kyaS0tpJa2ljbST9tJJOksX6SY9pKdMlEniiU05ymuuTi1lHeopm9AcR0va2Fe3V3aii7KbhqMHPZUTmaRczioirGGt0hMf3ZtGHOLiKUBBpU7XWkWqYj1Uq4cyPF0jqk7vrHqoRnRGaEQNT5/HfKJZjwD1UDoKiCei2vpYF/VQh0pUpgpV1aUGNdWpDnXVqQlNaUZz9WtFa/VsZ92GqssYxjLOOqmPuqxgJausjyczjqhAdGJpVh9ikoDEuq2kpCA+acmgX5k0kpNFIwXZyElKcpNPa3onMlKYojqnOKW1pjckt91CXruFQnYLxWhAI0rafZexG6lg912FjnShGt3oqb29GaC9gxhME7ujZgxnFM0Zw3ha2/u3ZwrT6MgM5tDFvqYnC1lKb7u7AfZNQ1jPRoYx0qf06V8rK7wgtxSU4r7sCyrD85Q1fevn1AffVFrzoo7P6S59/WAzEp4a/xpTQ7P9wlesBbM8nHfK5nDe/5yj/vQLLsILrofu+scveBNe8H7oU/+1GND8I5jf5d9nIoHEfE58SRpJbTLCU9lfI2+ocKTkK6qCKR/OtUMNn8Gxzt9W/uXvKX9xP+NcLqWeW/5ludTyBmi1od+E82usnuBVu0KWAy0LWP4Lyon+NI5DVk/WzWvVnky3PWP9epwf7361VT3RjpiqM9pqGcvElh1tNRUFVb8fGYrSTsurWml1Ba89/G3vfxWUmax+059Wprf6tp2QxL6lr73JYKvtW1hu9U+R9GjVTptt3ZPaf+9YZnBKHxO9Jxts/++Wx2w1meWXoJyhW1Xak2i252f38/8RSU6YeNoti4EGwlAUQM+9VegDBmASGMhkZobMhGyW9AMZwFpDf9FvpIBiP7iu5znO8a77LgIEbFixICYzCkPLQ3Vh3V0fPSdmbXsb2Hb3tiNxzSmBJSC2V0DYm5iRK65z1xkBWjdVSHJu6tD9zFCYJn+TmTuUmJSCIwrkbq+A4F+mmBlPa8+IGIPfRKRuEkOZ8zKENx/rl591NBQQD15F/ax/v3AenwB42mNgYRJinMDAysDA1MUUwcDA4A2hGeMYjBh1GJDAAgYGf2S+n7+fK8MBBkcFBeZt/9kYGJgvM9wDCk8GyTF+YdoDpBQYmAEFNwy/eNoNx7ENQFAYBsD7fgqhNYLFVEiUL7GGgQznXXciJoVVYVPPcbYUV9vvzGK0GlAZ81If/elfQPgB0TcFQAAAAHjafcsDjB0AEATQt1+1bdu2bdu2bdu23cZ2EdSNrTYuomuc88W6xUz0kEASVSVFUafiEzprKKWyQd5HlWgRbaJj9Ij+MTLGxaRYFMtif/xI1En0SEYylSxZ/1j9+/X/N2yYl0eREdWjdbSPztErBsXomBhTY2msju+JmgVGMllgDhaYrEKT9y5vkGImt2/O85w3OXf59YCfRwRob6rtdtrruIvue+q5dz744x+AP8gCaTMkTZMxU0mzlTZXGfOUMkc5C5S3UBVLVbZEVctUslgNK1W3Qi2r1bRKXevUsVZDGzSyUQP1bdLEVs1s18JOrezW0i6t7dHWPu0d0M5+HRzU2RGdHNbVMd2d0M1xPZ3Sx1m9ndHLaQNcMNRVg1023HVDXDHMNaPcMs49403y0BSPTfZIynR9nTPQRWPcMdJNo902wf18++hSPgAAAAEAAf//AA942p1ZB1gbRxaemTVSwAIi1GgSSIskRJGEhFjRRUcCYWEQJtg4xQ5u6W5pdweOv7v03pOr7uAcXG9O7/2Kneu99+ZyjdW9mV2thFF6rAX9O/Pe/8q8eTMggjYmxsgFnBFxSI2QSWvV2q1a60b8P7EN3yhePcs99b9QEzeIYGQ2PB4hx2BcDkJWp1XNYz/GnJV0xsSnYxPYPI7N4lf3YO7FF8mxxW4SF59AnDSLu5DNylsyjxP86mVzX9g1NZ2aj79z3XWJhCxjG3EgjBBIOoqOoPkM+Bw6mIYLCj6PjsEHLEjUkAWwoARZUkxUKoPe6GsQTCoVb3M4AvVCg8Attcoa1NlKsopyeYOtvtRSaP63YmRhky1Pm00as3MMVWX28mITsxojd+IkeYy8hKwIZTGhDQ1+n9FoUrsJb2MajX5fAyjNI3jvxofH1zy0oX3HuqKwvnfME97R0bkz4h3r0UeK1+7UTO7bunXfZO1wwF7VxoenR0f3hJ3dNXZhzAuWMj3MA2pm6SG0Bs1nwOfQiTR8t4LPouNp+HUKfgCvYh6bRIjsAY/lIBNCfi21waAHRzn9vjYSqAdr+MkTGx4YG3tgw/R0YKLH6eyZCEyTY+d9YtPUJyaGXIMbgsENgy7QwCQxRhqZ0ceY5jDgT5NjRIXyASfJ7yiPxkgXSNPJa01UK1Nq8Bv48OiJi6jmi06MztSv7XE4etbWzzzwAG7qxS2Sftz0J2BwBRD4Sy9CmHLAiyB7JbXFakj+P4k/IX4F14jH8QA5Fv3F4Mko4wtjGd9zZb570byCX6fgB1AiDRcUfB49Ah/QCTmnBZ3lS3XymdIujQg+O+dkZssSDsnZdhyyzfmO2QYK+IDfUKdSq1T44W37Jyf3bwtuHS/p0ncPu4Y/3N/3keHuLRYzPrqInZW3Q95t2bZv0h5yucv9peHp+OqZSKPfGwp3TnT1RJGcM8e5vWCxQV6V30MvKfjVCj4L+ALDg5Slgi/gJpSScy/Fldx7SYoWuVuKFpQkLa8F/8GHtIk74nF86yjuFJ8gx8Tv4NrFbpo5WfD4A4zXIRPLHLDVCh/IFJjL5sP3rHE6dXx8VBKCT/Xsgf96xJVUGj41NUUZMc1slRTLFrwmxRK+fR40cGwtaCfjtATQ8WABUEEOZGbjbTifWTYG377OckXCDwACuZL4K0IYyl8SB+wfTH5+oga9AHIKJfmZcyS+PDWARca8UCdO4nmQp0fIZHMTpyBVnQDI1ueR5ytavbaVIUNrbUVPzaiza1Rj4GsL7XavLdaBXxJNwmiwFKygUkgNi6dN9sYJtCDHZx2LD2NLizqP1drJYSxshag0bRLPtEF8juFu8TlxGvd3iP9mvgrSWSCtQsoC9C2UXJv/A2lZkjSrAQyNgGV3sVzrom/ZanRIdS4xST0pzzqt4EeAW7OkhUpT8AX0ONPCyVpyaYYIoEcwqOmq1HIT8SuvxBHxQkwiVbhX/Hl9OCD+J4prZG7kCMzKZtwwDQ3WTo7hT8fj4nrg+AbxwX4VWHyVMYKx3GbQXC0xRSPoaAZ8Dn0bcMaUylbwBcxL/khUM50GuqalyAUCoJaXCOhVROtoLDNZc3pWiOvjlEv0RHF3Ts64nxKRSeWvGga1bIX9AOpDPipbUiFYXXXSjKh3OJKVAn/s4kfH1zx88cWPjI09tHHgqo7O7YMDOzo7d2nW7d+6bd86uh/tXxeFnWhkJhyeGRmdDtMIMR0sQl5mx2H0F8hpTsYFppt/d+1cwGp4Wwbb8e63J0EeC4flHasH/KZFJckdSw8VT63jORtsIQAwhbBv/ap7S3NI0GjmJj+dfc7eRxwt9pHO28ixhguuv6BElSX+COvEP+ML+VZny4Acvx5mn1/OwDNoPgM+h3ZRnMUVeCj4Avo+i6sf/OGHWNRQXyhrEhg5nW7YUeXCzRwC/jCZJDfh1qaJzqqc4fy1ncPrVndFPas81+3o2dieG9NNhLpWtfmiU5cGL9UU1QplpTUdoUBdq1av8YT952+r7aks9TV2BL1+ja7w8pCwNkCjxVgw1oKcpTo0nwGfQ3ehecbazVh3sQimkRYczvdqBARBzX7BZp27TJ/P5xWY7U5TaVHtu1rWUB89x17m+XaO1qvOyzMWFakETq15D8YWF2N9rqfYGVBs263YNovulG0OUtsUfAH9WFqBMN4INjvOspnnA4JkGixG2VbZsD5dp7k621be3NoTaj2ib/M1NcW3bOqcaC740tj5WzW6kjZVYVdzU3vkeUNZS8PiaWIenqgMmt5Sbxyb3AI6aS0lZtZjQ+7ysBZ47R9+Sgp+Si6PRhfvopFjI1iE2uQIbWZWrAQrYKaCL6AvMitGEn8nVyTriMPBan/aNgCpdf6qa7rjntEGAR7d1+d37R7Cz4qt8M0TF+hvQ7u7QD6Tw/R2yLv919B8Bvwwei0NFxR8nuKMTxPjU5uZDyQJ7U/0gCzd95bytJkqCjT5ucVwYNEUal0GR1NZfq7BnYF8s6u0oKDQXVOsymrMyTZWmsvNhcZ8pDC8T2H4GPoWY5iNEPdlYKiBGHB+nY7+43iO++lb8c/Ojh5aiH9/7WcOQYF9ioQWnyMtUPkbFl8BeWweNwXy+uQ19SU0q+BXKfgs9qXhuxR8Pw6l4ZsU/CD6A5qVeJER4HUO7YcYMU6LV/z3omefu/C/2I4fEJ/EHeIW8YfUNjaW6RyUc30azSr4LgXfj+5IwzdJONPZyHR6AF8t73wBbKXF2Wrw4K+JEVIu9uEvD5HyoaHFnw1RnWwsy4SYbL8RzWfA59B9afh1Cn4A57Mzhwu6lhcIQmbkoqc0SAebg9YUv8PJlp3a2UboolNzTlZfpOTB13IqtXthw8Vrb+Wyc4O1rmZdv66h39271o3x0HW9zU311SG+Kzu7dbh/cNhe4qi0VpTy/hJh2yrx7791Vztr7T0eYMW0s3U0CqxU6OhqlAGdi6XQGxV0fgox/jX4+8Dfi1qkHGf5+052pPV5XLpJ99L+rsj6DoYpraA/aeFx1v+VFoYyW5rqE/E3ZKMRwswSkfk8fYdmJVw5QDB+2B65KtR+Vbj/KktYP1hXN1BdHa2ri+rDlqs0Xbui0V1dnS3WylpvXBDiXl+tNdQv+0lk3juP+enQv1AGdG53Cn1JQWd3ptDXGCp10n9HSMoVsoJ1uDY5V3iFvslogopCGwy5vwAr8FdXmHhve9dUY+NUV7uXN8V+W9PtdHbXesJVVZG4s8jauTs6tKvTWujEpYvdrd6xy8a87CGzIJ9ijNdL3SbJUljEgEUpqkIIB/zJU8cyPgFuKRv9p2KDg4NnUXogjRER2nt72xdfXsLsAVGVxkvWzxGECpMdVrLBshpNcuTyCGdN5p0KW8NXtLdf3t87FRR3czrDkC8Q1vfo2uMncC05VxeqcoWNOgjnw7u6eq4frbNX1/pcvLOpHDfZzbzDYTPLvuCYLy6UorcdKehrDJXi9GeUwm9U8Hl0s+y5JqIF5m7U+HbMVWp/HsmwH7yrPQVmXGQ5e4twvPEOJtpLjZ6zdgqNYrO0skkWsK1A9RJbp2AhbKkGlkWa7a3c2b11nneVoLHkejvs3mh1YYUnGXZPRWEsdIVQ0+1wdkHkXVXh4zrTOR1qQ75zpCPgLCoPbY8Mbg+VFzlHxZaxHU3Y7B0RAiMez0hAGGG5ybixeExJdWtbCn1JQWc3IcTJ6MvMjuAHs0Sn5oX3Yc0tjecNvR+LyPTevSn+r0n8WT79knU1vfA4AyvOKJ0WGwSWNWrakMmtWW/MUFbT1jReh2N8i6MzDCfRv/AGi2dqRPwdRpEh82RcXARJSJZkQUibXLmGDPJ4kHjw4FKZMWl53rZMLhHglP8MlczdCdy3SXtw4il2rzEA3x7BJ5O3CAMxfFLUwPh/An6KrZHLWKy++BOESOLfiRq0QF5DJsRL4zNdCuikncVHm9CB2Nn3A5V6i0VvMJupnuUXlpvZO4PeQv3dmXDhz5M3EOMAzwOdlPlV6HeIcnk14UKvwtuVqAihdJ2cfEKVWsoHmT6LZa+90VJozemODZItFr3RbDbqLf97qrgrO2cNqVo8PjSMEGYynwJv5CJkWiLFpcz+btqURILOwJ0sp7dLOf2HZEb8KnUbIfjhxOdUG3pjJy7+xpsbPh2B+Md/+bJ44p+xfWBnbyJIR4OMnXK3/FAyr9D9yg0PhFy64WF1XcV6mN3y6a+L9TBUaz2TI+FH0IOs3hUnguiTCq5CC3lUuhYe2Yxj2u0DnElHYvF4DJP+ShwRf+LqqxI/i6uTNp0mSM5yU6YsH1hBU7J5DaSkjaYkPhlZlo0yz9OMz/XSDvxHlAGd24pk34BWCWW++bLkm4SLsSlPu5FILY90fnoVXm9nlxPdjFQsxVIOJm6QuaX4LkA+yHtZCUHv8a6CD18Zar+yP3Jle/sVYV+kunrQx1oSuReRnhHvaDA46oWnEFf28RJm94x8ZrkFpfAbFXye4nIc+vBplMviwKqDgTKA/LDUehtqhuvxyYlaU+GAubNR/HPSs31Mw145X3ZRDYmTgEcUHDx+ko6uA4+DfAVdsCd7sqMEoWq6Mhzph27Y9zIcsi2EuuiUsFrQ9Gq7XZ6Qx+3tHpxcV9Nfr+nNbal211dX+eo6bd7VGmtDudlWZbeVOTS5BWF336piT3mZzeLk9fzKXI2nxVbbyQMvxoCxvVHKmtdRBnRuUGLrZmw7GdulNwTvlbxyQ/BW2gVBYbHR9W4WuRye7KX3A8EV2ee+u5FarXw9kLLrJcWu2YiEBgFFEspWw30sJwpg9DpyJzKxLA1oeaXtU3oVTMKxNWti99/vsmtMurLiKs1gD67se/TRPvFnDpc6r0MLCUWYpN3kWyCp5O1l0T+WLZPn9I12LpdJmvbtA+YgN0gZAvPbpazaTnk3grbfQb01pvfLyiGc/oY/vsJgqWlvGvfGbK2OjnCMrdBNq3FhglaU9aOYo/uVJInlwV1Sx3EpktGEgtK1NY2QMvpGBZ+na4zxqcGLwMeVdlbKyCt948NfZSej8qVElY1POQT1ZWCe2gEVVr9RWD2GPspY5SDEqYCVBrzEcbxyDUA0N+wdnh3eszc2c8PwLL5Z3AWb6rX4o+KH8A2ihtrJZjL7H5DWzPoU+pKEsvP4D1EKf03B96M/pOGPK/hBdA/lxf6CSXnp01eZIDB+XB7ZrvOVWkx8Tgmv4b8Xnz089jedq+l4vqYrJ8dcMoL/KW7F9y++UBOyUR1MFuP0qJTv56XQxxX0oJbqrYXHE6B3yT1ALXaK38d3iN/DVSF8WW+beGcvlcDGMg98UvLAK5nQuf4U+hpDpf7uGWZnETxekHdznTpgcvrVgsGpe3Hl176WvSr7K1/JwV/OHsh+/XV4iBFEoG5fggfIazDeBDPTOhNr2u+4RF9aqoePeEpnNuvgF3IJ+6HXmRkOH9CNyGa0kcla0uP45C4qrWHCaJo04/XkcfZ3BaffhMmeqatJ85491IbfwrtnpV5CB6v3tzs3zZDmmRlEEIY3H2Zv1NI7K3y+tGHqMvHvF226jA6CYSDBSHToUfKNpARjXbyT6A4fhjeE9OI15CWkgjdOaMX9psTqkfFrNlxDemMxUA9WgI4xcoyNAGYw/ZprJoaHJ64B8SMjM2xEPaZ3O/nMTkfAz4oN/FCpZuuiNdF6V6U/WjVI6vk2Z1llZZmzjQfuXlKL/kZ+A7NMMG/Z/hyo520G/V3FNSUl1SXFNUVFNcUVFXZSW1RVVFxVVFRVDL800E2A2ncpacCfI0+gQhoz9rdKNU/vRNhRRPDDOo+aK0z63HO1WR1cUa251FZoyNeey4WyfKTBWGrUGko8pfBTX1DZRnvJRdKOPeRG6i8OUpTDPtIeDlNNGujH7ko8R99QV2jcazpeuvVW+uYo7FuXg5cMy262k5e6mrTNyBJYuXSf6dUUSxsIRnbo1H+EctjaZH5hpcqglPAHoGY1OzqgSGm1qSoVKslJVSTaI4KUnyIHMipSwBN5JCXmTjjIWhrsBWln2+P0sNrk08Hp1WiUjq8gyQDeMEne0IE3DJgwb/wfDWOZJAAAAAEAAAACAEL7aapUXw889QADA+gAAAAA3I01aAAAAADgsd2m/8L/KQO2A5UAAAAGAAIAAAAAAAB42mNgZGBg3vafDUge+H/ony3zNqAIKlgKAJruBt4AAHjabcwBRwRBHEDx959V3VV1XRQdQYk22koggDpLHaQINJAEBAECBX2TgNBHSAUECoEgpCMsWhSuaRq3ud0d/DzgqXsO1SVVr0eikmu0k7DpbKNLvohKErTVZ2mpoYO6657UTGJbUwEDzgHaqTgbrg5B0I8uqRBl1Ak654hVryZazTP0745dn+CGapHaLzhnqZf8EEonT017bPWYsWYLWh4RsYWKzC1tWrTNp/UtKesyYh5Edb0R/+HFWei2IQ3q7lHUJMzIDrE4JrVdkSdCefY4ZVwuLFsVseYTjDFYpEapZuSDxZxXpsCkwBnvCJMoAJY5Nh2GuWKOOhO/tRJ+RwB42gXBA5BYMRQAwBg/eKlt27btQW13WNu2bdu2bduj2jjvIoRSoaKoOWqPeqOBaBt6hT6iv5hiwCVxVVwXD8TT8WK8Hu/Gb0kmko+UItVII9KNTCULyVqykxwlF8kXmoxmomVpTdqCdqB96CA6l26m++lpep3+YDlZUdaTzWer2XZ2mMVyyVPwAXwMn8Ev8cf8Pf8mUoqsoqAoK0aIKWKD2CNOiCvigfgo/koqQeaSxWQlWU9OlvPkSrlFUVVcVVJ1VQvVQS1Ua9VbnVHn0SV0Fb1Qv9dfdUzUJGoTjY52REeiC9FtI01qU9W0Ml3NMDPJzDOrzDZz0Nw0P02C1TaVrWuH2ol2rt1mD9mz9obzLp3L6Sa42W65O+M+u38+k8/rS/qqfpSf5jf7ff6Uv+Yf+XhQkALyQUmoAg2gC0yBVbADjsJNeAafID6kDZVD99AvjA4bwuXwOcQkASokYB0AeNpjYGRgYNjKYMHAwuDCwAbmIQAzAyMAH0sBQnjajZCFTURREEXPKk4BxIji7u7u7s664lAIWgF1UAEFUABlcPNZ9zyZMz4ZoJwXLJisJeJPiLCJKmn/bKaSrwhbGOY7wlbqTZURttFv6o2wnVrTdYQr6TZ9/LPJTLnpO8LWeE1Tqew/ES6j1PTLBCHCPHGNBxdubqmmnVa9dtGmLA7JacN7qyiHoa+KQnjFF0bGGHeSbkKy30ivFd/qhKX106LjUgVFKO6cZmWFCMjqMPr6uNRzENRxiJ/kcSZ1rEubYDE27zoO0R1+zuRtp5lWnTYGWGZFb0qUnB3PbUrOzt5FnBy5bcx+I3+IINVJfV04lRHS8SviQNZm+vQ6REeFzpK6QckLtC1ZbsXNRm+/ZEhWl/wrqrzIDo5YxTm9M/zSL1RbG5cW/AOnUGP1AAB42mzB00EFAABA0Xuzbdv1bFsrtkZfTdAEfeeaIGOBzqELAH7PCfOfC2CHK7vstsde9vjm1z772XfAQV44cMhhRxzliDfHHHeCYyed4sRpPpxxllPnOHOegAsuusQtIZddcdU1wq67QcxNt9wm7g73fLrrnvskPPCQpEcee+KpZ6QNGDRkmKwRLo2SM8ajcaomTJoyTZ0fMWOWhjmlad6CRUu0ebdsxSoda9a5tmHTFn8EwYMVAwEARMH95QVnK7at55QaFhHOGJSpyKQqCwMTS1c52Di4eHLxCRQQEhErJNFdb1IyReQUiqlRp0GTllLadOjSU06fgQqGejLSmTETpsyYs2DJijUbtuzYc+DIib+q2RwBZZEFb8MwEIWHl4K2fzIqV1gaM4PQdb3UW2pLbrxs+/MD36kOiF5y8J5839iIDxFYJXf3hqOgP2PcaBX0daiVeK8OuTTczl4j8VkZTnTMOBcqhhFnf1N/YjSLYd/9VfYX/WCfbPbJ5tDbYFStVjlcjK8djZmpHvmZleOT4JgsjsniJG9Rb8EZ4zYWcObyqTqAC6xepKqN5uq+Cjcup1aFzNhZxGwcXGIC3OD8TWq+2YJbV63e5mJre51/3dvv7sMdbmC5D/fulBv3mZB7esY9PmP93kgVwiOaP3rz8uNECiPmcg6PoWEfovrsm/DsSvDi1iovHgRL49sPGKUxOhpP4eN+a4L4BHITnpugfUH7YYFbvRJ6btN/btPUjKR9ifsr8g2vU29X3wr82hDh5aM0vyEorKo0v9aq+OOnM6fVxM/gvEnza8McTzwv8OtCnOY2AIvcbMbc0ksscbOOW4KmSYpbsuCWILevFLcv5PaN3L79of+z67sd0nbZzXE9G5fd6P8X9QZV1OE2i2Kq1UiHpC3SfjmW0SS93UCttUjbpJ0q6b/rJs1uK2aMTn4BMzuf3gAA) format('woff');
  unicode-range: U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

/* figtree-latin-400-normal */
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(https://cdn-web.disco.co/figtree-latin-400-normal.woff2) format('woff2'), url(https://cdn-web.disco.co/figtree-latin-400-normal.woff) format('woff');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
/* figtree-latin-ext-500-normal */
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url(data:font/woff2;base64,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) format('woff2'), url(data:font/woff;base64,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) format('woff');
  unicode-range: U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

/* figtree-latin-500-normal */
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url(https://cdn-web.disco.co/figtree-latin-500-normal.woff2) format('woff2'), url(https://cdn-web.disco.co/figtree-latin-500-normal.woff) format('woff');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
/* figtree-latin-ext-600-normal */
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url(data:font/woff2;base64,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) format('woff2'), url(data:font/woff;base64,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) format('woff');
  unicode-range: U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

/* figtree-latin-600-normal */
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url(https://cdn-web.disco.co/figtree-latin-600-normal.woff2) format('woff2'), url(https://cdn-web.disco.co/figtree-latin-600-normal.woff) format('woff');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
/* figtree-latin-ext-700-normal */
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url(data:font/woff2;base64,d09GMgABAAAAABgAABAAAAAAODgAABegAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGoIcG45AHIIQBmA/U1RBVEQAg1wRCAq9BLF5C4JsAAE2AiQDhTQEIAWEcAeLIAwHGzEwsxEVbBwA0LTyKooyyRle9n854MYQqaHVLxzCJoFCiLq2Mh2NpkSkxMBxPXsaA4b992UtYnmw3NjDwof5+y9dJwrl6jlujkmlfNlw7QhJZoni/fv/r561z6NDCB9CZKSKrOhHUkQhAqO7f57f5p/7QESwEhCJMhCbGBZGgUMm6gSHgbNr4RS36SJd66LCpz/K6dbGr8WP3t8PFy31zx/8Zs/7BCEnXKYZx3Z9c69KP1vvK243Jh7Zk/W4TW3ceby4hKR/P6fKRpZAbVUBgBK8AP1g0U0Ys/Mo9HRuzdSZnwbKDTnRaZXCGM6o6ZlEch8M+48/Ci0tI9402JltIzRDN3ZDMjRjBh7+x21Mk4vb0O2eMsS4O+a5wj/Y7r+iB1GI5zbYnP/TWbb++p4lH+lJR6D3oiD08m4Vln3VXhWgmiXZc9Z4PCYte4m8B0Rywt4wdlgBcnnvqlDTh9u06VJ0BRd1l7+/lRdlkRZYag87LsGy6xJPJJHjtleYFX3AtaV2fG3Hd/zyZV0bsuXBwvrEqrVfa9bXayZmaspJLLbYg6xi2OTtp1P8L0FgRABMAggEjIBYOeCQw045DSOCkCBkVIgde4gTV4g7LwgTG8LFhfDxIUJ+kAASSLAQSJgIiIwSEi0GopIISZYG0ZgLyTAPopcDyZUHMcmHFCqGlCiHVKqDNGiENGuGtOqALNYJ6dIN6bEC0msNZJ31kI22QLbZCRkwCNljH+SAAwgOOYzglNMIzjmHAAGjiKTDdtxZnQn2pxzZWA32iIB+VgMCQzj52Ppq+J5LN9B+K0wjuBqdI6LvDrRuhBkZiSOEAkQ8DiSQLSLHj+WzBAWKFfYF5GE9gBDjX7QC3QkCR8EhcPCl7dtAMhEEyD94p2oiWEcEW+3PvTkikgKgdQA1FPl//R/xBJwn9dMea9+C+qC2t4yvwHPKE7s0+RWo6x5yd/RbN6hsA+JaDZeTC/1nI/KsaoysBuSEKEeV8fiAHDxp30qtAtMrHsDWxo2w2rgU5iszizbZFdQ1joyIWujd9LwAqd/h1UyYIL8tJZ7mmZ2WfXvgJFPLCkCieT4BvuSnLbItUCSWly8heU21bmekjimxI7A8gyZ5HPDuxGLAJ3wjpCZcL/fuuIgm/ApC3vFIiba4tuJYXYP8CUlPvOI683w75ylJ6lVeWLwvkVvyfMKyHfBsUFzjJ7nbOW8jTfUdSPaYvHJKuIjFTUcMljq9GgUr5gKG94mGgCSkoC06oit6ohfSkIkc5KEQAzAQQ1GKCozEWEzAJEzDuajHbMxBI+ZjIRZjOVZiHTbxlhKxjQKrYSnM12ZCaCtOArGlYbjVUooPeYIP/aTPlH1xDoYMSysKTA4iyCgYYYMIoP9f8z8Jn8C/CdDEOCVeAn9tj+BP0j5EVo3gRNaJ5boqceIlSLTFFKnSLEu3Rb0s2VTMZWCkNzMpYtaszWJLLI2WE58Vt9luh52RKWBs5TjWMIhdFtbTkCIoYWWgPUosxkgoEmAcIawC5diYY2NOaHzEkJAhCMsmJGHutVrJ2n6CRE6g3FoeidYoI85fPejUS5aMCSFCTNqsQ1FIp5JODZ1mOq102ui00+mgs47OejoWmMEMZjCDGcxgBjOYLTmoM/1dWZANOZALBjBCHpggH4rADMVQAmVQDl3QHe87JyarJiFvJoLttY+ahfY9V8Pi2I9CZeqcSf8KefF29NFVtcD6qSmqBNqRu9o5AUhcFgzIcH5gm0Z9YA8SjDSMwioBBl6vLejVziFtiDHKoRXGWTQBxt0MGEMMABDbUmMr0QFw9C7haMyQ5efYS2ohaPxRahHLuXBWoC5dDrCHfvgcJqQAm9PeCPbh/KHr+wT2iP2aSbh0A6C97yFwHSB/Fw7MRIDKUABTjoG5G5x+fGkjwgB+AXgDRAHEFZGlYaECiOwLMlyCc+LN3eEkgf2VZxRYjYXIWaxP4hJh/BMUaaKSHE0yUpDiLMmt0UvaEIFIIDMvYA4yZ1is2c/48wCaFr8EJiTyxCY12mTGnPLcnGclA6HB2dL/E+6/39nNXhra8v2h98ff7wL49gaAb84DBLBcpmatFlluvcFPr00+9qk/PQF7V8Cff4IHshHokeQgy0VhRJXHhoEdE3v5XJg5K+KqmJNCHkq5K+GlnKcyDFXoKrHUYKvlg6kOVyO+ZkKtfLUTaeOnQ4DFAi0ltoREpxDdgnUJ0yPCCuGWk+k1x2oKq8j1ibZOvM1UNkq0RZxNEvRLsZ3GgHQZ9phnH529iLIorRFjvTQ7Jdsm1Q5zDUJQ/40HeBCQk4CrwOARMPwdMHgDtIsBCgGxR7MspCqr3VFDKZGXzCimKHzOHOOWEqRpUh66TwSxXfZoKrxkQxnYuKwuuBNTSEi4llegjNG1RUmNEp8aHGmBjUrQNt0Nujmj7Yi205YzuGFu4pJMD8We4qhcYkCniBeQ3YsU1+lMK4ctLTSqq7aNzdxZtdva26dwrQ5sHFnPUyjEgAl2omO19fCAQiLZfuNLG9b7NyF7dUT3qR5E/buOtlfaqc0Jx/4ZB89KyWc5BdhlnppCaXqaWiYng+2pe1OUPDEBUR+YWqbvS9yZPLVlzkJc8xT/oGcapamYx0XGrLRRVWg11LTfRrye2B67NWUahfg8uaxkTQvNPpyLB4/Z0GDKMK/t8tS9c7TsgZs5y4x/hhqo7EEmsv0ebyO6C1tQHwVeL2MZsttGc2TZVdecGt4PdiMGmUy1KREUDd/NMs4gUbhdsvEFxUpr6Z9fCKMw3KGMn0apcbIu+yktDEwm3HJ6b0X4L/OiUc4O3lIr3YA4HK53tCOX9Qv9F6nlvnlpinD4HaNkHCppsT1fu1qP2hI2JE1ZpwJoFdJYrOswx6Q/w1Rm0OLej3F4/jKjEYbgfc2GNkrqOZ0boeRRkd95P+e+zMEiFysHemqBeNU87Ph5hDhR+ja9/Smue0Yf+OxNarlNd4/azrfQXFRQ1e3zmXM8VoErPFltG+kF9Wv85Poz3BN66dwXPKWRMc6N4hFLjQlC/9UvdHq8xJc3K9cqxsBu5/earITWxBDretdq1yj/d0Dmjxu1WOlgcQyvPM8jKH1ELcMQ8da2ZydbKNVfjWT7MTYibT4MfdG264iO6qq8b5pJy458eQtT7UplJw3z9SlP3IFBA9V7qzUwbFerDaF0TBDRTefc9bY7xgJHFh/l67+4O4zF0D35+oEOe+iPjC5kpXOAnZhy6m9sJctzPHuVeptuU/kJynAZNmMMakpK27ThOsfagnDwILUcp2fr7OQvJZlNvzZ4LKw0AGHsYYc7doH8Obp+2yTMZMWOuHmA3YtaF8+e4Q4uacaaiT9P86Ik0eb5UNGsc3bsHFWdH//g189CPDOaVVCiZLBPOyv6rh07Ruk74EnZ/ULL1aNH25GddOqeiU8Bfn2Stl0ShNbMlzmMll0TZOs9Lw5D5x1939gIWvaZv/7Ix9DZH5fs5gsPETXlmJ7DP3Jil6WP4g9cMCE7uI9+/O7jT+Qr1SshmDrU6zJ0zWWEpsR+e9vltrtpibaua3NnF3RSFw4Y5+8rLxcyu4wLkztCjLl9SwKJzUlMv8gFyrCyxMTwcpMyyj+RVWa1RLzamNcRCmr8ccWB+cZdJQuNA3NlRdbS7KAM9jhbK5FAHH+dLCgbpP7mFDPJnzOlxocWh+wmt5OPRiyG9dREy5i3r7ycYX6JFTEVfJ3qWk0CpSzWg60qVsrLEhNkFSXK+HCdryQtZJlLkXbV2uQEjwqBPsUNvPBePGu4d5gjWHJkCRCfm382335+L6lPh8OvY0PTWUVvDQ3+b+eKmAa74E9X/hnG18XLjUwYOONwPGnBWcUQvgJ3dy8qzDBezNAZHbYY0NPaiIHaJ6vxMDW+Tj85tRJfaXj4CEiTiqiwqldHKJLoX1Y81RsMjpMvJVdRy/cZDfvKKsTeYygr37Oz5WW5CGPJoph8ZURZQqK0rEAZG12onM3EBBRdpEz/v7s76i31oMaJqXXyaHOcSrWwQZba/OrVXs/S1PtFGxsX+djc9BbHSEObIIIabvBKCvyjpkf4SWyQY4xKImCrv8v1CNCE+WvCirqqW+PMgrgkR4vo7GxwyBo/9hdlBvf5bkV1iVFzjHWh0Eh1ibE9x2vqYdICdIF+Cnlk0dJdeQ1C8Q3fl6uZGR05DXHlwgzFzu1fqe3TCzUF9ZXweJt7iwMW342GPLvspXHx7ZmXey+LeSoVVywWYEl8nMhMbO+Mg8WjQ6vuDPne6iu+HKobGVo0PEQZqlCfDkE3q5P1uG1X55C2V2thvd2xq8+BoLN9qLXTF5cIJQTzNrGki8uaw2gQPjJmCaLVZnlQKSRhriRqbuHcFG25tmBpYUYsk+HeymMH3qGxFqrrwJea3qaKa1Zr4ppaVOlpHSn0hA7/7/fx+PXvfX3fbeLzDj5c5M9IbNfAAMlosuBe1ARztLRJmyFttBUJ0VnR4sYMrbhpthitnLhH8Y5HKi5PN4sbOutQ/fRz9cN+WX7zadTUOlVMk0ajampUqVXV8SqLqWOIn3iC4xvyXZM4RaU0+ByWDf13nEcjeHiEpoLXhDzb4WpAaNn0xAc/0S1OTMinlpHM6NbGyPIfE8xzpBWp6dJ6c1SCMjtK0qBNllRkK9yqORxcKBpnc7gZ31mTvi/M4cnZkaZc3VuwGhS4BR8FC3TPhrZsY7BqogO0gdWZCrlSJ/E3a+ngr9fq3fxSDMQ+szyDgVjWA9buPskzXvKosMqXRyhB0U4Wmt5ggMCpu2WXlqTnznoNjM/gFhw/+J8+9081yHc+WP9SbtdbPloTlD9bZG3Y9pVnQQkzZ14Q5tIha0omekJJtLdFoM81NExlmOJS1c0qVZNGE9vUpFJrRIlN5hpVaW38hqe+vh+6+bzuD/OKTdBPyogqKwyN6AzUujkJu0kl/ebMIM1jvPCoDf0thMMOcXb+uOe7JGedLkJTOM8g0dI37KkMLsqh0790tTvTH+NAPUCL8RGHxefygUSdl5mh/mD5gXWGTmkdFRfWHXJbV6urBRs5d1VL+KqSBNvWbmvDNsuzWzNgAaDSI/Sg8JgosVZSPU8hV86T+DXBhN3BmeVHZ27tnmkYmOk6ujsGZx7unKkficGu+/QY1zVB5eQxqtuLfkXfYP+GH5mxYrXK1+3+zzMbDvX75QEr/4XgZdUu0wvRq0o4yxh2f99eQ5fwWtY+5T7p3g4OLNDSe+mMlSLjJTFrlPcKBqPFm9EKafHM7318vmf63PAhwnB/VVff5oY++GdVXe/mzl64vaqot6+xN6mgt7e+F5y8uQPNYQNgr1zVRV7Z0beso28leVUXWIIJXcvbOsIAsW3ZmQC/KCKTJ1H5t3tqGIxIz3Z/iUrHg71erLz/fFj/5bFYmv9YPv9pfNI4XB5QXNDz2MWGcAdbu+z5yV/6c7nFHYfrdfjCcX6JLB6oQfXx9eD8lbh/WUo/WN11fz8Y9dt1W6cOB1fCf97JaVY3/APo/hdh/33B19F81vSPxcSJ9V7Uv23t+CqB7ncZHLvvn+DeweZkx0pW1F69scXFJdPFoXuTIMOmBGyC6j3rARMAgmIeMDgO+NAKZsFes8NtLdEMAFofAFACbhbgZsIlpaEwYcuCqgIJDhnheA/m+crc4HvVYSP1j3PQbYnBuFEcQBgGXA/kCeCAy1mENuUsDAN6KydiB72HIBFwmuyz73oBabVAjka4bQR5WsAE4AIcgFk1XJ/wxBxH4YGg/xAo4QxUwTANHqkYpA14BBeh4v6fSBWYKfC6kLJwhkgzDbQEsEmwUAlV1B2HRZQD5osoMx7HWMXgkIgNEC/GYXYYO+BFNWCtLBhJJWEIDsOxKzMRx1yRvdJhFtVmQptaoZiyMFtoY4CvidbfRkqD/yBzCcBUMJosGYR8Ie2C6ATzhwD4CSaQOcQFiQ4NgAu0idEBUgV8biLKwWksUB3W0OghL7UwRCijKsT52zpjhcbZs0ahehHg+xvQ+8FB6V29fA5gJWsPIkHBhhpOiKZGx02iJZooxZbOCR+ZiwYQ2B6CRZMxCSHpqRDuwWU3HtC0VBz60KJitjzu7vtL1QQDV47HeRModPL+HCkUQ9y33AEotVZEyscNKSMaEtaSDX7L0pwoSFnQmtoaCF+gaAe92teUucLnSodLqV2h+bJUTQ/F3ZNxDELyo838e7QP4H3RMT55K/31yMuW4ciDY79JF428eNwtASNAPfdadcD0HD3q8XDca1PutYJYlt1ODep6F5Oh8PLwaxgdB9keMA0cylcqdcuVUoCNG73mB6n15teTKlezfu+JwFdt+yXI2mbCPpgpHDnUU1lteYrM2rhICWqkz8JI7KUJbEDd+eir1A4s0BDEv1z/CeTYoBREELEVAquxRq/BgmT2JbAZ7EGhqa5qyXYITAFN2Da9iAzau28hSD3pOW4Ja1Bnv3rSI5cQRNu/tZ6/7ZjX+XU47B9BPhQgVPbbgIziAzGKjDvIA9ivaTEL9Fmswsno6z04AzWKsP4eyPjU13c6+KkekJ7k/3p4DmbAe5cfy7VwQpClrZUc5OTCubmqfc7lTZdQMSVsQichBWHtdwmc1nChppAc83lBNRlJALaAaxjFw8alai21XhDM2lRVYkqwX0cx82zT1yigbSocZJR81zqMyK7SRen8DWOBPDn8m3wAAUX197Nt79wo/yETCL8DvrgivBSAb+59cGjWeml330UICQYQ8C0399NA1RDlZiCbJ3/bPmfeGPI++iSuglMrf5JF11BH/w1XfkoNVhPUsb2Xot1EVPV5COyJkJUd1OgFSqI+Y6xZgXqSC2799VDP3UR0xHbqJbOf68dU83zfINevFawjWwnOyA1zjnVxjPPArzZxXfNlBUUADtRbSBBbNfteEpzmSxq393jspxWNPOSFENITd4uJXDJyTErAnFEHeVUfF4ike5j9oG1kn8M27rFkgjDPF4cyq2IQ6+cB1h/md97ADGA//8I4IwEsNf+ai0MYnFEg4EEyRPFIkA1v121jbDlv0tkAuLOQsY7Q8tQx5DjqBDJf60Q8F3QrCu06CUfOfvYicA6DMLDl7puJcrlSuIgwyXuDOiCZoxyvcZSKnLlAJBBq9pY5aKH2bszqEKsMK8yXqY3UIqkRpBIYUzEkjCtr7ksAkITebIiApC4coHJcFslhZv2bTUxMLQR8DcT6/mprEyNvRuYmtrJ+bFyJbSPUqlDlttIWAVG9s/KMpCWFh+rOCZtNpDiDsQhgu65MW1dEYuDMLuDauHJU/pvFdGJsg0fWFVsnI+cmKoyBz2LiItm1XA7Yw1nqe+tjxBdmc6b9LiH+V/ogMNf1YIiAiMgKBN6bRSRkDcLIyAb+IIqCqMgW2YGfV7FHDsiRf05xFpCLN3GNG3HuAvMgyTNeoflRcPQw4h2mkHzCEh47nHBFxPOzt+FHECFpoviS5Rf/BEScQIokCUpwQigLNVSYyML9mgjxSSOLPAqJPgTQFlFKKjIIkotKdGKCLTzBPwKJSozG9InF4ZMTiClJqckUal9lpNEZzIwsdnYOl5fTsp/eWVnntrHNa2fv4OjUqrML4LcpELYt6k/chwqpTA4plCq1Ruvq5u7h6bXh4wxvwHYNXV4/4h+5c1sR/9O2hkmSvz/M/L/T6vUEObebnAvrDdRJCfZkKZdOSDcL2taIdB6ENrDx5wwReTbtwzXcoFNyWFTxO/LZCV+r0M0CqV7w3AEk39SgTihGZe1SLb2SVu+3m9D9LDMFG1AVbwCDazT6qsBU5aT5zDbKTa/Q775hzemjwoBdjdfU9hOCtjXHX0O+tX+4vQHcnA3uQ7k7h/B7VFqeKddJr2HpwfLWg1WWq4lVLZQc627ixiM5Gs+Gc/CSgiYzAAECtQcm9oEU+kO7iFbBqL2K3sjcPWuIm05VpGGpupCH5bJYCEcEBauwSlXUtdc36WiaTJ1ow1vSkhbb4M14q7wFb8ZH8BF8Vj5jfjs4Ne2p42z7G/1yPnXO1Nwwgx5c8VwXQmKByCMM1zyzd0wVjCUhOraFhfHc26C5xP+r1vrb95vtiWYN) format('woff2'), url(data:font/woff;base64,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) format('woff');
  unicode-range: U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

/* figtree-latin-700-normal */
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url(https://cdn-web.disco.co/figtree-latin-700-normal.woff2) format('woff2'), url(https://cdn-web.disco.co/figtree-latin-700-normal.woff) format('woff');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
.str-chat{box-sizing:border-box;font-family:var(--str-chat__font-family)}.str-chat *{box-sizing:border-box}.str-chat .ngxp__container,.str-chat .float-ui-container{z-index:1;padding:0 !important;box-shadow:none !important;border-color:rgba(0,0,0,0) !important;max-width:100vw}.str-chat .ngxp__container .ngxp__arrow,.str-chat .float-ui-container .ngxp__arrow{display:none}stream-icon,stream-icon-placeholder{display:flex;justify-content:center;align-items:center}.stream-chat__paginated-list{display:flex;flex-direction:column;height:100%;overflow-x:hidden;overflow-y:scroll;max-height:100%;min-height:0;gap:var(--str-chat__spacing-2)}.stream-chat__paginated-list .str-chat__loading-indicator{margin:auto}.stream-chat__paginated-list .str-chat__load-more-button__button{margin-inline:auto}stream-paginated-list{height:100%;max-height:100%}stream-user-list{height:100%;max-height:100%}stream-user-list .str-chat__user-list-item{display:flex;align-items:center;gap:var(--str-chat__spacing-2)}:root{--str-chat__theme-version: 2}.str-chat{--str-chat__spacing-px: 1px;--str-chat__spacing-0_5: 0.125rem;--str-chat__spacing-1: 0.25rem;--str-chat__spacing-1_5: 0.375rem;--str-chat__spacing-2: 0.5rem;--str-chat__spacing-2_5: 0.625rem;--str-chat__spacing-3: 0.75rem;--str-chat__spacing-3_5: 0.875rem;--str-chat__spacing-4: 1rem;--str-chat__spacing-5: 1.25rem;--str-chat__spacing-6: 1.5rem;--str-chat__spacing-7: 1.75rem;--str-chat__spacing-8: 2rem;--str-chat__spacing-9: 2.25rem;--str-chat__spacing-10: 2.5rem;--str-chat__spacing-11: 2.75rem;--str-chat__spacing-12: 3rem;--str-chat__spacing-14: 3.5rem;--str-chat__spacing-16: 4rem}.str-chat{--str-chat__image-fallback-icon: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9ImN1cnJlbnRDb2xvciIgY2xhc3M9InN0ci1jaGF0X19pbWFnZS1mYWxsYmFja19faWNvbiIgdmlld0JveD0iMCAwIDE4IDE4Ij48cGF0aCBkPSJNMTYgMnYxNEgyVjJoMTRabTAtMkgyQy45IDAgMCAuOSAwIDJ2MTRjMCAxLjEuOSAyIDIgMmgxNGMxLjEgMCAyLS45IDItMlYyYzAtMS4xLS45LTItMi0yWm0tNC44NiA4Ljg2LTMgMy44N0w2IDEwLjE0IDMgMTRoMTJsLTMuODYtNS4xNFoiLz48L3N2Zz4=");--str-chat__winning-poll-option-icon: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAgMjAiIGZpbGw9ImN1cnJlbnRDb2xvciIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxwYXRoIGQ9Ik0xNS44MzMzIDQuMTY2NjdIMTQuMTY2N1YyLjVINS44MzMzM1Y0LjE2NjY3SDQuMTY2NjdDMy4yNSA0LjE2NjY3IDIuNSA0LjkxNjY3IDIuNSA1LjgzMzMzVjYuNjY2NjdDMi41IDguNzkxNjcgNC4xIDEwLjUyNSA2LjE1ODMzIDEwLjc4MzNDNi42ODMzMyAxMi4wMzMzIDcuODA4MzMgMTIuOTc1IDkuMTY2NjcgMTMuMjVWMTUuODMzM0g1LjgzMzMzVjE3LjVIMTQuMTY2N1YxNS44MzMzSDEwLjgzMzNWMTMuMjVDMTIuMTkxNyAxMi45NzUgMTMuMzE2NyAxMi4wMzMzIDEzLjg0MTcgMTAuNzgzM0MxNS45IDEwLjUyNSAxNy41IDguNzkxNjcgMTcuNSA2LjY2NjY3VjUuODMzMzNDMTcuNSA0LjkxNjY3IDE2Ljc1IDQuMTY2NjcgMTUuODMzMyA0LjE2NjY3Wk00LjE2NjY3IDYuNjY2NjdWNS44MzMzM0g1LjgzMzMzVjkuMDE2NjdDNC44NjY2NyA4LjY2NjY3IDQuMTY2NjcgNy43NSA0LjE2NjY3IDYuNjY2NjdaTTEwIDExLjY2NjdDOC42MjUgMTEuNjY2NyA3LjUgMTAuNTQxNyA3LjUgOS4xNjY2N1Y0LjE2NjY3SDEyLjVWOS4xNjY2N0MxMi41IDEwLjU0MTcgMTEuMzc1IDExLjY2NjcgMTAgMTEuNjY2N1pNMTUuODMzMyA2LjY2NjY3QzE1LjgzMzMgNy43NSAxNS4xMzMzIDguNjY2NjcgMTQuMTY2NyA5LjAxNjY3VjUuODMzMzNIMTUuODMzM1Y2LjY2NjY3WiIgZmlsbD0iIzVFNjc2RSIvPgo8L3N2Zz4K");--str-chat__arrow-left-icon: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTYgMTYiIGZpbGw9ImN1cnJlbnRDb2xvciIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE0Ljc5MTUgNy4wMDUxSDMuNjIxNDhMOC41MDE0OCAyLjEyNTFDOC44OTE0OCAxLjczNTEgOC44OTE0OCAxLjA5NTEgOC41MDE0OCAwLjcwNTA5OEM4LjExMTQ4IDAuMzE1MDk4IDcuNDgxNDggMC4zMTUwOTggNy4wOTE0OCAwLjcwNTA5OEwwLjUwMTQ4NCA3LjI5NTFDMC4xMTE0ODQgNy42ODUxIDAuMTExNDg0IDguMzE1MSAwLjUwMTQ4NCA4LjcwNTFMNy4wOTE0OCAxNS4yOTUxQzcuNDgxNDggMTUuNjg1MSA4LjExMTQ4IDE1LjY4NTEgOC41MDE0OCAxNS4yOTUxQzguODkxNDggMTQuOTA1MSA4Ljg5MTQ4IDE0LjI3NTEgOC41MDE0OCAxMy44ODUxTDMuNjIxNDggOS4wMDUxSDE0Ljc5MTVDMTUuMzQxNSA5LjAwNTEgMTUuNzkxNSA4LjU1NTEgMTUuNzkxNSA4LjAwNTFDMTUuNzkxNSA3LjQ1NTEgMTUuMzQxNSA3LjAwNTEgMTQuNzkxNSA3LjAwNTFaIiBmaWxsPSIjMDgwNzA3Ii8+Cjwvc3ZnPgo=");--str-chat__close-icon: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTQgMTQiIGZpbGw9ImN1cnJlbnRDb2xvciIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEzLjI5OTcgMC43MDk5NzFDMTIuOTA5NyAwLjMxOTk3MSAxMi4yNzk3IDAuMzE5OTcxIDExLjg4OTcgMC43MDk5NzFMNi45OTk3MyA1LjU4OTk3TDIuMTA5NzMgMC42OTk5NzFDMS43MTk3MyAwLjMwOTk3MSAxLjA4OTczIDAuMzA5OTcxIDAuNjk5NzI3IDAuNjk5OTcxQzAuMzA5NzI3IDEuMDg5OTcgMC4zMDk3MjcgMS43MTk5NyAwLjY5OTcyNyAyLjEwOTk3TDUuNTg5NzMgNi45OTk5N0wwLjY5OTcyNyAxMS44OUMwLjMwOTcyNyAxMi4yOCAwLjMwOTcyNyAxMi45MSAwLjY5OTcyNyAxMy4zQzEuMDg5NzMgMTMuNjkgMS43MTk3MyAxMy42OSAyLjEwOTczIDEzLjNMNi45OTk3MyA4LjQwOTk3TDExLjg4OTcgMTMuM0MxMi4yNzk3IDEzLjY5IDEyLjkwOTcgMTMuNjkgMTMuMjk5NyAxMy4zQzEzLjY4OTcgMTIuOTEgMTMuNjg5NyAxMi4yOCAxMy4yOTk3IDExLjg5TDguNDA5NzMgNi45OTk5N0wxMy4yOTk3IDIuMTA5OTdDMTMuNjc5NyAxLjcyOTk3IDEzLjY3OTcgMS4wODk5NyAxMy4yOTk3IDAuNzA5OTcxWiIgZmlsbD0iIzA4MDcwNyIvPgo8L3N2Zz4K");--str-chat__add-attachment-icon: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjggMjgiIGZpbGw9ImN1cnJlbnRDb2xvciIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxwYXRoIGQ9Ik0xNS4zMzMyIDcuMzMzMDdMMTIuNjY2NiA3LjMzMzA3TDEyLjY2NjYgMTIuNjY2NEw3LjMzMzI0IDEyLjY2NjRMNy4zMzMyNCAxNS4zMzMxTDEyLjY2NjYgMTUuMzMzMUwxMi42NjY2IDIwLjY2NjRMMTUuMzMzMiAyMC42NjY0TDE1LjMzMzIgMTUuMzMzMUwyMC42NjY2IDE1LjMzMzFMMjAuNjY2NiAxMi42NjY0TDE1LjMzMzIgMTIuNjY2NEwxNS4zMzMyIDcuMzMzMDdaTTEzLjk5OTkgMC42NjY0MDRDNi42Mzk5MSAwLjY2NjQwNCAwLjY2NjU3NiA2LjYzOTc0IDAuNjY2NTc3IDEzLjk5OTdDMC42NjY1NzYgMjEuMzU5NyA2LjYzOTkxIDI3LjMzMzEgMTMuOTk5OSAyNy4zMzMxQzIxLjM1OTkgMjcuMzMzMSAyNy4zMzMyIDIxLjM1OTcgMjcuMzMzMiAxMy45OTk3QzI3LjMzMzIgNi42Mzk3NCAyMS4zNTk5IDAuNjY2NDA0IDEzLjk5OTkgMC42NjY0MDRaTTEzLjk5OTkgMjQuNjY2NEM4LjExOTkxIDI0LjY2NjQgMy4zMzMyNCAxOS44Nzk3IDMuMzMzMjUgMTMuOTk5N0MzLjMzMzI0IDguMTE5NzQgOC4xMTk5MSAzLjMzMzA3IDEzLjk5OTkgMy4zMzMwN0MxOS44Nzk5IDMuMzMzMDcgMjQuNjY2NiA4LjExOTc0IDI0LjY2NjYgMTMuOTk5N0MyNC42NjY2IDE5Ljg3OTcgMTkuODc5OSAyNC42NjY0IDEzLjk5OTkgMjQuNjY2NFoiLz4KPC9zdmc+Cg==");--str-chat__folder-icon: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAgMTYiIGZpbGw9ImN1cnJlbnRDb2xvciIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxwYXRoIGQ9Ik0xOCAySDEwTDggMEgyQzAuOSAwIDAuMDA5OTk5OTkgMC45IDAuMDA5OTk5OTkgMkwwIDE0QzAgMTUuMSAwLjkgMTYgMiAxNkgxOEMxOS4xIDE2IDIwIDE1LjEgMjAgMTRWNEMyMCAyLjkgMTkuMSAyIDE4IDJaTTE4IDE0SDJWNEgxOFYxNFoiIC8+Cjwvc3ZnPgo=");--str-chat__poll-icon: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIGZpbGw9ImN1cnJlbnRDb2xvciIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxwYXRoIGQ9Ik0xNiAwSDJDMC45IDAgMCAwLjkgMCAyVjE2QzAgMTcuMSAwLjkgMTggMiAxOEgxNkMxNy4xIDE4IDE4IDE3LjEgMTggMTZWMkMxOCAwLjkgMTcuMSAwIDE2IDBaTTE2IDE2SDJWMkgxNlYxNlpNNCA3SDZWMTRINFY3Wk04IDRIMTBWMTRIOFY0Wk0xMiAxMEgxNFYxNEgxMlYxMFoiLz4KPC9zdmc+");--str-chat__handle-icon: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTYgNiIgZmlsbD0iY3VycmVuQ29sb3IiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8cGF0aCBkPSJNMTYgMEgwVjJIMTZWMFpNMCA2SDE2VjRIMFY2WiIvPgo8L3N2Zz4K")}@font-face{font-family:"stream-chat-icons";src:url(data:application/vnd.ms-fontobject;base64,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sFwsswABAUMrLbBdLLMBAAFDKy2wXiyzAQEBQystsF8ssgAARSstsGAssgABRSstsGEssgEARSstsGIssgEBRSstsGMssgAASCstsGQssgABSCstsGUssgEASCstsGYssgEBSCstsGcsswAAAEQrLbBoLLMAAQBEKy2waSyzAQAARCstsGosswEBAEQrLbBrLLMAAAFEKy2wbCyzAAEBRCstsG0sswEAAUQrLbBuLLMBAQFEKy2wbyyxADwrLrEwARQrLbBwLLEAPCuwQCstsHEssQA8K7BBKy2wciywABaxADwrsEIrLbBzLLEBPCuwQCstsHQssQE8K7BBKy2wdSywABaxATwrsEIrLbB2LLEAPSsusTABFCstsHcssQA9K7BAKy2weCyxAD0rsEErLbB5LLEAPSuwQistsHossQE9K7BAKy2weyyxAT0rsEErLbB8LLEBPSuwQistsH0ssQA+Ky6xMAEUKy2wfiyxAD4rsEArLbB/LLEAPiuwQSstsIAssQA+K7BCKy2wgSyxAT4rsEArLbCCLLEBPiuwQSstsIMssQE+K7BCKy2whCyxAD8rLrEwARQrLbCFLLEAPyuwQCstsIYssQA/K7BBKy2whyyxAD8rsEIrLbCILLEBPyuwQCstsIkssQE/K7BBKy2wiiyxAT8rsEIrLbCLLLILAANFUFiwBhuyBAIDRVgjIRshWVlCK7AIZbADJFB4sQUBFUVYMFktAEu4AMhSWLEBAY5ZsAG5CAAIAGNwsQAHQrEAACqxAAdCsQAKKrEAB0KxAAoqsQAHQrkAAAALKrEAB0K5AAAACyq5AAMAAESxJAGIUViwQIhYuQADAGREsSgBiFFYuAgAiFi5AAMAAERZG7EnAYhRWLoIgAABBECIY1RYuQADAABEWVlZWVmxAA4quAH/hbAEjbECAESzBWQGAERE);src:url(data:application/vnd.ms-fontobject;base64,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sFwsswABAUMrLbBdLLMBAAFDKy2wXiyzAQEBQystsF8ssgAARSstsGAssgABRSstsGEssgEARSstsGIssgEBRSstsGMssgAASCstsGQssgABSCstsGUssgEASCstsGYssgEBSCstsGcsswAAAEQrLbBoLLMAAQBEKy2waSyzAQAARCstsGosswEBAEQrLbBrLLMAAAFEKy2wbCyzAAEBRCstsG0sswEAAUQrLbBuLLMBAQFEKy2wbyyxADwrLrEwARQrLbBwLLEAPCuwQCstsHEssQA8K7BBKy2wciywABaxADwrsEIrLbBzLLEBPCuwQCstsHQssQE8K7BBKy2wdSywABaxATwrsEIrLbB2LLEAPSsusTABFCstsHcssQA9K7BAKy2weCyxAD0rsEErLbB5LLEAPSuwQistsHossQE9K7BAKy2weyyxAT0rsEErLbB8LLEBPSuwQistsH0ssQA+Ky6xMAEUKy2wfiyxAD4rsEArLbB/LLEAPiuwQSstsIAssQA+K7BCKy2wgSyxAT4rsEArLbCCLLEBPiuwQSstsIMssQE+K7BCKy2whCyxAD8rLrEwARQrLbCFLLEAPyuwQCstsIYssQA/K7BBKy2whyyxAD8rsEIrLbCILLEBPyuwQCstsIkssQE/K7BBKy2wiiyxAT8rsEIrLbCLLLILAANFUFiwBhuyBAIDRVgjIRshWVlCK7AIZbADJFB4sQUBFUVYMFktAEu4AMhSWLEBAY5ZsAG5CAAIAGNwsQAHQrEAACqxAAdCsQAKKrEAB0KxAAoqsQAHQrkAAAALKrEAB0K5AAAACyq5AAMAAESxJAGIUViwQIhYuQADAGREsSgBiFFYuAgAiFi5AAMAAERZG7EnAYhRWLoIgAABBECIY1RYuQADAABEWVlZWVmxAA4quAH/hbAEjbECAESzBWQGAERE#iefix) format("embedded-opentype"),url(data:font/woff;base64,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) format("woff2"),url(data:font/woff;base64,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) format("woff"),url(data:font/ttf;base64,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AmIgsABQWLBAYFlmsAFjIyAgPIo4LbBALCMgLkawAiVGsBdDWFAbUllYIDxZLrEwARQrLbBBLCMgLkawAiVGsBdDWFIbUFlYIDxZLrEwARQrLbBCLCMgLkawAiVGsBdDWFAbUllYIDxZIyAuRrACJUawF0NYUhtQWVggPFkusTABFCstsEMssDorIyAuRrACJUawF0NYUBtSWVggPFkusTABFCstsEQssDsriiAgPLAGI0KKOCMgLkawAiVGsBdDWFAbUllYIDxZLrEwARQrsAZDLrAwKy2wRSywABawBCWwBCYgICBGI0dhsAwjQi5HI0cjYbALQysjIDwgLiM4sTABFCstsEYssQoEJUKwABawBCWwBCUgLkcjRyNhILAGI0KxDABCsAtDKyCwYFBYILBAUVizBCAFIBuzBCYFGllCQiMgR7AGQ7ACYiCwAFBYsEBgWWawAWNgILABKyCKimEgsARDYGQjsAVDYWRQWLAEQ2EbsAVDYFmwAyWwAmIgsABQWLBAYFlmsAFjYbACJUZhOCMgPCM4GyEgIEYjR7ABKyNhOCFZsTABFCstsEcssQA6Ky6xMAEUKy2wSCyxADsrISMgIDywBiNCIzixMAEUK7AGQy6wMCstsEkssAAVIEewACNCsgABARUUEy6wNiotsEossAAVIEewACNCsgABARUUEy6wNiotsEsssQABFBOwNyotsEwssDkqLbBNLLAAFkUjIC4gRoojYTixMAEUKy2wTiywCiNCsE0rLbBPLLIAAEYrLbBQLLIAAUYrLbBRLLIBAEYrLbBSLLIBAUYrLbBTLLIAAEcrLbBULLIAAUcrLbBVLLIBAEcrLbBWLLIBAUcrLbBXLLMAAABDKy2wWCyzAAEAQystsFksswEAAEMrLbBaLLMBAQBDKy2wWyyzAAABQystsFwsswABAUMrLbBdLLMBAAFDKy2wXiyzAQEBQystsF8ssgAARSstsGAssgABRSstsGEssgEARSstsGIssgEBRSstsGMssgAASCstsGQssgABSCstsGUssgEASCstsGYssgEBSCstsGcsswAAAEQrLbBoLLMAAQBEKy2waSyzAQAARCstsGosswEBAEQrLbBrLLMAAAFEKy2wbCyzAAEBRCstsG0sswEAAUQrLbBuLLMBAQFEKy2wbyyxADwrLrEwARQrLbBwLLEAPCuwQCstsHEssQA8K7BBKy2wciywABaxADwrsEIrLbBzLLEBPCuwQCstsHQssQE8K7BBKy2wdSywABaxATwrsEIrLbB2LLEAPSsusTABFCstsHcssQA9K7BAKy2weCyxAD0rsEErLbB5LLEAPSuwQistsHossQE9K7BAKy2weyyxAT0rsEErLbB8LLEBPSuwQistsH0ssQA+Ky6xMAEUKy2wfiyxAD4rsEArLbB/LLEAPiuwQSstsIAssQA+K7BCKy2wgSyxAT4rsEArLbCCLLEBPiuwQSstsIMssQE+K7BCKy2whCyxAD8rLrEwARQrLbCFLLEAPyuwQCstsIYssQA/K7BBKy2whyyxAD8rsEIrLbCILLEBPyuwQCstsIkssQE/K7BBKy2wiiyxAT8rsEIrLbCLLLILAANFUFiwBhuyBAIDRVgjIRshWVlCK7AIZbADJFB4sQUBFUVYMFktAEu4AMhSWLEBAY5ZsAG5CAAIAGNwsQAHQrEAACqxAAdCsQAKKrEAB0KxAAoqsQAHQrkAAAALKrEAB0K5AAAACyq5AAMAAESxJAGIUViwQIhYuQADAGREsSgBiFFYuAgAiFi5AAMAAERZG7EnAYhRWLoIgAABBECIY1RYuQADAABEWVlZWVmxAA4quAH/hbAEjbECAESzBWQGAERE) format("truetype"),url(function SvgStreamChatIcons(props) {
  return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("svg", _extends({
    xmlns: "http://www.w3.org/2000/svg"
  }, props), _defs || (_defs = /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("defs", null, /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("font", {
    id: "stream-chat-icons_svg__stream-chat-icons",
    horizAdvX: 1000
  }, /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("fontFace", {
    fontFamily: "stream-chat-icons",
    fontWeight: 400,
    ascent: 850,
    descent: -150
  }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("glyph", {
    glyphName: "action",
    unicode: "\\uE800",
    d: "M500 517c46 0 83 37 83 83s-37 83-83 83-83-37-83-83 37-83 83-83zm0-84c-46 0-83-37-83-83s37-83 83-83 83 37 83 83-37 83-83 83zm0-250c-46 0-83-37-83-83s37-83 83-83 83 37 83 83-37 83-83 83z",
    horizAdvX: 1000
  }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("glyph", {
    glyphName: "arrow-down",
    unicode: "\\uE801",
    d: "m309 504 191-190 191 190 59-58-250-250-250 250 59 58z",
    horizAdvX: 1000
  }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("glyph", {
    glyphName: "arrow-left",
    unicode: "\\uE802",
    d: "m654 541-58 59-250-250 250-250 58 59-190 191 190 191z",
    horizAdvX: 1000
  }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("glyph", {
    glyphName: "arrow-right",
    unicode: "\\uE803",
    d: "m404 600-58-59 191-191-191-191 58-59 250 250-250 250z",
    horizAdvX: 1000
  }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("glyph", {
    glyphName: "close",
    unicode: "\\uE804",
    d: "m792 583-59 59-233-233-233 233-59-59 233-233-233-233 59-59 233 233L733 58l59 59-233 233 233 233z",
    horizAdvX: 1000
  }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("glyph", {
    glyphName: "arrow-up",
    unicode: "\\uE805",
    d: "M691 196 500 387 309 196l-59 58 250 250 250-250-59-58z",
    horizAdvX: 1000
  }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("glyph", {
    glyphName: "chat-bubble",
    unicode: "\\uE806",
    d: "M779 670H221c-39 0-70-32-70-70V-29l139 140h489c39 0 70 32 70 70v419c0 38-31 70-70 70zm0-489H290l-69-70v489h558V181z",
    horizAdvX: 1000
  }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("glyph", {
    glyphName: "pause",
    unicode: "\\uE807",
    d: "M250 58h167v584H250V58zm333 584V58h167v584H583z",
    horizAdvX: 1000
  }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("glyph", {
    glyphName: "download",
    unicode: "\\uE808",
    d: "M806 432c-28 143-154 251-306 251-120 0-225-68-277-168C98 502 0 395 0 267 0 129 112 17 250 17h542c115 0 208 93 208 208 0 110-85 199-194 207zm-14-332H250c-92 0-167 75-167 167 0 85 64 156 149 165l44 5 21 39c40 77 117 124 203 124 109 0 203-77 225-185l12-62 64-5c65-4 116-58 116-123 0-69-57-125-125-125zM560 433H440V308H333l167-166 167 166H560v125z",
    horizAdvX: 1000
  }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("glyph", {
    glyphName: "delivered",
    unicode: "\\uE809",
    d: "M375 175 200 350l-58-58L375 58l500 500-58 59-442-442z",
    horizAdvX: 1000
  }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("glyph", {
    glyphName: "reaction",
    unicode: "\\uE80B",
    d: "M500 767C270 767 83 580 83 350S270-67 500-67s417 187 417 417-187 417-417 417zm0-750c-184 0-333 149-333 333s149 333 333 333 333-149 333-333S684 17 500 17zm146 375c34 0 62 28 62 62 0 35-28 63-62 63-35 0-63-28-63-63 0-34 28-62 63-62zm-292 0c35 0 63 28 63 62 0 35-28 63-63 63-34 0-62-28-62-63 0-34 28-62 62-62zm146-271c97 0 180 61 213 146H287c33-85 116-146 213-146z",
    horizAdvX: 1000
  }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("glyph", {
    glyphName: "error",
    unicode: "\\uE80C",
    d: "M500 767C270 767 83 580 83 350S270-67 500-67s417 187 417 417-187 417-417 417zm42-625h-84v83h84v-83zm0 166h-84v250h84V308z",
    horizAdvX: 1000
  }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("glyph", {
    glyphName: "read",
    unicode: "\\uE80D",
    d: "m749 571-59 58-264-264 58-58 265 264zm176 58L484 189 310 362l-58-58L484 71l500 500-59 58zM16 304 249 71l58 58L75 362l-59-58z",
    horizAdvX: 1000
  }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("glyph", {
    glyphName: "retry",
    unicode: "\\uE80E",
    d: "M735 585c-60 61-143 98-235 98-184 0-333-149-333-333S316 17 500 17c155 0 285 106 322 250h-87c-34-97-126-167-235-167-138 0-250 112-250 250s112 250 250 250c69 0 131-29 176-74L542 392h291v291l-98-98z",
    horizAdvX: 1000
  }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("glyph", {
    glyphName: "reply-in-thread",
    unicode: "\\uE80F",
    d: "M417 496v167L125 371 417 79v171c208 0 354-67 458-212-42 208-167 416-458 458z",
    horizAdvX: 1000
  }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("glyph", {
    glyphName: "send",
    unicode: "\\uE810",
    d: "m167-67 833 417-833 417V443l595-93-595-93V-67z",
    horizAdvX: 1000
  }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("glyph", {
    glyphName: "attach",
    unicode: "\\uE811",
    d: "M542 558h-84V392H292v-84h166V142h84v166h166v84H542v166zm-42 209C270 767 83 580 83 350S270-67 500-67s417 187 417 417-187 417-417 417zm0-750c-184 0-333 149-333 333s149 333 333 333 333-149 333-333S684 17 500 17z",
    horizAdvX: 1000
  }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("glyph", {
    glyphName: "mic",
    unicode: "\\uE812",
    d: "M350 225c83 0 150 67 150 150v300c0 83-67 150-150 150s-150-67-150-150V375c0-83 67-150 150-150zm250 150c0-138-112-250-250-250S100 237 100 375H0C0 199 131 54 300 29v-154h100V29c170 25 300 170 300 346H600z",
    horizAdvX: 700
  }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("glyph", {
    glyphName: "bin",
    unicode: "\\uE813",
    d: "M250 58c0-45 38-83 83-83h334c46 0 83 38 83 83v417c0 46-37 83-83 83H333c-45 0-83-37-83-83V58zm500 625H646l-30 30c-7 7-18 12-29 12H413c-11 0-22-5-29-12l-30-30H250c-23 0-42-18-42-41s19-42 42-42h500c23 0 42 19 42 42s-19 41-42 41z",
    horizAdvX: 1000
  }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("glyph", {
    glyphName: "play",
    unicode: "\\uE814",
    d: "M398 640c-28 19-65-1-65-34V95c0-34 37-54 65-35l383 255c25 17 25 53 0 70L398 640z",
    horizAdvX: 1000
  })))));
}) format("svg");font-weight:normal;font-style:normal}@media screen and (-webkit-min-device-pixel-ratio: 0){@font-face{font-family:"stream-chat-icons";src:url(function SvgStreamChatIcons(props) {
  return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("svg", _extends({
    xmlns: "http://www.w3.org/2000/svg"
  }, props), _defs || (_defs = /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("defs", null, /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("font", {
    id: "stream-chat-icons_svg__stream-chat-icons",
    horizAdvX: 1000
  }, /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("fontFace", {
    fontFamily: "stream-chat-icons",
    fontWeight: 400,
    ascent: 850,
    descent: -150
  }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("glyph", {
    glyphName: "action",
    unicode: "\\uE800",
    d: "M500 517c46 0 83 37 83 83s-37 83-83 83-83-37-83-83 37-83 83-83zm0-84c-46 0-83-37-83-83s37-83 83-83 83 37 83 83-37 83-83 83zm0-250c-46 0-83-37-83-83s37-83 83-83 83 37 83 83-37 83-83 83z",
    horizAdvX: 1000
  }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("glyph", {
    glyphName: "arrow-down",
    unicode: "\\uE801",
    d: "m309 504 191-190 191 190 59-58-250-250-250 250 59 58z",
    horizAdvX: 1000
  }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("glyph", {
    glyphName: "arrow-left",
    unicode: "\\uE802",
    d: "m654 541-58 59-250-250 250-250 58 59-190 191 190 191z",
    horizAdvX: 1000
  }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("glyph", {
    glyphName: "arrow-right",
    unicode: "\\uE803",
    d: "m404 600-58-59 191-191-191-191 58-59 250 250-250 250z",
    horizAdvX: 1000
  }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("glyph", {
    glyphName: "close",
    unicode: "\\uE804",
    d: "m792 583-59 59-233-233-233 233-59-59 233-233-233-233 59-59 233 233L733 58l59 59-233 233 233 233z",
    horizAdvX: 1000
  }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("glyph", {
    glyphName: "arrow-up",
    unicode: "\\uE805",
    d: "M691 196 500 387 309 196l-59 58 250 250 250-250-59-58z",
    horizAdvX: 1000
  }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("glyph", {
    glyphName: "chat-bubble",
    unicode: "\\uE806",
    d: "M779 670H221c-39 0-70-32-70-70V-29l139 140h489c39 0 70 32 70 70v419c0 38-31 70-70 70zm0-489H290l-69-70v489h558V181z",
    horizAdvX: 1000
  }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("glyph", {
    glyphName: "pause",
    unicode: "\\uE807",
    d: "M250 58h167v584H250V58zm333 584V58h167v584H583z",
    horizAdvX: 1000
  }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("glyph", {
    glyphName: "download",
    unicode: "\\uE808",
    d: "M806 432c-28 143-154 251-306 251-120 0-225-68-277-168C98 502 0 395 0 267 0 129 112 17 250 17h542c115 0 208 93 208 208 0 110-85 199-194 207zm-14-332H250c-92 0-167 75-167 167 0 85 64 156 149 165l44 5 21 39c40 77 117 124 203 124 109 0 203-77 225-185l12-62 64-5c65-4 116-58 116-123 0-69-57-125-125-125zM560 433H440V308H333l167-166 167 166H560v125z",
    horizAdvX: 1000
  }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("glyph", {
    glyphName: "delivered",
    unicode: "\\uE809",
    d: "M375 175 200 350l-58-58L375 58l500 500-58 59-442-442z",
    horizAdvX: 1000
  }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("glyph", {
    glyphName: "reaction",
    unicode: "\\uE80B",
    d: "M500 767C270 767 83 580 83 350S270-67 500-67s417 187 417 417-187 417-417 417zm0-750c-184 0-333 149-333 333s149 333 333 333 333-149 333-333S684 17 500 17zm146 375c34 0 62 28 62 62 0 35-28 63-62 63-35 0-63-28-63-63 0-34 28-62 63-62zm-292 0c35 0 63 28 63 62 0 35-28 63-63 63-34 0-62-28-62-63 0-34 28-62 62-62zm146-271c97 0 180 61 213 146H287c33-85 116-146 213-146z",
    horizAdvX: 1000
  }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("glyph", {
    glyphName: "error",
    unicode: "\\uE80C",
    d: "M500 767C270 767 83 580 83 350S270-67 500-67s417 187 417 417-187 417-417 417zm42-625h-84v83h84v-83zm0 166h-84v250h84V308z",
    horizAdvX: 1000
  }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("glyph", {
    glyphName: "read",
    unicode: "\\uE80D",
    d: "m749 571-59 58-264-264 58-58 265 264zm176 58L484 189 310 362l-58-58L484 71l500 500-59 58zM16 304 249 71l58 58L75 362l-59-58z",
    horizAdvX: 1000
  }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("glyph", {
    glyphName: "retry",
    unicode: "\\uE80E",
    d: "M735 585c-60 61-143 98-235 98-184 0-333-149-333-333S316 17 500 17c155 0 285 106 322 250h-87c-34-97-126-167-235-167-138 0-250 112-250 250s112 250 250 250c69 0 131-29 176-74L542 392h291v291l-98-98z",
    horizAdvX: 1000
  }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("glyph", {
    glyphName: "reply-in-thread",
    unicode: "\\uE80F",
    d: "M417 496v167L125 371 417 79v171c208 0 354-67 458-212-42 208-167 416-458 458z",
    horizAdvX: 1000
  }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("glyph", {
    glyphName: "send",
    unicode: "\\uE810",
    d: "m167-67 833 417-833 417V443l595-93-595-93V-67z",
    horizAdvX: 1000
  }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("glyph", {
    glyphName: "attach",
    unicode: "\\uE811",
    d: "M542 558h-84V392H292v-84h166V142h84v166h166v84H542v166zm-42 209C270 767 83 580 83 350S270-67 500-67s417 187 417 417-187 417-417 417zm0-750c-184 0-333 149-333 333s149 333 333 333 333-149 333-333S684 17 500 17z",
    horizAdvX: 1000
  }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("glyph", {
    glyphName: "mic",
    unicode: "\\uE812",
    d: "M350 225c83 0 150 67 150 150v300c0 83-67 150-150 150s-150-67-150-150V375c0-83 67-150 150-150zm250 150c0-138-112-250-250-250S100 237 100 375H0C0 199 131 54 300 29v-154h100V29c170 25 300 170 300 346H600z",
    horizAdvX: 700
  }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("glyph", {
    glyphName: "bin",
    unicode: "\\uE813",
    d: "M250 58c0-45 38-83 83-83h334c46 0 83 38 83 83v417c0 46-37 83-83 83H333c-45 0-83-37-83-83V58zm500 625H646l-30 30c-7 7-18 12-29 12H413c-11 0-22-5-29-12l-30-30H250c-23 0-42-18-42-41s19-42 42-42h500c23 0 42 19 42 42s-19 41-42 41z",
    horizAdvX: 1000
  }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("glyph", {
    glyphName: "play",
    unicode: "\\uE814",
    d: "M398 640c-28 19-65-1-65-34V95c0-34 37-54 65-35l383 255c25 17 25 53 0 70L398 640z",
    horizAdvX: 1000
  })))));
}) format("svg")}}.str-chat{--str-chat__avatar-size: calc(var(--str-chat__spacing-px) * 32)}.str-chat .str-chat__avatar--autocomplete-item,.str-chat .stream-chat__avatar--autocomplete-item{--str-chat__avatar-size: calc(var(--str-chat__spacing-px) * 30)}.str-chat .str-chat__avatar--channel-header,.str-chat .stream-chat__avatar--channel-header{--str-chat__avatar-size: calc(var(--str-chat__spacing-px) * 40)}.str-chat .str-chat__avatar--channel-preview,.str-chat .stream-chat__avatar--channel-preview{--str-chat__avatar-size: calc(var(--str-chat__spacing-px) * 49)}.str-chat .str-chat__avatar--quoted-message-sender,.str-chat .stream-chat__avatar--quoted-message-sender{--str-chat__avatar-size: calc(var(--str-chat__spacing-px) * 20)}.str-chat .str-chat__avatar--reaction,.str-chat .stream-chat__avatar--reaction{--str-chat__avatar-size: calc(var(--str-chat__spacing-px) * 30)}.str-chat .str-chat__avatar--message-status,.str-chat .stream-chat__avatar--message-status{--str-chat__avatar-size: calc(var(--str-chat__spacing-px) * 15)}.str-chat .str-chat__avatar--poll-vote-author{--str-chat__avatar-size: calc(var(--str-chat__spacing-px) * 20)}.str-chat__avatar{position:relative;display:flex;align-items:center;justify-content:center;height:var(--str-chat__avatar-size);line-height:var(--str-chat__avatar-size);width:var(--str-chat__avatar-size);min-width:var(--str-chat__avatar-size)}.str-chat__avatar.str-chat__avatar--one-letter,.str-chat__avatar.stream-chat__avatar--one-letter{font-size:calc(var(--str-chat__avatar-size)*.5)}.str-chat__avatar.str-chat__avatar--no-letters{--str-chat-icon-width: calc(var(--str-chat__avatar-size) * 0.33);--str-chat-icon-height: calc(var(--str-chat__avatar-size) * 0.33)}.str-chat__avatar.str-chat__avatar--multiple-letters,.str-chat__avatar.stream-chat__avatar--multiple-letters{font-size:calc(var(--str-chat__avatar-size)*.3)}.str-chat__avatar .str-chat__avatar-image{height:100%;width:100%;object-fit:cover}.str-chat__avatar .str-chat__avatar-fallback{text-align:center;height:inherit;width:inherit}.str-chat__avatar .str-chat__avatar--online-indicator{position:absolute;width:calc(var(--str-chat__spacing-px)*12);height:calc(var(--str-chat__spacing-px)*12);inset-inline-end:3%;inset-block-start:2%}.str-chat__loading-channels-avatar{flex-shrink:0;width:calc(var(--str-chat__spacing-px)*49);height:calc(var(--str-chat__spacing-px)*49)}.str-chat__avatar-group{display:grid;grid-template-columns:repeat(2, 1fr);grid-template-rows:repeat(2, 1fr);height:var(--str-chat__avatar-size);line-height:var(--str-chat__avatar-size);width:var(--str-chat__avatar-size);min-width:var(--str-chat__avatar-size);overflow:hidden}.str-chat__avatar-group.str-chat__avatar-group--three-part .str-chat__avatar:nth-child(1){grid-area:1/1/3/2}.str-chat__avatar-group.str-chat__avatar-group--three-part .str-chat__avatar:nth-child(2){grid-area:1/2/2/3}.str-chat__avatar-group.str-chat__avatar-group--three-part .str-chat__avatar:nth-child(3){grid-area:2/2/3/3}.str-chat__avatar-group .str-chat__avatar{height:100%;line-height:100%;width:100%;min-width:100%}.str-chat__avatar-group .str-chat__avatar .str-chat__avatar-fallback,.str-chat__avatar-group .str-chat__avatar img{border-radius:0}.str-chat__avatar-group .str-chat__avatar.str-chat__avatar--single .str-chat__avatar-fallback{display:flex;align-items:center;justify-content:center;font-size:calc(var(--str-chat__avatar-size)*.5)}.str-chat__avatar-group .str-chat__avatar .str-chat__avatar-fallback{font-size:calc(var(--str-chat__avatar-size)*.33)}.str-chat{--str-chat__attachment-margin: var(--str-chat__spacing-0_5);--str-chat__gif-height: calc(var(--str-chat__spacing-px) * 200);--str-chat__voice-recording-amplitude-bar-width: 2px;--str-chat__voice-recording-amplitude-bar-gap-width: var(--str-chat__spacing-px)}.str-chat__attachment-list{--str-chat__attachment-max-width: calc( var(--str-chat__message-max-width) - calc(2 * var(--str-chat__attachment-margin)) );--str-chat__video-height: var(--str-chat__attachment-max-width);--str-chat__scraped-image-height: calc(var(--str-chat__attachment-max-width) * calc(1 / 1.91));--str-chat__scraped-video-height: calc(var(--str-chat__attachment-max-width) * calc(9 / 16));display:flex;flex-direction:column;align-items:stretch;min-width:0}.str-chat__attachment-list .str-chat__message-attachment--card .str-chat__message-attachment-card--header{position:relative}.str-chat__attachment-list .str-chat__message-attachment--card .str-chat__message-attachment-card--source-link{padding-bottom:var(--str-chat__spacing-2)}.str-chat__attachment-list .str-chat__message-attachment--card .str-chat__message-attachment-card--text{white-space:nowrap;overflow-y:visible;overflow-x:hidden;overflow-x:clip;text-overflow:ellipsis}.str-chat__attachment-list .str-chat__message-attachment--image,.str-chat__attachment-list .str-chat__message-attachment--video,.str-chat__attachment-list .str-chat__message-attachment-card--header{width:auto;display:flex;justify-content:center;align-items:center;overflow:hidden}.str-chat__attachment-list .str-chat__message-attachment-card--header{height:var(--str-chat__scraped-image-height)}.str-chat__attachment-list .str-chat__message-attachment-card--header img{object-fit:cover;max-height:100%;max-width:100%;width:100%;height:100%;cursor:default}.str-chat__attachment-list .str-chat__message-attachment-card-react--header img{cursor:zoom-in}.str-chat__attachment-list .str-chat__message-attachment-card--giphy .str-chat__message-attachment-card--header{height:var(--str-chat__gif-height)}.str-chat__attachment-list .str-chat__message-attachment-card--giphy .str-chat__message-attachment-card--header img{object-fit:contain;max-height:100%;max-width:100%;cursor:default}.str-chat__attachment-list .str-chat__message-attachment-card--giphy .str-chat__message-attachment-card-react--header img{cursor:zoom-in}.str-chat__attachment-list .str-chat__message-attachment--image:not(.str-chat__message-attachment--card)>img{height:min(var(--str-chat__attachment-max-width),min(var(--str-chat__attachment-max-width, 1000000)/var(--original-width, 1000000),1px)*var(--original-height, 1000000));max-width:var(--str-chat__attachment-max-width);max-height:var(--str-chat__attachment-max-width);object-fit:cover;width:100%;cursor:zoom-in}.str-chat__attachment-list .str-chat__message-attachment--video:not(.str-chat__message-attachment--card),.str-chat__attachment-list .str-chat__message-attachment-card--video .str-chat__message-attachment-card--header{max-width:var(--str-chat__attachment-max-width);display:flex}.str-chat__attachment-list .str-chat__message-attachment--video:not(.str-chat__message-attachment--card) .str-chat__player-wrapper,.str-chat__attachment-list .str-chat__message-attachment-card--video .str-chat__message-attachment-card--header .str-chat__player-wrapper{height:100%;width:100%;min-width:0;max-width:var(--str-chat__attachment-max-width);display:flex;flex-direction:column}.str-chat__attachment-list .str-chat__message-attachment--video:not(.str-chat__message-attachment--card) .str-chat__player-wrapper .react-player,.str-chat__attachment-list .str-chat__message-attachment--video:not(.str-chat__message-attachment--card) .str-chat__player-wrapper .str-chat__video-angular,.str-chat__attachment-list .str-chat__message-attachment-card--video .str-chat__message-attachment-card--header .str-chat__player-wrapper .react-player,.str-chat__attachment-list .str-chat__message-attachment-card--video .str-chat__message-attachment-card--header .str-chat__player-wrapper .str-chat__video-angular{height:100%;width:100%;max-width:var(--str-chat__attachment-max-width);max-height:100%;min-height:0}.str-chat__attachment-list .str-chat__message-attachment--video:not(.str-chat__message-attachment--card):not(.str-chat__message-attachment-dynamic-size){height:var(--str-chat__video-height)}.str-chat__attachment-list .str-chat__message-attachment--video.str-chat__message-attachment-dynamic-size:not(.str-chat__message-attachment--card){max-height:var(--str-chat__video-height)}.str-chat__attachment-list .str-chat__message-attachment--video.str-chat__message-attachment-dynamic-size:not(.str-chat__message-attachment--card) .str-chat__player-wrapper{height:min(var(--str-chat__video-height),min(var(--str-chat__attachment-max-width, 1000000)/var(--original-width, 1000000),1px)*var(--original-height, 1000000));max-height:var(--str-chat__video-height)}.str-chat__attachment-list .str-chat__message-attachment--video.str-chat__message-attachment-dynamic-size:not(.str-chat__message-attachment--card) .str-chat__video-angular{max-height:var(--str-chat__video-height)}.str-chat__attachment-list .str-chat__message-attachment-card--video .str-chat__message-attachment-card--header{height:var(--str-chat__scraped-video-height)}.str-chat__attachment-list .str-chat__message-attachment--video:not(.str-chat__message-attachment--card),.str-chat__attachment-list .str-chat__message-attachment--image:not(.str-chat__message-attachment--card){margin:var(--str-chat__attachment-margin)}.str-chat__attachment-list .str-chat__message-attachment--gallery{margin:var(--str-chat__attachment-margin)}.str-chat__attachment-list .str-chat__message-attachment--gallery .str-chat__gallery{display:grid;grid-template-columns:50% 50%;overflow:hidden;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;gap:var(--str-chat__spacing-0_5);max-width:var(--str-chat__attachment-max-width);height:var(--str-chat__attachment-max-width)}.str-chat__attachment-list .str-chat__message-attachment--gallery .str-chat__gallery.str-chat__gallery-two-rows{grid-template-rows:50% 50%}.str-chat__attachment-list .str-chat__message-attachment--gallery .str-chat__gallery .str-chat__gallery-image{padding:0;margin:0;position:relative}.str-chat__attachment-list .str-chat__message-attachment--gallery .str-chat__gallery .str-chat__gallery-image img{width:100%;height:100%;object-fit:cover;cursor:zoom-in;max-width:var(--str-chat__attachment-max-width)}.str-chat__attachment-list .str-chat__message-attachment--gallery .str-chat__gallery .str-chat__gallery-placeholder{position:relative;display:flex;align-items:center;justify-content:center;background-size:cover;background-position:top left;background-repeat:no-repeat;margin:0;cursor:zoom-in;max-width:var(--str-chat__attachment-max-width)}.str-chat__attachment-list .str-chat__message-attachment--gallery .str-chat__gallery .str-chat__gallery-placeholder p{position:relative;z-index:1}.str-chat__attachment-list .str-chat__message-attachment--gallery .str-chat__gallery .str-chat__gallery-placeholder::after{content:"";position:absolute;top:0;left:0;width:100%;height:100%;z-index:0}.str-chat__attachment-list .str-chat__gallery .str-chat__message-attachment--svg-image,.str-chat__attachment-list .str-chat__message-attachment--image.str-chat__message-attachment--svg-image{padding:var(--str-chat__spacing-6)}.str-chat__attachment-list .str-chat__gallery .str-chat__message-attachment--svg-image img,.str-chat__attachment-list .str-chat__message-attachment--image.str-chat__message-attachment--svg-image img{object-fit:contain;max-width:calc(var(--str-chat__attachment-max-width) - var(--str-chat__spacing-6));max-height:calc(var(--str-chat__attachment-max-width) - var(--str-chat__spacing-6))}.str-chat__attachment-list .str-chat__message-attachment-unsupported{display:flex;align-items:center;justify-content:center;padding:var(--str-chat__spacing-2);-webkit-column-gap:var(--str-chat__spacing-4);column-gap:var(--str-chat__spacing-4);margin:var(--str-chat__attachment-margin)}.str-chat__attachment-list .str-chat__message-attachment-unsupported .str-chat__file-icon{width:calc(var(--str-chat__spacing-px)*30)}.str-chat__attachment-list .str-chat__message-attachment-unsupported .str-chat__message-attachment-unsupported__metadata{min-width:0;flex:1;display:flex;flex-direction:column;align-items:flex-start;justify-content:center}.str-chat__attachment-list .str-chat__message-attachment-unsupported .str-chat__message-attachment-unsupported__title{white-space:nowrap;overflow-y:visible;overflow-x:hidden;overflow-x:clip;text-overflow:ellipsis;max-width:100%}.str-chat__attachment-list .str-chat__message-attachment-file--item,.str-chat__attachment-list .str-chat__message-attachment-audio-widget{display:flex;align-items:center;justify-content:center;padding:var(--str-chat__spacing-2);-webkit-column-gap:var(--str-chat__spacing-4);column-gap:var(--str-chat__spacing-4);margin:var(--str-chat__attachment-margin)}.str-chat__attachment-list .str-chat__message-attachment-file--item .str-chat__message-attachment-file--item-text,.str-chat__attachment-list .str-chat__message-attachment-file--item .str-chat__message-attachment-audio-widget--text,.str-chat__attachment-list .str-chat__message-attachment-audio-widget .str-chat__message-attachment-file--item-text,.str-chat__attachment-list .str-chat__message-attachment-audio-widget .str-chat__message-attachment-audio-widget--text{width:100%;display:flex;flex-direction:column;align-items:flex-start;justify-content:center;row-gap:var(--str-chat__spacing-0_5);min-width:0}.str-chat__attachment-list .str-chat__message-attachment-file--item .str-chat__message-attachment-file--item-text .str-chat__message-attachment-file--item-first-row,.str-chat__attachment-list .str-chat__message-attachment-file--item .str-chat__message-attachment-file--item-text .str-chat__message-attachment-audio-widget--text-first-row,.str-chat__attachment-list .str-chat__message-attachment-file--item .str-chat__message-attachment-audio-widget--text .str-chat__message-attachment-file--item-first-row,.str-chat__attachment-list .str-chat__message-attachment-file--item .str-chat__message-attachment-audio-widget--text .str-chat__message-attachment-audio-widget--text-first-row,.str-chat__attachment-list .str-chat__message-attachment-audio-widget .str-chat__message-attachment-file--item-text .str-chat__message-attachment-file--item-first-row,.str-chat__attachment-list .str-chat__message-attachment-audio-widget .str-chat__message-attachment-file--item-text .str-chat__message-attachment-audio-widget--text-first-row,.str-chat__attachment-list .str-chat__message-attachment-audio-widget .str-chat__message-attachment-audio-widget--text .str-chat__message-attachment-file--item-first-row,.str-chat__attachment-list .str-chat__message-attachment-audio-widget .str-chat__message-attachment-audio-widget--text .str-chat__message-attachment-audio-widget--text-first-row{width:100%;display:flex;align-items:center;justify-content:space-between;-webkit-column-gap:var(--str-chat__spacing-2);column-gap:var(--str-chat__spacing-2)}.str-chat__attachment-list .str-chat__message-attachment-file--item .str-chat__message-attachment-file--item-text .str-chat__message-attachment-file--item-first-row .str-chat__message-attachment-file--item-name,.str-chat__attachment-list .str-chat__message-attachment-file--item .str-chat__message-attachment-file--item-text .str-chat__message-attachment-file--item-first-row .str-chat__message-attachment-audio-widget--title,.str-chat__attachment-list .str-chat__message-attachment-file--item .str-chat__message-attachment-file--item-text .str-chat__message-attachment-audio-widget--text-first-row .str-chat__message-attachment-file--item-name,.str-chat__attachment-list .str-chat__message-attachment-file--item .str-chat__message-attachment-file--item-text .str-chat__message-attachment-audio-widget--text-first-row .str-chat__message-attachment-audio-widget--title,.str-chat__attachment-list .str-chat__message-attachment-file--item .str-chat__message-attachment-audio-widget--text .str-chat__message-attachment-file--item-first-row .str-chat__message-attachment-file--item-name,.str-chat__attachment-list .str-chat__message-attachment-file--item .str-chat__message-attachment-audio-widget--text .str-chat__message-attachment-file--item-first-row .str-chat__message-attachment-audio-widget--title,.str-chat__attachment-list .str-chat__message-attachment-file--item .str-chat__message-attachment-audio-widget--text .str-chat__message-attachment-audio-widget--text-first-row .str-chat__message-attachment-file--item-name,.str-chat__attachment-list .str-chat__message-attachment-file--item .str-chat__message-attachment-audio-widget--text .str-chat__message-attachment-audio-widget--text-first-row .str-chat__message-attachment-audio-widget--title,.str-chat__attachment-list .str-chat__message-attachment-audio-widget .str-chat__message-attachment-file--item-text .str-chat__message-attachment-file--item-first-row .str-chat__message-attachment-file--item-name,.str-chat__attachment-list .str-chat__message-attachment-audio-widget .str-chat__message-attachment-file--item-text .str-chat__message-attachment-file--item-first-row .str-chat__message-attachment-audio-widget--title,.str-chat__attachment-list .str-chat__message-attachment-audio-widget .str-chat__message-attachment-file--item-text .str-chat__message-attachment-audio-widget--text-first-row .str-chat__message-attachment-file--item-name,.str-chat__attachment-list .str-chat__message-attachment-audio-widget .str-chat__message-attachment-file--item-text .str-chat__message-attachment-audio-widget--text-first-row .str-chat__message-attachment-audio-widget--title,.str-chat__attachment-list .str-chat__message-attachment-audio-widget .str-chat__message-attachment-audio-widget--text .str-chat__message-attachment-file--item-first-row .str-chat__message-attachment-file--item-name,.str-chat__attachment-list .str-chat__message-attachment-audio-widget .str-chat__message-attachment-audio-widget--text .str-chat__message-attachment-file--item-first-row .str-chat__message-attachment-audio-widget--title,.str-chat__attachment-list .str-chat__message-attachment-audio-widget .str-chat__message-attachment-audio-widget--text .str-chat__message-attachment-audio-widget--text-first-row .str-chat__message-attachment-file--item-name,.str-chat__attachment-list .str-chat__message-attachment-audio-widget .str-chat__message-attachment-audio-widget--text .str-chat__message-attachment-audio-widget--text-first-row .str-chat__message-attachment-audio-widget--title{white-space:nowrap;overflow-y:visible;overflow-x:hidden;overflow-x:clip;text-overflow:ellipsis;min-width:0}.str-chat__attachment-list .str-chat__message-attachment-file--item .str-chat__message-attachment-file--item-text .str-chat__message-attachment-file--item-first-row .str-chat__message-attachment-download-icon svg,.str-chat__attachment-list .str-chat__message-attachment-file--item .str-chat__message-attachment-file--item-text .str-chat__message-attachment-audio-widget--text-first-row .str-chat__message-attachment-download-icon svg,.str-chat__attachment-list .str-chat__message-attachment-file--item .str-chat__message-attachment-audio-widget--text .str-chat__message-attachment-file--item-first-row .str-chat__message-attachment-download-icon svg,.str-chat__attachment-list .str-chat__message-attachment-file--item .str-chat__message-attachment-audio-widget--text .str-chat__message-attachment-audio-widget--text-first-row .str-chat__message-attachment-download-icon svg,.str-chat__attachment-list .str-chat__message-attachment-audio-widget .str-chat__message-attachment-file--item-text .str-chat__message-attachment-file--item-first-row .str-chat__message-attachment-download-icon svg,.str-chat__attachment-list .str-chat__message-attachment-audio-widget .str-chat__message-attachment-file--item-text .str-chat__message-attachment-audio-widget--text-first-row .str-chat__message-attachment-download-icon svg,.str-chat__attachment-list .str-chat__message-attachment-audio-widget .str-chat__message-attachment-audio-widget--text .str-chat__message-attachment-file--item-first-row .str-chat__message-attachment-download-icon svg,.str-chat__attachment-list .str-chat__message-attachment-audio-widget .str-chat__message-attachment-audio-widget--text .str-chat__message-attachment-audio-widget--text-first-row .str-chat__message-attachment-download-icon svg{width:calc(var(--str-chat__spacing-px)*24);height:calc(var(--str-chat__spacing-px)*16)}.str-chat__attachment-list .str-chat__message-attachment-file--item .str-chat__file-icon{width:calc(var(--str-chat__spacing-px)*34)}.str-chat__attachment-list .str-chat__message-attachment-audio-widget .str-chat__message-attachment-audio-widget--play-controls{display:flex;align-items:center;justify-content:center}.str-chat__attachment-list .str-chat__message-attachment-audio-widget .str-chat__message-attachment-audio-widget--progress-track{max-width:calc(var(--str-chat__spacing-px)*120)}.str-chat__attachment-list .str-chat__message-attachment-audio-widget .str-chat__message-attachment-audio-widget--text-second-row{display:flex;align-items:center;width:100%;grid-column-gap:var(--str-chat__spacing-5);padding-top:var(--str-chat__spacing-2_5)}.str-chat__attachment-list .str-chat__message-attachment-audio-widget .str-chat__message-attachment-audio-widget--text-second-row .str-chat__message-attachment-file--item-size{line-height:calc(var(--str-chat__spacing-px)*14)}.str-chat__attachment-list .str-chat__message-attachment-audio-widget--progress-track{position:relative;height:calc(var(--str-chat__spacing-px)*5);flex:1;cursor:pointer}.str-chat__attachment-list .str-chat__message-attachment-audio-widget--progress-track .str-chat__message-attachment-audio-widget--progress-indicator{position:absolute;inset-inline-start:0;height:inherit}.str-chat__attachment-list .str-chat__message-attachment__voice-recording-widget{display:grid;grid-template-columns:36px auto 55px;align-items:center;justify-content:center;gap:calc(var(--str-chat__spacing-px)*9);padding:var(--str-chat__spacing-2);margin:var(--str-chat__attachment-margin)}.str-chat__attachment-list .str-chat__message-attachment__voice-recording-widget .str-chat__message-attachment__voice-recording-widget__metadata{flex:1;min-width:0;display:flex;flex-direction:column;gap:var(--str-chat__spacing-2)}.str-chat__attachment-list .str-chat__message-attachment__voice-recording-widget .str-chat__message-attachment__voice-recording-widget__metadata a{cursor:pointer;text-decoration:none}.str-chat__attachment-list .str-chat__message-attachment__voice-recording-widget .str-chat__message-attachment__voice-recording-widget__metadata .str-chat__message-attachment-voice-recording-widget--first-row{overflow-y:visible;overflow-x:hidden;overflow-x:clip;min-width:0;width:100%;display:flex;align-items:center;justify-content:space-between;gap:var(--str-chat__spacing-1)}.str-chat__attachment-list .str-chat__message-attachment__voice-recording-widget .str-chat__message-attachment__voice-recording-widget__metadata .str-chat__message-attachment__voice-recording-widget__title{white-space:nowrap;overflow-y:visible;overflow-x:hidden;overflow-x:clip;text-overflow:ellipsis;min-width:0}.str-chat__attachment-list .str-chat__message-attachment__voice-recording-widget .str-chat__message-attachment__voice-recording-widget__metadata .str-chat__message-attachment-download-icon svg{width:calc(var(--str-chat__spacing-px)*24);height:calc(var(--str-chat__spacing-px)*16)}.str-chat__attachment-list .str-chat__message-attachment__voice-recording-widget .str-chat__message-attachment__voice-recording-widget__metadata .str-chat__message-attachment__voice-recording-widget__audio-state{display:flex;align-items:center;justify-content:space-between;gap:var(--str-chat__spacing-1_5);height:100%}.str-chat__attachment-list .str-chat__message-attachment__voice-recording-widget .str-chat__message-attachment__voice-recording-widget__metadata .str-chat__message-attachment__voice-recording-widget__error-message{display:flex;align-items:center;justify-content:flex-start;gap:var(--str-chat__spacing-1)}.str-chat__attachment-list .str-chat__message-attachment__voice-recording-widget .str-chat__message-attachment__voice-recording-widget__right-section{justify-self:center}.str-chat__attachment-list .str-chat__message-attachment__voice-recording-widget .str-chat__message-attachment__voice-recording-widget__timer{min-width:calc(var(--str-chat__spacing-px)*45);width:calc(var(--str-chat__spacing-px)*45)}.str-chat__attachment-list .str-chat__message-attachment__voice-recording-widget stream-voice-recording-wavebar{flex:1}.str-chat__attachment-list .str-chat__message-attachment__voice-recording-widget .str-chat__wave-progress-bar__track{position:relative;flex:1;width:100%;height:calc(var(--str-chat__spacing-px)*25);display:flex;align-items:center;justify-content:space-between;gap:var(--str-chat__voice-recording-amplitude-bar-gap-width)}.str-chat__attachment-list .str-chat__message-attachment__voice-recording-widget .str-chat__wave-progress-bar__track .str-chat__wave-progress-bar__amplitude-bar{width:var(--str-chat__voice-recording-amplitude-bar-width);min-width:var(--str-chat__voice-recording-amplitude-bar-width);height:calc(
          var(--str-chat__wave-progress-bar__amplitude-bar-height) + 2px
        )}.str-chat__attachment-list .str-chat__message-attachment__voice-recording-widget .str-chat__wave-progress-bar__track .str-chat__wave-progress-bar__progress-indicator{position:absolute;left:0;height:calc(100% + 2px + 2px);width:calc(var(--str-chat__spacing-px)*6)}.str-chat__attachment-list .str-chat__message_attachment__playback-rate-button{display:flex;align-items:center;justify-content:center;background:none;border:none;padding:var(--str-chat__spacing-1_5) var(--str-chat__spacing-2_5)}.str-chat__attachment-list .str-chat__message-attachment-card{min-width:0;max-width:var(--str-chat__attachment-max-width);margin:var(--str-chat__attachment-margin)}.str-chat__attachment-list .str-chat__message-attachment-card .str-chat__message-attachment-card--content{padding:var(--str-chat__spacing-2_5)}.str-chat__attachment-list .str-chat__message-attachment-card .str-chat__message-attachment-card--content .str-chat__message-attachment-card--title{white-space:nowrap;overflow-y:visible;overflow-x:hidden;overflow-x:clip;text-overflow:ellipsis}.str-chat__attachment-list .str-chat__message-attachment-card--audio .str-chat__message-attachment-card--content{padding:0}.str-chat__attachment-list .str-chat__message-attachment-card--audio .str-chat__message-attachment-card--content .str-chat__message-attachment-card-audio-widget{display:flex;flex-direction:column;row-gap:var(--str-chat__spacing-2_5);width:100%;padding:var(--str-chat__spacing-2)}.str-chat__attachment-list .str-chat__message-attachment-card--audio .str-chat__message-attachment-card--content .str-chat__message-attachment-card-audio-widget .str-chat__message-attachment-card-audio-widget--first-row{display:flex;align-items:center;-webkit-column-gap:var(--str-chat__spacing-3_5);column-gap:var(--str-chat__spacing-3_5)}.str-chat__attachment-list .str-chat__message-attachment-actions .str-chat__message-attachment-actions-form{display:flex;justify-content:stretch}.str-chat__attachment-list .str-chat__message-attachment-actions .str-chat__message-attachment-actions-form .str-chat__message-attachment-actions-button{cursor:pointer;width:100%;padding:var(--str-chat__spacing-3) var(--str-chat__spacing-4);white-space:nowrap}.str-chat__attachment-list .str-chat__message-attachment-with-actions.str-chat__message-attachment--giphy .str-chat__message-attachment-card .str-chat__message-attachment-card--content{display:none}.str-chat__attachment-list .str-chat-angular__message-attachment-file-single .str-chat__message-attachment-file--item-first-row{cursor:pointer;text-decoration:none}.str-chat__attachment-list .str-chat__message-attachment-download-icon{--str-chat-icon-height: calc(var(--str-chat__spacing-px) * 16)}.str-chat__attachment-list .str-chat__attachment-type-icon{--str-chat-icon-height: calc(var(--str-chat__spacing-px) * 37)}.str-chat__message-attachment-audio-widget--play-button{--str-chat-icon-height: calc(var(--str-chat__spacing-px) * 24);display:flex;align-items:center;justify-content:center;height:calc(var(--str-chat__spacing-px)*36);width:calc(var(--str-chat__spacing-px)*36);cursor:pointer}.str-chat__message-attachment-audio-widget--play-button svg{width:var(--str-chat__spacing-3)}.str-chat__quoted-message-preview{--str-chat__attachment-margin: 0px}.str-chat__quoted-message-preview *{cursor:pointer !important}.str-chat__quoted-message-preview .str-chat__message-attachment-card .str-chat__message-attachment-card--source-link,.str-chat__quoted-message-preview .str-chat__message-attachment-card .str-chat__message-attachment-card--content{display:none}.str-chat__quoted-message-preview .str-chat__message-attachment__voice-recording-widget{display:flex;justify-content:space-between}.str-chat__quoted-message-preview .str-chat__message-attachment__voice-recording-widget .str-chat__wave-progress-bar__track{display:none}.str-chat__quoted-message-preview .str-chat__message-attachment__voice-recording-widget .str-chat__message-attachment-audio-widget--play-button{display:none}.str-chat__quoted-message-preview .str-chat__message-attachment-file--item-download{display:none}.str-chat__message .str-chat__quoted-message-preview .str-chat__message-attachment-file--item{padding:0}.str-chat__audio_recorder__waveform-box,.str-chat__wave-progress-bar__track{position:relative;flex:1;width:120px;height:calc(var(--str-chat__spacing-px)*25);display:flex;align-items:center;gap:var(--str-chat__spacing-px)}.str-chat__audio_recorder__waveform-box .str-chat__wave-progress-bar__amplitude-bar,.str-chat__wave-progress-bar__track .str-chat__wave-progress-bar__amplitude-bar{width:2px;min-width:2px;height:calc(var(--str-chat__wave-progress-bar__amplitude-bar-height) + 2px)}.str-chat__audio_recorder__waveform-box .str-chat__wave-progress-bar__progress-indicator,.str-chat__wave-progress-bar__track .str-chat__wave-progress-bar__progress-indicator{position:absolute;left:0;height:calc(100% + 2px + 2px);width:calc(var(--str-chat__spacing-px)*6)}.str-chat__attachment-list-angular-host{min-width:0}.str-chat__attachment-list-angular-host .str-chat__message-attachment-card--video{width:100%}.str-chat__attachment-list-angular-host .str-chat__message-attachment-card--video a{display:block;width:100%;height:100%;position:relative}.str-chat__attachment-list-angular-host .str-chat__message-attachment-card--video a .str-chat__message-attachment-card--video-play,.str-chat__attachment-list-angular-host .str-chat__message-attachment-card--video a stream-icon-placeholder{position:absolute;top:50%;left:0;right:0;margin:auto;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:calc(var(--str-chat__spacing-px)*36);height:calc(var(--str-chat__spacing-px)*36)}.str-chat__attachment-list-angular-host .str-chat__message-attachment-card--video a img{cursor:pointer}.str-chat__attachment-preview-list{--str-chat__loading-indicator-size: calc(var(--str-chat__spacing-px) * 18);display:flex;align-items:center;justify-content:center;padding:var(--str-chat__spacing-1_5);width:100%}.str-chat__attachment-preview-list .str-chat__attachment-list-scroll-container{overflow-y:hidden;overflow-x:auto;width:100%;max-width:100%;display:flex;align-items:center;justify-content:flex-start;-webkit-column-gap:var(--str-chat__spacing-2);column-gap:var(--str-chat__spacing-2)}.str-chat__attachment-preview-list .str-chat__attachment-preview-image{display:flex;align-items:center;justify-content:center;position:relative;height:calc(var(--str-chat__spacing-px)*72);width:calc(var(--str-chat__spacing-px)*72);min-width:calc(var(--str-chat__spacing-px)*72);overflow:hidden}.str-chat__attachment-preview-list .str-chat__attachment-preview-image .str-chat__attachment-preview-image-loading{display:flex;align-items:center;justify-content:center;position:absolute;width:100%;height:100%}.str-chat__attachment-preview-list .str-chat__attachment-preview-image .str-chat__attachment-preview-thumbnail{object-fit:cover;height:calc(var(--str-chat__spacing-px)*72);width:calc(var(--str-chat__spacing-px)*72);word-break:break-all;overflow:hidden}.str-chat__attachment-preview-list .str-chat__attachment-preview-unsupported,.str-chat__attachment-preview-list .str-chat__attachment-preview-voice-recording,.str-chat__attachment-preview-list .str-chat__attachment-preview-file{display:flex;justify-content:flex-start;align-items:center;height:calc(var(--str-chat__spacing-px)*72);width:calc(var(--str-chat__spacing-px)*200);position:relative;padding:0 var(--str-chat__spacing-4);-webkit-column-gap:var(--str-chat__spacing-2);column-gap:var(--str-chat__spacing-2)}.str-chat__attachment-preview-list .str-chat__attachment-preview-unsupported .str-chat__attachment-preview-metadata,.str-chat__attachment-preview-list .str-chat__attachment-preview-unsupported .str-chat__attachment-preview-file-end,.str-chat__attachment-preview-list .str-chat__attachment-preview-voice-recording .str-chat__attachment-preview-metadata,.str-chat__attachment-preview-list .str-chat__attachment-preview-voice-recording .str-chat__attachment-preview-file-end,.str-chat__attachment-preview-list .str-chat__attachment-preview-file .str-chat__attachment-preview-metadata,.str-chat__attachment-preview-list .str-chat__attachment-preview-file .str-chat__attachment-preview-file-end{overflow-y:visible;overflow-x:hidden;overflow-x:clip;min-width:0;flex:1;display:flex;flex-direction:column;align-items:flex-start;justify-content:center}.str-chat__attachment-preview-list .str-chat__attachment-preview-unsupported .str-chat__attachment-preview-metadata .str-chat__attachment-preview-title,.str-chat__attachment-preview-list .str-chat__attachment-preview-unsupported .str-chat__attachment-preview-metadata .str-chat__attachment-preview-file-name,.str-chat__attachment-preview-list .str-chat__attachment-preview-unsupported .str-chat__attachment-preview-file-end .str-chat__attachment-preview-title,.str-chat__attachment-preview-list .str-chat__attachment-preview-unsupported .str-chat__attachment-preview-file-end .str-chat__attachment-preview-file-name,.str-chat__attachment-preview-list .str-chat__attachment-preview-voice-recording .str-chat__attachment-preview-metadata .str-chat__attachment-preview-title,.str-chat__attachment-preview-list .str-chat__attachment-preview-voice-recording .str-chat__attachment-preview-metadata .str-chat__attachment-preview-file-name,.str-chat__attachment-preview-list .str-chat__attachment-preview-voice-recording .str-chat__attachment-preview-file-end .str-chat__attachment-preview-title,.str-chat__attachment-preview-list .str-chat__attachment-preview-voice-recording .str-chat__attachment-preview-file-end .str-chat__attachment-preview-file-name,.str-chat__attachment-preview-list .str-chat__attachment-preview-file .str-chat__attachment-preview-metadata .str-chat__attachment-preview-title,.str-chat__attachment-preview-list .str-chat__attachment-preview-file .str-chat__attachment-preview-metadata .str-chat__attachment-preview-file-name,.str-chat__attachment-preview-list .str-chat__attachment-preview-file .str-chat__attachment-preview-file-end .str-chat__attachment-preview-title,.str-chat__attachment-preview-list .str-chat__attachment-preview-file .str-chat__attachment-preview-file-end .str-chat__attachment-preview-file-name{white-space:nowrap;overflow-y:visible;overflow-x:hidden;overflow-x:clip;text-overflow:ellipsis;max-width:100%}.str-chat__attachment-preview-list .str-chat__attachment-preview-unsupported .str-chat__attachment-preview-file-icon,.str-chat__attachment-preview-list .str-chat__attachment-preview-voice-recording .str-chat__attachment-preview-file-icon,.str-chat__attachment-preview-list .str-chat__attachment-preview-file .str-chat__attachment-preview-file-icon{--str-chat-icon-height: calc(var(--str-chat__spacing-px) * 37);--str-chat-icon-width: auto;display:flex;align-items:center;justify-content:center}.str-chat__attachment-preview-list .str-chat__attachment-preview-unsupported .str-chat__attachment-preview-file-icon svg,.str-chat__attachment-preview-list .str-chat__attachment-preview-voice-recording .str-chat__attachment-preview-file-icon svg,.str-chat__attachment-preview-list .str-chat__attachment-preview-file .str-chat__attachment-preview-file-icon svg{height:calc(var(--str-chat__spacing-px)*37);width:unset}.str-chat__attachment-preview-list .str-chat__attachment-preview-file .str-chat__attachment-preview-file-end .str-chat__attachment-preview-file-download{--str-chat-icon-height: calc(var(--str-chat__spacing-px) * 16);line-height:calc(var(--str-chat__spacing-px)*13)}.str-chat__attachment-preview-list .str-chat__attachment-preview-file .str-chat__attachment-preview-file-end .str-chat__attachment-preview-file-download svg{width:calc(var(--str-chat__spacing-px)*16);height:calc(var(--str-chat__spacing-px)*16)}.str-chat__attachment-preview-list button.str-chat__attachment-preview-delete{padding:unset;background:unset;border:unset;border-radius:var(--str-chat__border-radius-circle);display:flex}.str-chat__attachment-preview-list .str-chat__attachment-preview-delete{--str-chat-icon-height: calc(var(--str-chat__spacing-px) * 24);position:absolute;top:calc(var(--str-chat__spacing-px)*2);inset-inline-end:calc(var(--str-chat__spacing-px)*2);cursor:pointer;z-index:0}.str-chat__attachment-preview-list .str-chat__attachment-preview-delete svg{width:calc(var(--str-chat__spacing-px)*24);height:calc(var(--str-chat__spacing-px)*24)}.str-chat__attachment-preview-list .str-chat__attachment-preview-error{--str-chat-icon-height: calc(var(--str-chat__spacing-px) * 24);display:flex;align-items:center;justify-content:center;position:absolute;width:100%;height:100%;padding:unset;background:unset;border:unset;border-radius:unset;inset-inline-start:0;cursor:pointer;z-index:0}.str-chat__attachment-preview-list-angular-host{width:100%;max-width:100%}.str-chat__message-textarea-angular-host{position:relative}.str-chat__message-textarea-angular-host mention-list{width:100%}.str-chat__message-textarea-angular-host .mention-menu{padding:var(--str-chat__spacing-2) 0 !important;margin:0 !important;max-width:100%}.str-chat__message-textarea-angular-host .mention-menu .mention-item{padding:0 !important}.str-chat__suggestion-list-container{position:absolute;bottom:calc(100% + var(--str-chat__spacing-2_5));width:100%;padding:var(--str-chat__spacing-2) 0}.str-chat__suggestion-list-container .str-chat__suggestion-list{overflow-y:auto;max-height:calc(var(--str-chat__spacing-px)*320);display:flex;flex-direction:column;list-style:none;padding:unset;margin:unset}.str-chat__slash-command{padding:var(--str-chat__spacing-2_5)}.str-chat__slash-command .str-chat__slash-command-header .str-chat__slash-command-args{-webkit-margin-start:var(--str-chat__spacing-2);margin-inline-start:var(--str-chat__spacing-2)}.str-chat__user-item{display:flex;align-items:center;justify-content:center;padding:var(--str-chat__spacing-2_5);-webkit-column-gap:var(--str-chat__spacing-2);column-gap:var(--str-chat__spacing-2)}.str-chat__user-item .str-chat__user-item--name{white-space:nowrap;overflow-y:visible;overflow-x:hidden;overflow-x:clip;text-overflow:ellipsis;overflow-y:hidden;width:100%}.str-chat__emoji-item{display:flex;align-items:center;justify-content:center;padding:var(--str-chat__spacing-2_5);-webkit-column-gap:var(--str-chat__spacing-2);column-gap:var(--str-chat__spacing-2)}.str-chat__emoji-item .str-chat__emoji-item--name{white-space:nowrap;overflow-y:visible;overflow-x:hidden;overflow-x:clip;text-overflow:ellipsis;width:100%}.str-chat__message-textarea-angular-host--autocomplete-hidden mention-list{display:none}.str-chat__audio_recorder-container{bottom:0;display:flex;align-items:center;justify-content:flex-end;width:100%;min-height:3.25rem;padding-inline:1rem}.str-chat__audio_recorder,stream-voice-recorder-wavebar{display:flex;align-items:center;justify-content:center;gap:.375rem}.str-chat__audio_recorder button,stream-voice-recorder-wavebar button{display:flex;align-items:center;justify-content:center;height:32px;width:32px;padding:0}.str-chat__audio_recorder .str-chat__audio_recorder__cancel-button,stream-voice-recorder-wavebar .str-chat__audio_recorder__cancel-button{--str-chat-icon-height: 28px}.str-chat__audio_recorder .str-chat__audio_recorder__cancel-button svg,stream-voice-recorder-wavebar .str-chat__audio_recorder__cancel-button svg{height:28px}.str-chat__audio_recorder .str-chat__audio_recorder__toggle-playback-button,stream-voice-recorder-wavebar .str-chat__audio_recorder__toggle-playback-button{--str-chat-icon-height: 16px}.str-chat__audio_recorder .str-chat__audio_recorder__toggle-playback-button svg,stream-voice-recorder-wavebar .str-chat__audio_recorder__toggle-playback-button svg{height:16px}.str-chat__audio_recorder .str-chat__audio_recorder__pause-recording-button,stream-voice-recorder-wavebar .str-chat__audio_recorder__pause-recording-button{--str-chat-icon-height: 12px}.str-chat__audio_recorder .str-chat__audio_recorder__pause-recording-button svg,stream-voice-recorder-wavebar .str-chat__audio_recorder__pause-recording-button svg{height:12px}.str-chat__audio_recorder .str-chat__audio_recorder__resume-recording-button,stream-voice-recorder-wavebar .str-chat__audio_recorder__resume-recording-button{--str-chat-icon-height: 24px}.str-chat__audio_recorder .str-chat__audio_recorder__resume-recording-button svg,stream-voice-recorder-wavebar .str-chat__audio_recorder__resume-recording-button svg{height:24px}.str-chat__audio_recorder .str-chat__audio_recorder__stop-button,stream-voice-recorder-wavebar .str-chat__audio_recorder__stop-button{--str-chat-icon-height: 12px}.str-chat__audio_recorder .str-chat__audio_recorder__stop-button svg,stream-voice-recorder-wavebar .str-chat__audio_recorder__stop-button svg{height:12px}.str-chat__audio_recorder .str-chat__audio_recorder__complete-button,stream-voice-recorder-wavebar .str-chat__audio_recorder__complete-button{--str-chat-icon-height: 16px}.str-chat__audio_recorder .str-chat__audio_recorder__complete-button svg,stream-voice-recorder-wavebar .str-chat__audio_recorder__complete-button svg{height:16px}.str-chat__audio_recorder .str-chat__recording-timer,stream-voice-recorder-wavebar .str-chat__recording-timer{display:flex;align-items:center;width:3rem}.str-chat__audio_recorder .str-chat__recording-timer--hours,stream-voice-recorder-wavebar .str-chat__recording-timer--hours{width:3.75rem}.str-chat__audio_recorder .str-chat__wave-progress-bar__track-container,stream-voice-recorder-wavebar .str-chat__wave-progress-bar__track-container{padding-block:.5rem;overflow-x:auto;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content}.str-chat__audio_recorder .str-chat__waveform-box-container,stream-voice-recorder-wavebar .str-chat__waveform-box-container{flex:1;display:flex;align-items:center;justify-content:flex-end;width:100%}.str-chat__audio_recorder .str-chat__audio_recorder__waveform-box,.str-chat__audio_recorder .str-chat__wave-progress-bar__track,stream-voice-recorder-wavebar .str-chat__audio_recorder__waveform-box,stream-voice-recorder-wavebar .str-chat__wave-progress-bar__track{display:flex;justify-content:flex-end;align-items:center;flex-wrap:nowrap;height:2rem;margin-inline:1rem}.str-chat__audio_recorder .str-chat__wave-progress-bar__track,stream-voice-recorder-wavebar .str-chat__wave-progress-bar__track{width:120px}.str-chat__audio_recorder .str-chat__audio_recorder__waveform-box,stream-voice-recorder-wavebar .str-chat__audio_recorder__waveform-box{overflow-x:hidden}.str-chat__audio_recorder-container .str-chat__message-attachment__voice-recording-widget{display:flex;gap:var(--str-chat__spacing-1_5)}.str-chat__audio_recorder-container .str-chat__message-attachment__voice-recording-widget .str-chat__message-attachment-voice-recording-widget--first-row{display:none}.str-chat__audio_recorder-container .str-chat__message-attachment__voice-recording-widget .str-chat__message-attachment__voice-recording-widget__audio-state{display:flex;gap:var(--str-chat__spacing-1_5)}.str-chat__audio_recorder-container .str-chat__message-attachment__voice-recording-widget .str-chat__message-attachment__voice-recording-widget__audio-state .str-chat__message-attachment__voice-recording-widget__timer{min-width:3rem;align-self:center}.str-chat__audio_recorder-container .str-chat__message-attachment__voice-recording-widget .str-chat__message-attachment__voice-recording-widget__right-section{display:none}.str-chat__base-image .str-chat__message-attachment-file--item-download{display:block}.str-chat__message-attachment-card--header .str-chat__message-attachment-file--item-download,.str-chat__gallery-image .str-chat__message-attachment-file--item-download,.str-chat__message-attachment--image .str-chat__message-attachment-file--item-download{position:absolute;top:.5rem;right:1rem}.str-chat__attachment-preview-image .str-chat__message-attachment-file--item-download{display:none}.str-chat__channel{height:100%;display:flex;flex-direction:column;position:relative}.str-chat__channel .str-chat__container{height:100%;display:flex}.str-chat__channel .str-chat__container .str-chat__main-panel{height:100%;display:flex;flex-direction:column;width:100%;min-width:0}.str-chat__empty-channel{--str-chat-icon-height: calc(var(--str-chat__spacing-px) * 136);height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:var(--str-chat__spacing-4);position:relative}.str-chat__empty-channel svg{width:calc(var(--str-chat__spacing-px)*136);height:calc(var(--str-chat__spacing-px)*136)}.str-chat__empty-channel .str-chat__empty-channel-notifications{position:absolute;inset-block-end:var(--str-chat__spacing-2)}.str-chat__loading-channel{height:100%;display:flex;flex-direction:column}.str-chat__loading-channel .str-chat__loading-channel-header{display:flex;padding:var(--str-chat__spacing-2);-webkit-column-gap:var(--str-chat__spacing-4);column-gap:var(--str-chat__spacing-4);align-items:center}.str-chat__loading-channel .str-chat__loading-channel-header .str-chat__loading-channel-header-avatar{flex-shrink:0;width:calc(var(--str-chat__spacing-px)*40);height:calc(var(--str-chat__spacing-px)*40);border-radius:var(--str-chat__avatar-border-radius)}.str-chat__loading-channel .str-chat__loading-channel-header .str-chat__loading-channel-header-end{display:flex;flex-direction:column;overflow-y:hidden;overflow-x:hidden;flex:1;row-gap:var(--str-chat__spacing-1_5)}.str-chat__loading-channel .str-chat__loading-channel-header .str-chat__loading-channel-header-end .str-chat__loading-channel-header-name{border-radius:var(--str-chat__border-radius-xs);height:calc(var(--str-chat__spacing-px)*16);width:calc(var(--str-chat__spacing-px)*170)}.str-chat__loading-channel .str-chat__loading-channel-header .str-chat__loading-channel-header-end .str-chat__loading-channel-header-info{border-radius:var(--str-chat__border-radius-xs);height:calc(var(--str-chat__spacing-px)*16);width:calc(var(--str-chat__spacing-px)*66)}.str-chat__loading-channel .str-chat__loading-channel-message-list{padding:0 var(--str-chat__spacing-2);height:100%}.str-chat__loading-channel .str-chat__loading-channel-message-list .str-chat__li{margin-inline:calc(-1 * var(--str-chat__spacing-2));padding-inline:var(--str-chat__spacing-2)}.str-chat__loading-channel .str-chat__loading-channel-message-list .str-chat__parent-message-li{margin-inline:calc(-1 * var(--str-chat__spacing-2))}@media only screen and (min-device-width: 768px){.str-chat__loading-channel .str-chat__loading-channel-message-list{padding:0 min(var(--str-chat__spacing-10),4%)}.str-chat__loading-channel .str-chat__loading-channel-message-list .str-chat__li{margin-inline:calc(-1 * min(var(--str-chat__spacing-10), 4%));padding-inline:min(var(--str-chat__spacing-10),4%)}.str-chat__loading-channel .str-chat__loading-channel-message-list .str-chat__parent-message-li{margin-inline:calc(-1 * min(var(--str-chat__spacing-10), 4%) - 2px)}}.str-chat__loading-channel .str-chat__loading-channel-message-list .str-chat__loading-channel-message{display:flex;width:100%;-webkit-column-gap:var(--str-chat__spacing-2);column-gap:var(--str-chat__spacing-2);padding:var(--str-chat__spacing-4) 0}.str-chat__loading-channel .str-chat__loading-channel-message-list .str-chat__loading-channel-message .str-chat__loading-channel-message-avatar{flex-shrink:0;width:calc(var(--str-chat__spacing-px)*49);height:calc(var(--str-chat__spacing-px)*49)}.str-chat__loading-channel .str-chat__loading-channel-message-list .str-chat__loading-channel-message .str-chat__loading-channel-message-end{display:flex;flex-direction:column;width:100%;row-gap:var(--str-chat__spacing-2)}.str-chat__loading-channel .str-chat__loading-channel-message-list .str-chat__loading-channel-message .str-chat__loading-channel-message-end .str-chat__loading-channel-message-last-row{display:flex;width:100%;-webkit-column-gap:var(--str-chat__spacing-2);column-gap:var(--str-chat__spacing-2)}.str-chat__loading-channel .str-chat__loading-channel-message-list .str-chat__loading-channel-message .str-chat__loading-channel-message-sender{height:calc(var(--str-chat__spacing-px)*16);width:calc(var(--str-chat__spacing-px)*66)}.str-chat__loading-channel .str-chat__loading-channel-message-list .str-chat__loading-channel-message .str-chat__loading-channel-message-text{height:calc(var(--str-chat__spacing-px)*16);width:100%}.str-chat__loading-channel .str-chat__loading-channel-message-list .str-chat__loading-channel-message .str-chat__loading-channel-message-date{height:calc(var(--str-chat__spacing-px)*16);width:calc(var(--str-chat__spacing-px)*50)}.str-chat__loading-channel .str-chat__loading-channel-message-list .str-chat__loading-channel-message:nth-of-type(2){flex-direction:row-reverse}.str-chat__loading-channel .str-chat__loading-channel-message-list .str-chat__loading-channel-message:nth-of-type(2) .str-chat__loading-channel-message-sender{align-self:end}.str-chat__loading-channel .str-chat__loading-channel-message-list .str-chat__loading-channel-message:nth-of-type(2) .str-chat__loading-channel-message-last-row{flex-direction:row-reverse}.str-chat__loading-channel .str-chat__loading-channel-message-input-row{display:flex;-webkit-column-gap:var(--str-chat__spacing-2);column-gap:var(--str-chat__spacing-2);padding:var(--str-chat__spacing-2)}.str-chat__loading-channel .str-chat__loading-channel-message-input-row .str-chat__loading-channel-message-input{width:100%;height:calc(var(--str-chat__spacing-px)*36)}.str-chat__loading-channel .str-chat__loading-channel-message-input-row .str-chat__loading-channel-message-send{height:calc(var(--str-chat__spacing-px)*36);width:calc(var(--str-chat__spacing-px)*36)}.str-chat__channel-header{display:flex;padding:var(--str-chat__spacing-2);-webkit-column-gap:var(--str-chat__spacing-4);column-gap:var(--str-chat__spacing-4);align-items:center}.str-chat__channel-header .str-chat__header-hamburger{display:none}.str-chat__channel-header .str-chat__channel-header-end{display:flex;flex-direction:column;overflow-y:hidden;overflow-x:hidden;flex:1;row-gap:var(--str-chat__spacing-1_5)}.str-chat__channel-header .str-chat__channel-header-end p{margin:0}.str-chat__channel-header .str-chat__channel-header-end .str-chat__channel-header-title,.str-chat__channel-header .str-chat__channel-header-end .str-chat__channel-header-info{white-space:nowrap;overflow-y:visible;overflow-x:hidden;overflow-x:clip;text-overflow:ellipsis}.str-chat__channel-header .str-chat__channel-header-end .str-chat__channel-header-title{overflow-y:hidden}.str-chat__channel-list{display:flex;flex-direction:column;height:100%;overflow-y:auto;overflow-x:hidden}.str-chat__channel-list .str-chat__channel-list-messenger{height:100%}.str-chat__channel-list .str-chat__channel-list-messenger .str-chat__channel-list-messenger__main{height:100%}.str-chat__channel-list .str-chat__channel-list-messenger .str-chat__channel-list-messenger__main .str-chat__channel-list-empty{--str-chat-icon-height: calc(var(--str-chat__spacing-px) * 136);height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:var(--str-chat__spacing-4)}.str-chat__channel-list .str-chat__channel-list-messenger .str-chat__channel-list-messenger__main .str-chat__channel-list-empty svg{width:calc(var(--str-chat__spacing-px)*136);height:calc(var(--str-chat__spacing-px)*136)}.str-chat__channel-list .str-chat__channel-list-messenger .str-chat__channel-list-messenger__main .str-chat__channel-list-empty-v1{display:none}.str-chat__channel-list .str-chat__load-more-button{display:flex;justify-content:center;margin:var(--str-chat__spacing-2) 0}.str-chat__channel-list .str-chat__load-more-button .str-chat__load-more-button__button{display:flex;align-items:center;justify-content:center}.str-chat__channel-list .stream-chat__paginated-list{gap:0}.str-chat__channel-list-react{overflow:hidden}.str-chat__channel-list-react .str-chat__channel-list-messenger-react{overflow:hidden;padding-bottom:var(--str-chat__spacing-2_5)}.str-chat__channel-list-react .str-chat__channel-list-messenger-react .str-chat__channel-list-messenger-react__main{overflow-y:auto}.str-chat-angular__channel-list .str-chat__channel-list-messenger__main{display:flex;flex-direction:column}.str-chat-angular__channel-list .str-chat__channel-list-messenger__main stream-paginated-list{min-height:0}.str-chat__channel-preview{display:flex;-webkit-column-gap:var(--str-chat__spacing-2);column-gap:var(--str-chat__spacing-2);align-items:center;justify-content:flex-start;width:100%;padding:var(--str-chat__spacing-3) var(--str-chat__spacing-2);margin:0;text-align:start;cursor:pointer}.str-chat__channel-preview .str-chat__channel-preview-end{display:flex;flex-direction:column;row-gap:var(--str-chat__spacing-0_5);width:100%;overflow-y:visible;overflow-x:hidden;overflow-x:clip;min-width:0}.str-chat__channel-preview .str-chat__channel-preview-end .str-chat__channel-preview-end-first-row{display:flex;-webkit-column-gap:var(--str-chat__spacing-1);column-gap:var(--str-chat__spacing-1);align-items:stretch}.str-chat__channel-preview .str-chat__channel-preview-end .str-chat__channel-preview-end-first-row .str-chat__channel-preview-unread-badge{display:flex;align-items:center;padding:0 var(--str-chat__spacing-2)}.str-chat__channel-preview .str-chat__channel-preview-end .str-chat__channel-preview-end-first-row .str-chat__channel-preview-messenger--name{width:100%}.str-chat__channel-preview .str-chat__channel-preview-end .str-chat__channel-preview-end-second-row{overflow-y:visible;overflow-x:hidden;overflow-x:clip;min-width:0;display:flex;-webkit-column-gap:var(--str-chat__spacing-1);column-gap:var(--str-chat__spacing-1);align-items:center}.str-chat__channel-preview .str-chat__channel-preview-end .str-chat__channel-preview-end-second-row .str-chat__channel-preview-messenger--last-message{flex:1}.str-chat__channel-preview .str-chat__channel-preview-end .str-chat__channel-preview-end-second-row .str-chat__channel-preview-messenger--status{--str-chat-icon-height: calc(var(--str-chat__spacing-px) * 15)}.str-chat__channel-preview .str-chat__channel-preview-end .str-chat__channel-preview-end-second-row .str-chat__channel-preview-messenger--status svg{width:calc(var(--str-chat__spacing-px)*15);height:calc(var(--str-chat__spacing-px)*15)}.str-chat__channel-preview .str-chat__channel-preview-end .str-chat__channel-preview-messenger--name,.str-chat__channel-preview .str-chat__channel-preview-end .str-chat__channel-preview-messenger--last-message{white-space:nowrap;overflow-y:visible;overflow-x:hidden;overflow-x:clip;text-overflow:ellipsis;overflow-y:hidden;min-width:0}.str-chat__channel-preview .str-chat__channel-preview-end .str-chat__channel-preview-messenger--name p,.str-chat__channel-preview .str-chat__channel-preview-end .str-chat__channel-preview-messenger--last-message p{white-space:nowrap;overflow-y:visible;overflow-x:hidden;overflow-x:clip;text-overflow:ellipsis;margin:0}.str-chat__channel-preview-loading{display:flex;-webkit-column-gap:var(--str-chat__spacing-2);column-gap:var(--str-chat__spacing-2);align-items:center;justify-content:flex-start;width:100%;padding:var(--str-chat__spacing-3) var(--str-chat__spacing-2);margin:0;text-align:start}.str-chat__channel-preview-loading .str-chat__channel-preview-end-loading{display:flex;flex-direction:column;row-gap:var(--str-chat__spacing-0_5);width:100%}.str-chat__channel-preview-loading .str-chat__loading-channels-username{height:calc(var(--str-chat__spacing-px)*16);width:calc(var(--str-chat__spacing-px)*66)}.str-chat__channel-preview-loading .str-chat__loading-channels-status{height:calc(var(--str-chat__spacing-px)*16);width:100%}.str-chat__channel-search{position:relative;display:flex;flex-direction:column;justify-content:center}.str-chat__channel-search.str-chat__channel-search--with-results.str-chat__channel-search--inline{height:100%}.str-chat__channel-search.str-chat__channel-search--inline{min-height:0}.str-chat__channel-search .str-chat__channel-search-bar{display:flex;align-items:center;justify-content:center;padding:var(--str-chat__spacing-2_5);height:65px}.str-chat__channel-search .str-chat__channel-search-bar .str-chat__channel-search-bar-button{background:none;border:none;width:calc(var(--str-chat__spacing-px)*40);height:calc(var(--str-chat__spacing-px)*40);padding:var(--str-chat__spacing-2_5);cursor:pointer}.str-chat__channel-search .str-chat__channel-search-bar .str-chat__channel-search-input--wrapper{display:flex;align-items:center;flex:1;padding:var(--str-chat__spacing-2_5);min-width:0}.str-chat__channel-search .str-chat__channel-search-bar .str-chat__channel-search-input--wrapper .str-chat__channel-search-input--icon,.str-chat__channel-search .str-chat__channel-search-bar .str-chat__channel-search-input--wrapper .str-chat__channel-search-input--clear-button{display:inline-flex;padding:0 var(--str-chat__spacing-2_5)}.str-chat__channel-search .str-chat__channel-search-bar .str-chat__channel-search-input--wrapper .str-chat__channel-search-input--clear-button{background:none;border:none;cursor:pointer}.str-chat__channel-search .str-chat__channel-search-bar .str-chat__channel-search-input--wrapper .str-chat__channel-search-input--clear-button:disabled{cursor:default}.str-chat__channel-search .str-chat__channel-search-bar .str-chat__channel-search-input--wrapper input{flex:1;min-width:0}.str-chat__channel-search .str-chat__channel-search-container-searching{width:100%;padding:var(--str-chat__spacing-5) var(--str-chat__spacing-4)}.str-chat__channel-search .str-chat__channel-search-results-header{width:100%;padding:var(--str-chat__spacing-5) var(--str-chat__spacing-4)}.str-chat__channel-search .str-chat__channel-search-result-list{display:flex;flex-direction:column;overflow-y:auto;overflow-x:hidden}.str-chat__channel-search .str-chat__channel-search-result-list.inline{flex:1}.str-chat__channel-search .str-chat__channel-search-result-list.popup{position:absolute;left:0;right:0;top:65px;height:400px;z-index:1}.str-chat__channel-search .str-chat__channel-search-result-list .str-chat__channel-search-container-empty{display:flex;flex-direction:column;align-items:center;width:100%;padding:var(--str-chat__spacing-5) var(--str-chat__spacing-4)}.str-chat__channel-search .str-chat__channel-search-result-list .str-chat__channel-search-container-empty svg{height:calc(var(--str-chat__spacing-px)*90 + var(--str-chat__spacing-20));width:calc(var(--str-chat__spacing-px)*90);padding:var(--str-chat__spacing-10) 0}.str-chat__channel-search .str-chat__channel-search-result-list .str-chat__channel-search-result{background:none;border:none;display:flex;align-items:center;width:100%;-webkit-column-gap:var(--str-chat__spacing-2);column-gap:var(--str-chat__spacing-2);padding:var(--str-chat__spacing-3) var(--str-chat__spacing-2)}.str-chat__channel-search .str-chat__channel-search-result-list .str-chat__channel-search-result .channel-search__result-text,.str-chat__channel-search .str-chat__channel-search-result-list .str-chat__channel-search-result .str-chat__channel-search-result--display-name{white-space:nowrap;overflow-y:visible;overflow-x:hidden;overflow-x:clip;text-overflow:ellipsis;overflow-y:hidden}.str-chat__cta-button{padding:var(--str-chat__spacing-3_5) var(--str-chat__spacing-6);cursor:pointer}.str-chat__circle-fab{width:calc(var(--str-chat__spacing-px)*42);height:calc(var(--str-chat__spacing-px)*42);padding:0;cursor:pointer;display:flex;justify-content:center;align-items:center}.str-chat__circle-fab .str-chat__circle-fab-icon{display:inline-block;height:calc(var(--str-chat__spacing-px)*24)}.str-chat__dialog-overlay{inset:0;overflow:hidden;position:absolute;height:var(--str-chat__dialog-overlay-height);width:100%;z-index:2}.str-chat__dialog{width:100%}.str-chat__dialog .str-chat__dialog__body{padding:2rem 1rem;overflow-y:auto}.str-chat__dialog .str-chat__dialog__body .str-chat__dialog__title{margin-bottom:1rem}.str-chat__dialog .str-chat__dialog__controls{display:flex;justify-content:flex-end;gap:1.25rem;padding:1.25rem}.str-chat__dialog .str-chat__dialog__controls .str-chat__dialog__controls-button{background:none;border:none}.str-chat__prompt-dialog input[type=text]{width:100%;padding:.625rem 1rem}.str-chat__dialog-menu{overflow:hidden}.str-chat__dialog-menu .str-chat__dialog-menu__button{display:flex;align-items:center;width:100%;padding:.5rem .75rem}.str-chat__dialog-menu .str-chat__dialog-menu__button .str-chat__dialog-menu__button-icon{height:1rem;width:1rem}.str-chat__dialog-menu .str-chat__dialog-menu__button .str-chat__dialog-menu__button-text{padding-inline:.675rem}.str-chat__drag-and-drop-container__item{display:flex;width:100%;padding-block:.25rem}.str-chat__edit-message-form{display:flex;flex-direction:column;align-items:stretch;justify-content:center;row-gap:var(--str-chat__spacing-5);width:100%;height:100%;min-height:0;min-width:0;max-width:100%;max-height:100%}.str-chat__edit-message-form .str-chat__edit-message-form-options{display:flex;align-items:center;justify-content:flex-end}.str-chat__edit-message-form .str-chat__edit-message-form-options button{cursor:pointer;margin:0}.str-chat-angular__edit-message-form .str-chat__message-input-angular-host{max-height:100%;min-height:0;display:flex;min-width:0;max-width:100%}.str-chat-angular__edit-message-form .str-chat__modal--open .str-chat__modal__inner{height:40%;max-height:80%;min-width:90%;max-width:90%;width:90%;flex-basis:min-content}@media only screen and (min-device-width: 768px){.str-chat-angular__edit-message-form .str-chat__modal--open .str-chat__modal__inner{min-width:40%;max-width:60%;width:-webkit-min-content;width:min-content}}.str-chat__dialog__field{display:flex;flex-direction:column;gap:.5rem}.str-chat__dialog__field .str-chat__form-field-error{margin-left:.5rem}.str-chat__image-carousel{display:flex;flex-direction:column;justify-content:space-between;align-items:center;min-height:0;min-width:0;max-width:100%;max-height:100%;height:100%}.str-chat__image-carousel .str-chat__image-carousel-stepper{--str-chat-icon-height: calc(var(--str-chat__spacing-px) * 30);padding:var(--str-chat__spacing-2_5);border:none;cursor:pointer;background:rgba(0,0,0,0)}.str-chat__image-carousel .str-chat__image-carousel-image{object-fit:contain;min-height:0;max-height:100%;min-width:0;max-width:100%;height:100%;width:100%}.str-chat__message .str-chat__attachment-list .str-chat__modal--open .str-chat__modal__inner{height:80%;width:80%}@media only screen and (max-device-width: 768px){.str-chat__message .str-chat__attachment-list .str-chat__modal--open .str-chat__modal__inner{height:100%;width:100%}}[dir=rtl] .str-chat__image-carousel-stepper svg{-webkit-transform:scale(-1, 1);transform:scale(-1, 1)}.str-chat{--str-chat-icon-height: calc(var(--str-chat__spacing-px) * 24);--str-chat-icon-width: auto}.str-chat__icon{display:flex;font-family:"stream-chat-icons";font-style:normal;font-weight:normal;font-size:var(--str-chat-icon-height);line-height:var(--str-chat-icon-height);height:var(--str-chat-icon-height);width:var(--str-chat-icon-width)}.str-chat__icon::before{line-height:var(--str-chat-icon-height)}.str-chat__icon--unspecified-filetype{content:url("data:image/svg+xml;base64,PHN2ZwogIGRhdGEtdGVzdGlkPSJ1bnNwZWNpZmllZC1maWxldHlwZSIKICB3aWR0aD0iMzQiCiAgaGVpZ2h0PSI0MCIKICB2aWV3Qm94PSIwIDAgMzQgNDAiCiAgZmlsbD0ibm9uZSIKICB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCj4KICA8cGF0aAogICAgZD0iTTAgM0MwIDEuMzQzMTUgMS4zNDMxNSAwIDMgMEgyM0wzNCAxMVYzN0MzNCAzOC42NTY5IDMyLjY1NjkgNDAgMzEgNDBIM0MxLjM0MzE1IDQwIDAgMzguNjU2OSAwIDM3VjNaIgogICAgZmlsbD0idXJsKCNwYWludDBfbGluZWFyKSIKICAvPgogIDxwYXRoIGQ9Ik0zNCAxMUwyNiAxMUMyNC4zNDMxIDExIDIzIDkuNjU2ODUgMjMgOFYwTDM0IDExWiIgZmlsbD0iI0RCREJEQiIgLz4KICA8cGF0aAogICAgZmlsbC1ydWxlPSJldmVub2RkIgogICAgY2xpcC1ydWxlPSJldmVub2RkIgogICAgZD0iTTggMTNIMjNWMTVIOFYxM1oiCiAgICBmaWxsPSIjQ0ZDRkNGIgogIC8+CiAgPHBhdGgKICAgIGZpbGwtcnVsZT0iZXZlbm9kZCIKICAgIGNsaXAtcnVsZT0iZXZlbm9kZCIKICAgIGQ9Ik04IDE3SDE4VjE5SDhWMTdaIgogICAgZmlsbD0iI0NGQ0ZDRiIKICAvPgogIDxwYXRoCiAgICBmaWxsLXJ1bGU9ImV2ZW5vZGQiCiAgICBjbGlwLXJ1bGU9ImV2ZW5vZGQiCiAgICBkPSJNOCAyMUgyM1YyM0g4VjIxWiIKICAgIGZpbGw9IiNDRkNGQ0YiCiAgLz4KICA8ZGVmcz4KICAgIDxsaW5lYXJHcmFkaWVudAogICAgICBpZD0icGFpbnQwX2xpbmVhciIKICAgICAgeDE9IjAiCiAgICAgIHkxPSIwIgogICAgICB4Mj0iMCIKICAgICAgeTI9IjQwIgogICAgICBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIKICAgID4KICAgICAgPHN0b3Agc3RvcC1jb2xvcj0id2hpdGUiIC8+CiAgICAgIDxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iI0RCREJEQiIgLz4KICAgIDwvbGluZWFyR3JhZGllbnQ+CiAgPC9kZWZzPgo8L3N2Zz4=")}.str-chat__icon--audio-file{content:url("data:image/svg+xml;base64,PHN2ZwogIGNsYXNzPSJyZnUtZmlsZS1hdWRpbyIKICBmaWxsPSJub25lIgogIHZpZXdCb3g9IjAgMCAzNCA0MCIKICB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgaGVpZ2h0PSIyMCIKICB3aWR0aD0iMjAiCj4KICA8cGF0aAogICAgY2xpcC1ydWxlPSJldmVub2RkIgogICAgZD0iTTE3LjcxNjggMzMuMTcyQzE4LjIzNDggMzMuMTcyIDE4LjQyMzggMzMuNjU1IDE4LjQyMzggMzQuMThDMTguNDIzOCAzNC42NDIgMTguMjk3OCAzNS4xOTUgMTcuNzE2OCAzNS4xOTVDMTcuMTcwOCAzNS4xOTUgMTYuOTg4OCAzNC42NDIgMTYuOTg4OCAzNC4xNDVDMTYuOTg4OCAzMy42ODMgMTcuMTcwOCAzMy4xNzIgMTcuNzE2OCAzMy4xNzJaTTE5LjU3MTggMzEuMDAySDE4LjM4MThWMzIuNzU4OUgxOC4zNjc4QzE4LjEyMjggMzIuNDMgMTcuNzc5OCAzMi4yNjIgMTcuMzMxOCAzMi4yNjJDMTYuMzAyOCAzMi4yNjIgMTUuNzk4OCAzMy4xNTggMTUuNzk4OCAzNC4xMDNDMTUuNzk4OCAzNS4xMjUgMTYuMjgxOCAzNi4xMDQ5IDE3LjQyMjggMzYuMTA0OUMxNy44NDI4IDM2LjEwNDkgMTguMTkyOCAzNS45MjMgMTguNDIzOCAzNS41OEgxOC40Mzc4VjM2SDE5LjU3MThWMzEuMDAyWk0xMi43MDk1IDM0LjE4NzJDMTIuNzA5NSAzMy43MjUyIDEyLjg3NzUgMzMuMTcyMiAxMy40MzA1IDMzLjE3MjJDMTMuOTgzNSAzMy4xNzIyIDE0LjE1ODUgMzMuNzI1MiAxNC4xNTg1IDM0LjE4NzJDMTQuMTU4NSAzNC42NDkyIDEzLjk4MzUgMzUuMTk1MiAxMy40MzA1IDM1LjE5NTJDMTIuODc3NSAzNS4xOTUyIDEyLjcwOTUgMzQuNjQ5MiAxMi43MDk1IDM0LjE4NzJaTTExLjUxOTUgMzQuMTg3MkMxMS41MTk1IDM1LjI3OTIgMTIuMzAzNSAzNi4xMDUyIDEzLjQzMDUgMzYuMTA1MkMxNC41NTc1IDM2LjEwNTIgMTUuMzQ4NSAzNS4yNzkyIDE1LjM0ODUgMzQuMTg3MkMxNS4zNDg1IDMzLjA5NTIgMTQuNTU3NSAzMi4yNjIyIDEzLjQzMDUgMzIuMjYyMkMxMi4zMDM1IDMyLjI2MjIgMTEuNTE5NSAzMy4wOTUyIDExLjUxOTUgMzQuMTg3MlpNMjEuODM5IDMyLjM2NzFIMjIuNTc0VjMzLjEzNzFIMjEuODM5VjM0Ljc4OTFDMjEuODM5IDM1LjA3NjEgMjIuMDA3IDM1LjEzOTEgMjIuMjY2IDM1LjEzOTFDMjIuMzE0MiAzNS4xMzkxIDIyLjM2NCAzNS4xMzU3IDIyLjQxNDcgMzUuMTMyM0MyMi40NjcyIDM1LjEyODcgMjIuNTIwNiAzNS4xMjUxIDIyLjU3NCAzNS4xMjUxVjM2LjAwMDFDMjIuNDgxIDM2LjAwMzEgMjIuMzg4IDM2LjAwOTkgMjIuMjk1IDM2LjAxNjhDMjIuMTcxIDM2LjAyNTkgMjIuMDQ3IDM2LjAzNTEgMjEuOTIzIDM2LjAzNTFDMjAuOTA4IDM2LjAzNTEgMjAuNjQ5IDM1Ljc0MTEgMjAuNjQ5IDM0Ljc1NDFWMzMuMTM3MUgyMC4wNDdWMzIuMzY3MUgyMC42NDlWMzEuMjY4MUgyMS44MzlWMzIuMzY3MVoiCiAgICBmaWxsPSJ3aGl0ZSIKICAgIGZpbGwtcnVsZT0iZXZlbm9kZCIKICA+PC9wYXRoPgogIDxwYXRoCiAgICBkPSJNMCAyOEgzNFYzN0MzNCAzOC42NTY5IDMyLjY1NjkgNDAgMzEgNDBIM0MxLjM0MzE1IDQwIDAgMzguNjU2OSAwIDM3VjI4WiIKICAgIGZpbGw9IiMyNzI3QjAiCiAgPjwvcGF0aD4KICA8cGF0aCBkPSJNMCAzQzAgMS4zNDMxNSAxLjM0MzE1IDAgMyAwSDIzTDM0IDExVjI4SDBWM1oiIGZpbGw9IiNGNUY1RjUiPjwvcGF0aD4KICA8cGF0aAogICAgZD0iTTM0IDExTDI2IDExQzI0LjM0MzEgMTEgMjMgOS42NTY4NSAyMyA4VjBMMzQgMTFaIgogICAgZmlsbD0iI0RCREJEQiIKICA+PC9wYXRoPgogIDxwYXRoCiAgICBjbGlwLXJ1bGU9ImV2ZW5vZGQiCiAgICBkPSJNOC44NzkxMiAyMS45NDFIMTIuMjk4TDE2Ljk1MjEgMjQuNzQ5M0MxNy4wMzA3IDI0LjgxMzggMTcuMTI5MyAyNC44NDkgMTcuMjMxMSAyNC44NDlDMTcuNDczOCAyNC44NDg4IDE3LjY3MDUgMjQuNjUxOSAxNy42NzAzIDI0LjQwOTJWMTIuNDM5OUMxNy42NzA0IDEyLjMzODEgMTcuNjM1MiAxMi4yMzk2IDE3LjU3MDcgMTIuMTYwOUMxNy40MTY4IDExLjk3MzIgMTcuMTM5OCAxMS45NDU3IDE2Ljk1MjEgMTIuMDk5NkwxMi4yOTggMTQuOTA4SDguODc5MTJDOC4zOTM2IDE0LjkwOCA4IDE1LjMwMTYgOCAxNS43ODcxVjIxLjA2MTlDOCAyMS41NDc0IDguMzkzNiAyMS45NDEgOC44NzkxMiAyMS45NDFaTTEyLjkyNTggMTYuNjY2NEwxNS45MTIyIDE1LjIyMjRWMjEuNjI2OEwxMi45MjU4IDIwLjE4MjlIOS43NTgzVjE2LjY2NjRIMTIuOTI1OFpNMTkuODUxMSAxNi4zNTE3QzE5LjQ3NCAxNi40MDkyIDE5LjIzOTcgMTYuNjYzNyAxOS4zMjgzIDE2LjkxOTFMMTkuMzI2MiAxNi45MkMxOS41Mjk1IDE3LjQ5OTUgMTkuNjMwNSAxOC4wOTggMTkuNjI4NCAxOC42OTUzQzE5LjYzMDUgMTkuMjk3NSAxOS41MjM3IDE5LjkwMTQgMTkuMzE5NiAyMC40OTA5QzE5LjIyOSAyMC43NDYyIDE5LjQ2ODIgMjAuOTk5NiAxOS44NDc0IDIxLjA2QzE5LjkwMDggMjEuMDY4MyAxOS45NTQyIDIxLjA3MiAyMC4wMDc2IDIxLjA3MkMyMC4zMjU5IDIxLjA3MiAyMC42MTU2IDIwLjkyMzQgMjAuNjkyMiAyMC43MDU3QzIwLjkxOTQgMjAuMDQ1MSAyMS4wMzM3IDE5LjM3IDIxLjAzNzQgMTguNjk1M0MyMS4wMzQ5IDE4LjAyNTEgMjAuOTIxMSAxNy4zNTc1IDIwLjY5NTUgMTYuNzAzNUMyMC42MDUzIDE2LjQ0NzcgMjAuMjI5IDE2LjI5MDggMTkuODUxMSAxNi4zNTE3Wk0yMi4xNjA1IDE0LjYwMjhDMjIuNTI1MiAxNC41MTYzIDIyLjkyNTkgMTQuNjQ1NCAyMy4wNTUgMTQuODkzOEMyMy42ODkxIDE2LjExNTcgMjQgMTcuNDA0MiAyNCAxOC42OTIzQzI0LjAwMDQgMTkuOTg5NSAyMy42Nzk2IDIxLjI4MzkgMjMuMDUyMSAyMi41MTUzQzIyLjk1MDMgMjIuNzEyMyAyMi42NzYzIDIyLjgzNDQgMjIuMzgyOCAyMi44MzQ0QzIyLjMwNzEgMjIuODM0NCAyMi4yMzAxIDIyLjgyNjEgMjIuMTU0MyAyMi44MDkyQzIxLjc4NjMgMjIuNzI1MSAyMS41OTE0IDIyLjQ1MzYgMjEuNzE4NSAyMi4yMDc3QzIyLjI5ODggMjEuMDc2MSAyMi41OTIyIDE5Ljg4MzYgMjIuNTkzMSAxOC42OTE5QzIyLjU5MzEgMTcuNTA1NiAyMi4zMDU0IDE2LjMyMjIgMjEuNzI3NiAxNS4yMDI1QzIxLjYwMDEgMTQuOTU2MyAyMS43OTUgMTQuNjg2IDIyLjE2MDUgMTQuNjAyOFoiCiAgICBmaWxsPSIjMjcyN0IwIgogICAgZmlsbC1ydWxlPSJldmVub2RkIgogID48L3BhdGg+Cjwvc3ZnPg==")}.str-chat__icon--action::before{content:""}.str-chat__icon--arrow-down::before{content:""}.str-chat__icon--arrow-left::before{content:""}.str-chat__icon--arrow-right::before{content:""}.str-chat__icon--close::before{content:""}.str-chat__icon--arrow-up::before{content:""}.str-chat__icon--chat-bubble::before{content:""}.str-chat__icon--pause::before{content:""}.str-chat__icon--download::before{content:""}.str-chat__icon--delivered::before{content:""}.str-chat__icon--play::before{content:""}.str-chat__icon--reaction::before{content:""}.str-chat__icon--error::before{content:""}.str-chat__icon--read::before{content:""}.str-chat__icon--retry::before{content:""}.str-chat__icon--reply-in-thread::before{content:""}.str-chat__icon--send::before{content:""}.str-chat__icon--attach::before{content:""}.str-chat__icon--mic::before{content:""}.str-chat__icon--bin::before{content:""}.str-chat__infinite-scroll-paginator{overflow-y:auto;overflow-x:hidden}.str-chat__link-preview-list{display:flex;flex-direction:column;align-items:center;gap:.75rem;width:100%;margin-bottom:.75rem;padding-inline:.75rem}.str-chat__link-preview-card{width:100%;min-width:0;display:flex;align-items:center;justify-content:space-around;gap:1rem}.str-chat__link-preview-card .str-chat__tooltip{white-space:nowrap;overflow-y:visible;overflow-x:hidden;overflow-x:clip;text-overflow:ellipsis;display:block;max-width:calc(var(--str-chat__spacing-px)*250);padding-inline:.5rem}.str-chat__link-preview-card .str-chat__link-preview-card__icon-container{display:flex;align-items:center}.str-chat__link-preview-card .str-chat__link-preview-card__content{width:100%;min-width:0;flex:1;padding-inline:.5rem}.str-chat__link-preview-card .str-chat__link-preview-card__content .str-chat__link-preview-card__content-title,.str-chat__link-preview-card .str-chat__link-preview-card__content .str-chat__link-preview-card__content-description{white-space:nowrap;overflow-y:visible;overflow-x:hidden;overflow-x:clip;text-overflow:ellipsis}.str-chat__link-preview-card .str-chat__link-preview-card__dismiss-button{background:none;border:none;cursor:pointer}.str-chat{--str-chat__loading-indicator-size: calc(var(--str-chat__spacing-px) * 15)}.str-chat__loading-indicator{display:flex;align-items:center;justify-content:center;-webkit-animation:rotate 1s linear infinite;animation:rotate 1s linear infinite}.str-chat__loading-indicator svg{width:var(--str-chat__loading-indicator-size);height:var(--str-chat__loading-indicator-size)}@-webkit-keyframes rotate{from{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotate{from{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}stream-loading-indicator{display:flex;align-items:center;justify-content:center}stream-loading-indicator .str-chat__loading-indicator{width:var(--str-chat__loading-indicator-size);height:var(--str-chat__loading-indicator-size)}.str-chat__loading-indicator-placeholder{width:var(--str-chat__loading-indicator-size);height:var(--str-chat__loading-indicator-size)}.str-chat{--str-chat__message-options-button-size: calc(var(--str-chat__spacing-px) * 26);--str-chat__message-max-width: calc(var(--str-chat__spacing-px) * 480);--str-chat__message-with-attachment-max-width: calc(var(--str-chat__spacing-px) * 300);--str-chat__quoted-message-max-width: calc(var(--str-chat__spacing-px) * 250);--str-chat__quoted-message-inside-message-input-max-width: calc( var(--str-chat__spacing-px) * 200 );--str-chat__quoted-message-inside-message-input-max-height: calc( var(--str-chat__quoted-message-inside-message-input-max-width) + calc(var(--str-chat__spacing-px) * 50) )}.str-chat__message{--str-chat-message-options-size: calc(3 * var(--str-chat__message-options-button-size))}.str-chat__message.str-chat__message-without-touch-support{--str-chat-message-options-size: calc(1 * var(--str-chat__message-options-button-size))}.str-chat__message .str-chat__message-bubble{max-width:var(--str-chat__message-max-width)}.str-chat__message .str-chat__message-options{--str-chat-icon-height: calc(var(--str-chat__message-options-button-size) * 0.7)}.str-chat__message.str-chat__message--has-attachment{--str-chat__message-max-width: var(--str-chat__message-with-attachment-max-width)}.str-chat__message.str-chat__message--has-attachment .str-chat__message-bubble{max-width:var(--str-chat__message-max-width)}.str-chat__quoted-message-preview{--str-chat__message-max-width: var(--str-chat__quoted-message-max-width)}.str-chat__quoted-message-preview .str-chat__quoted-message-bubble{pointer-events:none;max-width:var(--str-chat__message-max-width)}.str-chat__message,.str-chat__quoted-message-preview{display:grid;word-wrap:break-word;word-break:break-word;-webkit-hyphens:auto;hyphens:auto;overflow-wrap:break-word}.str-chat__message.str-chat__message--other,.str-chat__message.str-chat__quoted-message-preview,.str-chat__quoted-message-preview.str-chat__message--other,.str-chat__quoted-message-preview.str-chat__quoted-message-preview{grid-template-areas:"avatar message" ". replies" ". translation-notice" ". custom-metadata" ". metadata";-webkit-column-gap:var(--str-chat__spacing-2);column-gap:var(--str-chat__spacing-2);grid-template-columns:auto 1fr;justify-items:flex-start}.str-chat__message.str-chat__message--me,.str-chat__quoted-message-preview.str-chat__message--me{grid-template-areas:"message" "replies" "translation-notice" "custom-metadata" "metadata";justify-items:end}.str-chat__message.str-chat__message--me>.str-chat__message-sender-avatar,.str-chat__quoted-message-preview.str-chat__message--me>.str-chat__message-sender-avatar{display:none}.str-chat__message.str-chat__message--deleted,.str-chat__quoted-message-preview.str-chat__message--deleted{grid-template-areas:"message"}.str-chat__message.str-chat__message--system,.str-chat__quoted-message-preview.str-chat__message--system{grid-template-areas:"message";grid-template-columns:auto}.str-chat__message .str-chat__message-sender-avatar,.str-chat__quoted-message-preview .str-chat__message-sender-avatar{grid-area:avatar;align-self:end}.str-chat__message .str-chat__message-inner,.str-chat__quoted-message-preview .str-chat__message-inner{grid-area:message;display:grid;grid-template-areas:"reactions reactions" "message-bubble options";grid-template-columns:auto 1fr;-webkit-column-gap:var(--str-chat__spacing-2);column-gap:var(--str-chat__spacing-2);position:relative}.str-chat__message .str-chat__message-inner .str-chat__message-options,.str-chat__quoted-message-preview .str-chat__message-inner .str-chat__message-options{grid-area:options;align-items:flex-start;justify-content:flex-end;flex-direction:row-reverse;width:var(--str-chat-message-options-size)}.str-chat__message .str-chat__message-inner .str-chat__message-options .str-chat__message-actions-box-button,.str-chat__message .str-chat__message-inner .str-chat__message-options .str-chat__message-reply-in-thread-button,.str-chat__message .str-chat__message-inner .str-chat__message-options .str-chat__message-reactions-button,.str-chat__quoted-message-preview .str-chat__message-inner .str-chat__message-options .str-chat__message-actions-box-button,.str-chat__quoted-message-preview .str-chat__message-inner .str-chat__message-options .str-chat__message-reply-in-thread-button,.str-chat__quoted-message-preview .str-chat__message-inner .str-chat__message-options .str-chat__message-reactions-button{display:flex;align-items:center;justify-content:center;cursor:pointer;width:var(--str-chat__message-options-button-size);height:var(--str-chat__message-options-button-size)}.str-chat__message .str-chat__message-inner .str-chat__message-options .str-chat__message-actions-box-button,.str-chat__message .str-chat__message-inner .str-chat__message-options .str-chat__message-actions-container,.str-chat__quoted-message-preview .str-chat__message-inner .str-chat__message-options .str-chat__message-actions-box-button,.str-chat__quoted-message-preview .str-chat__message-inner .str-chat__message-options .str-chat__message-actions-container{position:relative}.str-chat__message .str-chat__message-inner .str-chat__message-reactions-host,.str-chat__quoted-message-preview .str-chat__message-inner .str-chat__message-reactions-host{grid-area:reactions}.str-chat__message .str-chat__message-inner .str-chat__message-bubble,.str-chat__quoted-message-preview .str-chat__message-inner .str-chat__message-bubble{grid-area:message-bubble;position:relative;min-width:0}.str-chat__message .str-chat__message-inner .str-chat__message-bubble .str-chat__message-text,.str-chat__quoted-message-preview .str-chat__message-inner .str-chat__message-bubble .str-chat__message-text{padding:var(--str-chat__spacing-2) var(--str-chat__spacing-4)}.str-chat__message .str-chat__message-inner .str-chat__message-bubble .str-chat__message-text p,.str-chat__quoted-message-preview .str-chat__message-inner .str-chat__message-bubble .str-chat__message-text p{margin:0}.str-chat__message .str-chat__message-inner .str-chat__message-bubble .str-chat__message-text .str-chat__message-text-inner,.str-chat__quoted-message-preview .str-chat__message-inner .str-chat__message-bubble .str-chat__message-text .str-chat__message-text-inner{overflow-y:hidden}.str-chat__message .str-chat__message-inner .str-chat__message-bubble .str-chat__message-text p,.str-chat__quoted-message-preview .str-chat__message-inner .str-chat__message-bubble .str-chat__message-text p{white-space:pre-line}.str-chat__message.str-chat__message--me .str-chat__message-inner,.str-chat__quoted-message-preview.str-chat__message--me .str-chat__message-inner{grid-template-areas:"reactions reactions" "options message-bubble";grid-template-columns:1fr auto}.str-chat__message.str-chat__message--me .str-chat__message-inner .str-chat__message-options,.str-chat__quoted-message-preview.str-chat__message--me .str-chat__message-inner .str-chat__message-options{flex-direction:row}.str-chat__message .str-chat__translation-notice,.str-chat__quoted-message-preview .str-chat__translation-notice{grid-area:translation-notice}.str-chat__message .str-chat__translation-notice button,.str-chat__quoted-message-preview .str-chat__translation-notice button{cursor:pointer;padding:var(--str-chat__spacing-1) 0;margin:0}.str-chat__message .str-chat__custom-message-metadata,.str-chat__quoted-message-preview .str-chat__custom-message-metadata{grid-area:custom-metadata;-webkit-margin-before:var(--str-chat__spacing-0_5);margin-block-start:var(--str-chat__spacing-0_5)}.str-chat__message .str-chat__message-metadata,.str-chat__quoted-message-preview .str-chat__message-metadata{grid-area:metadata;display:flex;flex-wrap:wrap;align-items:center;-webkit-column-gap:var(--str-chat__spacing-1);column-gap:var(--str-chat__spacing-1);-webkit-margin-before:var(--str-chat__spacing-0_5);margin-block-start:var(--str-chat__spacing-0_5)}.str-chat__message .str-chat__message-metadata .str-chat__message-simple-name,.str-chat__quoted-message-preview .str-chat__message-metadata .str-chat__message-simple-name{overflow-y:hidden}.str-chat__message .str-chat__message-metadata .str-chat__message-simple-timestamp+.str-chat__mesage-simple-edited::before,.str-chat__quoted-message-preview .str-chat__message-metadata .str-chat__message-simple-timestamp+.str-chat__mesage-simple-edited::before{content:"•";margin-right:var(--str-chat__spacing-1)}.str-chat__message .str-chat__message-metadata .str-chat__message-edited-timestamp,.str-chat__quoted-message-preview .str-chat__message-metadata .str-chat__message-edited-timestamp{--str-chat__message-edited-timestamp-height: 1rem;flex-basis:100%}.str-chat__message.str-chat__message--me .str-chat__message-metadata,.str-chat__quoted-message-preview.str-chat__message--me .str-chat__message-metadata{justify-content:flex-end;text-align:right}.str-chat__message .str-chat__message-status,.str-chat__quoted-message-preview .str-chat__message-status{--str-chat-icon-height: calc(var(--str-chat__spacing-px) * 15);display:flex;align-items:center;justify-content:center;-webkit-column-gap:var(--str-chat__spacing-0_5);column-gap:var(--str-chat__spacing-0_5);position:relative}.str-chat__message .str-chat__message-status svg,.str-chat__quoted-message-preview .str-chat__message-status svg{width:calc(var(--str-chat__spacing-px)*15);height:calc(var(--str-chat__spacing-px)*15)}.str-chat__message .str-chat__message-replies-count-button-wrapper,.str-chat__quoted-message-preview .str-chat__message-replies-count-button-wrapper{grid-area:replies}.str-chat__message .str-chat__message-replies-count-button-wrapper button,.str-chat__quoted-message-preview .str-chat__message-replies-count-button-wrapper button{cursor:pointer;padding:0}.str-chat__message .str-chat__message--deleted-inner,.str-chat__quoted-message-preview .str-chat__message--deleted-inner{padding:var(--str-chat__spacing-2) var(--str-chat__spacing-4)}.str-chat__message .str-chat__message--deleted-inner p,.str-chat__quoted-message-preview .str-chat__message--deleted-inner p{margin:0}.str-chat__message .str-chat__quoted-message-bubble,.str-chat__quoted-message-preview .str-chat__quoted-message-bubble{padding:var(--str-chat__spacing-2) var(--str-chat__spacing-4);display:flex;-webkit-column-gap:var(--str-chat__spacing-1);column-gap:var(--str-chat__spacing-1);min-width:0;width:100%}.str-chat__message .str-chat__quoted-message-bubble p,.str-chat__quoted-message-preview .str-chat__quoted-message-bubble p{margin:0}.str-chat__message .str-chat__emoji-display-fix,.str-chat__quoted-message-preview .str-chat__emoji-display-fix{display:inline-block;width:1.25em}.str-chat__message .str-chat__message-error-icon,.str-chat__quoted-message-preview .str-chat__message-error-icon{display:none}.str-chat__message .str-chat__simple-message--error-failed,.str-chat__quoted-message-preview .str-chat__simple-message--error-failed{cursor:pointer}.str-chat__message.str-chat__message--error .str-chat__message-error-icon,.str-chat__message.str-chat__message--failed .str-chat__message-error-icon,.str-chat__quoted-message-preview.str-chat__message--error .str-chat__message-error-icon,.str-chat__quoted-message-preview.str-chat__message--failed .str-chat__message-error-icon{display:block;position:absolute;bottom:0;inset-inline-end:calc(-1*(calc(var(--str-chat__spacing-px) * 18) / 2))}.str-chat__message.str-chat__message--error .str-chat__message-error-icon svg,.str-chat__message.str-chat__message--failed .str-chat__message-error-icon svg,.str-chat__quoted-message-preview.str-chat__message--error .str-chat__message-error-icon svg,.str-chat__quoted-message-preview.str-chat__message--failed .str-chat__message-error-icon svg{width:calc(var(--str-chat__spacing-px)*18);height:calc(var(--str-chat__spacing-px)*18)}.str-chat__ul:not(.str-chat__message-options-in-bubble,.str-chat__message-with-touch-support) .str-chat__li:hover:not(:has(.str-chat__reaction-list:hover,.str-chat__modal--open)) .str-chat__message-options,.str-chat__ul:not(.str-chat__message-options-in-bubble,.str-chat__message-with-touch-support) .str-chat__li:focus-within:not(:has(.str-chat__reaction-list:focus-within,.str-chat__modal--open)) .str-chat__message-options,.str-chat__virtual-list:not(.str-chat__message-options-in-bubble,.str-chat__message-with-touch-support) .str-chat__li:hover:not(:has(.str-chat__reaction-list:hover,.str-chat__modal--open)) .str-chat__message-options,.str-chat__virtual-list:not(.str-chat__message-options-in-bubble,.str-chat__message-with-touch-support) .str-chat__li:focus-within:not(:has(.str-chat__reaction-list:focus-within,.str-chat__modal--open)) .str-chat__message-options{display:flex}.str-chat__ul:not(.str-chat__message-options-in-bubble,.str-chat__message-with-touch-support) .str-chat__li:hover:not(:has(.str-chat__reaction-list:hover,.str-chat__modal--open)) .str-chat__message--other .str-chat__message-inner,.str-chat__ul:not(.str-chat__message-options-in-bubble,.str-chat__message-with-touch-support) .str-chat__li:focus-within:not(:has(.str-chat__reaction-list:focus-within,.str-chat__modal--open)) .str-chat__message--other .str-chat__message-inner,.str-chat__virtual-list:not(.str-chat__message-options-in-bubble,.str-chat__message-with-touch-support) .str-chat__li:hover:not(:has(.str-chat__reaction-list:hover,.str-chat__modal--open)) .str-chat__message--other .str-chat__message-inner,.str-chat__virtual-list:not(.str-chat__message-options-in-bubble,.str-chat__message-with-touch-support) .str-chat__li:focus-within:not(:has(.str-chat__reaction-list:focus-within,.str-chat__modal--open)) .str-chat__message--other .str-chat__message-inner{-webkit-margin-end:0;margin-inline-end:0}.str-chat__ul:not(.str-chat__message-options-in-bubble,.str-chat__message-with-touch-support) .str-chat__li:hover:not(:has(.str-chat__reaction-list:hover,.str-chat__modal--open)) .str-chat__message--me .str-chat__message-inner,.str-chat__ul:not(.str-chat__message-options-in-bubble,.str-chat__message-with-touch-support) .str-chat__li:focus-within:not(:has(.str-chat__reaction-list:focus-within,.str-chat__modal--open)) .str-chat__message--me .str-chat__message-inner,.str-chat__virtual-list:not(.str-chat__message-options-in-bubble,.str-chat__message-with-touch-support) .str-chat__li:hover:not(:has(.str-chat__reaction-list:hover,.str-chat__modal--open)) .str-chat__message--me .str-chat__message-inner,.str-chat__virtual-list:not(.str-chat__message-options-in-bubble,.str-chat__message-with-touch-support) .str-chat__li:focus-within:not(:has(.str-chat__reaction-list:focus-within,.str-chat__modal--open)) .str-chat__message--me .str-chat__message-inner{-webkit-margin-start:0;margin-inline-start:0}@supports not selector(:has(a, b)){.str-chat__ul:not(.str-chat__message-options-in-bubble,.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message-options,.str-chat__ul:not(.str-chat__message-options-in-bubble,.str-chat__message-with-touch-support) .str-chat__li:focus-within .str-chat__message-options,.str-chat__virtual-list:not(.str-chat__message-options-in-bubble,.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message-options,.str-chat__virtual-list:not(.str-chat__message-options-in-bubble,.str-chat__message-with-touch-support) .str-chat__li:focus-within .str-chat__message-options{display:flex}.str-chat__ul:not(.str-chat__message-options-in-bubble,.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--other .str-chat__message-inner,.str-chat__ul:not(.str-chat__message-options-in-bubble,.str-chat__message-with-touch-support) .str-chat__li:focus-within .str-chat__message--other .str-chat__message-inner,.str-chat__virtual-list:not(.str-chat__message-options-in-bubble,.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--other .str-chat__message-inner,.str-chat__virtual-list:not(.str-chat__message-options-in-bubble,.str-chat__message-with-touch-support) .str-chat__li:focus-within .str-chat__message--other .str-chat__message-inner{-webkit-margin-end:0;margin-inline-end:0}.str-chat__ul:not(.str-chat__message-options-in-bubble,.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--me .str-chat__message-inner,.str-chat__ul:not(.str-chat__message-options-in-bubble,.str-chat__message-with-touch-support) .str-chat__li:focus-within .str-chat__message--me .str-chat__message-inner,.str-chat__virtual-list:not(.str-chat__message-options-in-bubble,.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--me .str-chat__message-inner,.str-chat__virtual-list:not(.str-chat__message-options-in-bubble,.str-chat__message-with-touch-support) .str-chat__li:focus-within .str-chat__message--me .str-chat__message-inner{-webkit-margin-start:0;margin-inline-start:0}}.str-chat__ul.str-chat__message-options-in-bubble .str-chat__message-inner:hover .str-chat__message-options,.str-chat__virtual-list.str-chat__message-options-in-bubble .str-chat__message-inner:hover .str-chat__message-options{display:flex}.str-chat__ul.str-chat__message-options-in-bubble .str-chat__message--other .str-chat__message-inner:hover,.str-chat__virtual-list.str-chat__message-options-in-bubble .str-chat__message--other .str-chat__message-inner:hover{-webkit-margin-end:0;margin-inline-end:0}.str-chat__ul.str-chat__message-options-in-bubble .str-chat__message--me .str-chat__message-inner:hover,.str-chat__virtual-list.str-chat__message-options-in-bubble .str-chat__message--me .str-chat__message-inner:hover{-webkit-margin-start:0;margin-inline-start:0}.str-chat__message-inner .str-chat__message-options.str-chat__message-options--active{display:flex}.str-chat__message-inner .str-chat__message-options{display:none}.str-chat__message-inner .str-chat__message-actions-open.str-chat__message-options{display:flex}.str-chat__message--other .str-chat__message-inner{-webkit-margin-end:var(--str-chat-message-options-size);margin-inline-end:var(--str-chat-message-options-size)}.str-chat__message--me .str-chat__message-inner{-webkit-margin-start:var(--str-chat-message-options-size);margin-inline-start:var(--str-chat-message-options-size)}.str-chat__li--middle .str-chat__message,.str-chat__li--top .str-chat__message{-webkit-margin-after:var(--str-chat__spacing-0_5);margin-block-end:var(--str-chat__spacing-0_5)}.str-chat__li--middle .str-chat__message .str-chat__message-metadata,.str-chat__li--top .str-chat__message .str-chat__message-metadata{display:none}.str-chat__li--middle .str-chat__message>.str-chat__message-sender-avatar,.str-chat__li--top .str-chat__message>.str-chat__message-sender-avatar{visibility:hidden}.str-chat__li--bottom .str-chat__message,.str-chat__li--single .str-chat__message{-webkit-margin-after:var(--str-chat__spacing-2);margin-block-end:var(--str-chat__spacing-2)}.str-chat__date-separator{display:flex;padding:var(--str-chat__spacing-8);align-items:center}.str-chat__date-separator-line{flex:1;height:var(--str-chat__spacing-px)}.str-chat__date-separator>*:not(:last-child){margin-right:var(--str-chat__spacing-4)}.str-chat__message .str-chat__quoted-message-preview{-webkit-margin-after:var(--str-chat__spacing-2);margin-block-end:var(--str-chat__spacing-2)}.str-chat__message--system{width:100%;text-align:center}.str-chat__message--system p{margin:0}.str-chat__quoted-message-preview .str-chat__quoted-message-bubble{flex-direction:column;align-items:stretch;row-gap:var(--str-chat__spacing-1);flex-basis:min-content}.str-chat__message-input .str-chat__quoted-message-preview{--str-chat__message-max-width: var(--str-chat__quoted-message-inside-message-input-max-width)}.str-chat__message-input .str-chat__quoted-message-preview .str-chat__quoted-message-bubble{max-height:var(--str-chat__quoted-message-inside-message-input-max-height)}.str-chat__message-input .str-chat__quoted-message-preview .str-chat__quoted-message-bubble .str-chat__quoted-message-text{max-height:100%;min-height:0}.str-chat__message-input .str-chat__quoted-message-preview .str-chat__quoted-message-bubble .str-chat__quoted-message-text p{max-height:100%;overflow-y:auto;overflow-x:hidden}.str-chat__unread-messages-separator-wrapper{padding-block:.5rem}.str-chat__unread-messages-separator-wrapper .str-chat__unread-messages-separator{display:flex;align-items:center;justify-content:center;width:100%;padding:.5rem}.str-chat__unread-messages-notification{--str-chat-icon-height: calc(var(--str-chat__spacing-px) * 16);position:absolute;top:.75rem;z-index:2;display:flex;align-items:center;overflow:clip}.str-chat__unread-messages-notification button{padding-block:.5rem;height:100%;width:100%;white-space:nowrap}.str-chat__unread-messages-notification button:first-of-type{padding-inline:.75rem .375rem}.str-chat__unread-messages-notification button:last-of-type{padding-inline:.375rem .75rem}.str-chat__unread-messages-notification button:last-of-type svg{width:.875rem}.str-chat-angular__message-bubble{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.str-chat-angular__message-bubble.str-chat-angular__message-bubble--attachment-modal-open{-webkit-transform:none;transform:none}.str-chat__message-edited-timestamp{overflow:hidden;transition:height .1s}.str-chat__message-edited-timestamp--open{height:var(--str-chat__message-edited-timestamp-height, 1rem)}.str-chat__message-edited-timestamp--collapsed{height:0}.str-chat__message-text--pointer-cursor{cursor:pointer}.str-chat__message-with-touch-support .str-chat__message-bubble{-webkit-touch-callout:none;-webkit-user-select:none;user-select:none}.str-chat__message-with-touch-support.str-chat__message-menu-opened .str-chat__attachments-container,.str-chat__message-with-touch-support.str-chat__message-menu-opened .str-chat__message-text-inner{pointer-events:none}.str-chat__message-with-touch-support .str-chat__message-inner{margin-inline:0}.str-chat__message-with-touch-support .str-chat__message-options{display:none}.str-chat__message-with-touch-support .stream-chat-angular__image-modal-host{-webkit-touch-callout:default}.str-chat__message-actions-box{overflow:hidden}.str-chat__message-actions-box .str-chat__message-actions-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;min-width:10rem}.str-chat__message-actions-box .str-chat__message-actions-list .str-chat__message-actions-list-item-button{padding:var(--str-chat__spacing-2) var(--str-chat__spacing-4);margin:0;cursor:pointer;width:100%;text-align:start}.str-chat__message-bounce-prompt{display:flex;flex-direction:column;align-items:center;gap:var(--str-chat__spacing-9)}.str-chat__message-bounce-prompt .str-chat__message-bounce-actions{display:flex;flex-direction:column;gap:var(--str-chat__spacing-2)}.str-chat__message-bounce-prompt .str-chat__message-bounce-edit,.str-chat__message-bounce-prompt .str-chat__message-bounce-send,.str-chat__message-bounce-prompt .str-chat__message-bounce-delete{cursor:pointer;padding:var(--str-chat__spacing-2)}.str-chat__message-input{display:flex;flex-direction:column;align-items:center;justify-content:center;width:100%;padding:var(--str-chat__spacing-1) var(--str-chat__spacing-2);position:relative}.str-chat__message-input .str-chat__quoted-message-preview-header{display:flex;align-items:center;justify-content:center;width:100%}.str-chat__message-input .str-chat__quoted-message-preview-header .str-chat__quoted-message-reply-to-message{width:100%;text-align:center}.str-chat__message-input .str-chat__quoted-message-preview-header .str-chat__quoted-message-remove{width:calc(var(--str-chat__spacing-px)*40);height:calc(var(--str-chat__spacing-px)*40);cursor:pointer}.str-chat__message-input .str-chat__dropzone-container{display:flex;align-items:center;justify-content:center;position:absolute;height:100%;width:100%;z-index:5}.str-chat__message-input .str-chat__dropzone-container p{margin:unset}.str-chat__message-input .str-chat__message-input-inner{flex-grow:1;width:100%;display:flex;align-items:center;justify-content:center}.str-chat__message-input .str-chat__message-input-inner .str-chat__file-input-container{--str-chat-icon-height: calc(var(--str-chat__spacing-px) * 24);display:flex;align-items:center;justify-content:center;width:calc(var(--str-chat__spacing-px)*45);height:calc(var(--str-chat__spacing-px)*45);cursor:pointer}.str-chat__message-input .str-chat__message-input-inner .str-chat__file-input-container .str-chat__file-input-label{display:flex;align-items:center;justify-content:center;cursor:pointer}.str-chat__message-input .str-chat__message-input-inner .str-chat__message-textarea-container{display:flex;flex-direction:column;align-items:center;justify-content:center;width:100%;min-width:0;max-height:100%}.str-chat__message-input .str-chat__message-input-inner .str-chat__message-textarea-container .str-chat__message-textarea-with-emoji-picker{width:100%;min-height:0;max-height:100%;display:flex;padding:var(--str-chat__spacing-2) var(--str-chat__spacing-4);-webkit-column-gap:var(--str-chat__spacing-2);column-gap:var(--str-chat__spacing-2)}.str-chat__message-input .str-chat__message-input-inner .str-chat__message-textarea-container .str-chat__message-textarea-with-emoji-picker .str-chat__message-textarea{width:100%;display:flex;max-height:100%;overflow-y:auto;overflow-x:hidden;padding:0}.str-chat__message-input .str-chat__message-input-inner .str-chat__message-textarea-container .str-chat__message-textarea-with-emoji-picker .str-chat__message-textarea-emoji-picker{display:flex;align-items:center;justify-content:center;width:calc(var(--str-chat__spacing-px)*27);height:calc(var(--str-chat__spacing-px)*27);font-size:calc(var(--str-chat__spacing-px)*27);align-self:end}.str-chat__message-input .str-chat__message-input-inner .str-chat__message-textarea-container .str-chat__message-textarea-with-emoji-picker .str-chat__message-textarea-emoji-picker .str-chat__message-textarea-emoji-picker-container{z-index:5}.str-chat__message-input .str-chat__message-input-inner .str-chat__message-textarea-container .str-chat__message-textarea-with-emoji-picker .str-chat__message-textarea-emoji-picker .str-chat__message-textarea-emoji-picker-container .str-chat__emoji-picker-container{display:flex}.str-chat__message-input .str-chat__message-input-inner .str-chat__message-textarea-container .str-chat__message-textarea-with-emoji-picker .str-chat__message-textarea-emoji-picker .str-chat__emoji-picker-button{padding:unset;background:unset;border:unset;border-radius:var(--str-chat__border-radius-circle);display:flex;cursor:pointer}.str-chat__message-input .str-chat__message-input-inner .str-chat__message-textarea-container .str-chat__message-textarea-with-emoji-picker .str-chat__message-textarea-emoji-picker .str-chat__emoji-picker-button svg{width:calc(var(--str-chat__spacing-px)*24);height:calc(var(--str-chat__spacing-px)*24)}.str-chat__message-input .str-chat__message-input-inner .str-chat__message-textarea-container .str-chat__message-textarea-with-emoji-picker .str-chat__message-textarea-emoji-picker .str-chat__emoji-picker-button svg path{fill:var(--str-chat__message-input-tools-color)}.str-chat__message-input .str-chat__message-textarea-angular-host{display:flex;align-items:center;justify-content:center;width:100%}.str-chat__message-input .str-chat__message-textarea-react-host{position:relative;display:flex;align-items:center;justify-content:center;width:100%}.str-chat__message-input .str-chat__send-button{--str-chat-icon-height: calc(var(--str-chat__spacing-px) * 32);display:flex;align-items:center;justify-content:center;cursor:pointer;padding:0;width:calc(var(--str-chat__spacing-px)*45);height:calc(var(--str-chat__spacing-px)*45);min-width:calc(var(--str-chat__spacing-px)*45)}.str-chat__message-input .str-chat__send-button svg{width:calc(var(--str-chat__spacing-px)*32);height:calc(var(--str-chat__spacing-px)*32)}.str-chat__message-input .str-chat__start-recording-audio-button{--str-chat-icon-height: calc(var(--str-chat__spacing-px) * 25);display:flex;align-items:center;justify-content:center;cursor:pointer;padding:0;width:calc(var(--str-chat__spacing-px)*40);height:calc(var(--str-chat__spacing-px)*40);min-width:calc(var(--str-chat__spacing-px)*40)}.str-chat__message-input .str-chat__start-recording-audio-button svg{height:calc(var(--str-chat__spacing-px)*25)}.str-chat__message-input .str-chat__message-input-cooldown{display:flex;align-items:center;justify-content:center;-webkit-margin-start:var(--str-chat__spacing-2);margin-inline-start:var(--str-chat__spacing-2);margin-block:calc(var(--str-chat__spacing-2)/2);min-width:calc(calc(var(--str-chat__spacing-px) * 45) - var(--str-chat__spacing-2));min-height:calc(calc(var(--str-chat__spacing-px) * 45) - var(--str-chat__spacing-2))}.str-chat__message-input .str-chat__message-input-not-allowed{align-self:center;padding:var(--str-chat__spacing-3)}.str-chat__message-input .str-chat__quoted-message-preview{padding:var(--str-chat__spacing-2)}.str-chat__message-input .str-chat__recording-permission-denied-notification{position:absolute;left:.5rem;max-width:100%;bottom:100%;padding:1rem;margin-inline:.5rem;z-index:2}.str-chat__message-input .str-chat__recording-permission-denied-notification .str-chat__recording-permission-denied-notification__dismiss-button-container{display:flex;justify-content:flex-end}.str-chat__message-input-angular-host{max-height:50%}.str-chat-angular__message-input{height:100%;max-height:100%}.str-chat-angular__message-input-inner{height:100%;max-height:100%;min-height:0;flex-grow:initial}[dir=rtl] .str-chat__send-button svg,[dir=rtl] .str-chat__start-recording-audio-button svg{-webkit-transform:scale(-1, 1);transform:scale(-1, 1)}.str-chat__attachment-selector-actions-menu button,.str-chat__attachment-selector button{background:none;border:none}.str-chat__attachment-selector .str-chat__attachment-selector__menu-button{padding:.25rem .5rem;cursor:pointer}.str-chat__attachment-selector .str-chat__attachment-selector__menu-button .str-chat__attachment-selector__menu-button__icon{height:26px;width:26px}.str-chat__file-input{display:none}.str-chat__attachment-selector-actions-menu{min-width:300px;padding-block:.5rem}.str-chat__main-panel-inner{height:100%;display:flex;flex-direction:column;min-height:0;position:relative;align-items:center}.str-chat__list{overflow-x:hidden;overflow-y:auto;overscroll-behavior:none;width:100%;height:100%;max-height:100%}.str-chat__list .str-chat__message-list-scroll{padding:0 var(--str-chat__spacing-2)}.str-chat__list .str-chat__message-list-scroll .str-chat__li{margin-inline:calc(-1 * var(--str-chat__spacing-2));padding-inline:var(--str-chat__spacing-2)}.str-chat__list .str-chat__message-list-scroll .str-chat__parent-message-li{margin-inline:calc(-1 * var(--str-chat__spacing-2))}@media only screen and (min-device-width: 768px){.str-chat__list .str-chat__message-list-scroll{padding:0 min(var(--str-chat__spacing-10),4%)}.str-chat__list .str-chat__message-list-scroll .str-chat__li{margin-inline:calc(-1 * min(var(--str-chat__spacing-10), 4%));padding-inline:min(var(--str-chat__spacing-10),4%)}.str-chat__list .str-chat__message-list-scroll .str-chat__parent-message-li{margin-inline:calc(-1 * min(var(--str-chat__spacing-10), 4%) - 2px)}}.str-chat__list .str-chat__message-list-scroll .str-chat__ul{list-style:none;padding:0;margin:0}.str-chat__list .str-chat__parent-message-li{-webkit-padding-after:var(--str-chat__spacing-4);padding-block-end:var(--str-chat__spacing-4);-webkit-margin-after:var(--str-chat__spacing-4);margin-block-end:var(--str-chat__spacing-4)}.str-chat__list .str-chat__parent-message-li .str-chat__thread-start{text-align:start;padding-top:var(--str-chat__spacing-3)}.str-chat__jump-to-latest-message{position:absolute;inset-block-end:var(--str-chat__spacing-4);inset-inline-end:var(--str-chat__spacing-2);z-index:2}.str-chat__jump-to-latest-message .str-chat__jump-to-latest-unread-count{position:absolute;padding:var(--str-chat__spacing-0_5) var(--str-chat__spacing-2);left:50%;-webkit-transform:translateX(-50%) translateY(-100%);transform:translateX(-50%) translateY(-100%)}.str-chat__main-panel .str-chat__ul .str-chat__li:first-of-type{padding-top:4.5rem}.str-chat__main-panel .str-chat__ul .str-chat__date-separator+.str-chat__li:first-of-type{padding-top:inherit}.str-chat__virtual-list{overflow-x:hidden;overflow-y:auto;position:relative;flex:1;-webkit-overflow-scrolling:touch;margin:0;width:100%;height:100%}.str-chat__virtual-list .str-chat__message-list-scroll{overscroll-behavior:none}.str-chat__virtual-list .str-chat__message-list-scroll>div{padding:0 var(--str-chat__spacing-2)}.str-chat__virtual-list .str-chat__message-list-scroll>div .str-chat__li{margin-inline:calc(-1 * var(--str-chat__spacing-2));padding-inline:var(--str-chat__spacing-2)}.str-chat__virtual-list .str-chat__message-list-scroll>div .str-chat__parent-message-li{margin-inline:calc(-1 * var(--str-chat__spacing-2))}@media only screen and (min-device-width: 768px){.str-chat__virtual-list .str-chat__message-list-scroll>div{padding:0 min(var(--str-chat__spacing-10),4%)}.str-chat__virtual-list .str-chat__message-list-scroll>div .str-chat__li{margin-inline:calc(-1 * min(var(--str-chat__spacing-10), 4%));padding-inline:min(var(--str-chat__spacing-10),4%)}.str-chat__virtual-list .str-chat__message-list-scroll>div .str-chat__parent-message-li{margin-inline:calc(-1 * min(var(--str-chat__spacing-10), 4%) - 2px)}}.str-chat__virtual-list .str-chat__parent-message-li{-webkit-padding-after:var(--str-chat__spacing-4);padding-block-end:var(--str-chat__spacing-4)}.str-chat__virtual-list .str-chat__parent-message-li .str-chat__thread-start{text-align:start;padding-top:var(--str-chat__spacing-3)}.str-chat__virtual-list__loading{display:flex;padding-top:var(--str-chat__spacing-2);justify-content:center;width:100%;position:absolute}.str-chat__virtual-list p{margin:0 !important}.str-chat__virtual-list p a{white-space:pre-line;overflow:hidden;word-wrap:break-word}.str-chat__virtual-list .str-chat__message{-webkit-margin-after:0 !important;margin-block-end:0 !important}.str-chat__virtual-list .str-chat__virtual-list-message-wrapper{-webkit-padding-after:var(--str-chat__spacing-0_5);padding-block-end:var(--str-chat__spacing-0_5)}.str-chat__message-reactions-container{display:flex}.str-chat__message-reactions-container .str-chat__message-reactions{overflow-y:hidden;overflow-x:auto;scrollbar-width:none;list-style:none;display:flex;-webkit-margin-before:var(--str-chat__spacing-0_5);margin-block-start:var(--str-chat__spacing-0_5);-webkit-margin-after:var(--str-chat__spacing-0_5);margin-block-end:var(--str-chat__spacing-0_5);-webkit-column-gap:var(--str-chat__spacing-0_5);column-gap:var(--str-chat__spacing-0_5);width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;padding:0;position:relative}.str-chat__message-reactions-container .str-chat__message-reactions .str-chat__message-reaction{display:flex;justify-content:center;align-items:center;padding:var(--str-chat__spacing-1_5);position:relative;cursor:pointer;flex-shrink:0}.str-chat__message-reactions-container .str-chat__message-reactions .str-chat__message-reaction button{background:none;border:none;display:flex;align-items:center;justify-content:center;padding:0}.str-chat__message-reactions-container .str-chat__message-reactions .str-chat__message-reaction .str-chat__message-reaction-emoji{height:calc(var(--str-chat__spacing-px)*13);display:flex !important;align-items:center;justify-content:center}.str-chat__message-reactions-container .str-chat__message-reactions .str-chat__reaction-list--counter,.str-chat__message-reactions-container .str-chat__message-reactions .str-chat__simple-reactions-list-item--last-number{display:none}.str-chat__message--me .str-chat__message-reactions-container{justify-content:flex-end}.str-chat__message--other .str-chat__message-reactions-container{justify-content:flex-start}.str-chat__message-reactions-details-modal .str-chat__modal--open .str-chat__modal__inner{height:40%;max-height:80%;min-width:90%;max-width:90%;width:90%;flex-basis:min-content}@media only screen and (min-device-width: 768px){.str-chat__message-reactions-details-modal .str-chat__modal--open .str-chat__modal__inner{min-width:40%;max-width:60%;width:-webkit-min-content;width:min-content}}.str-chat__message-reactions-details{width:100%;display:flex;flex-direction:column;gap:var(--str-chat__spacing-4);max-height:100%;height:100%;min-height:0}.str-chat__message-reactions-details .str-chat__message-reactions-details-reaction-types{display:flex;max-width:100%;width:100%;min-width:0;overflow-x:auto;gap:var(--str-chat__spacing-4);display:flex;align-items:center;flex-shrink:0}.str-chat__message-reactions-details .str-chat__message-reactions-details-reaction-types .str-chat__message-reactions-details-reaction-type{display:flex;align-items:center;padding:var(--str-chat__spacing-1) 0;flex-shrink:0;cursor:pointer}.str-chat__message-reactions-details .str-chat__message-reactions-details-reaction-types .str-chat__message-reactions-details-reaction-type .str-chat__message-reaction-emoji--with-fallback{width:18px;line-height:18px}.str-chat__message-reactions-details .str-chat__message-reaction-emoji-big{--str-chat__stream-emoji-size: 1em;align-self:center;font-size:2rem}.str-chat__message-reactions-details .str-chat__message-reaction-emoji-big.str-chat__message-reaction-emoji--with-fallback{line-height:2rem}.str-chat__message-reactions-details .str-chat__message-reactions-details-reacting-users{display:flex;flex-direction:column;gap:var(--str-chat__spacing-3);max-height:100%;overflow-y:auto;min-height:30vh}.str-chat__message-reactions-details .str-chat__message-reactions-details-reacting-users .str-chat__loading-indicator{margin:auto}.str-chat__message-reactions-details .str-chat__message-reactions-details-reacting-users .str-chat__message-reactions-details-reacting-user{display:flex;align-items:center;gap:var(--str-chat__spacing-2)}.str-chat__message-reaction-selector{display:flex;justify-content:flex-end;position:absolute;inset-block-end:100%}.str-chat__message-reaction-selector.str-chat-angular-v5__reaction-selector{margin:var(--str-chat__spacing-2);position:static;justify-content:flex-start}.str-chat__message-reaction-selector.str-chat-angular-v5__reaction-selector .str-chat__message-reactions-options{max-width:100%;overflow-y:hidden;overflow-x:auto;scrollbar-width:none;padding:0}.str-chat__message-reaction-selector.str-chat-angular-v5__reaction-selector .str-chat__message-reactions-options .str-chat__message-reactions-option{flex-shrink:0}.str-chat__message-reaction-selector .str-chat__message-reactions-options{list-style:none;display:flex;-webkit-margin-after:var(--str-chat__spacing-0_5);margin-block-end:var(--str-chat__spacing-0_5);width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;-webkit-column-gap:var(--str-chat__spacing-1);column-gap:var(--str-chat__spacing-1);padding:var(--str-chat__spacing-2)}.str-chat__message-reaction-selector .str-chat__message-reactions-options .str-chat__message-reactions-option{display:flex;align-items:center;justify-content:center;cursor:pointer;width:calc(var(--str-chat__spacing-px)*40);height:calc(var(--str-chat__spacing-px)*40)}.str-chat__message-reaction-selector .str-chat__message-reactions-options .str-chat__message-reactions-option .str-chat__message-reaction-emoji{height:calc(var(--str-chat__spacing-px)*20);display:flex !important;align-items:center;justify-content:center}.str-chat__message-reaction-selector .str-chat__message-reactions-options .str-chat__message-reactions-last-user{display:none}.str-chat__message-reaction-selector .str-chat__message-reactions-options .str-chat__message-reactions-list-item__count{display:none}.str-chat__message--me .str-chat__message-reaction-selector{inset-inline-end:0}.str-chat__message--other .str-chat__message-reaction-selector{inset-inline-start:0}.str-chat-react__message-reaction-selector{position:static;inset-block-end:unset}.str-chat-react__message-reaction-selector ul{margin:0}.str-chat__message--me .str-chat-react__message-reaction-selector,.str-chat__message--other .str-chat-react__message-reaction-selector{inset-inline-start:unset}.str-chat__modal--open{display:flex;flex-direction:column;align-items:center;justify-content:center;position:fixed;top:0;bottom:0;left:0;right:0;width:100%;height:100%;z-index:100}.str-chat__modal--open .str-chat__modal-header{display:flex;align-items:center;width:100%;padding:1.25rem 1rem}.str-chat__modal--open .str-chat__modal-header button.str-chat__modal-header__go-back-button,.str-chat__modal--open .str-chat__modal-header .str-chat__modal__close-button{padding:1rem;background-size:.875rem;background-repeat:no-repeat;background-position:center}.str-chat__modal--open .str-chat__modal-header button.str-chat__modal-header__go-back-button{background-image:var(--str-chat__arrow-left-icon)}.str-chat__modal--open .str-chat__modal-header .str-chat__modal-header__close-button{background-image:var(--str-chat__close-icon);background-repeat:no-repeat;height:.875rem;width:.875rem}.str-chat__modal--open .str-chat__modal-header .str-chat__modal-header__title{flex:1}.str-chat__modal--open button.str-chat__modal__close-button{padding:unset;background:unset;border:unset;border-radius:var(--str-chat__border-radius-circle);margin:var(--str-chat__spacing-2);cursor:pointer}.str-chat__modal--open .str-chat__modal__close-button{--str-chat-icon-height: calc(var(--str-chat__spacing-px) * 28);display:flex;align-items:center;justify-content:center;padding:var(--str-chat__spacing-2);position:absolute;inset-block-start:0;inset-inline-end:0;cursor:pointer}.str-chat__modal--open .str-chat__modal__inner{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:var(--str-chat__spacing-8) var(--str-chat__spacing-4);width:40%;max-height:80%;min-width:0;min-height:0}.str-chat__modal--close{display:none}.str-chat__message-notification{display:block;position:absolute;align-self:center;padding:var(--str-chat__spacing-1) var(--str-chat__spacing-2);bottom:calc(var(--str-chat__spacing-px)*10);z-index:100}.str-chat__list-notifications{position:relative}.str-chat__list-notifications{display:flex;flex-direction:column;align-items:stretch;justify-content:center;row-gap:var(--str-chat__spacing-1);margin:var(--str-chat__spacing-1_5);width:auto}.str-chat__notification{padding:var(--str-chat__spacing-3_5) var(--str-chat__spacing-4)}.str-chat-react__notification{z-index:101}.str-chat__poll{display:flex;flex-direction:column;gap:.5rem;padding:.75rem .675rem;max-width:270px;font:var(--str-chat__body-text)}.str-chat__poll button{background:none;border:none;cursor:pointer}.str-chat__poll .str-chat__checkmark{grid-column:1/2;grid-row:1/2;margin-right:.125rem;height:1rem;width:1rem}.str-chat__poll .str-chat__checkmark--checked{height:calc(1rem + 1px);width:calc(1rem + 1px);background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9Im5vbmUiPjxwYXRoIGZpbGw9IiNmZmYiIGQ9Im00IDkuNC00LTRMMS40IDQgNCA2LjYgMTAuNiAwIDEyIDEuNGwtOCA4WiIvPjwvc3ZnPg==");background-repeat:no-repeat;background-position:center;background-size:11px 10px}.str-chat__poll .str-chat__poll-header .str-chat__poll-title{font:var(--str-chat__body-medium-text)}.str-chat__poll .str-chat__poll-header .str-chat__poll-subtitle{font:var(--str-chat__caption-text)}.str-chat__poll .str-chat__poll-actions{display:flex;flex-direction:column;align-items:center}.str-chat__poll .str-chat__poll-actions .str-chat__poll-action{padding:.675rem;font:var(--str-chat__subtitle-text);color:var(--str-chat__primary-color)}.str-chat__poll-option-list--full .str-chat__amount-bar,.str-chat__modal__poll-results .str-chat__amount-bar{display:none}.str-chat__poll-option{cursor:pointer}.str-chat__poll-option.str-chat__poll-option--full-vote-list{cursor:default;height:100%;padding:0}.str-chat__poll-option .str-chat__poll-option-data{flex:1;display:flex;align-items:flex-start;font:var(--str-chat__body-text);gap:.125rem}.str-chat__poll-option .str-chat__poll-option-data p{margin:0;flex:1}.str-chat__poll-option .str-chat__poll-option-data .str-chat__poll-option-voters{--str-chat__avatar-size: 1.175rem;display:flex}.str-chat__poll-option-list--full .str-chat__poll-option{display:flex;flex-direction:row;padding:1rem .75rem}.str-chat__poll-option-list--full .str-chat__poll-option:nth-of-type(1){padding-top:1rem;border-top-left-radius:var(--str-chat__border-radius-sm);border-top-right-radius:var(--str-chat__border-radius-sm)}.str-chat__poll-option-list--full .str-chat__poll-option:last-child{padding-bottom:1rem;border-bottom-left-radius:var(--str-chat__border-radius-sm);border-bottom-right-radius:var(--str-chat__border-radius-sm)}.str-chat__poll-option-list:not(.str-chat__poll-option-list--full){display:flex;flex-direction:column;gap:1.5rem;padding-block:1rem .5rem}.str-chat__poll-option-list:not(.str-chat__poll-option-list--full) .str-chat__poll-option{display:grid;grid-template-columns:auto 1fr;grid-template-rows:1fr auto;gap:.125rem}.str-chat__poll-option-list:not(.str-chat__poll-option-list--full) .str-chat__poll-option .str-chat__poll-option-data{grid-column:2/3;grid-row:1/2}.str-chat__poll-option-list:not(.str-chat__poll-option-list--full) .str-chat__poll-option .str-chat__poll-option__votes-bar{grid-column:2/3;grid-row:2/3;height:.25rem;width:100%;margin-top:.25rem}.str-chat__modal__poll-results .str-chat__poll-option{display:flex;flex-direction:column}.str-chat__poll-actions .str-chat__modal .str-chat__modal__close-button{display:none}.str-chat__poll-actions .str-chat__modal .str-chat__modal__inner{padding:0 0 .5rem;overflow:hidden;max-width:400px}.str-chat__poll-actions .str-chat__modal .str-chat__modal__inner .str-chat__tooltip{max-width:300px}.str-chat__poll-actions .str-chat__modal .str-chat__modal__inner .str-chat__modal__suggest-poll-option .str-chat__form-field-error{height:1rem}.str-chat__poll-actions .str-chat__modal .str-chat__modal__inner .str-chat__modal__poll-answer-list,.str-chat__poll-actions .str-chat__modal .str-chat__modal__inner .str-chat__modal__poll-option-list,.str-chat__poll-actions .str-chat__modal .str-chat__modal__inner .str-chat__modal__poll-results{display:flex;flex-direction:column;width:100%;height:100%;min-height:400px}.str-chat__poll-actions .str-chat__modal .str-chat__modal__inner .str-chat__modal__poll-answer-list .str-chat__loading-indicator-placeholder,.str-chat__poll-actions .str-chat__modal .str-chat__modal__inner .str-chat__poll-option--full-vote-list .str-chat__loading-indicator-placeholder{display:flex;justify-content:center;align-items:center;width:100%;height:40px}.str-chat__poll-actions .str-chat__modal .str-chat__modal__inner .str-chat__modal__poll-option-list__title,.str-chat__poll-actions .str-chat__modal .str-chat__modal__inner .str-chat__modal__poll-results__title{padding:1.175rem 1rem}.str-chat__poll-actions .str-chat__modal .str-chat__modal__inner .str-chat__modal__poll-answer-list__body,.str-chat__poll-actions .str-chat__modal .str-chat__modal__inner .str-chat__modal__poll-results__body{display:flex;flex-direction:column;min-height:0;padding-bottom:1rem}.str-chat__poll-actions .str-chat__modal .str-chat__modal__inner .str-chat__modal__poll-results__body,.str-chat__poll-actions .str-chat__modal .str-chat__modal__inner .str-chat__modal__poll-option-list__body,.str-chat__poll-actions .str-chat__modal .str-chat__modal__inner .str-chat__poll-answer-list,.str-chat__poll-actions .str-chat__modal .str-chat__modal__inner .str-chat__modal__poll-results__option-list{display:flex;flex-direction:column;flex:1;max-height:100%;min-height:0}.str-chat__poll-actions .str-chat__modal .str-chat__modal__inner .str-chat__poll-answer-list{padding-bottom:0}.str-chat__poll-actions .str-chat__modal .str-chat__modal__inner .str-chat__modal__poll-results__body,.str-chat__poll-actions .str-chat__modal .str-chat__modal__inner .str-chat__modal__poll-option-list__body,.str-chat__poll-actions .str-chat__modal .str-chat__modal__inner .str-chat__poll-answer-list{overflow-y:auto;padding:0 1rem 1.25rem}.str-chat__poll-actions .str-chat__modal .str-chat__modal__inner .str-chat__poll-answer-list,.str-chat__poll-actions .str-chat__modal .str-chat__modal__inner .str-chat__modal__poll-results__option-list{gap:.5rem}.str-chat__poll-actions .str-chat__modal .str-chat__modal__inner .str-chat__modal__poll-results__body,.str-chat__poll-actions .str-chat__modal .str-chat__modal__inner .str-chat__modal__poll-option-list__body{gap:2rem}.str-chat__poll-actions .str-chat__modal .str-chat__modal__inner .str-chat__poll-option__show-all-votes-button{padding-bottom:1rem}.str-chat__poll-actions .str-chat__modal .str-chat__modal__inner .str-chat__poll-answer{display:flex;flex-direction:column;gap:1rem;padding:.75rem 1rem}.str-chat__poll-actions .str-chat__modal .str-chat__modal__inner .str-chat__poll-answer .str-chat__poll-answer__text{margin:0}.str-chat__poll-actions .str-chat__modal .str-chat__modal__inner .str-chat__checkmark{margin-right:1rem}.str-chat__poll-actions .str-chat__modal .str-chat__modal__inner .str-chat__poll-option__header{display:flex;align-items:flex-start;gap:.25rem;width:100%;padding:.75rem 1rem}.str-chat__poll-actions .str-chat__modal .str-chat__modal__inner .str-chat__poll-option__header .str-chat__poll-option__option-text{flex:1}.str-chat__poll-actions .str-chat__modal .str-chat__modal__inner .str-chat__poll-vote{display:flex;justify-content:space-between;align-items:center;gap:.5rem;white-space:nowrap;padding-block:.375rem}.str-chat__poll-actions .str-chat__modal .str-chat__modal__inner .str-chat__poll-vote .str-chat__poll-vote__author{display:flex;align-items:center;gap:calc(var(--str-chat__spacing-px)*5);min-width:0}.str-chat__poll-actions .str-chat__modal .str-chat__modal__inner .str-chat__poll-vote .str-chat__poll-vote__author .str-chat__poll-vote__author__name{white-space:nowrap;overflow-y:visible;overflow-x:hidden;overflow-x:clip;text-overflow:ellipsis;max-width:130px;min-width:0}.str-chat__poll-actions .str-chat__modal .str-chat__modal__inner .str-chat__poll-result-option-vote-counter{display:flex;gap:.375rem}.str-chat__poll-actions .str-chat__modal .str-chat__modal__inner .str-chat__poll-result-option-vote-counter .str-chat__poll-result-winning-option-icon{height:1.25rem;width:1.25rem;background-image:var(--str-chat__winning-poll-option-icon)}.str-chat__poll-vote-listing{padding:0 1rem .75rem}.str-chat__modal__poll-results--option-detail .str-chat__modal-header__title{padding-inline:1rem;flex:1}.str-chat__modal__poll-results--option-detail .str-chat__modal__poll-results__body{padding-inline:1rem}.str-chat__quoted-poll-preview{display:flex;flex-wrap:wrap;gap:.5rem;align-items:flex-start}.str-chat__modal.str-chat__create-poll-modal .str-chat__modal__close-button{display:none}.str-chat__modal.str-chat__create-poll-modal .str-chat__modal__inner{padding:0;max-height:unset;display:block}.str-chat__modal.str-chat__create-poll-modal .str-chat__poll-creation-dialog{width:100%;height:700px;display:flex;flex-direction:column}.str-chat__modal.str-chat__create-poll-modal .str-chat__poll-creation-dialog button{background:none;border:none;cursor:pointer}.str-chat__modal.str-chat__create-poll-modal .str-chat__poll-creation-dialog .str-chat__modal-header{padding-block:14px}.str-chat__modal.str-chat__create-poll-modal .str-chat__poll-creation-dialog .str-chat__modal-header .str-chat__modal-header__close-button{background-image:var(--str-chat__close-icon);background-repeat:no-repeat}.str-chat__modal.str-chat__create-poll-modal .str-chat__poll-creation-dialog .str-chat__dialog__body{flex:1 1;padding:1rem}.str-chat__modal.str-chat__create-poll-modal .str-chat__poll-creation-dialog .str-chat__dialog__body form{display:flex;flex-direction:column;gap:2rem}.str-chat__modal.str-chat__create-poll-modal .str-chat__poll-creation-dialog .str-chat__form__input-fieldset{margin:0;padding:0}.str-chat__modal.str-chat__create-poll-modal .str-chat__poll-creation-dialog .str-chat__form__input-fieldset .str-chat__form__input-field{width:100%;padding:1rem}.str-chat__modal.str-chat__create-poll-modal .str-chat__poll-creation-dialog .str-chat__form__input-fieldset .str-chat__form__input-field .str-chat__form__input-field__value{width:100%}.str-chat__modal.str-chat__create-poll-modal .str-chat__poll-creation-dialog .str-chat__form__input-fieldset .str-chat__form__input-field .str-chat__form__input-field__value .str-chat__form__input-field__error{width:100%}.str-chat__modal.str-chat__create-poll-modal .str-chat__poll-creation-dialog .str-chat__form__input-field--with-label .str-chat__form__input-field__value{padding:1rem}.str-chat__modal.str-chat__create-poll-modal .str-chat__poll-creation-dialog .str-chat__form__input-field__value input{width:100%}.str-chat__modal.str-chat__create-poll-modal .str-chat__poll-creation-dialog .str-chat__form__expandable-field{padding:1rem;display:flex;flex-direction:column;gap:1rem}.str-chat__modal.str-chat__create-poll-modal .str-chat__poll-creation-dialog .str-chat__form__expandable-field .str-chat__form__switch-field{padding:0}.str-chat__modal.str-chat__create-poll-modal .str-chat__poll-creation-dialog .str-chat__form__expandable-field .str-chat__form__input-field{width:100%}.str-chat__modal.str-chat__create-poll-modal .str-chat__poll-creation-dialog .str-chat__form__expandable-field .str-chat__form__input-field .str-chat__form__input-field__value{padding:0}.str-chat__modal.str-chat__create-poll-modal .str-chat__poll-creation-dialog .str-chat__form__expandable-field .str-chat__form__input-field .str-chat__form__input-field__value .str-chat__form-field-error{height:1rem}.str-chat__modal.str-chat__create-poll-modal .str-chat__poll-creation-dialog .str-chat__form__input-fieldset__values{display:flex;flex-direction:column}.str-chat__modal.str-chat__create-poll-modal .str-chat__poll-creation-dialog .str-chat__form__field-label{display:block;margin-bottom:.5rem}.str-chat__modal.str-chat__create-poll-modal .str-chat__poll-creation-dialog .str-chat__form__input-field--draggable{display:flex;align-items:center;justify-content:space-between;gap:.5rem}.str-chat__modal.str-chat__create-poll-modal .str-chat__poll-creation-dialog .str-chat__form__input-field--draggable .str-chat__drag-handle{height:1rem;width:1rem}.str-chat__modal.str-chat__create-poll-modal .str-chat__poll-creation-dialog .str-chat__form__switch-field{width:100%;padding:1rem}.str-chat__modal.str-chat__create-poll-modal .str-chat__poll-creation-dialog .str-chat__form__switch-field input[type=checkbox]{display:none}.str-chat__modal.str-chat__create-poll-modal .str-chat__poll-creation-dialog .str-chat__form__switch-field label{display:flex;align-items:center;justify-content:space-between;width:100%}.str-chat__modal.str-chat__create-poll-modal .str-chat__poll-creation-dialog .str-chat__form__switch-field .str-chat__form__switch-field__switch{display:flex;align-items:center;width:calc(var(--str-chat__spacing-px)*52);height:calc(var(--str-chat__spacing-px)*32);padding:.25rem}.str-chat__modal.str-chat__create-poll-modal .str-chat__poll-creation-dialog .str-chat__form__switch-field .str-chat__form__switch-field__switch .str-chat__form__switch-field__switch-handle{height:1.5rem;width:1.5rem}.str-chat__modal.str-chat__create-poll-modal .str-chat__poll-creation-dialog .str-chat__form__switch-field .str-chat__form__switch-field__switch.str-chat__form__switch-field__switch--on .str-chat__form__switch-field__switch-handle{-webkit-transform:translateX(1.25rem);transform:translateX(1.25rem)}@media only screen and (max-device-width: 768px){.str-chat__modal--open .str-chat__modal__inner{width:90%}.str-chat__create-poll-modal .str-chat__modal__inner,.str-chat__poll-answer-list-modal .str-chat__modal__inner,.str-chat__poll-results-modal .str-chat__modal__inner{height:90%;max-height:unset}}.str-chat__thread-container{height:100%;display:flex;flex-direction:column;width:100%}.str-chat__thread-container .str-chat__thread-header{display:flex;padding:var(--str-chat__spacing-2);-webkit-column-gap:var(--str-chat__spacing-4);column-gap:var(--str-chat__spacing-4);align-items:center}.str-chat__thread-container .str-chat__thread-header .str-chat__thread-header-details{display:flex;flex-direction:column;overflow-y:hidden;overflow-x:hidden;flex:1;row-gap:var(--str-chat__spacing-1_5)}.str-chat__thread-container .str-chat__thread-header .str-chat__thread-header-details .str-chat__thread-header-name,.str-chat__thread-container .str-chat__thread-header .str-chat__thread-header-details .str-chat__thread-header-reply-count,.str-chat__thread-container .str-chat__thread-header .str-chat__thread-header-details .str-chat__thread-header-channel-name,.str-chat__thread-container .str-chat__thread-header .str-chat__thread-header-details .str-chat__thread-header-subtitle,.str-chat__thread-container .str-chat__thread-header .str-chat__thread-header-details .str-chat__thread-header-title{white-space:nowrap;overflow-y:visible;overflow-x:hidden;overflow-x:clip;text-overflow:ellipsis}.str-chat__thread-container .str-chat__thread-header .str-chat__thread-header-details .str-chat__thread-header-subtitle{overflow-y:hidden}.str-chat__thread-container .str-chat__thread-header .str-chat__close-thread-button{display:flex;align-items:flex-start;justify-content:flex-end;width:calc(var(--str-chat__spacing-px)*40);height:calc(var(--str-chat__spacing-px)*40);cursor:pointer;line-height:calc(var(--str-chat__spacing-px)*21);font-size:calc(var(--str-chat__spacing-px)*21)}.str-chat__thread-container .str-chat__thread-header .str-chat__close-thread-button svg{height:calc(var(--str-chat__spacing-px)*21);width:calc(var(--str-chat__spacing-px)*21)}.str-chat__thread .str-chat__main-panel-inner{height:auto}.str-chat__thread--virtualized .str-chat__main-panel-inner{height:100%}.str-chat__thread--virtualized .str-chat__main-panel-inner .str-chat__virtual-list-message-wrapper:first-of-type{-webkit-padding-before:var(--str-chat__spacing-4);padding-block-start:var(--str-chat__spacing-4)}.str-chat__parent-message-li{padding:var(--str-chat__spacing-2)}.str-chat__tooltip{overflow-y:hidden;display:flex;padding:var(--str-chat__spacing-2);z-index:1;max-width:calc(var(--str-chat__spacing-px)*150);width:-webkit-max-content;width:max-content}.str-chat__typing-indicator-react-host{position:static !important}.str-chat__virtual-list .str-chat__typing-indicator{position:static}.str-chat__typing-indicator{padding:var(--str-chat__spacing-1_5);display:flex;justify-content:flex-start;align-items:center;-webkit-column-gap:var(--str-chat__spacing-1);column-gap:var(--str-chat__spacing-1);position:absolute;inset-block-end:0;inset-inline-start:0;inset-inline-end:0}.str-chat__typing-indicator .str-chat__typing-indicator__dots{display:flex;align-items:center;justify-content:center;-webkit-column-gap:var(--str-chat__spacing-0_5);column-gap:var(--str-chat__spacing-0_5)}.str-chat__typing-indicator .str-chat__typing-indicator__dots .str-chat__typing-indicator__dot{width:calc(var(--str-chat__spacing-px)*4);height:calc(var(--str-chat__spacing-px)*4)}.str-chat__thread-list-container{display:flex;flex-direction:column;flex-grow:1}.str-chat__unseen-threads-banner{font-size:16px;font-weight:400;margin:8px;padding:16px;display:flex;align-items:center;justify-content:space-between}.str-chat__unseen-threads-banner__button{--str-chat-icon-width: 16px;--str-chat-icon-heigh: 22px;all:unset;cursor:pointer;display:flex;align-items:center;justify-content:center;width:24px;height:24px}.str-chat__thread-list .str-chat__thread-list-item{align-items:stretch;box-sizing:border-box;padding-block:14px;padding-inline:8px;gap:6px;width:100%;display:flex;flex-direction:column;cursor:pointer}.str-chat__thread-list .str-chat__thread-list-item .str-chat__thread-list-item__channel{--str-chat-icon-height: 14px;--str-chat-icon-width: 14px;display:flex;gap:5px}.str-chat__thread-list .str-chat__thread-list-item .str-chat__thread-list-item__channel .str-chat__icon{margin-top:2px;flex-shrink:0}.str-chat__thread-list .str-chat__thread-list-item .str-chat__thread-list-item__thread-status-symbol{font-size:14px;line-height:1}.str-chat__thread-list .str-chat__thread-list-item .str-chat__thread-list-item__channel-text{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-size:14px;font-weight:400;line-height:1}.str-chat__thread-list .str-chat__thread-list-item .str-chat__thread-list-item__parent-message{display:flex;gap:3px;justify-content:space-between;align-items:center;height:15px}.str-chat__thread-list .str-chat__thread-list-item .str-chat__thread-list-item__parent-message-text{font-size:12px;font-weight:400;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.str-chat__thread-list .str-chat__thread-list-item .str-chat__thread-list-item__latest-reply{--str-chat__avatar-size: 49px;display:flex;align-items:center;gap:5px}.str-chat__thread-list .str-chat__thread-list-item .str-chat__thread-list-item__latest-reply-details{display:flex;flex-direction:column;flex-grow:1;gap:4px;width:0}.str-chat__thread-list .str-chat__thread-list-item .str-chat__thread-list-item__latest-reply-created-by{font-weight:500;font-size:16px;text-align:left;text-overflow:ellipsis;white-space:nowrap;overflow-x:hidden}.str-chat__thread-list .str-chat__thread-list-item .str-chat__thread-list-item__latest-reply-text-and-timestamp{display:flex;font-size:14px;font-weight:400;justify-content:space-between;align-items:baseline;line-height:16px}.str-chat__thread-list .str-chat__thread-list-item .str-chat__thread-list-item__latest-reply-text{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.str-chat__thread-list .str-chat__thread-list-item .str-chat__thread-list-item__latest-reply-timestamp{white-space:nowrap}.str-chat__thread-list .str-chat__thread-list-loading-indicator{display:flex;align-items:center;justify-content:center;padding-block:14px;padding-inline:8px}.str-chat__thread-list-empty-placeholder{--str-chat-icon-height: 95px;--str-chat-icon-width: 95px;font-size:20px;font-weight:500;display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%;gap:16px}.str-chat__chat-view{display:flex;width:100%;height:100%}.str-chat__chat-view__selector{display:flex;flex-direction:column;padding-inline:8px;padding-block:16px;gap:20px}.str-chat__chat-view__selector-button{--str-chat-icon-height: 20px;--str-chat-icon-width: 20px;--str-chat-unread-count-badge-absolute-offset-vertical: 25%;display:flex;flex-direction:column;align-items:center;padding-inline:10px;padding-block:10px;border-radius:8px;gap:4px;font-weight:400;font-size:12px;line-height:1;box-sizing:border-box;cursor:pointer;position:relative}.str-chat__chat-view__channels{display:flex;flex-grow:1}.str-chat__chat-view__threads{display:flex;flex-grow:1}.str-chat{--str-chat-unread-count-badge-absolute-offset-vertical: 50%;--str-chat-unread-count-badge-absolute-offset-horizontal: 50%}.str-chat__unread-count-badge-container{position:relative;display:flex;align-items:center;justify-content:center}.str-chat__unread-count-badge{font-size:12px;min-width:22px;min-height:22px;line-height:8px;font-weight:700;padding:7px;flex-shrink:0;display:flex;align-items:center;justify-content:center;font-variant-numeric:tabular-nums}.str-chat__unread-count-badge--top-right{position:absolute;translate:var(--str-chat-unread-count-badge-absolute-offset-horizontal) calc(var(--str-chat-unread-count-badge-absolute-offset-vertical)*-1)}.str-chat__unread-count-badge--bottom-left{position:absolute;translate:calc(var(--str-chat-unread-count-badge-absolute-offset-horizontal)*-1) var(--str-chat-unread-count-badge-absolute-offset-vertical)}.str-chat__unread-count-badge--bottom-right{position:absolute;translate:var(--str-chat-unread-count-badge-absolute-offset-horizontal) var(--str-chat-unread-count-badge-absolute-offset-vertical)}.str-chat__unread-count-badge--top-left{position:absolute;translate:calc(var(--str-chat-unread-count-badge-absolute-offset-horizontal)*-1) calc(var(--str-chat-unread-count-badge-absolute-offset-vertical)*-1)}.str-chat{--str-chat__blue950: #001333;--str-chat__blue900: #00163d;--str-chat__blue800: #002666;--str-chat__blue700: #003999;--str-chat__blue600: #004ccc;--str-chat__blue500: #005fff;--str-chat__blue400: #337eff;--str-chat__blue300: #669fff;--str-chat__blue200: #ccdfff;--str-chat__blue100: #e0f0ff;--str-chat__blue50: #ebf5ff;--str-chat__grey950: #080707;--str-chat__grey900: #17191c;--str-chat__grey800: #1c1e22;--str-chat__grey700: #272a30;--str-chat__grey600: #4c525c;--str-chat__grey500: #72767e;--str-chat__grey400: #b4b7bb;--str-chat__grey300: #dbdde1;--str-chat__grey200: #e9eaed;--str-chat__grey100: #f4f4f5;--str-chat__grey50: #ffffff;--str-chat__red900: #330003;--str-chat__red800: #660006;--str-chat__red700: #990008;--str-chat__red600: #cc000b;--str-chat__red500: #ff000e;--str-chat__red400: #ff3742;--str-chat__red300: #ff666e;--str-chat__red200: #ff999f;--str-chat__red100: #ffe5e7;--str-chat__green900: #062d16;--str-chat__green800: #0d592c;--str-chat__green700: #138643;--str-chat__green600: #19b359;--str-chat__green500: #20e070;--str-chat__green400: #4ce68c;--str-chat__green300: #79eca9;--str-chat__green200: #a6f2c6;--str-chat__green100: #e9f1ff;--str-chat__yellow900: #332500;--str-chat__yellow800: #664900;--str-chat__yellow700: #996e00;--str-chat__yellow600: #cc9200;--str-chat__yellow500: #ffb700;--str-chat__yellow400: #ffd466;--str-chat__yellow300: #ffe299;--str-chat__yellow200: #fff1cc;--str-chat__yellow100: #fff8e5}.str-chat{--str-chat__border-radius-xs: 8px;--str-chat__border-radius-sm: 14px;--str-chat__border-radius-md: 18px;--str-chat__border-radius-lg: 20px;--str-chat__border-radius-circle: 999px;--str-chat__font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;--str-chat__caption-text: 0.75rem/1.3 var(--str-chat__font-family);--str-chat__caption-medium-text: 500 0.75rem/1.3 var(--str-chat__font-family);--str-chat__caption-strong-text: 700 0.75rem/1.3 var(--str-chat__font-family);--str-chat__body-text: 0.875rem/1.2 var(--str-chat__font-family);--str-chat__body-medium-text: 500 0.875rem/1.2 var(--str-chat__font-family);--str-chat__body2-text: 0.9375rem/1.2 var(--str-chat__font-family);--str-chat__body2-medium-text: 500 0.9375rem/1.2 var(--str-chat__font-family);--str-chat__subtitle-text: 1rem/1.25 var(--str-chat__font-family);--str-chat__subtitle-medium-text: 500 1rem/1.25 var(--str-chat__font-family);--str-chat__subtitle2-text: 1.25rem/1.2 var(--str-chat__font-family);--str-chat__subtitle2-medium-text: 500 1.25rem/1.2 var(--str-chat__font-family);--str-chat__headline-text: 1.5rem/1.2 var(--str-chat__font-family);--str-chat__headline2-text: 1.8rem/1.2 var(--str-chat__font-family)}.str-chat,.str-chat__theme-light{--str-chat__primary-color: var(--str-chat__blue500);--str-chat__primary-overlay-color: rgba(0, 95, 255, 0.6);--str-chat__primary-color-low-emphasis: var(--str-chat__blue300);--str-chat__active-primary-color: var(--str-chat__blue600);--str-chat__on-primary-color: var(--str-chat__grey50);--str-chat__background-color: var(--str-chat__grey50);--str-chat__secondary-background-color: var(--str-chat__grey50);--str-chat__primary-surface-color: var(--str-chat__blue100);--str-chat__primary-surface-color-low-emphasis: var(--str-chat__blue50);--str-chat__surface-color: var(--str-chat__grey300);--str-chat__secondary-surface-color: var(--str-chat__grey200);--str-chat__tertiary-surface-color: var(--str-chat__grey100);--str-chat__text-color: var(--str-chat__grey950);--str-chat__text-low-emphasis-color: var(--str-chat__grey500);--str-chat__disabled-color: var(--str-chat__grey400);--str-chat__on-disabled-color: var(--str-chat__grey50);--str-chat__danger-color: var(--str-chat__red400);--str-chat__message-highlight-color: var(--str-chat__yellow100);--str-chat__unread-badge-color: var(--str-chat__red400);--str-chat__on-unread-badge-color: var(--str-chat__grey50);--str-chat__overlay-color: rgba(252, 252, 252, 0.9);--str-chat__secondary-overlay-color: rgba(0, 0, 0, 0.2);--str-chat__secondary-overlay-text-color: var(--str-chat__grey50);--str-chat__opaque-surface-background-color: rgba(0, 0, 0, 0.8);--str-chat__opaque-surface-text-color: var(--str-chat__grey50);--str-chat__box-shadow-color: rgba(0, 0, 0, 0.18);--str-chat__info-color: var(--str-chat__green500)}.str-chat__theme-dark{--str-chat__primary-color: var(--str-chat__blue400);--str-chat__primary-overlay-color: rgba(51, 126, 255, 0.6);--str-chat__primary-color-low-emphasis: var(--str-chat__blue700);--str-chat__active-primary-color: var(--str-chat__blue600);--str-chat__on-primary-color: var(--str-chat__grey50);--str-chat__background-color: var(--str-chat__grey950);--str-chat__secondary-background-color: var(--str-chat__grey900);--str-chat__primary-surface-color: var(--str-chat__blue900);--str-chat__primary-surface-color-low-emphasis: var(--str-chat__blue950);--str-chat__surface-color: var(--str-chat__grey700);--str-chat__secondary-surface-color: var(--str-chat__grey800);--str-chat__tertiary-surface-color: var(--str-chat__grey900);--str-chat__text-color: var(--str-chat__grey50);--str-chat__text-low-emphasis-color: var(--str-chat__grey500);--str-chat__disabled-color: var(--str-chat__grey600);--str-chat__on-disabled-color: var(--str-chat__grey50);--str-chat__danger-color: var(--str-chat__red600);--str-chat__message-highlight-color: var(--str-chat__yellow900);--str-chat__unread-badge-color: var(--str-chat__red400);--str-chat__on-unread-badge-color: var(--str-chat__grey50);--str-chat__overlay-color: rgba(0, 0, 0, 0.7);--str-chat__secondary-overlay-color: rgba(0, 0, 0, 0.4);--str-chat__secondary-overlay-text-color: var(--str-chat__grey50);--str-chat__opaque-surface-background-color: rgba(250, 250, 250, 0.85);--str-chat__opaque-surface-text-color: var(--str-chat__grey900);--str-chat__box-shadow-color: rgba(0, 0, 0, 0.8);--str-chat__info-color: var(--str-chat__green500)}.image-gallery-icon{color:#fff;transition:all .3s ease-out;-webkit-appearance:none;appearance:none;background-color:rgba(0,0,0,0);border:0;cursor:pointer;outline:none;position:absolute;z-index:4;-webkit-filter:drop-shadow(0 2px 2px #1a1a1a);filter:drop-shadow(0 2px 2px #1a1a1a)}@media(hover: hover)and (pointer: fine){.image-gallery-icon:hover{color:#337ab7}.image-gallery-icon:hover .image-gallery-svg{-webkit-transform:scale(1.1);transform:scale(1.1)}}.image-gallery-icon:focus{outline:2px solid #337ab7}.image-gallery-using-mouse .image-gallery-icon:focus{outline:none}.image-gallery-fullscreen-button{bottom:0;padding:20px}.image-gallery-fullscreen-button .image-gallery-svg{height:28px;width:28px}@media(max-width: 768px){.image-gallery-fullscreen-button{padding:15px}.image-gallery-fullscreen-button .image-gallery-svg{height:24px;width:24px}}@media(max-width: 480px){.image-gallery-fullscreen-button{padding:10px}.image-gallery-fullscreen-button .image-gallery-svg{height:16px;width:16px}}.image-gallery-fullscreen-button{right:0}.image-gallery-left-nav,.image-gallery-right-nav{padding:50px 10px;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.image-gallery-left-nav .image-gallery-svg,.image-gallery-right-nav .image-gallery-svg{height:120px;width:60px}@media(max-width: 768px){.image-gallery-left-nav .image-gallery-svg,.image-gallery-right-nav .image-gallery-svg{height:72px;width:36px}}@media(max-width: 480px){.image-gallery-left-nav .image-gallery-svg,.image-gallery-right-nav .image-gallery-svg{height:48px;width:24px}}.image-gallery-left-nav[disabled],.image-gallery-right-nav[disabled]{cursor:disabled;opacity:.6;pointer-events:none}.image-gallery-left-nav{left:0}.image-gallery-right-nav{right:0}.image-gallery{-webkit-user-select:none;-o-user-select:none;user-select:none;-webkit-tap-highlight-color:rgba(0,0,0,0);position:relative;display:flex;justify-content:center;align-items:center}.image-gallery.fullscreen-modal{background:#000;bottom:0;height:100%;left:0;position:fixed;right:0;top:0;width:100%;z-index:5}.image-gallery.fullscreen-modal .image-gallery-content{top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.image-gallery-content{position:relative;line-height:0;top:0}.image-gallery-content .image-gallery-slide{background-color:var(--str-chat__secondary-surface-color)}.image-gallery-content .image-gallery-slide .str-chat__base-image--load-failed{height:var(--str-chat__attachment-max-width);width:var(--str-chat__attachment-max-width);font-size:0}.image-gallery-content .image-gallery-slide .str-chat__message-attachment-file--item-download{position:absolute;left:.375rem;top:.375rem}.image-gallery-content.fullscreen{background:#000}.image-gallery-content.fullscreen .image-gallery-slide .image-gallery-image{max-width:100%}.image-gallery-content .image-gallery-slide .image-gallery-image{max-height:calc(100vh - 80px);max-width:unset;object-fit:contain}.image-gallery-content.left .image-gallery-slide .image-gallery-image,.image-gallery-content.right .image-gallery-slide .image-gallery-image,.image-gallery-content.image-gallery-thumbnails-left .image-gallery-slide .image-gallery-image,.image-gallery-content.image-gallery-thumbnails-right .image-gallery-slide .image-gallery-image{max-height:100vh}.image-gallery-slide-wrapper{position:relative}.image-gallery-slide-wrapper.left,.image-gallery-slide-wrapper.right,.image-gallery-slide-wrapper.image-gallery-thumbnails-left,.image-gallery-slide-wrapper.image-gallery-thumbnails-right{display:inline-block;width:calc(100% - 110px)}@media(max-width: 768px){.image-gallery-slide-wrapper.left,.image-gallery-slide-wrapper.right,.image-gallery-slide-wrapper.image-gallery-thumbnails-left,.image-gallery-slide-wrapper.image-gallery-thumbnails-right{width:calc(100% - 87px)}}.image-gallery-slide-wrapper.image-gallery-rtl{direction:rtl}.image-gallery-slides{line-height:0;overflow:hidden;position:relative;white-space:nowrap;text-align:center}.image-gallery-slide{left:0;position:absolute;top:0;width:100%}.image-gallery-slide.center,.image-gallery-slide.image-gallery-center{position:relative}.image-gallery-slide .image-gallery-image{width:100%;object-fit:contain}.image-gallery-index{background:rgba(0,0,0,.4);color:#fff;line-height:1;padding:10px 20px;position:absolute;right:0;top:0;z-index:4}@media(max-width: 768px){.image-gallery-index{font-size:.8em;padding:5px 10px}}.str-chat{--str-chat__cta-button-border-radius: var(--str-chat__border-radius-xs);--str-chat__cta-button-color: var(--str-chat__on-primary-color);--str-chat__cta-button-background-color: var(--str-chat__primary-color);--str-chat__cta-button-border-block-start: none;--str-chat__cta-button-border-block-end: none;--str-chat__cta-button-border-inline-start: none;--str-chat__cta-button-border-inline-end: none;--str-chat__cta-button-box-shadow: none;--str-chat__cta-button-pressed-background-color: var(--str-chat__active-primary-color);--str-chat__cta-button-disabled-background-color: var(--str-chat__disabled-color);--str-chat__cta-button-disabled-color: var(--str-chat__on-disabled-color)}.str-chat__cta-button{background:var(--str-chat__cta-button-background-color);color:var(--str-chat__cta-button-color);box-shadow:var(--str-chat__cta-button-box-shadow);border-radius:var(--str-chat__cta-button-border-radius);-webkit-border-before:var(--str-chat__cta-button-border-block-start);border-block-start:var(--str-chat__cta-button-border-block-start);-webkit-border-after:var(--str-chat__cta-button-border-block-end);border-block-end:var(--str-chat__cta-button-border-block-end);-webkit-border-start:var(--str-chat__cta-button-border-inline-start);border-inline-start:var(--str-chat__cta-button-border-inline-start);-webkit-border-end:var(--str-chat__cta-button-border-inline-end);border-inline-end:var(--str-chat__cta-button-border-inline-end);font:var(--str-chat__subtitle-text)}.str-chat__cta-button:active{background-color:var(--str-chat__cta-button-pressed-background-color)}.str-chat__cta-button:disabled{background-color:var(--str-chat__cta-button-disabled-background-color);color:var(--str-chat__cta-button-disabled-color)}.str-chat{--str-chat__circle-fab-border-radius: var(--str-chat__border-radius-circle);--str-chat__circle-fab-color: var(--str-chat__primary-color);--str-chat__circle-fab-background-color: var(--str-chat__secondary-background-color);--str-chat__circle-fab-pressed-background-color: var(--str-chat__surface-color);--str-chat__circle-fab-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);--str-chat__circle-fab-border-block-start: none;--str-chat__circle-fab-border-block-end: none;--str-chat__circle-fab-border-inline-start: none;--str-chat__circle-fab-border-inline-end: none}.str-chat__circle-fab{background:var(--str-chat__circle-fab-background-color);color:var(--str-chat__circle-fab-color);box-shadow:var(--str-chat__circle-fab-box-shadow);border-radius:var(--str-chat__circle-fab-border-radius);-webkit-border-before:var(--str-chat__circle-fab-border-block-start);border-block-start:var(--str-chat__circle-fab-border-block-start);-webkit-border-after:var(--str-chat__circle-fab-border-block-end);border-block-end:var(--str-chat__circle-fab-border-block-end);-webkit-border-start:var(--str-chat__circle-fab-border-inline-start);border-inline-start:var(--str-chat__circle-fab-border-inline-start);-webkit-border-end:var(--str-chat__circle-fab-border-inline-end);border-inline-end:var(--str-chat__circle-fab-border-inline-end)}.str-chat__circle-fab svg path{fill:var(--str-chat__circle-fab-color)}.str-chat__circle-fab:active{background-color:var(--str-chat__circle-fab-pressed-background-color)}.str-chat{--str-chat__avatar-border-radius: var(--str-chat__border-radius-circle);--str-chat__avatar-color: var(--str-chat__on-primary-color);--str-chat__avatar-background-color: var(--str-chat__primary-color);--str-chat__avatar-border-block-start: none;--str-chat__avatar-border-block-end: none;--str-chat__avatar-border-inline-start: none;--str-chat__avatar-border-inline-end: none;--str-chat__avatar-box-shadow: none;--str-chat__avatar-online-indicator-color: var(--str-chat__info-color);--str-chat__avatar-online-indicator-border-radius: var(--str-chat__border-radius-circle)}.str-chat__avatar .str-chat__avatar-image{background:var(--str-chat__avatar-background-color);color:var(--str-chat__avatar-color);box-shadow:var(--str-chat__avatar-box-shadow);border-radius:var(--str-chat__avatar-border-radius);-webkit-border-before:var(--str-chat__avatar-border-block-start);border-block-start:var(--str-chat__avatar-border-block-start);-webkit-border-after:var(--str-chat__avatar-border-block-end);border-block-end:var(--str-chat__avatar-border-block-end);-webkit-border-start:var(--str-chat__avatar-border-inline-start);border-inline-start:var(--str-chat__avatar-border-inline-start);-webkit-border-end:var(--str-chat__avatar-border-inline-end);border-inline-end:var(--str-chat__avatar-border-inline-end);display:block}.str-chat__avatar.str-chat__avatar--no-letters{--str-chat-icon-color: var(--str-chat__avatar-color);background:var(--str-chat__avatar-background-color);color:var(--str-chat__avatar-color);box-shadow:var(--str-chat__avatar-box-shadow);border-radius:var(--str-chat__avatar-border-radius);-webkit-border-before:var(--str-chat__avatar-border-block-start);border-block-start:var(--str-chat__avatar-border-block-start);-webkit-border-after:var(--str-chat__avatar-border-block-end);border-block-end:var(--str-chat__avatar-border-block-end);-webkit-border-start:var(--str-chat__avatar-border-inline-start);border-inline-start:var(--str-chat__avatar-border-inline-start);-webkit-border-end:var(--str-chat__avatar-border-inline-end);border-inline-end:var(--str-chat__avatar-border-inline-end)}.str-chat__avatar .str-chat__avatar-fallback{background:var(--str-chat__avatar-background-color);color:var(--str-chat__avatar-color);box-shadow:var(--str-chat__avatar-box-shadow);border-radius:var(--str-chat__avatar-border-radius);-webkit-border-before:var(--str-chat__avatar-border-block-start);border-block-start:var(--str-chat__avatar-border-block-start);-webkit-border-after:var(--str-chat__avatar-border-block-end);border-block-end:var(--str-chat__avatar-border-block-end);-webkit-border-start:var(--str-chat__avatar-border-inline-start);border-inline-start:var(--str-chat__avatar-border-inline-start);-webkit-border-end:var(--str-chat__avatar-border-inline-end);border-inline-end:var(--str-chat__avatar-border-inline-end);text-transform:uppercase}.str-chat__avatar .str-chat__avatar--online-indicator{background-color:var(--str-chat__avatar-online-indicator-color);border-radius:var(--str-chat__avatar-online-indicator-border-radius)}.str-chat__loading-channels-avatar{border-radius:var(--str-chat__avatar-border-radius)}.str-chat__avatar-group{border-radius:var(--str-chat__avatar-border-radius)}.str-chat{--str-chat__attachment-list-border-radius: 0;--str-chat__attachment-list-color: var(--str-chat__text-color);--str-chat__attachment-list-background-color: transparent;--str-chat__attachment-list-border-block-start: none;--str-chat__attachment-list-border-block-end: none;--str-chat__attachment-list-border-inline-start: none;--str-chat__attachment-list-border-inline-end: none;--str-chat__attachment-list-box-shadow: none;--str-chat__image-attachment-border-radius: calc( var(--str-chat__message-bubble-border-radius) - var(--str-chat__attachment-margin) );--str-chat__image-attachment-color: var(--str-chat__text-color);--str-chat__image-attachment-background-color: var(--str-chat__secondary-surface-color);--str-chat__image-attachment-border-block-start: none;--str-chat__image-attachment-border-block-end: none;--str-chat__image-attachment-border-inline-start: none;--str-chat__image-attachment-border-inline-end: none;--str-chat__image-attachment-box-shadow: none;--str-chat__image-gallery-attachment-border-radius: calc( var(--str-chat__message-bubble-border-radius) - var(--str-chat__attachment-margin) );--str-chat__image-gallery-attachment-color: var(--str-chat__text-color);--str-chat__image-gallery-attachment-background-color: transparent;--str-chat__image-gallery-attachment-border-block-start: none;--str-chat__image-gallery-attachment-border-block-end: none;--str-chat__image-gallery-attachment-border-inline-start: none;--str-chat__image-gallery-attachment-border-inline-end: none;--str-chat__image-gallery-attachment-box-shadow: none;--str-chat__image-gallery-attachment-overlay: var(--str-chat__secondary-overlay-color);--str-chat__image-gallery-attachment-overlay-text-color: var( --str-chat__secondary-overlay-text-color );--str-chat__card-attachment-border-radius: 0;--str-chat__card-attachment-color: var(--str-chat__text-color);--str-chat__card-attachment-link-color: var(--str-chat__primary-color);--str-chat__card-attachment-background-color: transparent;--str-chat__card-attachment-border-block-start: none;--str-chat__card-attachment-border-block-end: none;--str-chat__card-attachment-border-inline-start: none;--str-chat__card-attachment-border-inline-end: none;--str-chat__card-attachment-box-shadow: none;--str-chat__file-attachment-border-radius: calc( var(--str-chat__message-bubble-border-radius) - var(--str-chat__attachment-margin) );--str-chat__file-attachment-color: var(--str-chat__text-color);--str-chat__file-attachment-secondary-color: var(--str-chat__text-low-emphasis-color);--str-chat__file-attachment-background-color: var(--str-chat__secondary-background-color);--str-chat__file-attachment-border-block-start: none;--str-chat__file-attachment-border-block-end: none;--str-chat__file-attachment-border-inline-start: none;--str-chat__file-attachment-border-inline-end: none;--str-chat__file-attachment-box-shadow: none;--str-chat__audio-attachment-widget-border-radius: calc( var(--str-chat__message-bubble-border-radius) - var(--str-chat__attachment-margin) );--str-chat__audio-attachment-widget-color: var(--str-chat__text-color);--str-chat__audio-attachment-widget-secondary-color: var(--str-chat__text-low-emphasis-color);--str-chat__audio-attachment-widget-background-color: var(--str-chat__secondary-background-color);--str-chat__audio-attachment-widget-border-block-start: none;--str-chat__audio-attachment-widget-border-block-end: none;--str-chat__audio-attachment-widget-border-inline-start: none;--str-chat__audio-attachment-widget-border-inline-end: none;--str-chat__audio-attachment-widget-box-shadow: none;--str-chat__voice-recording-attachment-widget-border-radius: calc( var(--str-chat__message-bubble-border-radius) - var(--str-chat__attachment-margin) );--str-chat__voice-recording-attachment-widget-color: var(--str-chat__text-color);--str-chat__voice-recording-attachment-widget-secondary-color: var( --str-chat__text-low-emphasis-color );--str-chat__voice-recording-attachment-widget-background-color: var( --str-chat__secondary-background-color );--str-chat__voice-recording-attachment-widget-border-block-start: none;--str-chat__voice-recording-attachment-widget-border-block-end: none;--str-chat__voice-recording-attachment-widget-border-inline-start: none;--str-chat__voice-recording-attachment-widget-border-inline-end: none;--str-chat__voice-recording-attachment-widget-box-shadow: none;--str-chat__audio-attachment-controls-button-border-radius: var(--str-chat__border-radius-circle);--str-chat__audio-attachment-controls-button-color: var(--str-chat__text-color);--str-chat__audio-attachment-controls-button-background-color: var( --str-chat__secondary-background-color );--str-chat__audio-attachment-controls-button-pressed-background-color: var( --str-chat__surface-color );--str-chat__audio-attachment-controls-button-border-block-start: none;--str-chat__audio-attachment-controls-button-border-block-end: none;--str-chat__audio-attachment-controls-button-border-inline-start: none;--str-chat__audio-attachment-controls-button-border-inline-end: none;--str-chat__audio-attachment-controls-button-box-shadow: var(--str-chat__circle-fab-box-shadow);--str-chat__attachment-actions-border-radius: 0;--str-chat__attachment-actions-color: var(--str-chat__text-color);--str-chat__attachment-actions-background-color: transparent;--str-chat__attachment-actions-border-block-start: none;--str-chat__attachment-actions-border-block-end: none;--str-chat__attachment-actions-border-inline-start: none;--str-chat__attachment-actions-border-inline-end: none;--str-chat__attachment-actions-box-shadow: none;--str-chat__attachment-action-border-radius: 0;--str-chat__attachment-action-color: var(--str-chat__text-low-emphasis-color);--str-chat__attachment-action-background-color: var(--str-chat__secondary-background-color);--str-chat__attachment-action-border-block-start: var(--str-chat__surface-color) 1px solid;--str-chat__attachment-action-border-block-end: var(--str-chat__surface-color) 1px solid;--str-chat__attachment-action-border-inline-start: var(--str-chat__surface-color) 1px solid;--str-chat__attachment-action-border-inline-end: var(--str-chat__surface-color) 1px solid;--str-chat__attachment-action-box-shadow: none;--str-chat__attachment-action-active-color: var(--str-chat__primary-color)}.str-chat__attachment-list{background:var(--str-chat__attachment-list-background-color);color:var(--str-chat__attachment-list-color);box-shadow:var(--str-chat__attachment-list-box-shadow);border-radius:var(--str-chat__attachment-list-border-radius);-webkit-border-before:var(--str-chat__attachment-list-border-block-start);border-block-start:var(--str-chat__attachment-list-border-block-start);-webkit-border-after:var(--str-chat__attachment-list-border-block-end);border-block-end:var(--str-chat__attachment-list-border-block-end);-webkit-border-start:var(--str-chat__attachment-list-border-inline-start);border-inline-start:var(--str-chat__attachment-list-border-inline-start);-webkit-border-end:var(--str-chat__attachment-list-border-inline-end);border-inline-end:var(--str-chat__attachment-list-border-inline-end)}.str-chat__attachment-list .str-chat__message-attachment--image,.str-chat__attachment-list .str-chat__message-attachment-card--header,.str-chat__attachment-list .str-chat__message-attachment--video{background:var(--str-chat__image-attachment-background-color);color:var(--str-chat__image-attachment-color);box-shadow:var(--str-chat__image-attachment-box-shadow);border-radius:var(--str-chat__image-attachment-border-radius);-webkit-border-before:var(--str-chat__image-attachment-border-block-start);border-block-start:var(--str-chat__image-attachment-border-block-start);-webkit-border-after:var(--str-chat__image-attachment-border-block-end);border-block-end:var(--str-chat__image-attachment-border-block-end);-webkit-border-start:var(--str-chat__image-attachment-border-inline-start);border-inline-start:var(--str-chat__image-attachment-border-inline-start);-webkit-border-end:var(--str-chat__image-attachment-border-inline-end);border-inline-end:var(--str-chat__image-attachment-border-inline-end)}.str-chat__attachment-list .str-chat__gallery{background:var(--str-chat__image-gallery-attachment-background-color);color:var(--str-chat__image-gallery-attachment-color);box-shadow:var(--str-chat__image-gallery-attachment-box-shadow);border-radius:var(--str-chat__image-gallery-attachment-border-radius);-webkit-border-before:var(--str-chat__image-gallery-attachment-border-block-start);border-block-start:var(--str-chat__image-gallery-attachment-border-block-start);-webkit-border-after:var(--str-chat__image-gallery-attachment-border-block-end);border-block-end:var(--str-chat__image-gallery-attachment-border-block-end);-webkit-border-start:var(--str-chat__image-gallery-attachment-border-inline-start);border-inline-start:var(--str-chat__image-gallery-attachment-border-inline-start);-webkit-border-end:var(--str-chat__image-gallery-attachment-border-inline-end);border-inline-end:var(--str-chat__image-gallery-attachment-border-inline-end)}.str-chat__attachment-list .str-chat__gallery .str-chat__gallery-image{background-color:var(--str-chat__image-attachment-background-color);border:0}.str-chat__attachment-list .str-chat__gallery .str-chat__gallery-placeholder{color:var(--str-chat__image-gallery-attachment-overlay-text-color);display:flex;border:none;font:var(--str-chat__headline2-text)}.str-chat__attachment-list .str-chat__gallery .str-chat__gallery-placeholder::after{background-color:var(--str-chat__image-gallery-attachment-overlay)}.str-chat__attachment-list .str-chat__message-attachment--svg-image{background-image:repeating-conic-gradient(#d4d5d7 0% 25%, #f4f4f4 0% 50%);background-size:24px 24px}.str-chat__attachment-list .str-chat__message-attachment-unsupported,.str-chat__attachment-list .str-chat__message-attachment-file--item{background:var(--str-chat__file-attachment-background-color);color:var(--str-chat__file-attachment-color);box-shadow:var(--str-chat__file-attachment-box-shadow);border-radius:var(--str-chat__file-attachment-border-radius);-webkit-border-before:var(--str-chat__file-attachment-border-block-start);border-block-start:var(--str-chat__file-attachment-border-block-start);-webkit-border-after:var(--str-chat__file-attachment-border-block-end);border-block-end:var(--str-chat__file-attachment-border-block-end);-webkit-border-start:var(--str-chat__file-attachment-border-inline-start);border-inline-start:var(--str-chat__file-attachment-border-inline-start);-webkit-border-end:var(--str-chat__file-attachment-border-inline-end);border-inline-end:var(--str-chat__file-attachment-border-inline-end)}.str-chat__attachment-list .str-chat__message-attachment-unsupported .str-chat__message-attachment-unsupported__title{font:var(--str-chat__subtitle-medium-text);word-break:keep-all}.str-chat__attachment-list .str-chat__message-attachment-file--item .str-chat__message-attachment-file--item-name,.str-chat__attachment-list .str-chat__message-attachment-file--item .str-chat__message-attachment-audio-widget--title,.str-chat__attachment-list .str-chat__message-attachment-audio-widget .str-chat__message-attachment-file--item-name,.str-chat__attachment-list .str-chat__message-attachment-audio-widget .str-chat__message-attachment-audio-widget--title{font:var(--str-chat__subtitle-medium-text);word-break:keep-all}.str-chat__attachment-list .str-chat__message-attachment-file--item .str-chat__message-attachment-file--item-size,.str-chat__attachment-list .str-chat__message-attachment-audio-widget .str-chat__message-attachment-file--item-size{color:var(--str-chat__file-attachment-secondary-color);font:var(--str-chat__body-text)}.str-chat__attachment-list .str-chat__message-attachment-file--item .str-chat__message-attachment-download-icon svg path,.str-chat__attachment-list .str-chat__message-attachment-audio-widget .str-chat__message-attachment-download-icon svg path{fill:var(--str-chat__file-attachment-color)}.str-chat__attachment-list .str-chat__message-attachment-audio-widget{background:var(--str-chat__audio-attachment-widget-background-color);color:var(--str-chat__audio-attachment-widget-color);box-shadow:var(--str-chat__audio-attachment-widget-box-shadow);border-radius:var(--str-chat__audio-attachment-widget-border-radius);-webkit-border-before:var(--str-chat__audio-attachment-widget-border-block-start);border-block-start:var(--str-chat__audio-attachment-widget-border-block-start);-webkit-border-after:var(--str-chat__audio-attachment-widget-border-block-end);border-block-end:var(--str-chat__audio-attachment-widget-border-block-end);-webkit-border-start:var(--str-chat__audio-attachment-widget-border-inline-start);border-inline-start:var(--str-chat__audio-attachment-widget-border-inline-start);-webkit-border-end:var(--str-chat__audio-attachment-widget-border-inline-end);border-inline-end:var(--str-chat__audio-attachment-widget-border-inline-end)}.str-chat__attachment-list .str-chat__message-attachment-audio-widget--progress-track{background:linear-gradient(to right, var(--str-chat__primary-color) var(--str-chat__message-attachment-audio-widget-progress), var(--str-chat__disabled-color) var(--str-chat__message-attachment-audio-widget-progress));border-radius:calc(var(--str-chat__spacing-px)*5)}.str-chat__attachment-list .str-chat__message-attachment-audio-widget--progress-track .str-chat__message-attachment-audio-widget--progress-indicator{background-color:var(--str-chat__primary-color);border-radius:inherit}.str-chat__attachment-list .str-chat__message-attachment-audio-widget--play-button{background:var(--str-chat__audio-attachment-controls-button-background-color);color:var(--str-chat__audio-attachment-controls-button-color);box-shadow:var(--str-chat__audio-attachment-controls-button-box-shadow);border-radius:var(--str-chat__audio-attachment-controls-button-border-radius);-webkit-border-before:var(--str-chat__audio-attachment-controls-button-border-block-start);border-block-start:var(--str-chat__audio-attachment-controls-button-border-block-start);-webkit-border-after:var(--str-chat__audio-attachment-controls-button-border-block-end);border-block-end:var(--str-chat__audio-attachment-controls-button-border-block-end);-webkit-border-start:var(--str-chat__audio-attachment-controls-button-border-inline-start);border-inline-start:var(--str-chat__audio-attachment-controls-button-border-inline-start);-webkit-border-end:var(--str-chat__audio-attachment-controls-button-border-inline-end);border-inline-end:var(--str-chat__audio-attachment-controls-button-border-inline-end)}.str-chat__attachment-list .str-chat__message-attachment-audio-widget--play-button svg path{fill:var(--str-chat__audio-attachment-controls-button-color)}.str-chat__attachment-list .str-chat__message-attachment-audio-widget--play-button:active{background-color:var(--str-chat__audio-attachment-controls-button-pressed-background-color)}.str-chat__attachment-list .str-chat__message-attachment__voice-recording-widget{background:var(--str-chat__voice-recording-attachment-widget-background-color);color:var(--str-chat__voice-recording-attachment-widget-color);box-shadow:var(--str-chat__voice-recording-attachment-widget-box-shadow);border-radius:var(--str-chat__voice-recording-attachment-widget-border-radius);-webkit-border-before:var(--str-chat__voice-recording-attachment-widget-border-block-start);border-block-start:var(--str-chat__voice-recording-attachment-widget-border-block-start);-webkit-border-after:var(--str-chat__voice-recording-attachment-widget-border-block-end);border-block-end:var(--str-chat__voice-recording-attachment-widget-border-block-end);-webkit-border-start:var(--str-chat__voice-recording-attachment-widget-border-inline-start);border-inline-start:var(--str-chat__voice-recording-attachment-widget-border-inline-start);-webkit-border-end:var(--str-chat__voice-recording-attachment-widget-border-inline-end);border-inline-end:var(--str-chat__voice-recording-attachment-widget-border-inline-end)}.str-chat__attachment-list .str-chat__message-attachment__voice-recording-widget a{color:var(--str-chat__voice-recording-attachment-widget-color)}.str-chat__attachment-list .str-chat__message-attachment__voice-recording-widget .str-chat__message-attachment__voice-recording-widget__title{white-space:nowrap;overflow-y:visible;overflow-x:hidden;overflow-x:clip;text-overflow:ellipsis;font:var(--str-chat__subtitle-medium-text)}.str-chat__attachment-list .str-chat__message-attachment__voice-recording-widget .str-chat__message-attachment__voice-recording-widget__timer{font:var(--str-chat__body-text);color:var(--str-chat__text-low-emphasis-color);white-space:nowrap}.str-chat__attachment-list .str-chat__message-attachment__voice-recording-widget .str-chat__wave-progress-bar__amplitude-bar{background:var(--str-chat__text-low-emphasis-color);border-radius:var(--str-chat__border-radius-circle)}.str-chat__attachment-list .str-chat__message-attachment__voice-recording-widget .str-chat__wave-progress-bar__amplitude-bar--active{background:var(--str-chat__primary-color)}.str-chat__attachment-list .str-chat__message-attachment__voice-recording-widget .str-chat__wave-progress-bar__progress-indicator{background-color:#fff;border-radius:var(--str-chat__border-radius-circle);border:1px solid var(--str-chat__secondary-overlay-color);cursor:grab}.str-chat__attachment-list .str-chat__message-attachment__voice-recording-widget .str-chat__message-attachment__voice-recording-widget__error-message{font:var(--str-chat__body-text);color:var(--str-chat__text-low-emphasis-color)}.str-chat__attachment-list .str-chat__message_attachment__playback-rate-button{box-shadow:0 2px 4px rgba(0,0,0,.25);border-radius:var(--str-chat__border-radius-circle);background-color:#fff;cursor:pointer}.str-chat__attachment-list .str-chat__message-attachment--card{background:var(--str-chat__card-attachment-background-color);color:var(--str-chat__card-attachment-color);box-shadow:var(--str-chat__card-attachment-box-shadow);border-radius:var(--str-chat__card-attachment-border-radius);-webkit-border-before:var(--str-chat__card-attachment-border-block-start);border-block-start:var(--str-chat__card-attachment-border-block-start);-webkit-border-after:var(--str-chat__card-attachment-border-block-end);border-block-end:var(--str-chat__card-attachment-border-block-end);-webkit-border-start:var(--str-chat__card-attachment-border-inline-start);border-inline-start:var(--str-chat__card-attachment-border-inline-start);-webkit-border-end:var(--str-chat__card-attachment-border-inline-end);border-inline-end:var(--str-chat__card-attachment-border-inline-end);font:var(--str-chat__body-text)}.str-chat__attachment-list .str-chat__message-attachment--card .str-chat__message-attachment-card--source-link{font:var(--str-chat__body-medium-text)}.str-chat__attachment-list .str-chat__message-attachment--card .str-chat__message-attachment-card--title{font:var(--str-chat__body-medium-text)}.str-chat__attachment-list .str-chat__message-attachment-card--audio img{border-bottom-left-radius:0;border-bottom-right-radius:0}.str-chat__attachment-list .str-chat__message-attachment-card--audio .str-chat__message-attachment-card--header .str-chat__message-attachment-card--source-link{background-color:var(--str-chat__audio-attachment-widget-background-color)}.str-chat__attachment-list .str-chat__message-attachment-card--audio .str-chat__message-attachment-card-audio-widget{background-color:var(--str-chat__audio-attachment-widget-background-color);border-radius:0 0 calc(var(--str-chat__spacing-px)*14) calc(var(--str-chat__spacing-px)*14)}.str-chat__attachment-list .str-chat__message-attachment-card--audio .str-chat__message-attachment-card-audio-widget .str-chat__message-attachment-audio-widget--title{color:var(--str-chat__text-color);font:var(--str-chat__body-medium-text)}.str-chat__attachment-list .str-chat__message-attachment-actions{background:var(--str-chat__attachment-actions-background-color);color:var(--str-chat__attachment-actions-color);box-shadow:var(--str-chat__attachment-actions-box-shadow);border-radius:var(--str-chat__attachment-actions-border-radius);-webkit-border-before:var(--str-chat__attachment-actions-border-block-start);border-block-start:var(--str-chat__attachment-actions-border-block-start);-webkit-border-after:var(--str-chat__attachment-actions-border-block-end);border-block-end:var(--str-chat__attachment-actions-border-block-end);-webkit-border-start:var(--str-chat__attachment-actions-border-inline-start);border-inline-start:var(--str-chat__attachment-actions-border-inline-start);-webkit-border-end:var(--str-chat__attachment-actions-border-inline-end);border-inline-end:var(--str-chat__attachment-actions-border-inline-end)}.str-chat__attachment-list .str-chat__message-attachment-actions .str-chat__message-attachment-actions-button{background:var(--str-chat__attachment-action-background-color);color:var(--str-chat__attachment-action-color);box-shadow:var(--str-chat__attachment-action-box-shadow);border-radius:var(--str-chat__attachment-action-border-radius);-webkit-border-before:var(--str-chat__attachment-action-border-block-start);border-block-start:var(--str-chat__attachment-action-border-block-start);-webkit-border-after:var(--str-chat__attachment-action-border-block-end);border-block-end:var(--str-chat__attachment-action-border-block-end);-webkit-border-start:var(--str-chat__attachment-action-border-inline-start);border-inline-start:var(--str-chat__attachment-action-border-inline-start);-webkit-border-end:var(--str-chat__attachment-action-border-inline-end);border-inline-end:var(--str-chat__attachment-action-border-inline-end);font:var(--str-chat__subtitle-medium-text);border-collapse:collapse}.str-chat__attachment-list .str-chat__message-attachment-actions .str-chat__message-attachment-actions-button:active{color:var(--str-chat__attachment-action-active-color)}.str-chat__attachment-list .str-chat__message-attachment-actions .str-chat__message-attachment-actions-button:not(:last-of-type){-webkit-border-end:none;border-inline-end:none}.str-chat__attachment-list .str-chat__message-attachment-with-actions.str-chat__message-attachment--giphy .str-chat__message-attachment-card--header{border-end-start-radius:0;border-end-end-radius:0}.str-chat__message-attachment-audio-widget--play-button{background:var(--str-chat__audio-attachment-controls-button-background-color);color:var(--str-chat__audio-attachment-controls-button-color);box-shadow:var(--str-chat__audio-attachment-controls-button-box-shadow);border-radius:var(--str-chat__audio-attachment-controls-button-border-radius);-webkit-border-before:var(--str-chat__audio-attachment-controls-button-border-block-start);border-block-start:var(--str-chat__audio-attachment-controls-button-border-block-start);-webkit-border-after:var(--str-chat__audio-attachment-controls-button-border-block-end);border-block-end:var(--str-chat__audio-attachment-controls-button-border-block-end);-webkit-border-start:var(--str-chat__audio-attachment-controls-button-border-inline-start);border-inline-start:var(--str-chat__audio-attachment-controls-button-border-inline-start);-webkit-border-end:var(--str-chat__audio-attachment-controls-button-border-inline-end);border-inline-end:var(--str-chat__audio-attachment-controls-button-border-inline-end)}.str-chat__message-attachment-audio-widget--play-button svg path{fill:var(--str-chat__audio-attachment-controls-button-color)}.str-chat__message-attachment-audio-widget--play-button:active{background-color:var(--str-chat__audio-attachment-controls-button-pressed-background-color)}.str-chat__message-attachment-card.str-chat__message-attachment-card--audio .str-chat__message-attachment-card--header{border-end-start-radius:0;border-end-end-radius:0}.str-chat__message-attachment__voice-recording-widget{background:var(--str-chat__voice-recording-attachment-widget-background-color);color:var(--str-chat__voice-recording-attachment-widget-color);box-shadow:var(--str-chat__voice-recording-attachment-widget-box-shadow);border-radius:var(--str-chat__voice-recording-attachment-widget-border-radius);-webkit-border-before:var(--str-chat__voice-recording-attachment-widget-border-block-start);border-block-start:var(--str-chat__voice-recording-attachment-widget-border-block-start);-webkit-border-after:var(--str-chat__voice-recording-attachment-widget-border-block-end);border-block-end:var(--str-chat__voice-recording-attachment-widget-border-block-end);-webkit-border-start:var(--str-chat__voice-recording-attachment-widget-border-inline-start);border-inline-start:var(--str-chat__voice-recording-attachment-widget-border-inline-start);-webkit-border-end:var(--str-chat__voice-recording-attachment-widget-border-inline-end);border-inline-end:var(--str-chat__voice-recording-attachment-widget-border-inline-end)}.str-chat__message-attachment__voice-recording-widget .str-chat__message-attachment__voice-recording-widget__title{white-space:nowrap;overflow-y:visible;overflow-x:hidden;overflow-x:clip;text-overflow:ellipsis;word-break:keep-all;font:var(--str-chat__subtitle-medium-text)}.str-chat__message-attachment__voice-recording-widget .str-chat__message-attachment__voice-recording-widget__timer{font:var(--str-chat__body-text);color:var(--str-chat__text-low-emphasis-color);white-space:nowrap}.str-chat__audio_recorder__waveform-box,.str-chat__wave-progress-bar__track{cursor:pointer}.str-chat__audio_recorder__waveform-box .str-chat__wave-progress-bar__amplitude-bar,.str-chat__wave-progress-bar__track .str-chat__wave-progress-bar__amplitude-bar{background:var(--str-chat__text-low-emphasis-color);border-radius:var(--str-chat__border-radius-circle)}.str-chat__audio_recorder__waveform-box .str-chat__wave-progress-bar__amplitude-bar--active,.str-chat__wave-progress-bar__track .str-chat__wave-progress-bar__amplitude-bar--active{background:var(--str-chat__primary-color)}.str-chat__audio_recorder__waveform-box .str-chat__wave-progress-bar__progress-indicator,.str-chat__wave-progress-bar__track .str-chat__wave-progress-bar__progress-indicator{background-color:#fff;border-radius:var(--str-chat__border-radius-circle);border:1px solid var(--str-chat__secondary-overlay-color);cursor:grab}.str-chat-angular__message-attachment-file-single .str-chat__message-attachment-file--item-first-row{color:var(--str-chat__attachment-list-color)}.str-chat__attachment-list-angular-host .str-chat__message-attachment-card--video-play{--str-chat-icon-color: var(--str-chat__text-color);background-color:var(--str-chat__secondary-background-color);border-radius:var(--str-chat__border-radius-circle)}.str-chat{--str-chat__attachment-preview-list-border-radius: var(--str-chat__border-radius-sm);--str-chat__attachment-preview-list-color: var(--str-chat__text-color);--str-chat__attachment-preview-list-background-color: transparent;--str-chat__attachment-preview-list-border-block-start: none;--str-chat__attachment-preview-list-border-block-end: none;--str-chat__attachment-preview-list-border-inline-start: none;--str-chat__attachment-preview-list-border-inline-end: none;--str-chat__attachment-preview-list-box-shadow: none;--str-chat__attachment-preview-close-icon-background: var(--str-chat__secondary-overlay-color);--str-chat__attachment-preview-close-icon-color: var(--str-chat__secondary-overlay-text-color);--str-chat__attachment-preview-retry-icon-color: var(--str-chat__primary-color);--str-chat__attachment-preview-download-icon-color: var(--str-chat__text-low-emphasis-color);--str-chat__attachment-preview-overlay-color: var(--str-chat__overlay-color);--str-chat__attachment-preview-image-border-radius: var(--str-chat__border-radius-sm);--str-chat__attachment-preview-image-color: var(--str-chat__text-color);--str-chat__attachment-preview-image-background-color: transparent;--str-chat__attachment-preview-image-border-block-start: none;--str-chat__attachment-preview-image-border-block-end: none;--str-chat__attachment-preview-image-border-inline-start: none;--str-chat__attachment-preview-image-border-inline-end: none;--str-chat__attachment-preview-image-box-shadow: none;--str-chat__attachment-preview-file-border-radius: var(--str-chat__border-radius-md);--str-chat__attachment-preview-file-color: var(--str-chat__text-color);--str-chat__attachment-preview-file-background-color: transparent;--str-chat__attachment-preview-file-border-block-start: 1px solid var(--str-chat__surface-color);--str-chat__attachment-preview-file-border-block-end: 1px solid var(--str-chat__surface-color);--str-chat__attachment-preview-file-border-inline-start: 1px solid var(--str-chat__surface-color);--str-chat__attachment-preview-file-border-inline-end: 1px solid var(--str-chat__surface-color);--str-chat__attachment-preview-file-box-shadow: none}.str-chat__attachment-preview-list{background:var(--str-chat__attachment-preview-list-background-color);color:var(--str-chat__attachment-preview-list-color);box-shadow:var(--str-chat__attachment-preview-list-box-shadow);border-radius:var(--str-chat__attachment-preview-list-border-radius);-webkit-border-before:var(--str-chat__attachment-preview-list-border-block-start);border-block-start:var(--str-chat__attachment-preview-list-border-block-start);-webkit-border-after:var(--str-chat__attachment-preview-list-border-block-end);border-block-end:var(--str-chat__attachment-preview-list-border-block-end);-webkit-border-start:var(--str-chat__attachment-preview-list-border-inline-start);border-inline-start:var(--str-chat__attachment-preview-list-border-inline-start);-webkit-border-end:var(--str-chat__attachment-preview-list-border-inline-end);border-inline-end:var(--str-chat__attachment-preview-list-border-inline-end)}.str-chat__attachment-preview-list .str-chat__attachment-list-scroll-container{border-radius:inherit}.str-chat__attachment-preview-list .str-chat__attachment-preview-image{background:var(--str-chat__attachment-preview-image-background-color);color:var(--str-chat__attachment-preview-image-color);box-shadow:var(--str-chat__attachment-preview-image-box-shadow);border-radius:var(--str-chat__attachment-preview-image-border-radius);-webkit-border-before:var(--str-chat__attachment-preview-image-border-block-start);border-block-start:var(--str-chat__attachment-preview-image-border-block-start);-webkit-border-after:var(--str-chat__attachment-preview-image-border-block-end);border-block-end:var(--str-chat__attachment-preview-image-border-block-end);-webkit-border-start:var(--str-chat__attachment-preview-image-border-inline-start);border-inline-start:var(--str-chat__attachment-preview-image-border-inline-start);-webkit-border-end:var(--str-chat__attachment-preview-image-border-inline-end);border-inline-end:var(--str-chat__attachment-preview-image-border-inline-end)}.str-chat__attachment-preview-list .str-chat__attachment-preview-image .str-chat__attachment-preview-thumbnail,.str-chat__attachment-preview-list .str-chat__attachment-preview-image .str-chat__attachment-preview-image-loading{border-radius:var(--str-chat__attachment-preview-image-border-radius);background-color:var(--str-chat__attachment-preview-overlay-color)}.str-chat__attachment-preview-list .str-chat__attachment-preview-unsupported,.str-chat__attachment-preview-list .str-chat__attachment-preview-voice-recording,.str-chat__attachment-preview-list .str-chat__attachment-preview-file{background:var(--str-chat__attachment-preview-file-background-color);color:var(--str-chat__attachment-preview-file-color);box-shadow:var(--str-chat__attachment-preview-file-box-shadow);border-radius:var(--str-chat__attachment-preview-file-border-radius);-webkit-border-before:var(--str-chat__attachment-preview-file-border-block-start);border-block-start:var(--str-chat__attachment-preview-file-border-block-start);-webkit-border-after:var(--str-chat__attachment-preview-file-border-block-end);border-block-end:var(--str-chat__attachment-preview-file-border-block-end);-webkit-border-start:var(--str-chat__attachment-preview-file-border-inline-start);border-inline-start:var(--str-chat__attachment-preview-file-border-inline-start);-webkit-border-end:var(--str-chat__attachment-preview-file-border-inline-end);border-inline-end:var(--str-chat__attachment-preview-file-border-inline-end)}.str-chat__attachment-preview-list .str-chat__attachment-preview-unsupported .str-chat__attachment-preview-title,.str-chat__attachment-preview-list .str-chat__attachment-preview-unsupported .str-chat__attachment-preview-file-name,.str-chat__attachment-preview-list .str-chat__attachment-preview-voice-recording .str-chat__attachment-preview-title,.str-chat__attachment-preview-list .str-chat__attachment-preview-voice-recording .str-chat__attachment-preview-file-name,.str-chat__attachment-preview-list .str-chat__attachment-preview-file .str-chat__attachment-preview-title,.str-chat__attachment-preview-list .str-chat__attachment-preview-file .str-chat__attachment-preview-file-name{font:var(--str-chat__subtitle-medium-text)}.str-chat__attachment-preview-list .str-chat__attachment-preview-unsupported .str-chat__attachment-preview-file-download,.str-chat__attachment-preview-list .str-chat__attachment-preview-voice-recording .str-chat__attachment-preview-file-download,.str-chat__attachment-preview-list .str-chat__attachment-preview-file .str-chat__attachment-preview-file-download{--str-chat-icon-color: var(--str-chat__attachment-preview-download-icon-color);text-decoration:none}.str-chat__attachment-preview-list .str-chat__attachment-preview-unsupported .str-chat__attachment-preview-file-download svg path,.str-chat__attachment-preview-list .str-chat__attachment-preview-voice-recording .str-chat__attachment-preview-file-download svg path,.str-chat__attachment-preview-list .str-chat__attachment-preview-file .str-chat__attachment-preview-file-download svg path{fill:var(--str-chat__attachment-preview-download-icon-color)}.str-chat__attachment-preview-list .str-chat__attachment-preview-file .str-chat__attachment-preview-file-download svg path{fill:var(--str-chat__attachment-preview-download-icon-color)}.str-chat__attachment-preview-list .str-chat__attachment-preview-voice-recording .str-chat__recording-timer{color:var(--str-chat__text-low-emphasis-color);font:var(--str-chat__caption-medium-text)}.str-chat__attachment-preview-list .str-chat__attachment-preview-delete{--str-chat-icon-color: var(--str-chat__attachment-preview-close-icon-color)}.str-chat__attachment-preview-list .str-chat__attachment-preview-delete .str-chat__icon{background-color:var(--str-chat__attachment-preview-close-icon-background);border-radius:999px}.str-chat__attachment-preview-list .str-chat__attachment-preview-delete svg{background-color:var(--str-chat__attachment-preview-close-icon-background);border-radius:999px}.str-chat__attachment-preview-list .str-chat__attachment-preview-delete svg path{fill:var(--str-chat__attachment-preview-close-icon-color)}.str-chat__attachment-preview-list .str-chat__attachment-preview-error{--str-chat-icon-color: var(--str-chat__attachment-preview-retry-icon-color);background-color:var(--str-chat__attachment-preview-overlay-color)}.str-chat__attachment-preview-list .str-chat__attachment-preview-error svg path{fill:var(--str-chat__attachment-preview-retry-icon-color)}.str-chat__attachment-preview-list .str-chat__attachment-preview-error.str-chat__attachment-preview-error-image{border-radius:var(--str-chat__attachment-preview-image-border-radius)}.str-chat__attachment-preview-list .str-chat__attachment-preview-error.str-chat__attachment-preview-error-file{border-radius:var(--str-chat__attachment-preview-file-border-radius)}.str-chat__audio_recorder-container{background-color:var(--str-chat__background-color)}.str-chat__audio_recorder button{background:none;border:none;cursor:pointer}.str-chat__audio_recorder button:disabled{cursor:default}.str-chat__audio_recorder .str-chat__audio_recorder__cancel-button{--str-chat-icon-color: var(--str-chat__text-low-emphasis-color);color:var(--str-chat__text-low-emphasis-color)}.str-chat__audio_recorder .str-chat__audio_recorder__toggle-playback-button{--str-chat-icon-color: var(--str-chat__text-low-emphasis-color);color:var(--str-chat__text-low-emphasis-color)}.str-chat__audio_recorder .str-chat__message-attachment-audio-widget--play-button{--str-chat-icon-color: var(--str-chat__text-low-emphasis-color);box-shadow:none;border:none}.str-chat__audio_recorder .str-chat__audio_recorder__pause-recording-button,.str-chat__audio_recorder .str-chat__audio_recorder__resume-recording-button{--str-chat-icon-color: var(--str-chat__danger-color);color:var(--str-chat__danger-color)}.str-chat__audio_recorder .str-chat__audio_recorder__pause-recording-button{border:3px solid var(--str-chat__danger-color);border-radius:var(--str-chat__border-radius-circle)}.str-chat__audio_recorder .str-chat__audio_recorder__stop-button,.str-chat__audio_recorder .str-chat__audio_recorder__complete-button{--str-chat-icon-color: var(--str-chat__on-primary-color);border-radius:var(--str-chat__border-radius-circle);color:var(--str-chat__on-primary-color);background-color:var(--str-chat__primary-color)}.str-chat__audio_recorder .str-chat__audio_recorder__stop-button .str-chat__loading-indicator svg linearGradient stop:last-child,.str-chat__audio_recorder .str-chat__audio_recorder__complete-button .str-chat__loading-indicator svg linearGradient stop:last-child{stop-color:var(--str-chat__background-color)}.str-chat{--str-chat__autocomplete-menu-border-radius: var(--str-chat__border-radius-xs);--str-chat__autocomplete-menu-color: var(--str-chat__text-color);--str-chat__autocomplete-menu-background-color: var(--str-chat__secondary-background-color);--str-chat__autocomplete-menu-border-block-start: none;--str-chat__autocomplete-menu-border-block-end: none;--str-chat__autocomplete-menu-border-inline-start: none;--str-chat__autocomplete-menu-border-inline-end: none;--str-chat__autocomplete-menu-box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);--str-chat__autocomplete-active-background-color: var(--str-chat__surface-color);--str-chat__suggestion-list-container-border-radius: var(--str-chat__border-radius-xs);--str-chat__suggestion-list-container-color: var(--str-chat__text-color);--str-chat__suggestion-list-container-background-color: var( --str-chat__secondary-background-color );--str-chat__suggestion-list-container-border-block-start: none;--str-chat__suggestion-list-container-border-block-end: none;--str-chat__suggestion-list-container-border-inline-start: none;--str-chat__suggestion-list-container-border-inline-end: none;--str-chat__suggestion-list-container-box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);--str-chat__suggestion-list-item--selected-background-color: var(--str-chat__surface-color);--str-chat__slash-command-border-radius: 0;--str-chat__slash-command-color: var(--str-chat__text-color);--str-chat__slash-command-background-color: transparent;--str-chat__slash-command-border-block-start: none;--str-chat__slash-command-border-block-end: none;--str-chat__slash-command-border-inline-start: none;--str-chat__slash-command-border-inline-end: none;--str-chat__slash-command-box-shadow: none;--str-chat__slash-command-args-color: var(--str-chat__text-low-emphasis-color);--str-chat__mention-list-user-item-border-radius: 0;--str-chat__mention-list-user-item-color: var(--str-chat__text-color);--str-chat__mention-list-user-item-background-color: transparent;--str-chat__mention-list-user-item-border-block-start: none;--str-chat__mention-list-user-item-border-block-end: none;--str-chat__mention-list-user-item-border-inline-start: none;--str-chat__mention-list-user-item-border-inline-end: none;--str-chat__mention-list-user-item-box-shadow: none;--str-chat__mention-list-user-item-at-sign-color: var(--str-chat__primary-color);--str-chat__mention-list-emoji-item-font-family: var(--str-chat__font-family);--str-chat__mention-list-emoji-item-border-radius: 0;--str-chat__mention-list-emoji-item-color: var(--str-chat__text-color);--str-chat__mention-list-emoji-item-background-color: transparent;--str-chat__mention-list-emoji-item-border-block-start: none;--str-chat__mention-list-emoji-item-border-block-end: none;--str-chat__mention-list-emoji-item-border-inline-start: none;--str-chat__mention-list-emoji-item-border-inline-end: none;--str-chat__mention-list-emoji-item-box-shadow: none}.mention-menu{background:var(--str-chat__autocomplete-menu-background-color) !important;color:var(--str-chat__autocomplete-menu-color) !important;box-shadow:var(--str-chat__autocomplete-menu-box-shadow) !important;border-radius:var(--str-chat__autocomplete-menu-border-radius) !important;-webkit-border-before:var(--str-chat__autocomplete-menu-border-block-start) !important;border-block-start:var(--str-chat__autocomplete-menu-border-block-start) !important;-webkit-border-after:var(--str-chat__autocomplete-menu-border-block-end) !important;border-block-end:var(--str-chat__autocomplete-menu-border-block-end) !important;-webkit-border-start:var(--str-chat__autocomplete-menu-border-inline-start) !important;border-inline-start:var(--str-chat__autocomplete-menu-border-inline-start) !important;-webkit-border-end:var(--str-chat__autocomplete-menu-border-inline-end) !important;border-inline-end:var(--str-chat__autocomplete-menu-border-inline-end) !important}.mention-menu .active.mention-active>a{background-color:var(--str-chat__autocomplete-active-background-color) !important}.mention-menu .mention-item{color:var(--str-chat__autocomplete-menu-color) !important;background-color:rgba(0,0,0,0) !important}.str-chat__slash-command{background:var(--str-chat__slash-command-background-color);color:var(--str-chat__slash-command-color);box-shadow:var(--str-chat__slash-command-box-shadow);border-radius:var(--str-chat__slash-command-border-radius);-webkit-border-before:var(--str-chat__slash-command-border-block-start);border-block-start:var(--str-chat__slash-command-border-block-start);-webkit-border-after:var(--str-chat__slash-command-border-block-end);border-block-end:var(--str-chat__slash-command-border-block-end);-webkit-border-start:var(--str-chat__slash-command-border-inline-start);border-inline-start:var(--str-chat__slash-command-border-inline-start);-webkit-border-end:var(--str-chat__slash-command-border-inline-end);border-inline-end:var(--str-chat__slash-command-border-inline-end)}.str-chat__slash-command .str-chat__slash-command-header .str-chat__slash-command-name{text-transform:capitalize;font:var(--str-chat__subtitle2-text)}.str-chat__slash-command .str-chat__slash-command-header .str-chat__slash-command-args{color:var(--str-chat__slash-command-args-color);font:var(--str-chat__subtitle-text)}.str-chat__user-item{background:var(--str-chat__mention-list-user-item-background-color);color:var(--str-chat__mention-list-user-item-color);box-shadow:var(--str-chat__mention-list-user-item-box-shadow);border-radius:var(--str-chat__mention-list-user-item-border-radius);-webkit-border-before:var(--str-chat__mention-list-user-item-border-block-start);border-block-start:var(--str-chat__mention-list-user-item-border-block-start);-webkit-border-after:var(--str-chat__mention-list-user-item-border-block-end);border-block-end:var(--str-chat__mention-list-user-item-border-block-end);-webkit-border-start:var(--str-chat__mention-list-user-item-border-inline-start);border-inline-start:var(--str-chat__mention-list-user-item-border-inline-start);-webkit-border-end:var(--str-chat__mention-list-user-item-border-inline-end);border-inline-end:var(--str-chat__mention-list-user-item-border-inline-end)}.str-chat__user-item .str-chat__user-item--name{font:var(--str-chat__subtitle-text)}.str-chat__user-item .str-chat__user-item-at{font:var(--str-chat__subtitle2-text);color:var(--str-chat__mention-list-user-item-at-sign-color)}.str-chat__emoji-item{background:var(--str-chat__mention-list-emoji-item-background-color);color:var(--str-chat__mention-list-emoji-item-color);box-shadow:var(--str-chat__mention-list-emoji-item-box-shadow);border-radius:var(--str-chat__mention-list-emoji-item-border-radius);-webkit-border-before:var(--str-chat__mention-list-emoji-item-border-block-start);border-block-start:var(--str-chat__mention-list-emoji-item-border-block-start);-webkit-border-after:var(--str-chat__mention-list-emoji-item-border-block-end);border-block-end:var(--str-chat__mention-list-emoji-item-border-block-end);-webkit-border-start:var(--str-chat__mention-list-emoji-item-border-inline-start);border-inline-start:var(--str-chat__mention-list-emoji-item-border-inline-start);-webkit-border-end:var(--str-chat__mention-list-emoji-item-border-inline-end);border-inline-end:var(--str-chat__mention-list-emoji-item-border-inline-end)}.str-chat__emoji-item .str-chat__emoji-item--name{font:var(--str-chat__subtitle-text)}.str-chat__suggestion-list-container{background:var(--str-chat__suggestion-list-container-background-color);color:var(--str-chat__suggestion-list-container-color);box-shadow:var(--str-chat__suggestion-list-container-box-shadow);border-radius:var(--str-chat__suggestion-list-container-border-radius);-webkit-border-before:var(--str-chat__suggestion-list-container-border-block-start);border-block-start:var(--str-chat__suggestion-list-container-border-block-start);-webkit-border-after:var(--str-chat__suggestion-list-container-border-block-end);border-block-end:var(--str-chat__suggestion-list-container-border-block-end);-webkit-border-start:var(--str-chat__suggestion-list-container-border-inline-start);border-inline-start:var(--str-chat__suggestion-list-container-border-inline-start);-webkit-border-end:var(--str-chat__suggestion-list-container-border-inline-end);border-inline-end:var(--str-chat__suggestion-list-container-border-inline-end)}.str-chat__suggestion-list-container .str-chat__suggestion-list .str-chat__suggestion-list-item>a{text-decoration:none}.str-chat__suggestion-list-container .str-chat__suggestion-list .str-chat__suggestion-item--selected{background-color:var(--str-chat__suggestion-list-item--selected-background-color)}.str-chat__base-image{color:rgba(0,0,0,0)}.str-chat__base-image--load-failed{mask-image:var(--str-chat__image-fallback-icon);-webkit-mask-image:var(--str-chat__image-fallback-icon);mask-repeat:no-repeat;-webkit-mask-repeat:no-repeat;mask-position:center;-webkit-mask-position:center;mask-size:5rem 5rem;-webkit-mask-size:5rem 5rem;background-color:var(--str-chat__disabled-color)}.str-chat__base-image--load-failed~.str-chat__message-attachment-file--item-download .str-chat__message-attachment-download-icon path{fill:var(--str-chat__text-color)}.str-chat__attachment-preview-image .str-chat__base-image--load-failed{mask-size:1.5rem 1.5rem;-webkit-mask-size:1.5rem 1.5rem}.str-chat__attachment-preview-list .str-chat__attachment-preview-image--error{background-color:var(--str-chat__secondary-surface-color)}.str-chat__attachment-preview-list .str-chat__attachment-preview-image--error .str-chat__attachment-preview-thumbnail.str-chat__base-image--load-failed{background-color:var(--str-chat__disabled-color)}.str-chat{--str-chat__channel-border-radius: 0;--str-chat__channel-color: var(--str-chat__text-color);--str-chat__channel-background-color: var(--str-chat__background-color);--str-chat__channel-box-shadow: none;--str-chat__channel-border-block-start: none;--str-chat__channel-border-block-end: none;--str-chat__channel-border-inline-start: none;--str-chat__channel-border-inline-end: none;--str-chat__channel-empty-indicator-color: var(--str-chat__disabled-color);--str-chat__channel-empty-color: var(--str-chat__text-low-emphasis-color);--str-chat__channel-loading-state-color: var(--str-chat__disabled-color)}.str-chat__channel{background:var(--str-chat__channel-background-color);color:var(--str-chat__channel-color);box-shadow:var(--str-chat__channel-box-shadow);border-radius:var(--str-chat__channel-border-radius);-webkit-border-before:var(--str-chat__channel-border-block-start);border-block-start:var(--str-chat__channel-border-block-start);-webkit-border-after:var(--str-chat__channel-border-block-end);border-block-end:var(--str-chat__channel-border-block-end);-webkit-border-start:var(--str-chat__channel-border-inline-start);border-inline-start:var(--str-chat__channel-border-inline-start);-webkit-border-end:var(--str-chat__channel-border-inline-end);border-inline-end:var(--str-chat__channel-border-inline-end)}.str-chat__empty-channel{--str-chat-icon-color: var(--str-chat__channel-empty-color);background:var(--str-chat__channel-background-color);color:var(--str-chat__channel-color);box-shadow:var(--str-chat__channel-box-shadow);border-radius:var(--str-chat__channel-border-radius);-webkit-border-before:var(--str-chat__channel-border-block-start);border-block-start:var(--str-chat__channel-border-block-start);-webkit-border-after:var(--str-chat__channel-border-block-end);border-block-end:var(--str-chat__channel-border-block-end);-webkit-border-start:var(--str-chat__channel-border-inline-start);border-inline-start:var(--str-chat__channel-border-inline-start);-webkit-border-end:var(--str-chat__channel-border-inline-end);border-inline-end:var(--str-chat__channel-border-inline-end);font:var(--str-chat__headline-text);text-align:center}.str-chat__empty-channel svg path{fill:var(--str-chat__channel-empty-indicator-color)}.str-chat__empty-channel .str-chat__empty-channel-text{color:var(--str-chat__channel-empty-color)}.str-chat__loading-channel{-webkit-animation:pulsate 1s linear 0s infinite alternate;animation:pulsate 1s linear 0s infinite alternate}.str-chat__loading-channel:nth-of-type(2){-webkit-animation:pulsate 1s linear .3334s infinite alternate;animation:pulsate 1s linear .3334s infinite alternate}.str-chat__loading-channel:last-of-type{-webkit-animation:pulsate 1s linear .6667s infinite alternate;animation:pulsate 1s linear .6667s infinite alternate}@-webkit-keyframes pulsate{from{opacity:.5}to{opacity:1}}@keyframes pulsate{from{opacity:.5}to{opacity:1}}.str-chat__loading-channel .str-chat__loading-channel-header{background-color:var(--str-chat__channel-header-background-color)}.str-chat__loading-channel .str-chat__loading-channel-header .str-chat__loading-channel-header-avatar{background-image:linear-gradient(-90deg, var(--str-chat__channel-loading-state-color) 0%, var(--str-chat__channel-loading-state-color) 100%);border-radius:var(--str-chat__avatar-border-radius)}.str-chat__loading-channel .str-chat__loading-channel-header .str-chat__loading-channel-header-name,.str-chat__loading-channel .str-chat__loading-channel-header .str-chat__loading-channel-header-info{background-image:linear-gradient(-90deg, var(--str-chat__channel-loading-state-color) 0%, var(--str-chat__channel-loading-state-color) 100%);border-radius:var(--str-chat__border-radius-xs)}.str-chat__loading-channel .str-chat__loading-channel-message-list{background-color:var(--str-chat__message-list-background-color)}.str-chat__loading-channel .str-chat__loading-channel-message-list .str-chat__loading-channel-message-avatar{background-image:linear-gradient(-90deg, var(--str-chat__channel-loading-state-color) 0%, var(--str-chat__channel-loading-state-color) 100%);border-radius:var(--str-chat__avatar-border-radius)}.str-chat__loading-channel .str-chat__loading-channel-message-list .str-chat__loading-channel-message-sender,.str-chat__loading-channel .str-chat__loading-channel-message-list .str-chat__loading-channel-message-text,.str-chat__loading-channel .str-chat__loading-channel-message-list .str-chat__loading-channel-message-date{background-image:linear-gradient(-90deg, var(--str-chat__channel-loading-state-color) 0%, var(--str-chat__channel-loading-state-color) 100%);border-radius:var(--str-chat__message-bubble-border-radius)}.str-chat__loading-channel .str-chat__loading-channel-message-input-row .str-chat__loading-channel-message-input,.str-chat__loading-channel .str-chat__loading-channel-message-input-row .str-chat__loading-channel-message-send{background-image:linear-gradient(-90deg, var(--str-chat__channel-loading-state-color) 0%, var(--str-chat__channel-loading-state-color) 100%)}.str-chat__loading-channel .str-chat__loading-channel-message-input-row .str-chat__loading-channel-message-input{border-radius:var(--str-chat__message-textarea-border-radius)}.str-chat__loading-channel .str-chat__loading-channel-message-input-row .str-chat__loading-channel-message-send{border-radius:var(--str-chat__message-send-border-radius)}.str-chat{--str-chat__channel-header-border-radius: 0;--str-chat__channel-header-color: 0;--str-chat__channel-header-background-color: var(--str-chat__secondary-background-color);--str-chat__channel-header-border-block-start: none;--str-chat__channel-header-border-block-end: none;--str-chat__channel-header-border-inline-start: none;--str-chat__channel-header-border-inline-end: none;--str-chat__channel-header-box-shadow: none;--str-chat__channel-header-info-color: var(--str-chat__text-low-emphasis-color)}.str-chat__channel-header{background:var(--str-chat__channel-header-background-color);color:var(--str-chat__channel-header-color);box-shadow:var(--str-chat__channel-header-box-shadow);border-radius:var(--str-chat__channel-header-border-radius);-webkit-border-before:var(--str-chat__channel-header-border-block-start);border-block-start:var(--str-chat__channel-header-border-block-start);-webkit-border-after:var(--str-chat__channel-header-border-block-end);border-block-end:var(--str-chat__channel-header-border-block-end);-webkit-border-start:var(--str-chat__channel-header-border-inline-start);border-inline-start:var(--str-chat__channel-header-border-inline-start);-webkit-border-end:var(--str-chat__channel-header-border-inline-end);border-inline-end:var(--str-chat__channel-header-border-inline-end)}.str-chat__channel-header .str-chat__channel-header-title{font:var(--str-chat__subtitle-medium-text)}.str-chat__channel-header .str-chat__channel-header-info{font:var(--str-chat__body-text);color:var(--str-chat__channel-header-info-color)}.str-chat{--str-chat__channel-list-border-radius: 0;--str-chat__channel-list-color: var(--str-chat__text-color);--str-chat__channel-list-background-color: var(--str-chat__secondary-background-color);--str-chat__channel-list-box-shadow: none;--str-chat__channel-list-border-block-start: none;--str-chat__channel-list-border-block-end: none;--str-chat__channel-list-border-inline-start: none;--str-chat__channel-list-border-inline-end: 1px solid var(--str-chat__surface-color);--str-chat__channel-list-load-more-border-radius: var(--str-chat__cta-button-border-radius);--str-chat__channel-list-load-more-color: var(--str-chat__cta-button-color);--str-chat__channel-list-load-more-background-color: var(--str-chat__cta-button-background-color);--str-chat__channel-list-load-more-box-shadow: var(--str-chat__cta-button-box-shadow);--str-chat__channel-list-load-more-border-block-start: var( --str-chat__cta-button-border-block-start );--str-chat__channel-list-load-more-border-block-end: var(--str-chat__cta-button-border-block-end);--str-chat__channel-list-load-more-border-inline-start: var( --str-chat__cta-button-border-inline-start );--str-chat__channel-list-load-more-border-inline-end: var( --str-chat__cta-button-border-inline-end );--str-chat__channel-list-load-more-pressed-background-color: var( --str-chat__cta-button-pressed-background-color );--str-chat__channel-list-load-more-disabled-background-color: var( --str-chat__cta-button-disabled-background-color );--str-chat__channel-list-load-more-disabled-color: var(--str-chat__cta-button-disabled-color);--str-chat__channel-list-empty-indicator-color: var(--str-chat__text-low-emphasis-color)}.str-chat__channel-list{background:var(--str-chat__channel-list-background-color);color:var(--str-chat__channel-list-color);box-shadow:var(--str-chat__channel-list-box-shadow);border-radius:var(--str-chat__channel-list-border-radius);-webkit-border-before:var(--str-chat__channel-list-border-block-start);border-block-start:var(--str-chat__channel-list-border-block-start);-webkit-border-after:var(--str-chat__channel-list-border-block-end);border-block-end:var(--str-chat__channel-list-border-block-end);-webkit-border-start:var(--str-chat__channel-list-border-inline-start);border-inline-start:var(--str-chat__channel-list-border-inline-start);-webkit-border-end:var(--str-chat__channel-list-border-inline-end);border-inline-end:var(--str-chat__channel-list-border-inline-end)}.str-chat__channel-list .str-chat__load-more-button__button{background:var(--str-chat__channel-list-load-more-background-color);color:var(--str-chat__channel-list-load-more-color);box-shadow:var(--str-chat__channel-list-load-more-box-shadow);border-radius:var(--str-chat__channel-list-load-more-border-radius);-webkit-border-before:var(--str-chat__channel-list-load-more-border-block-start);border-block-start:var(--str-chat__channel-list-load-more-border-block-start);-webkit-border-after:var(--str-chat__channel-list-load-more-border-block-end);border-block-end:var(--str-chat__channel-list-load-more-border-block-end);-webkit-border-start:var(--str-chat__channel-list-load-more-border-inline-start);border-inline-start:var(--str-chat__channel-list-load-more-border-inline-start);-webkit-border-end:var(--str-chat__channel-list-load-more-border-inline-end);border-inline-end:var(--str-chat__channel-list-load-more-border-inline-end);width:80%}.str-chat__channel-list .str-chat__load-more-button__button:active{background-color:var(--str-chat__channel-list-load-more-pressed-background-color)}.str-chat__channel-list .str-chat__load-more-button__button:disabled{background-color:var(--str-chat__channel-list-load-more-disabled-background-color);color:var(--str-chat__channel-list-load-more-disabled-color)}.str-chat__channel-list .str-chat__channel-list-empty{--str-chat-icon-color: var(--str-chat__channel-list-empty-indicator-color);font:var(--str-chat__headline-text);text-align:center;color:var(--str-chat__channel-list-empty-indicator-color)}.str-chat__channel-list .str-chat__channel-list-empty svg path{fill:var(--str-chat__channel-list-empty-indicator-color)}.str-chat{--str-chat__channel-preview-border-radius: 0;--str-chat__channel-preview-color: var(--str-chat__text-color);--str-chat__channel-preview-background-color: transparent;--str-chat__channel-preview-border-block-start: none;--str-chat__channel-preview-border-block-end: none;--str-chat__channel-preview-border-inline-start: none;--str-chat__channel-preview-border-inline-end: none;--str-chat__channel-preview-active-background-color: var(--str-chat__surface-color);--str-chat__channel-preview-hover-background-color: var(--str-chat__secondary-surface-color);--str-chat__channel-preview-latest-message-secondary-color: var( --str-chat__text-low-emphasis-color );--str-chat__channel-preview-loading-state-color: var(--str-chat__disabled-color);--str-chat__channel-preview-unread-badge-background-color: var(--str-chat__unread-badge-color);--str-chat__channel-preview-unread-badge-color: var(--str-chat__on-unread-badge-color);--str-chat__channel-preview-unread-badge-border-radius: var(--str-chat__border-radius-circle);--str-chat__channel-preview-unread-badge-border-block-start: none;--str-chat__channel-preview-unread-badge-border-block-end: none;--str-chat__channel-preview-unread-badge-border-inline-start: none;--str-chat__channel-preview-unread-badge-border-inline-end: none;--str-chat__channel-preview-message-status-color: var(--str-chat__primary-color);--str-chat__channel-preview-message-time-color: var(--str-chat__message-secondary-color)}.str-chat__channel-preview{background:var(--str-chat__channel-preview-background-color);color:var(--str-chat__channel-preview-color);box-shadow:var(--str-chat__channel-preview-box-shadow);border-radius:var(--str-chat__channel-preview-border-radius);-webkit-border-before:var(--str-chat__channel-preview-border-block-start);border-block-start:var(--str-chat__channel-preview-border-block-start);-webkit-border-after:var(--str-chat__channel-preview-border-block-end);border-block-end:var(--str-chat__channel-preview-border-block-end);-webkit-border-start:var(--str-chat__channel-preview-border-inline-start);border-inline-start:var(--str-chat__channel-preview-border-inline-start);-webkit-border-end:var(--str-chat__channel-preview-border-inline-end);border-inline-end:var(--str-chat__channel-preview-border-inline-end)}.str-chat__channel-preview--active,.str-chat__channel-preview-messenger--active{background-color:var(--str-chat__channel-preview-active-background-color)}.str-chat__channel-preview:hover{background-color:var(--str-chat__channel-preview-hover-background-color)}.str-chat__channel-preview .str-chat__channel-preview-end-first-row{font:var(--str-chat__subtitle-medium-text)}.str-chat__channel-preview .str-chat__channel-preview-end-first-row .str-chat__channel-preview-unread-badge{background:var(--str-chat__channel-preview-unread-badge-background-color);color:var(--str-chat__channel-preview-unread-badge-color);box-shadow:var(--str-chat__channel-preview-unread-badge-box-shadow);border-radius:var(--str-chat__channel-preview-unread-badge-border-radius);-webkit-border-before:var(--str-chat__channel-preview-unread-badge-border-block-start);border-block-start:var(--str-chat__channel-preview-unread-badge-border-block-start);-webkit-border-after:var(--str-chat__channel-preview-unread-badge-border-block-end);border-block-end:var(--str-chat__channel-preview-unread-badge-border-block-end);-webkit-border-start:var(--str-chat__channel-preview-unread-badge-border-inline-start);border-inline-start:var(--str-chat__channel-preview-unread-badge-border-inline-start);-webkit-border-end:var(--str-chat__channel-preview-unread-badge-border-inline-end);border-inline-end:var(--str-chat__channel-preview-unread-badge-border-inline-end);font-size:80%}.str-chat__channel-preview .str-chat__channel-preview-end-first-row .str-chat__channel-preview-messenger--last-message{font:var(--str-chat__body-text);color:var(--str-chat__channel-preview-latest-message-secondary-color)}.str-chat__channel-preview .str-chat__channel-preview-end-first-row--active .str-chat__channel-preview-messenger--last-message,.str-chat__channel-preview .str-chat__channel-preview-end-first-row:hover .str-chat__channel-preview-messenger--last-message{color:var(--str-chat__channel-preview-color)}.str-chat__channel-preview .str-chat__channel-preview-messenger--status{--str-chat-icon-color: var(--str-chat__channel-preview-message-status-color);color:var(--str-chat__channel-preview-message-status-color)}.str-chat__channel-preview .str-chat__channel-preview-messenger--status svg path{fill:var(--str-chat__channel-preview-message-status-color)}.str-chat__channel-preview .str-chat__channel-preview-messenger--time{color:var(--str-chat__channel-preview-message-time-color);font:var(--str-chat__caption-text)}.str-chat__channel-preview-loading{-webkit-animation:pulsate 1s linear 0s infinite alternate;animation:pulsate 1s linear 0s infinite alternate}.str-chat__channel-preview-loading:nth-of-type(2){-webkit-animation:pulsate 1s linear .3334s infinite alternate;animation:pulsate 1s linear .3334s infinite alternate}.str-chat__channel-preview-loading:last-of-type{-webkit-animation:pulsate 1s linear .6667s infinite alternate;animation:pulsate 1s linear .6667s infinite alternate}@keyframes pulsate{from{opacity:.5}to{opacity:1}}.str-chat__channel-preview-loading .str-chat__loading-channels-avatar,.str-chat__channel-preview-loading .str-chat__loading-channels-username,.str-chat__channel-preview-loading .str-chat__loading-channels-status{background-image:linear-gradient(-90deg, var(--str-chat__channel-preview-loading-state-color) 0%, var(--str-chat__channel-preview-loading-state-color) 100%)}.str-chat__channel-preview-loading .str-chat__loading-channels-username,.str-chat__channel-preview-loading .str-chat__loading-channels-status{border-radius:var(--str-chat__border-radius-xs)}.str-chat{--str-chat__channel-search-input-color: var(--str-chat__text-color);--str-chat__channel-search-input-placeholder-color: var(--str-chat__text-low-emphasis-color);--str-chat__channel-search-input-icon-color: var(--str-chat__text-low-emphasis-color);--str-chat__channel-search-input-border-block-start: none;--str-chat__channel-search-input-border-block-end: none;--str-chat__channel-search-input-border-inline-start: none;--str-chat__channel-search-input-border-inline-end: none;--str-chat__channel-search-input-wrapper-border-radius: var(--str-chat__border-radius-lg);--str-chat__channel-search-input-wrapper-background-color: transparent;--str-chat__channel-search-input-wrapper-border-block-start: var(--str-chat__surface-color) 1px solid;--str-chat__channel-search-input-wrapper-border-block-end: var(--str-chat__surface-color) 1px solid;--str-chat__channel-search-input-wrapper-border-inline-start: var(--str-chat__surface-color) 1px solid;--str-chat__channel-search-input-wrapper-border-inline-end: var(--str-chat__surface-color) 1px solid;--str-chat__channel-search-input-wrapper-active-border-radius: var(--str-chat__border-radius-lg);--str-chat__channel-search-input-wrapper-active-background-color: transparent;--str-chat__channel-search-input-wrapper-active-border-block-start: var(--str-chat__primary-color) 1px solid;--str-chat__channel-search-input-wrapper-active-border-block-end: var(--str-chat__primary-color) 1px solid;--str-chat__channel-search-input-wrapper-active-border-inline-start: var( --str-chat__primary-color ) 1px solid;--str-chat__channel-search-input-wrapper-active-border-inline-end: var(--str-chat__primary-color) 1px solid;--str-chat__channel-search-result-background-color: transparent;--str-chat__channel-search-result-border-block-start: none;--str-chat__channel-search-result-border-block-end: none;--str-chat__channel-search-result-border-inline-start: none;--str-chat__channel-search-result-border-inline-end: none;--str-chat__channel-search-result-hover-background-color: var( --str-chat__secondary-surface-color );--str-chat__channel-search-result-list-color: var(--str-chat__text-color);--str-chat__channel-search-result-list-background-color: var(--str-chat__secondary-background-color);--str-chat__channel-search-result-list-border-block-start: none;--str-chat__channel-search-result-list-border-block-end: none;--str-chat__channel-search-result-list-border-inline-start: none;--str-chat__channel-search-result-list-border-inline-end: none;--str-chat__channel-search-result-list-popup-box-shadow: 0 4px 4px var(--str-chat__box-shadow-color);--str-chat__channel-search-results-header-color: var(--str-chat__text-low-emphasis-color);--str-chat__channel-search-results-header-background-color: var(--str-chat__background-color);--str-chat__channel-search-results-header-border-block-start: none;--str-chat__channel-search-results-header-border-block-end: var(--str-chat__surface-color) 1px solid;--str-chat__channel-search-results-header-border-inline-start: none;--str-chat__channel-search-results-header-border-inline-end: none;--str-chat__channel-search-results-loading-indicator-color: var(--str-chat__text-low-emphasis-color);--str-chat__channel-search-results-loading-indicator-background-color: var(--str-chat__background-color);--str-chat__channel-search-results-loading-indicator-border-block-start: none;--str-chat__channel-search-results-loading-indicator-border-block-end: var(--str-chat__surface-color) 1px solid;--str-chat__channel-search-results-loading-indicator-border-inline-start: none;--str-chat__channel-search-results-loading-indicator-border-inline-end: none;--str-chat__channel-search-results-empty-color: var(--str-chat__text-low-emphasis-color);--str-chat__channel-search-results-empty-icon-color: var(--str-chat__disabled-color);--str-chat__channel-search-results-empty-background-color: var(--str-chat__background-color);--str-chat__channel-search-results-empty-border-block-start: none;--str-chat__channel-search-results-empty-border-block-end: none;--str-chat__channel-search-results-empty-border-inline-start: none;--str-chat__channel-search-results-empty-border-inline-end: none}.str-chat__channel-search-input--wrapper{background:var(--str-chat__channel-search-input-wrapper-background-color);color:var(--str-chat__channel-search-input-wrapper-color);box-shadow:var(--str-chat__channel-search-input-wrapper-box-shadow);border-radius:var(--str-chat__channel-search-input-wrapper-border-radius);-webkit-border-before:var(--str-chat__channel-search-input-wrapper-border-block-start);border-block-start:var(--str-chat__channel-search-input-wrapper-border-block-start);-webkit-border-after:var(--str-chat__channel-search-input-wrapper-border-block-end);border-block-end:var(--str-chat__channel-search-input-wrapper-border-block-end);-webkit-border-start:var(--str-chat__channel-search-input-wrapper-border-inline-start);border-inline-start:var(--str-chat__channel-search-input-wrapper-border-inline-start);-webkit-border-end:var(--str-chat__channel-search-input-wrapper-border-inline-end);border-inline-end:var(--str-chat__channel-search-input-wrapper-border-inline-end)}.str-chat__channel-search-input--wrapper input{background:var(--str-chat__channel-search-input-background-color);color:var(--str-chat__channel-search-input-color);box-shadow:var(--str-chat__channel-search-input-box-shadow);border-radius:var(--str-chat__channel-search-input-border-radius);-webkit-border-before:var(--str-chat__channel-search-input-border-block-start);border-block-start:var(--str-chat__channel-search-input-border-block-start);-webkit-border-after:var(--str-chat__channel-search-input-border-block-end);border-block-end:var(--str-chat__channel-search-input-border-block-end);-webkit-border-start:var(--str-chat__channel-search-input-border-inline-start);border-inline-start:var(--str-chat__channel-search-input-border-inline-start);-webkit-border-end:var(--str-chat__channel-search-input-border-inline-end);border-inline-end:var(--str-chat__channel-search-input-border-inline-end);outline:none;font:var(--str-chat__subtitle-text)}.str-chat__channel-search-input--wrapper .str-chat__channel-search-input--clear-button svg path{fill:rgba(0,0,0,0)}.str-chat__channel-search-input--wrapper-active{background:var(--str-chat__channel-search-input-wrapper-active-background-color);color:var(--str-chat__channel-search-input-wrapper-active-color);box-shadow:var(--str-chat__channel-search-input-wrapper-active-box-shadow);border-radius:var(--str-chat__channel-search-input-wrapper-active-border-radius);-webkit-border-before:var(--str-chat__channel-search-input-wrapper-active-border-block-start);border-block-start:var(--str-chat__channel-search-input-wrapper-active-border-block-start);-webkit-border-after:var(--str-chat__channel-search-input-wrapper-active-border-block-end);border-block-end:var(--str-chat__channel-search-input-wrapper-active-border-block-end);-webkit-border-start:var(--str-chat__channel-search-input-wrapper-active-border-inline-start);border-inline-start:var(--str-chat__channel-search-input-wrapper-active-border-inline-start);-webkit-border-end:var(--str-chat__channel-search-input-wrapper-active-border-inline-end);border-inline-end:var(--str-chat__channel-search-input-wrapper-active-border-inline-end)}.str-chat__channel-search-input--wrapper-active .str-chat__channel-search-input--icon svg path{fill:var(--str-chat__primary-color)}.str-chat__channel-search-input--wrapper-active .str-chat__channel-search-input--clear-button svg path{fill:var(--str-chat__text-low-emphasis-color)}.str-chat__channel-search-results-header{background:var(--str-chat__channel-search-results-header-background-color);color:var(--str-chat__channel-search-results-header-color);box-shadow:var(--str-chat__channel-search-results-header-box-shadow);border-radius:var(--str-chat__channel-search-results-header-border-radius);-webkit-border-before:var(--str-chat__channel-search-results-header-border-block-start);border-block-start:var(--str-chat__channel-search-results-header-border-block-start);-webkit-border-after:var(--str-chat__channel-search-results-header-border-block-end);border-block-end:var(--str-chat__channel-search-results-header-border-block-end);-webkit-border-start:var(--str-chat__channel-search-results-header-border-inline-start);border-inline-start:var(--str-chat__channel-search-results-header-border-inline-start);-webkit-border-end:var(--str-chat__channel-search-results-header-border-inline-end);border-inline-end:var(--str-chat__channel-search-results-header-border-inline-end);font:var(--str-chat__subtitle-text)}.str-chat__channel-search-result-list{background:var(--str-chat__channel-search-result-list-background-color);color:var(--str-chat__channel-search-result-list-color);box-shadow:var(--str-chat__channel-search-result-list-box-shadow);border-radius:var(--str-chat__channel-search-result-list-border-radius);-webkit-border-before:var(--str-chat__channel-search-result-list-border-block-start);border-block-start:var(--str-chat__channel-search-result-list-border-block-start);-webkit-border-after:var(--str-chat__channel-search-result-list-border-block-end);border-block-end:var(--str-chat__channel-search-result-list-border-block-end);-webkit-border-start:var(--str-chat__channel-search-result-list-border-inline-start);border-inline-start:var(--str-chat__channel-search-result-list-border-inline-start);-webkit-border-end:var(--str-chat__channel-search-result-list-border-inline-end);border-inline-end:var(--str-chat__channel-search-result-list-border-inline-end)}.str-chat__channel-search-result-list.popup{box-shadow:var(--str-chat__channel-search-result-list-popup-box-shadow)}.str-chat__channel-search-result-list .str-chat__channel-search-container-searching{background:var(--str-chat__channel-search-results-loading-indicator-background-color);color:var(--str-chat__channel-search-results-loading-indicator-color);box-shadow:var(--str-chat__channel-search-results-loading-indicator-box-shadow);border-radius:var(--str-chat__channel-search-results-loading-indicator-border-radius);-webkit-border-before:var(--str-chat__channel-search-results-loading-indicator-border-block-start);border-block-start:var(--str-chat__channel-search-results-loading-indicator-border-block-start);-webkit-border-after:var(--str-chat__channel-search-results-loading-indicator-border-block-end);border-block-end:var(--str-chat__channel-search-results-loading-indicator-border-block-end);-webkit-border-start:var(--str-chat__channel-search-results-loading-indicator-border-inline-start);border-inline-start:var(--str-chat__channel-search-results-loading-indicator-border-inline-start);-webkit-border-end:var(--str-chat__channel-search-results-loading-indicator-border-inline-end);border-inline-end:var(--str-chat__channel-search-results-loading-indicator-border-inline-end)}.str-chat__channel-search-result-list .str-chat__channel-search-container-empty{background:var(--str-chat__channel-search-results-empty-background-color);color:var(--str-chat__channel-search-results-empty-color);box-shadow:var(--str-chat__channel-search-results-empty-box-shadow);border-radius:var(--str-chat__channel-search-results-empty-border-radius);-webkit-border-before:var(--str-chat__channel-search-results-empty-border-block-start);border-block-start:var(--str-chat__channel-search-results-empty-border-block-start);-webkit-border-after:var(--str-chat__channel-search-results-empty-border-block-end);border-block-end:var(--str-chat__channel-search-results-empty-border-block-end);-webkit-border-start:var(--str-chat__channel-search-results-empty-border-inline-start);border-inline-start:var(--str-chat__channel-search-results-empty-border-inline-start);-webkit-border-end:var(--str-chat__channel-search-results-empty-border-inline-end);border-inline-end:var(--str-chat__channel-search-results-empty-border-inline-end);font:var(--str-chat__subtitle2-medium-text)}.str-chat__channel-search-result-list .str-chat__channel-search-container-empty svg path{fill:var(--str-chat__channel-search-results-empty-icon-color)}.str-chat__channel-search-result-list .str-chat__channel-search-result{background:var(--str-chat__channel-search-result-background-color);color:var(--str-chat__channel-search-result-color);box-shadow:var(--str-chat__channel-search-result-box-shadow);border-radius:var(--str-chat__channel-search-result-border-radius);-webkit-border-before:var(--str-chat__channel-search-result-border-block-start);border-block-start:var(--str-chat__channel-search-result-border-block-start);-webkit-border-after:var(--str-chat__channel-search-result-border-block-end);border-block-end:var(--str-chat__channel-search-result-border-block-end);-webkit-border-start:var(--str-chat__channel-search-result-border-inline-start);border-inline-start:var(--str-chat__channel-search-result-border-inline-start);-webkit-border-end:var(--str-chat__channel-search-result-border-inline-end);border-inline-end:var(--str-chat__channel-search-result-border-inline-end)}.str-chat__channel-search-result-list .str-chat__channel-search-result .str-chat__channel-search-result--display-name{font:var(--str-chat__subtitle-medium-text)}.str-chat__channel-search-result-list .str-chat__channel-preview-messenger--active{background-color:var(--str-chat__channel-preview-active-background-color)}.str-chat__channel-search-result-list .str-chat__channel-search-result:hover,.str-chat__channel-search-result-list .str-chat__channel-search-result--focused{background-color:var(--str-chat__channel-search-result-hover-background-color)}.str-chat{--str-chat__dialog-menu-border-radius: var(--str-chat__border-radius-sm);--str-chat__dialog-menu-color: var(--str-chat__text-color);--str-chat__dialog-menu-background-color: var(--str-chat__secondary-background-color);--str-chat__dialog-menu-border-block-start: none;--str-chat__dialog-menu-border-block-end: none;--str-chat__dialog-menu-border-inline-start: none;--str-chat__dialog-menu-border-inline-end: none;--str-chat__dialog-menu-box-shadow: 0 0 8px var(--str-chat__box-shadow-color);--str-chat__dialog-menu-button-border-radius: 0;--str-chat__dialog-menu-button-color: var(--str-chat__text-color);--str-chat__dialog-menu-button-background-color: transparent;--str-chat__dialog-menu-button-hover-background-color: var(--str-chat__secondary-surface-color);--str-chat__dialog-menu-button-border-block-start: none;--str-chat__dialog-menu-button-border-block-end: none;--str-chat__dialog-menu-button-border-inline-start: none;--str-chat__dialog-menu-button-border-inline-end: none;--str-chat__dialog-menu-button-box-shadow: none}.str-chat__dialog .str-chat__dialog__title{font:var(--str-chat__subtitle-medium-text)}.str-chat__dialog .str-chat__dialog__prompt{font:var(--str-chat__subtitle-text)}.str-chat__dialog .str-chat__dialog__controls .str-chat__dialog__controls-button{cursor:pointer;font:var(--str-chat__body-medium-text);color:var(--str-chat__primary-color)}.str-chat__dialog .str-chat__dialog__controls .str-chat__dialog__controls-button--submit{text-transform:uppercase}.str-chat__dialog .str-chat__dialog__controls .str-chat__dialog__controls-button--submit:disabled{color:var(--str-chat__disabled-color)}.str-chat__prompt-dialog input[type=text]{font:var(--str-chat__subtitle-text);border-radius:20px;border:1px solid var(--str-chat__primary-color)}.str-chat__dialog-menu{background:var(--str-chat__dialog-menu-background-color);color:var(--str-chat__dialog-menu-color);box-shadow:var(--str-chat__dialog-menu-box-shadow);border-radius:var(--str-chat__dialog-menu-border-radius);-webkit-border-before:var(--str-chat__dialog-menu-border-block-start);border-block-start:var(--str-chat__dialog-menu-border-block-start);-webkit-border-after:var(--str-chat__dialog-menu-border-block-end);border-block-end:var(--str-chat__dialog-menu-border-block-end);-webkit-border-start:var(--str-chat__dialog-menu-border-inline-start);border-inline-start:var(--str-chat__dialog-menu-border-inline-start);-webkit-border-end:var(--str-chat__dialog-menu-border-inline-end);border-inline-end:var(--str-chat__dialog-menu-border-inline-end)}.str-chat__dialog-menu .str-chat__dialog-menu__button{background:var(--str-chat__dialog-menu-button-background-color);color:var(--str-chat__dialog-menu-button-color);box-shadow:var(--str-chat__dialog-menu-button-box-shadow);border-radius:var(--str-chat__dialog-menu-button-border-radius);-webkit-border-before:var(--str-chat__dialog-menu-button-border-block-start);border-block-start:var(--str-chat__dialog-menu-button-border-block-start);-webkit-border-after:var(--str-chat__dialog-menu-button-border-block-end);border-block-end:var(--str-chat__dialog-menu-button-border-block-end);-webkit-border-start:var(--str-chat__dialog-menu-button-border-inline-start);border-inline-start:var(--str-chat__dialog-menu-button-border-inline-start);-webkit-border-end:var(--str-chat__dialog-menu-button-border-inline-end);border-inline-end:var(--str-chat__dialog-menu-button-border-inline-end);cursor:pointer;font:var(--str-chat__subtitle-text)}.str-chat__dialog-menu .str-chat__dialog-menu__button:hover,.str-chat__dialog-menu .str-chat__dialog-menu__button:focus{background-color:var(--str-chat__dialog-menu-button-hover-background-color)}.str-chat{--str-chat__drag-and-drop-container-border-block-start: 2px solid transparent;--str-chat__drag-and-drop-container-border-block-end: 2px solid transparent;--str-chat__drag-and-drop-container-on-dragover-border-block-start: 2px solid var(--str-chat__primary-color);--str-chat__drag-and-drop-container-on-dragover-border-block-end: 2px solid var(--str-chat__primary-color);--str-chat__drag-and-drop-container-on-dragover-border-inline-start: none;--str-chat__drag-and-drop-container-on-dragover-border-inline-end: none}.str-chat__drag-and-drop-container--dragging{cursor:grabbing}.str-chat__drag-and-drop-container__item[draggable=true]{cursor:grab}.str-chat__drag-and-drop-container__item[draggable=true]:active{background:rgba(0,0,0,0)}.str-chat__drag-and-drop-container__item{border-bottom:var(--str-chat__drag-and-drop-container-border-block-start);border-top:var(--str-chat__drag-and-drop-container-border-block-start)}.str-chat__drag-and-drop-container__item.str-chat__drag-and-drop-container__item--dragged-over-from-top{border-bottom:var(--str-chat__drag-and-drop-container-on-dragover-border-block-end)}.str-chat__drag-and-drop-container__item.str-chat__drag-and-drop-container__item--dragged-over-from-bottom{border-top:var(--str-chat__drag-and-drop-container-on-dragover-border-block-start)}.str-chat{--str-chat__edit-message-modal-button-border-radius: none;--str-chat__edit-message-modal-send-button-color: var(--str-chat__primary-color);--str-chat__edit-message-modal-cancel-button-color: var(--str-chat__text-low-emphasis-color);--str-chat__edit-message-modal-button-background-color: transparent;--str-chat__edit-message-modal-button-border-block-start: none;--str-chat__edit-message-modal-button-border-block-end: none;--str-chat__edit-message-modal-button-border-inline-start: none;--str-chat__edit-message-modal-button-border-inline-end: none;--str-chat__edit-message-modal-button-box-shadow: none}.str-chat__edit-message-form .str-chat__edit-message-form-options .str-chat__edit-message-cancel,.str-chat__edit-message-form .str-chat__edit-message-form-options .str-chat__edit-message-send{background:var(--str-chat__edit-message-modal-button-background-color);color:var(--str-chat__edit-message-modal-button-color);box-shadow:var(--str-chat__edit-message-modal-button-box-shadow);border-radius:var(--str-chat__edit-message-modal-button-border-radius);-webkit-border-before:var(--str-chat__edit-message-modal-button-border-block-start);border-block-start:var(--str-chat__edit-message-modal-button-border-block-start);-webkit-border-after:var(--str-chat__edit-message-modal-button-border-block-end);border-block-end:var(--str-chat__edit-message-modal-button-border-block-end);-webkit-border-start:var(--str-chat__edit-message-modal-button-border-inline-start);border-inline-start:var(--str-chat__edit-message-modal-button-border-inline-start);-webkit-border-end:var(--str-chat__edit-message-modal-button-border-inline-end);border-inline-end:var(--str-chat__edit-message-modal-button-border-inline-end);font:var(--str-chat__body-medium-text)}.str-chat__edit-message-form .str-chat__edit-message-form-options .str-chat__edit-message-cancel{text-transform:capitalize;color:var(--str-chat__edit-message-modal-cancel-button-color)}.str-chat__edit-message-form .str-chat__edit-message-form-options .str-chat__edit-message-send{text-transform:uppercase;color:var(--str-chat__edit-message-modal-send-button-color)}.str-chat__form-field-error{font-size:.75rem;color:var(--str-chat__danger-color)}input::-webkit-outer-spin-button,input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}input[type=number]{-moz-appearance:textfield}.str-chat{--str-chat-icon-color: var(--str-chat__text-color)}.str-chat__icon{color:var(--str-chat-icon-color)}.str-chat__icon--error{--str-chat-icon-color: var(--str-chat__danger-color)}.str-chat{--str-chat__image-carousel-stepper-color: var(--str-chat__text-color)}@media only screen and (max-device-width: 768px){.str-chat__message .str-chat__attachment-list .str-chat__modal--open .str-chat__modal__inner{border-radius:0}}.str-chat__image-carousel .str-chat__image-carousel-stepper{--str-chat-icon-color: var(--str-chat__image-carousel-stepper-color);cursor:pointer}.str-chat__image-carousel .str-chat__image-carousel-stepper svg path{fill:var(--str-chat__image-carousel-stepper-color)}.str-chat__link-preview-card .str-chat__link-preview-card__content{border-left:2px solid var(--str-chat__primary-color)}.str-chat__link-preview-card .str-chat__link-preview-card__content .str-chat__link-preview-card__content-title{font:var(--str-chat__body-medium-text)}.str-chat__link-preview-card .str-chat__link-preview-card__content .str-chat__link-preview-card__content-description{font:var(--str-chat__caption-text)}.str-chat__link-preview-card .str-chat__link-preview-card__dismiss-button svg path{fill:var(--str-chat__text-low-emphasis-color)}.str-chat{--str-chat__loading-indicator-color: var(--str-chat__primary-color)}.str-chat__loading-indicator svg linearGradient stop:last-child{stop-color:var(--str-chat__loading-indicator-color)}.str-chat{--str-chat__message-border-radius: none;--str-chat__message-color: var(--str-chat__text-color);--str-chat__message-error-message-color: var(--str-chat__danger-color);--str-chat__message-secondary-color: var(--str-chat__text-low-emphasis-color);--str-chat__message-link-color: var(--str-chat__primary-color);--str-chat__message-mention-color: var(--str-chat__primary-color);--str-chat__message-status-color: var(--str-chat__primary-color);--str-chat__message-replies-count-color: var(--str-chat__primary-color);--str-chat__message-background-color: transparent;--str-chat__message-highlighted-background-color: var(--str-chat__message-highlight-color);--str-chat__message-border-block-start: none;--str-chat__message-border-block-end: none;--str-chat__message-border-inline-start: none;--str-chat__message-border-inline-end: none;--str-chat__message-box-shadow: none;--str-chat__message-active-bacground-color: transparent;--str-chat__message-options-color: var(--str-chat__text-low-emphasis-color);--str-chat__message-options-hover-background-color: var(--str-chat__tertiary-surface-color);--str-chat__message-options-border-radius: var(--str-chat__border-radius-circle);--str-chat__message-options-active-color: var(--str-chat__primary-color);--str-chat__message-bubble-border-radius: var(--str-chat__border-radius-md);--str-chat__message-bubble-color: var(--str-chat__text-color);--str-chat__message-bubble-background-color: var(--str-chat__secondary-surface-color);--str-chat__own-message-bubble-color: var(--str-chat__message-bubble-color);--str-chat__own-message-bubble-background-color: var(--str-chat__primary-surface-color);--str-chat__quoted-message-bubble-background-color: var(--str-chat__secondary-background-color);--str-chat__message-bubble-border-block-start: none;--str-chat__message-bubble-border-block-end: none;--str-chat__message-bubble-border-inline-start: none;--str-chat__message-bubble-border-inline-end: none;--str-chat__message-bubble-box-shadow: none;--str-chat__deleted-message-border-radius: var(--str-chat__border-radius-md);--str-chat__deleted-message-color: var(--str-chat__text-low-emphasis-color);--str-chat__deleted-message-background-color: var(--str-chat__secondary-surface-color);--str-chat__deleted-message-border-block-start: none;--str-chat__deleted-message-border-block-end: none;--str-chat__deleted-message-border-inline-start: none;--str-chat__deleted-message-border-inline-end: none;--str-chat__deleted-message-box-shadow: none;--str-chat__system-message-border-radius: 0;--str-chat__system-message-color: var(--str-chat__text-low-emphasis-color);--str-chat__system-message-background-color: transparent;--str-chat__system-message-border-block-start: none;--str-chat__system-message-border-block-end: none;--str-chat__system-message-border-inline-start: none;--str-chat__system-message-border-inline-end: none;--str-chat__system-message-box-shadow: none;--str-chat__date-separator-color: var(--str-chat__text-low-emphasis-color);--str-chat__date-separator-line-color: var(--str-chat__disabled-color);--str-chat__date-separator-border-radius: 0;--str-chat__date-separator-background-color: transparent;--str-chat__date-separator-border-block-start: none;--str-chat__date-separator-border-block-end: none;--str-chat__date-separator-border-inline-start: none;--str-chat__date-separator-border-inline-end: none;--str-chat__date-separator-box-shadow: none;--str-chat__translation-notice-color: var(--str-chat__text-low-emphasis-color);--str-chat__translation-notice-active-background-color: var(--str-chat__tertiary-surface-color)}.str-chat__message--system{background:var(--str-chat__system-message-background-color);color:var(--str-chat__system-message-color);box-shadow:var(--str-chat__system-message-box-shadow);border-radius:var(--str-chat__system-message-border-radius);-webkit-border-before:var(--str-chat__system-message-border-block-start);border-block-start:var(--str-chat__system-message-border-block-start);-webkit-border-after:var(--str-chat__system-message-border-block-end);border-block-end:var(--str-chat__system-message-border-block-end);-webkit-border-start:var(--str-chat__system-message-border-inline-start);border-inline-start:var(--str-chat__system-message-border-inline-start);-webkit-border-end:var(--str-chat__system-message-border-inline-end);border-inline-end:var(--str-chat__system-message-border-inline-end);font:var(--str-chat__caption-text)}.str-chat__date-separator{background:var(--str-chat__date-separator-background-color);color:var(--str-chat__date-separator-color);box-shadow:var(--str-chat__date-separator-box-shadow);border-radius:var(--str-chat__date-separator-border-radius);-webkit-border-before:var(--str-chat__date-separator-border-block-start);border-block-start:var(--str-chat__date-separator-border-block-start);-webkit-border-after:var(--str-chat__date-separator-border-block-end);border-block-end:var(--str-chat__date-separator-border-block-end);-webkit-border-start:var(--str-chat__date-separator-border-inline-start);border-inline-start:var(--str-chat__date-separator-border-inline-start);-webkit-border-end:var(--str-chat__date-separator-border-inline-end);border-inline-end:var(--str-chat__date-separator-border-inline-end);font:var(--str-chat__body-text)}.str-chat__date-separator-line{background-color:var(--str-chat__date-separator-line-color);border:none}.str-chat__message{background:var(--str-chat__message-background-color);color:var(--str-chat__message-color);box-shadow:var(--str-chat__message-box-shadow);border-radius:var(--str-chat__message-border-radius);-webkit-border-before:var(--str-chat__message-border-block-start);border-block-start:var(--str-chat__message-border-block-start);-webkit-border-after:var(--str-chat__message-border-block-end);border-block-end:var(--str-chat__message-border-block-end);-webkit-border-start:var(--str-chat__message-border-inline-start);border-inline-start:var(--str-chat__message-border-inline-start);-webkit-border-end:var(--str-chat__message-border-inline-end);border-inline-end:var(--str-chat__message-border-inline-end)}.str-chat__message a{text-decoration:none;color:var(--str-chat__message-link-color)}.str-chat__message .str-chat__message-mention{color:var(--str-chat__message-mention-color);font:var(--str-chat__body2-medium-text)}.str-chat__message .str-chat__message-bubble{background:var(--str-chat__message-bubble-background-color);color:var(--str-chat__message-bubble-color);box-shadow:var(--str-chat__message-bubble-box-shadow);border-radius:var(--str-chat__message-bubble-border-radius);-webkit-border-before:var(--str-chat__message-bubble-border-block-start);border-block-start:var(--str-chat__message-bubble-border-block-start);-webkit-border-after:var(--str-chat__message-bubble-border-block-end);border-block-end:var(--str-chat__message-bubble-border-block-end);-webkit-border-start:var(--str-chat__message-bubble-border-inline-start);border-inline-start:var(--str-chat__message-bubble-border-inline-start);-webkit-border-end:var(--str-chat__message-bubble-border-inline-end);border-inline-end:var(--str-chat__message-bubble-border-inline-end);font:var(--str-chat__body2-text)}.str-chat__message .str-chat__message--deleted-inner{background:var(--str-chat__deleted-message-background-color);color:var(--str-chat__deleted-message-color);box-shadow:var(--str-chat__deleted-message-box-shadow);border-radius:var(--str-chat__deleted-message-border-radius);-webkit-border-before:var(--str-chat__deleted-message-border-block-start);border-block-start:var(--str-chat__deleted-message-border-block-start);-webkit-border-after:var(--str-chat__deleted-message-border-block-end);border-block-end:var(--str-chat__deleted-message-border-block-end);-webkit-border-start:var(--str-chat__deleted-message-border-inline-start);border-inline-start:var(--str-chat__deleted-message-border-inline-start);-webkit-border-end:var(--str-chat__deleted-message-border-inline-end);border-inline-end:var(--str-chat__deleted-message-border-inline-end);font:var(--str-chat__body2-text)}.str-chat__message.str-chat__message--me .str-chat__message-bubble{color:var(--str-chat__own-message-bubble-color);background-color:var(--str-chat__own-message-bubble-background-color)}.str-chat__message .str-chat__message-options{--str-chat-icon-color: var(--str-chat__message-options-color)}.str-chat__message .str-chat__message-options .str-chat__message-actions-box-button,.str-chat__message .str-chat__message-options .str-chat__message-reply-in-thread-button,.str-chat__message .str-chat__message-options .str-chat__message-reactions-button{background:none;border:none;border-radius:var(--str-chat__message-options-border-radius);color:var(--str-chat__message-options-color)}.str-chat__message .str-chat__message-options .str-chat__message-actions-box-button .str-chat__message-action-icon path,.str-chat__message .str-chat__message-options .str-chat__message-reply-in-thread-button .str-chat__message-action-icon path,.str-chat__message .str-chat__message-options .str-chat__message-reactions-button .str-chat__message-action-icon path{fill:var(--str-chat__message-options-color)}.str-chat__message .str-chat__message-options .str-chat__message-actions-box-button:hover,.str-chat__message .str-chat__message-options .str-chat__message-reply-in-thread-button:hover,.str-chat__message .str-chat__message-options .str-chat__message-reactions-button:hover{background-color:var(--str-chat__message-options-hover-background-color)}.str-chat__message .str-chat__message-options .str-chat__message-actions-box-button:active .str-chat__message-action-icon path,.str-chat__message .str-chat__message-options .str-chat__message-reply-in-thread-button:active .str-chat__message-action-icon path,.str-chat__message .str-chat__message-options .str-chat__message-reactions-button:active .str-chat__message-action-icon path{fill:var(--str-chat__message-options-active-color)}.str-chat__message .str-chat__translation-notice button{font:var(--str-chat__body2-text);color:var(--str-chat__translation-notice-color);border:none;background:none}.str-chat__message .str-chat__translation-notice button:active,.str-chat__message .str-chat__translation-notice button:hover{background:var(--str-chat__translation-notice-active-background-color)}.str-chat__message .str-chat__message-metadata,.str-chat__message .str-chat__custom-message-metadata{color:var(--str-chat__message-secondary-color);font:var(--str-chat__caption-text)}.str-chat__message .str-chat__message-metadata .str-chat__message-sender-name,.str-chat__message .str-chat__custom-message-metadata .str-chat__message-sender-name{font:var(--str-chat__caption-medium-text)}.str-chat__message .str-chat__message-status{--str-chat-icon-color: var(--str-chat__message-status-color);color:var(--str-chat__message-status-color);font:var(--str-chat__body-text)}.str-chat__message .str-chat__message-status svg path{fill:var(--str-chat__message-status-color)}.str-chat__message .str-chat__message-replies-count-button-wrapper button{border:none;background-color:rgba(0,0,0,0);font:var(--str-chat__body-medium-text);color:var(--str-chat__message-replies-count-color)}.str-chat__message .str-chat__message--error-message{color:var(--str-chat__message-error-message-color);font:var(--str-chat__caption-text)}.str-chat__message .str-chat__message-error-icon{--str-chat-icon-color: var(--str-chat__message-error-message-color)}.str-chat__message .str-chat__message-error-icon svg #background{fill:var(--str-chat__message-error-message-color)}.str-chat__message--highlighted{transition:background-color .1s ease-out;background-color:var(--str-chat__message-highlighted-background-color)}.str-chat__li:hover:not(:has(.str-chat__reaction-list:hover,.str-chat__modal--open)){background-color:var(--str-chat__message-active-bacground-color)}@supports not selector(:has(a, b)){.str-chat__li:hover{background-color:var(--str-chat__message-active-bacground-color)}}.str-chat__li--top .str-chat__message--other .str-chat__message-bubble,.str-chat__li--single .str-chat__message--other .str-chat__message-bubble{border-end-start-radius:calc(var(--str-chat__message-bubble-border-radius)/6)}.str-chat__li--top .str-chat__message--me .str-chat__message-bubble,.str-chat__li--single .str-chat__message--me .str-chat__message-bubble{border-end-end-radius:calc(var(--str-chat__message-bubble-border-radius)/6)}.str-chat__li--middle .str-chat__message--other .str-chat__message-bubble,.str-chat__li--bottom .str-chat__message--other .str-chat__message-bubble{border-start-start-radius:calc(var(--str-chat__message-bubble-border-radius)/6);border-end-start-radius:calc(var(--str-chat__message-bubble-border-radius)/6)}.str-chat__li--middle .str-chat__message--me .str-chat__message-bubble,.str-chat__li--bottom .str-chat__message--me .str-chat__message-bubble{border-start-end-radius:calc(var(--str-chat__message-bubble-border-radius)/6);border-end-end-radius:calc(var(--str-chat__message-bubble-border-radius)/6)}.str-chat__message-with-thread-link.str-chat__message--other .str-chat__message-bubble{border-end-start-radius:calc(var(--str-chat__message-bubble-border-radius)/6)}.str-chat__message-with-thread-link.str-chat__message--me .str-chat__message-bubble{border-end-end-radius:calc(var(--str-chat__message-bubble-border-radius)/6)}.str-chat__quoted-message-preview{background:var(--str-chat__message-background-color);color:var(--str-chat__message-color);box-shadow:var(--str-chat__message-box-shadow);border-radius:var(--str-chat__message-border-radius);-webkit-border-before:var(--str-chat__message-border-block-start);border-block-start:var(--str-chat__message-border-block-start);-webkit-border-after:var(--str-chat__message-border-block-end);border-block-end:var(--str-chat__message-border-block-end);-webkit-border-start:var(--str-chat__message-border-inline-start);border-inline-start:var(--str-chat__message-border-inline-start);-webkit-border-end:var(--str-chat__message-border-inline-end);border-inline-end:var(--str-chat__message-border-inline-end)}.str-chat__quoted-message-preview .str-chat__quoted-message-bubble{background:var(--str-chat__message-bubble-background-color);color:var(--str-chat__message-bubble-color);box-shadow:var(--str-chat__message-bubble-box-shadow);border-radius:var(--str-chat__message-bubble-border-radius);-webkit-border-before:var(--str-chat__message-bubble-border-block-start);border-block-start:var(--str-chat__message-bubble-border-block-start);-webkit-border-after:var(--str-chat__message-bubble-border-block-end);border-block-end:var(--str-chat__message-bubble-border-block-end);-webkit-border-start:var(--str-chat__message-bubble-border-inline-start);border-inline-start:var(--str-chat__message-bubble-border-inline-start);-webkit-border-end:var(--str-chat__message-bubble-border-inline-end);border-inline-end:var(--str-chat__message-bubble-border-inline-end);background-color:var(--str-chat__quoted-message-bubble-background-color);border-end-start-radius:calc(var(--str-chat__message-bubble-border-radius)/6)}.str-chat__message-input .str-chat__quoted-message-preview .str-chat__quoted-message-bubble{background-color:var(--str-chat__message-bubble-background-color)}.str-chat__unread-messages-separator{background-color:var(--str-chat__secondary-surface-color);color:var(--str-chat__text-low-emphasis-color);text-transform:uppercase;font:var(--str-chat__caption-strong-text)}.str-chat__unread-messages-notification{--str-chat-icon-color: var(--str-chat__on-primary-color);background-color:var(--str-chat__text-low-emphasis-color);border-radius:1.125rem}.str-chat__unread-messages-notification button{cursor:pointer;color:var(--str-chat__on-primary-color);border:none;background-color:rgba(0,0,0,0)}.str-chat__unread-messages-notification button:first-of-type{font:var(--str-chat__caption-text)}.str-chat{--str-chat__message-actions-box-border-radius: var(--str-chat__border-radius-sm);--str-chat__message-actions-box-color: var(--str-chat__text-color);--str-chat__message-actions-box-background-color: var(--str-chat__secondary-background-color);--str-chat__message-actions-box-border-block-start: none;--str-chat__message-actions-box-border-block-end: none;--str-chat__message-actions-box-border-inline-start: none;--str-chat__message-actions-box-border-inline-end: none;--str-chat__message-actions-box-box-shadow: 0 0 8px var(--str-chat__box-shadow-color);--str-chat__message-actions-box-item-border-radius: 0;--str-chat__message-actions-box-item-color: var(--str-chat__text-color);--str-chat__message-actions-box-item-background-color: transparent;--str-chat__message-actions-box-item-hover-background-color: var( --str-chat__secondary-surface-color );--str-chat__message-actions-box-item-border-block-start: none;--str-chat__message-actions-box-item-border-block-end: none;--str-chat__message-actions-box-item-border-inline-start: none;--str-chat__message-actions-box-item-border-inline-end: none;--str-chat__message-actions-box-item-box-shadow: none}.str-chat__message-actions-box{background:var(--str-chat__message-actions-box-background-color);color:var(--str-chat__message-actions-box-color);box-shadow:var(--str-chat__message-actions-box-box-shadow);border-radius:var(--str-chat__message-actions-box-border-radius);-webkit-border-before:var(--str-chat__message-actions-box-border-block-start);border-block-start:var(--str-chat__message-actions-box-border-block-start);-webkit-border-after:var(--str-chat__message-actions-box-border-block-end);border-block-end:var(--str-chat__message-actions-box-border-block-end);-webkit-border-start:var(--str-chat__message-actions-box-border-inline-start);border-inline-start:var(--str-chat__message-actions-box-border-inline-start);-webkit-border-end:var(--str-chat__message-actions-box-border-inline-end);border-inline-end:var(--str-chat__message-actions-box-border-inline-end)}.str-chat__message-actions-box .str-chat__message-actions-list-item-button{background:var(--str-chat__message-actions-box-item-background-color);color:var(--str-chat__message-actions-box-item-color);box-shadow:var(--str-chat__message-actions-box-item-box-shadow);border-radius:var(--str-chat__message-actions-box-item-border-radius);-webkit-border-before:var(--str-chat__message-actions-box-item-border-block-start);border-block-start:var(--str-chat__message-actions-box-item-border-block-start);-webkit-border-after:var(--str-chat__message-actions-box-item-border-block-end);border-block-end:var(--str-chat__message-actions-box-item-border-block-end);-webkit-border-start:var(--str-chat__message-actions-box-item-border-inline-start);border-inline-start:var(--str-chat__message-actions-box-item-border-inline-start);-webkit-border-end:var(--str-chat__message-actions-box-item-border-inline-end);border-inline-end:var(--str-chat__message-actions-box-item-border-inline-end);font:var(--str-chat__subtitle-text)}.str-chat__message-actions-box .str-chat__message-actions-list-item-button:hover{background-color:var(--str-chat__message-actions-box-item-hover-background-color)}@media(hover: none){.str-chat__message-actions-box .str-chat__message-actions-list-item-button:hover{background-color:rgba(0,0,0,0)}}.str-chat{--str-chat__message-bounce-edit-button-color: var(--str-chat__primary-color);--str-chat__message-bounce-send-button-color: var(--str-chat__primary-color);--str-chat__message-bounce-delete-button-color: var(--str-chat__primary-color);--str-chat__message-bounce-button-background-color: transparent;--str-chat__message-bounce-button-border-block-start: none;--str-chat__message-bounce-button-border-block-end: none;--str-chat__message-bounce-button-border-inline-start: none;--str-chat__message-bounce-button-border-inline-end: none;--str-chat__message-bounce-button-box-shadow: none}.str-chat__message-bounce-prompt .str-chat__message-bounce-edit,.str-chat__message-bounce-prompt .str-chat__message-bounce-send,.str-chat__message-bounce-prompt .str-chat__message-bounce-delete{background:var(--str-chat__message-bounce-button-background-color);color:var(--str-chat__message-bounce-button-color);box-shadow:var(--str-chat__message-bounce-button-box-shadow);border-radius:var(--str-chat__message-bounce-button-border-radius);-webkit-border-before:var(--str-chat__message-bounce-button-border-block-start);border-block-start:var(--str-chat__message-bounce-button-border-block-start);-webkit-border-after:var(--str-chat__message-bounce-button-border-block-end);border-block-end:var(--str-chat__message-bounce-button-border-block-end);-webkit-border-start:var(--str-chat__message-bounce-button-border-inline-start);border-inline-start:var(--str-chat__message-bounce-button-border-inline-start);-webkit-border-end:var(--str-chat__message-bounce-button-border-inline-end);border-inline-end:var(--str-chat__message-bounce-button-border-inline-end);font:var(--str-chat__body-medium-text)}.str-chat__message-bounce-prompt .str-chat__message-bounce-edit{color:var(--str-chat__message-bounce-edit-button-color)}.str-chat__message-bounce-prompt .str-chat__message-bounce-send{color:var(--str-chat__message-bounce-send-button-color)}.str-chat__message-bounce-prompt .str-chat__message-bounce-delete{color:var(--str-chat__message-bounce-delete-button-color)}.str-chat{--str-chat__message-input-border-radius: 0;--str-chat__message-input-color: var(--str-chat__text-color);--str-chat__message-input-background-color: var(--str-chat__secondary-background-color);--str-chat__message-input-border-block-start: none;--str-chat__message-input-border-block-end: none;--str-chat__message-input-border-inline-start: none;--str-chat__message-input-border-inline-end: none;--str-chat__message-input-box-shadow: none;--str-chat__dropzone-container-color: var(--str-chat__on-primary-color);--str-chat__dropzone-container-background-color: var(--str-chat__primary-overlay-color);--str-chat__dropzone-container-backdrop-filter: blur(3px);--str-chat__message-textarea-border-radius: var(--str-chat__border-radius-md);--str-chat__message-textarea-color: var(--str-chat__text-color);--str-chat__message-textarea-background-color: transparent;--str-chat__message-textarea-border-block-start: 1px solid var(--str-chat__surface-color);--str-chat__message-textarea-border-block-end: 1px solid var(--str-chat__surface-color);--str-chat__message-textarea-border-inline-start: 1px solid var(--str-chat__surface-color);--str-chat__message-textarea-border-inline-end: 1px solid var(--str-chat__surface-color);--str-chat__message-textarea-box-shadow: none;--str-chat__message-send-border-radius: var(--str-chat__border-radius-circle);--str-chat__message-send-color: var(--str-chat__primary-color);--str-chat__message-send-background-color: transparent;--str-chat__message-send-border-block-start: 0;--str-chat__message-send-border-block-end: 0;--str-chat__message-send-border-inline-start: 0;--str-chat__message-send-border-inline-end: 0;--str-chat__message-send-box-shadow: none;--str-chat__message-send-disabled-color: var(--str-chat__disabled-color);--str-chat__message-send-disabled-background-color: var(--str-chat__disabled-color);--str-chat__start-recording-audio-button-border-radius: var(--str-chat__border-radius-circle);--str-chat__start-recording-audio-button-color: var(--str-chat__text-low-emphasis-color);--str-chat__start-recording-audio-button-background-color: transparent;--str-chat__start-recording-audio-button-border-block-start: 0;--str-chat__start-recording-audio-button-border-block-end: 0;--str-chat__start-recording-audio-button-border-inline-start: 0;--str-chat__start-recording-audio-button-border-inline-end: 0;--str-chat__start-recording-audio-button-box-shadow: none;--str-chat__start-recording-audio-button-disabled-color: var(--str-chat__disabled-color);--str-chat__start-recording-audio-button-disabled-background-color: transparent;--str-chat__message-input-tools-border-radius: var(--str-chat__border-radius-circle);--str-chat__message-input-tools-color: var(--str-chat__text-low-emphasis-color);--str-chat__message-input-tools-background-color: transparent;--str-chat__message-input-tools-border-block-start: 0;--str-chat__message-input-tools-border-block-end: 0;--str-chat__message-input-tools-border-inline-start: 0;--str-chat__message-input-tools-border-inline-end: 0;--str-chat__message-input-tools-box-shadow: none;--str-chat__message-input-not-allowed-color: var(--str-chat__disabled-color);--str-chat__cooldown-border-radius: var(--str-chat__border-radius-circle);--str-chat__cooldown-color: var(--str-chat__on-disabled-color);--str-chat__cooldown-background-color: var(--str-chat__disabled-color);--str-chat__cooldown-border-block-start: 0;--str-chat__cooldown-border-block-end: 0;--str-chat__cooldown-border-inline-start: 0;--str-chat__cooldown-border-inline-end: 0;--str-chat__cooldown-box-shadow: none;--str-chat__attachment-selector-button-icon-color: var(--str-chat__text-low-emphasis-color);--str-chat__attachment-selector-button-icon-color-hover: var(--str-chat__primary-color);--str-chat__attachment-selector-actions-menu-button-icon-color: var(--str-chat__primary-color);--str-chat__attachment-selector-actions-menu-button-icon-color-active: var(--str-chat__primary-color)}.str-chat__message-input{background:var(--str-chat__message-input-background-color);color:var(--str-chat__message-input-color);box-shadow:var(--str-chat__message-input-box-shadow);border-radius:var(--str-chat__message-input-border-radius);-webkit-border-before:var(--str-chat__message-input-border-block-start);border-block-start:var(--str-chat__message-input-border-block-start);-webkit-border-after:var(--str-chat__message-input-border-block-end);border-block-end:var(--str-chat__message-input-border-block-end);-webkit-border-start:var(--str-chat__message-input-border-inline-start);border-inline-start:var(--str-chat__message-input-border-inline-start);-webkit-border-end:var(--str-chat__message-input-border-inline-end);border-inline-end:var(--str-chat__message-input-border-inline-end)}.str-chat__message-input .str-chat__dropzone-container{background-color:var(--str-chat__dropzone-container-background-color);color:var(--str-chat__dropzone-container-color);-webkit-backdrop-filter:var(--str-chat__dropzone-container-backdrop-filter);backdrop-filter:var(--str-chat__dropzone-container-backdrop-filter);font:var(--str-chat__subtitle-text)}.str-chat__message-input .str-chat__file-input-container{--str-chat-icon-color: var(--str-chat__message-input-tools-color);background:var(--str-chat__message-input-tools-background-color);color:var(--str-chat__message-input-tools-color);box-shadow:var(--str-chat__message-input-tools-box-shadow);border-radius:var(--str-chat__message-input-tools-border-radius);-webkit-border-before:var(--str-chat__message-input-tools-border-block-start);border-block-start:var(--str-chat__message-input-tools-border-block-start);-webkit-border-after:var(--str-chat__message-input-tools-border-block-end);border-block-end:var(--str-chat__message-input-tools-border-block-end);-webkit-border-start:var(--str-chat__message-input-tools-border-inline-start);border-inline-start:var(--str-chat__message-input-tools-border-inline-start);-webkit-border-end:var(--str-chat__message-input-tools-border-inline-end);border-inline-end:var(--str-chat__message-input-tools-border-inline-end)}.str-chat__message-input .str-chat__file-input-container svg path{fill:var(--str-chat__message-input-tools-color)}.str-chat__message-input .str-chat__attachment-preview-image-error svg path{fill:var(--str-chat__primary-color)}.str-chat__message-input .str-chat__message-textarea-container{background:var(--str-chat__message-textarea-background-color);color:var(--str-chat__message-textarea-color);box-shadow:var(--str-chat__message-textarea-box-shadow);border-radius:var(--str-chat__message-textarea-border-radius);-webkit-border-before:var(--str-chat__message-textarea-border-block-start);border-block-start:var(--str-chat__message-textarea-border-block-start);-webkit-border-after:var(--str-chat__message-textarea-border-block-end);border-block-end:var(--str-chat__message-textarea-border-block-end);-webkit-border-start:var(--str-chat__message-textarea-border-inline-start);border-inline-start:var(--str-chat__message-textarea-border-inline-start);-webkit-border-end:var(--str-chat__message-textarea-border-inline-end);border-inline-end:var(--str-chat__message-textarea-border-inline-end)}.str-chat__message-input .str-chat__message-textarea-container .str-chat__message-textarea{resize:none;border:none;color:var(--str-chat__message-textarea-color);background-color:rgba(0,0,0,0);box-shadow:none;outline:none;font:var(--str-chat__subtitle-text)}.str-chat__message-input .str-chat__send-button{--str-chat-icon-color: var(--str-chat__message-send-color);background:var(--str-chat__message-send-background-color);color:var(--str-chat__message-send-color);box-shadow:var(--str-chat__message-send-box-shadow);border-radius:var(--str-chat__message-send-border-radius);-webkit-border-before:var(--str-chat__message-send-border-block-start);border-block-start:var(--str-chat__message-send-border-block-start);-webkit-border-after:var(--str-chat__message-send-border-block-end);border-block-end:var(--str-chat__message-send-border-block-end);-webkit-border-start:var(--str-chat__message-send-border-inline-start);border-inline-start:var(--str-chat__message-send-border-inline-start);-webkit-border-end:var(--str-chat__message-send-border-inline-end);border-inline-end:var(--str-chat__message-send-border-inline-end)}.str-chat__message-input .str-chat__send-button svg path{fill:var(--str-chat__message-send-color)}.str-chat__message-input .str-chat__send-button:disabled{--str-chat-icon-color: var(--str-chat__message-send-disabled-color);background-color:rgba(0,0,0,0)}.str-chat__message-input .str-chat__send-button:disabled svg path{fill:var(--str-chat__message-send-disabled-color)}.str-chat__message-input .str-chat__start-recording-audio-button{--str-chat-icon-color: var(--str-chat__start-recording-audio-button-color);background:var(--str-chat__start-recording-audio-button-background-color);color:var(--str-chat__start-recording-audio-button-color);box-shadow:var(--str-chat__start-recording-audio-button-box-shadow);border-radius:var(--str-chat__start-recording-audio-button-border-radius);-webkit-border-before:var(--str-chat__start-recording-audio-button-border-block-start);border-block-start:var(--str-chat__start-recording-audio-button-border-block-start);-webkit-border-after:var(--str-chat__start-recording-audio-button-border-block-end);border-block-end:var(--str-chat__start-recording-audio-button-border-block-end);-webkit-border-start:var(--str-chat__start-recording-audio-button-border-inline-start);border-inline-start:var(--str-chat__start-recording-audio-button-border-inline-start);-webkit-border-end:var(--str-chat__start-recording-audio-button-border-inline-end);border-inline-end:var(--str-chat__start-recording-audio-button-border-inline-end)}.str-chat__message-input .str-chat__start-recording-audio-button:disabled{background-color:var(--str-chat__message-send-disabled-background-color)}.str-chat__message-input .str-chat__message-input-cooldown{background:var(--str-chat__cooldown-background-color);color:var(--str-chat__cooldown-color);box-shadow:var(--str-chat__cooldown-box-shadow);border-radius:var(--str-chat__cooldown-border-radius);-webkit-border-before:var(--str-chat__cooldown-border-block-start);border-block-start:var(--str-chat__cooldown-border-block-start);-webkit-border-after:var(--str-chat__cooldown-border-block-end);border-block-end:var(--str-chat__cooldown-border-block-end);-webkit-border-start:var(--str-chat__cooldown-border-inline-start);border-inline-start:var(--str-chat__cooldown-border-inline-start);-webkit-border-end:var(--str-chat__cooldown-border-inline-end);border-inline-end:var(--str-chat__cooldown-border-inline-end);font:var(--str-chat__subtitle-medium-text)}.str-chat__message-input .str-chat__message-input-not-allowed{color:var(--str-chat__message-input-not-allowed-color);font:var(--str-chat__subtitle-text)}.str-chat__message-input .str-chat__quoted-message-preview-header .str-chat__quoted-message-reply-to-message{font:var(--str-chat__subtitle-medium-text)}.str-chat__message-input .str-chat__quoted-message-preview-header .str-chat__quoted-message-remove{background-color:rgba(0,0,0,0);border:none}.str-chat__message-input .str-chat__quoted-message-preview-header .str-chat__quoted-message-remove svg path{fill:var(--str-chat__message-input-tools-color)}.str-chat__message-input .str-chat__recording-permission-denied-notification{background-color:var(--str-chat__text-color);border-radius:var(--str-chat__border-radius-md);color:var(--str-chat__background-color)}.str-chat__message-input .str-chat__recording-permission-denied-notification .str-chat__recording-permission-denied-notification__heading,.str-chat__message-input .str-chat__recording-permission-denied-notification .str-chat__recording-permission-denied-notification__dismiss-button{font:var(--str-chat__subtitle2-medium-text)}.str-chat__message-input .str-chat__recording-permission-denied-notification .str-chat__recording-permission-denied-notification__message{font:var(--str-chat__subtitle-text)}.str-chat__message-input .str-chat__recording-permission-denied-notification .str-chat__recording-permission-denied-notification__dismiss-button{background:none;border:none;color:var(--str-chat__background-color);cursor:pointer;text-transform:uppercase}.str-chat__attachment-selector .str-chat__attachment-selector__menu-button .str-chat__attachment-selector__menu-button__icon{background-color:var(--str-chat__attachment-selector-button-icon-color);-webkit-mask:var(--str-chat__add-attachment-icon) no-repeat center/contain;mask:var(--str-chat__add-attachment-icon) no-repeat center/contain}.str-chat__attachment-selector .str-chat__attachment-selector__menu-button:hover .str-chat__attachment-selector__menu-button__icon{background-color:var(--str-chat__attachment-selector-button-icon-color-hover)}.str-chat__attachment-selector-actions-menu .str-chat__attachment-selector-actions-menu__button{color:var(--str-chat__text-low-emphasis-color)}.str-chat__attachment-selector-actions-menu .str-chat__attachment-selector-actions-menu__button .str-chat__dialog-menu__button-icon{background-color:var(--str-chat__attachment-selector-actions-menu-button-icon-color)}.str-chat__attachment-selector-actions-menu .str-chat__attachment-selector-actions-menu__button:hover,.str-chat__attachment-selector-actions-menu .str-chat__attachment-selector-actions-menu__button:focus{color:var(--str-chat__text-color)}.str-chat__attachment-selector-actions-menu .str-chat__attachment-selector-actions-menu__button:hover .str-chat__dialog-menu__button-icon,.str-chat__attachment-selector-actions-menu .str-chat__attachment-selector-actions-menu__button:focus .str-chat__dialog-menu__button-icon{background-color:var(--str-chat__attachment-selector-actions-menu-button-icon-color-active)}.str-chat__attachment-selector-actions-menu .str-chat__attachment-selector-actions-menu__upload-file-button .str-chat__dialog-menu__button-icon{-webkit-mask:var(--str-chat__folder-icon) no-repeat center/contain;mask:var(--str-chat__folder-icon) no-repeat center/contain}.str-chat__attachment-selector-actions-menu .str-chat__attachment-selector-actions-menu__create-poll-button .str-chat__dialog-menu__button-icon{-webkit-mask:var(--str-chat__poll-icon) no-repeat center/contain;mask:var(--str-chat__poll-icon) no-repeat center/contain}.str-chat{--str-chat__message-list-border-radius: 0;--str-chat__message-list-color: var(--str-chat__text-color);--str-chat__message-list-background-color: var(--str-chat__background-color);--str-chat__message-list-box-shadow: none;--str-chat__message-list-border-block-start: none;--str-chat__message-list-border-block-end: none;--str-chat__message-list-border-inline-start: none;--str-chat__message-list-border-inline-end: none;--str-chat__jump-to-latest-message-border-radius: var(--str-chat__circle-fab-border-radius);--str-chat__jump-to-latest-message-color: var(--str-chat__circle-fab-color);--str-chat__jump-to-latest-message-background-color: var(--str-chat__circle-fab-background-color);--str-chat__jump-to-latest-message-pressed-background-color: var( --str-chat__circle-fab-pressed-background-color );--str-chat__jump-to-latest-message-box-shadow: var(--str-chat__circle-fab-box-shadow);--str-chat__jump-to-latest-message-border-block-start: var( --str-chat__circle-fab-border-block-start );--str-chat__jump-to-latest-message-border-block-end: var(--str-chat__circle-fab-border-block-end);--str-chat__jump-to-latest-message-border-inline-start: var( --str-chat__circle-fab-border-inline-start );--str-chat__jump-to-latest-message-border-inline-end: var( --str-chat__circle-fab-border-inline-end );--str-chat__jump-to-latest-message-unread-count-background-color: var( --str-chat__jump-to-latest-message-color );--str-chat__jump-to-latest-message-unread-count-color: var( --str-chat__jump-to-latest-message-background-color );--str-chat__thread-head-start-color: var(--str-chat__text-low-emphasis-color);--str-chat__thread-head-start-border-block-end-color: var(--str-chat__surface-color)}.str-chat__list{background:var(--str-chat__message-list-background-color);color:var(--str-chat__message-list-color);box-shadow:var(--str-chat__message-list-box-shadow);border-radius:var(--str-chat__message-list-border-radius);-webkit-border-before:var(--str-chat__message-list-border-block-start);border-block-start:var(--str-chat__message-list-border-block-start);-webkit-border-after:var(--str-chat__message-list-border-block-end);border-block-end:var(--str-chat__message-list-border-block-end);-webkit-border-start:var(--str-chat__message-list-border-inline-start);border-inline-start:var(--str-chat__message-list-border-inline-start);-webkit-border-end:var(--str-chat__message-list-border-inline-end);border-inline-end:var(--str-chat__message-list-border-inline-end)}.str-chat__list .str-chat__parent-message-li{-webkit-border-after:1px solid var(--str-chat__thread-head-start-border-block-end-color);border-block-end:1px solid var(--str-chat__thread-head-start-border-block-end-color)}.str-chat__list .str-chat__parent-message-li .str-chat__thread-start{color:var(--str-chat__thread-head-start-color);font:var(--str-chat__subtitle-text)}.str-chat__jump-to-latest-message{--str-chat-icon-color: var(--str-chat__jump-to-latest-message-unread-count-background-color)}.str-chat__jump-to-latest-message .str-chat__circle-fab{background:var(--str-chat__jump-to-latest-message-background-color);color:var(--str-chat__jump-to-latest-message-color);box-shadow:var(--str-chat__jump-to-latest-message-box-shadow);border-radius:var(--str-chat__jump-to-latest-message-border-radius);-webkit-border-before:var(--str-chat__jump-to-latest-message-border-block-start);border-block-start:var(--str-chat__jump-to-latest-message-border-block-start);-webkit-border-after:var(--str-chat__jump-to-latest-message-border-block-end);border-block-end:var(--str-chat__jump-to-latest-message-border-block-end);-webkit-border-start:var(--str-chat__jump-to-latest-message-border-inline-start);border-inline-start:var(--str-chat__jump-to-latest-message-border-inline-start);-webkit-border-end:var(--str-chat__jump-to-latest-message-border-inline-end);border-inline-end:var(--str-chat__jump-to-latest-message-border-inline-end)}.str-chat__jump-to-latest-message .str-chat__circle-fab svg path{fill:var(--str-chat__jump-to-latest-message-color)}.str-chat__jump-to-latest-message .str-chat__circle-fab:active{background-color:var(--str-chat__jump-to-latest-message-pressed-background-color)}.str-chat__jump-to-latest-message .str-chat__circle-fab .str-chat__jump-to-latest-unread-count{background-color:var(--str-chat__jump-to-latest-message-unread-count-background-color);color:var(--str-chat__jump-to-latest-message-unread-count-color);border-radius:var(--str-chat__jump-to-latest-message-border-radius);font:var(--str-chat__caption-text)}.str-chat{--str-chat__virtual-list-border-radius: 0;--str-chat__virtual-list-color: var(--str-chat__text-color);--str-chat__virtual-list-background-color: var(--str-chat__background-color);--str-chat__virtual-list-box-shadow: none;--str-chat__virtual-list-border-block-start: none;--str-chat__virtual-list-border-block-end: none;--str-chat__virtual-list-border-inline-start: none;--str-chat__virtual-list-border-inline-end: none}.str-chat__virtual-list{background:var(--str-chat__virtual-list-background-color);color:var(--str-chat__virtual-list-color);box-shadow:var(--str-chat__virtual-list-box-shadow);border-radius:var(--str-chat__virtual-list-border-radius);-webkit-border-before:var(--str-chat__virtual-list-border-block-start);border-block-start:var(--str-chat__virtual-list-border-block-start);-webkit-border-after:var(--str-chat__virtual-list-border-block-end);border-block-end:var(--str-chat__virtual-list-border-block-end);-webkit-border-start:var(--str-chat__virtual-list-border-inline-start);border-inline-start:var(--str-chat__virtual-list-border-inline-start);-webkit-border-end:var(--str-chat__virtual-list-border-inline-end);border-inline-end:var(--str-chat__virtual-list-border-inline-end)}.str-chat__virtual-list .str-chat__parent-message-li{-webkit-border-after:1px solid var(--str-chat__thread-head-start-border-block-end-color);border-block-end:1px solid var(--str-chat__thread-head-start-border-block-end-color)}.str-chat__virtual-list .str-chat__parent-message-li .str-chat__thread-start{color:var(--str-chat__thread-head-start-color);font:var(--str-chat__subtitle-text)}.str-chat{--str-chat__message-reactions-border-radius: none;--str-chat__message-reactions-color: var(--str-chat__text-color);--str-chat__message-reactions-background-color: transparent;--str-chat__message-reactions-border-block-start: none;--str-chat__message-reactions-border-block-end: none;--str-chat__message-reactions-border-inline-start: none;--str-chat__message-reactions-border-inline-end: none;--str-chat__message-reactions-box-shadow: none;--str-chat__message-reaction-border-radius: var(--str-chat__border-radius-xs);--str-chat__message-reaction-color: var(--str-chat__text-color);--str-chat__message-reaction-background-color: var(--str-chat__tertiary-surface-color);--str-chat__message-reaction-border-block-start: none;--str-chat__message-reaction-border-block-end: none;--str-chat__message-reaction-border-inline-start: none;--str-chat__message-reaction-border-inline-end: none;--str-chat__message-reaction-box-shadow: none;--str-chat__own-message-reaction-color: var(--str-chat__text-color);--str-chat__own-message-reaction-background-color: var( --str-chat__primary-surface-color-low-emphasis );--str-chat__messsage-reactions-details--selected-color: solid var(--str-chat__primary-color)}.str-chat__message-reactions-container .str-chat__message-reactions{background:var(--str-chat__message-reactions-background-color);color:var(--str-chat__message-reactions-color);box-shadow:var(--str-chat__message-reactions-box-shadow);border-radius:var(--str-chat__message-reactions-border-radius);-webkit-border-before:var(--str-chat__message-reactions-border-block-start);border-block-start:var(--str-chat__message-reactions-border-block-start);-webkit-border-after:var(--str-chat__message-reactions-border-block-end);border-block-end:var(--str-chat__message-reactions-border-block-end);-webkit-border-start:var(--str-chat__message-reactions-border-inline-start);border-inline-start:var(--str-chat__message-reactions-border-inline-start);-webkit-border-end:var(--str-chat__message-reactions-border-inline-end);border-inline-end:var(--str-chat__message-reactions-border-inline-end)}.str-chat__message-reactions-container .str-chat__message-reactions .str-chat__message-reaction{background:var(--str-chat__message-reaction-background-color);color:var(--str-chat__message-reaction-color);box-shadow:var(--str-chat__message-reaction-box-shadow);border-radius:var(--str-chat__message-reaction-border-radius);-webkit-border-before:var(--str-chat__message-reaction-border-block-start);border-block-start:var(--str-chat__message-reaction-border-block-start);-webkit-border-after:var(--str-chat__message-reaction-border-block-end);border-block-end:var(--str-chat__message-reaction-border-block-end);-webkit-border-start:var(--str-chat__message-reaction-border-inline-start);border-inline-start:var(--str-chat__message-reaction-border-inline-start);-webkit-border-end:var(--str-chat__message-reaction-border-inline-end);border-inline-end:var(--str-chat__message-reaction-border-inline-end);font:var(--str-chat__caption-text)}.str-chat__message-reactions-container .str-chat__message-reactions .str-chat__message-reaction.str-chat__message-reaction-own{color:var(--str-chat__own-message-reaction-color);background-color:var(--str-chat__own-message-reaction-background-color)}.str-chat__message-reactions-details .str-chat__message-reactions-details-reaction-type{-webkit-border-after:solid rgba(0,0,0,0);border-block-end:solid rgba(0,0,0,0)}.str-chat__message-reactions-details .str-chat__message-reactions-details-reaction-type--selected{-webkit-border-after:var(--str-chat__messsage-reactions-details--selected-color);border-block-end:var(--str-chat__messsage-reactions-details--selected-color)}.str-chat__message-reactions-details .str-chat__message-reactions-details-reacting-user{font:var(--str-chat__subtitle-text)}.str-chat{--str-chat__message-reactions-options-border-radius: var(--str-chat__border-radius-circle);--str-chat__message-reactions-options-color: var(--str-chat__text-color);--str-chat__message-reactions-options-background-color: var( --str-chat__secondary-background-color );--str-chat__message-reactions-options-border-block-start: none;--str-chat__message-reactions-options-border-block-end: none;--str-chat__message-reactions-options-border-inline-start: none;--str-chat__message-reactions-options-border-inline-end: none;--str-chat__message-reactions-options-box-shadow: 0 0 8px var(--str-chat__box-shadow-color);--str-chat__message-reactions-option-border-radius: var(--str-chat__border-radius-md);--str-chat__message-reactions-option-color: var(--str-chat__text-color);--str-chat__message-reactions-option-background-color: var( --str-chat__secondary-background-color );--str-chat__message-reactions-option-hover-background-color: var( --str-chat__primary-surface-color );--str-chat__message-reactions-option-selected-background-color: var( --str-chat__primary-color-low-emphasis );--str-chat__message-reactions-option-border-block-start: none;--str-chat__message-reactions-option-border-block-end: none;--str-chat__message-reactions-option-border-inline-start: none;--str-chat__message-reactions-option-border-inline-end: none;--str-chat__message-reactions-option-box-shadow: none}.str-chat .str-chat-angular-v5__reaction-selector{--str-chat__message-reactions-options-box-shadow: none;--str-chat__message-reactions-options-border-radius: 0}.str-chat__reaction-selector .str-chat__message-reactions-options{background:var(--str-chat__message-reactions-options-background-color);color:var(--str-chat__message-reactions-options-color);box-shadow:var(--str-chat__message-reactions-options-box-shadow);border-radius:var(--str-chat__message-reactions-options-border-radius);-webkit-border-before:var(--str-chat__message-reactions-options-border-block-start);border-block-start:var(--str-chat__message-reactions-options-border-block-start);-webkit-border-after:var(--str-chat__message-reactions-options-border-block-end);border-block-end:var(--str-chat__message-reactions-options-border-block-end);-webkit-border-start:var(--str-chat__message-reactions-options-border-inline-start);border-inline-start:var(--str-chat__message-reactions-options-border-inline-start);-webkit-border-end:var(--str-chat__message-reactions-options-border-inline-end);border-inline-end:var(--str-chat__message-reactions-options-border-inline-end)}.str-chat__reaction-selector .str-chat__message-reactions-options .str-chat__message-reactions-option{background:var(--str-chat__message-reactions-option-background-color);color:var(--str-chat__message-reactions-option-color);box-shadow:var(--str-chat__message-reactions-option-box-shadow);border-radius:var(--str-chat__message-reactions-option-border-radius);-webkit-border-before:var(--str-chat__message-reactions-option-border-block-start);border-block-start:var(--str-chat__message-reactions-option-border-block-start);-webkit-border-after:var(--str-chat__message-reactions-option-border-block-end);border-block-end:var(--str-chat__message-reactions-option-border-block-end);-webkit-border-start:var(--str-chat__message-reactions-option-border-inline-start);border-inline-start:var(--str-chat__message-reactions-option-border-inline-start);-webkit-border-end:var(--str-chat__message-reactions-option-border-inline-end);border-inline-end:var(--str-chat__message-reactions-option-border-inline-end)}.str-chat__reaction-selector .str-chat__message-reactions-options .str-chat__message-reactions-option:hover{background-color:var(--str-chat__message-reactions-option-hover-background-color)}.str-chat__reaction-selector .str-chat__message-reactions-options .str-chat__message-reactions-option.str-chat__message-reactions-option-selected{background-color:var(--str-chat__message-reactions-option-selected-background-color)}@media(hover: none){.str-chat__reaction-selector .str-chat__message-reactions-options .str-chat__message-reactions-option:hover{background-color:rgba(0,0,0,0)}}.str-chat{--str-chat__modal-border-radius: var(--str-chat__border-radius-sm);--str-chat__modal-color: var(--str-chat__text-color);--str-chat__modal-background-color: var(--str-chat__secondary-background-color);--str-chat__modal-overlay-color: var(--str-chat__secondary-overlay-color);--str-chat__modal-overlay-backdrop-filter: blur(3px);--str-chat__modal-border-block-start: none;--str-chat__modal-border-block-end: none;--str-chat__modal-border-inline-start: none;--str-chat__modal-border-inline-end: none;--str-chat__modal-box-shadow: none;--str-chat__modal-close-icon-background: var(--str-chat__text-low-emphasis-color);--str-chat__modal-close-icon-color: var(--str-chat__on-disabled-color)}.str-chat__modal{background-color:var(--str-chat__modal-overlay-color);-webkit-backdrop-filter:var(--str-chat__modal-overlay-backdrop-filter);backdrop-filter:var(--str-chat__modal-overlay-backdrop-filter)}.str-chat__modal .str-chat__modal__inner{background:var(--str-chat__modal-background-color);color:var(--str-chat__modal-color);box-shadow:var(--str-chat__modal-box-shadow);border-radius:var(--str-chat__modal-border-radius);-webkit-border-before:var(--str-chat__modal-border-block-start);border-block-start:var(--str-chat__modal-border-block-start);-webkit-border-after:var(--str-chat__modal-border-block-end);border-block-end:var(--str-chat__modal-border-block-end);-webkit-border-start:var(--str-chat__modal-border-inline-start);border-inline-start:var(--str-chat__modal-border-inline-start);-webkit-border-end:var(--str-chat__modal-border-inline-end);border-inline-end:var(--str-chat__modal-border-inline-end)}.str-chat__modal .str-chat__modal-header .str-chat__modal-header__title{font:var(--str-chat__subtitle2-medium-text)}.str-chat__modal .str-chat__modal__close-button{--str-chat-icon-color: var(--str-chat__modal-close-icon-color);background:none;border:none}.str-chat__modal .str-chat__modal__close-button .str-chat__icon{background-color:var(--str-chat__modal-close-icon-background);border-radius:999px}.str-chat__modal .str-chat__modal__close-button svg path{fill:var(--str-chat__modal-close-icon-color)}.str-chat__modal .str-chat__modal__close-button svg rect,.str-chat__modal .str-chat__modal__close-button svg circle{fill:var(--str-chat__modal-close-icon-background)}.str-chat__message-attachment--card .str-chat__modal--open .str-chat__modal__inner.str-chat-react__modal__inner,.str-chat__message-attachment--image .str-chat__modal--open .str-chat__modal__inner.str-chat-react__modal__inner,.str-chat__message-attachment--gallery .str-chat__modal--open .str-chat__modal__inner.str-chat-react__modal__inner{background-color:rgba(0,0,0,0);width:unset;height:unset;padding:0}.str-chat__message-attachment--card .str-chat__modal--open .str-chat__modal__inner.str-chat-react__modal__inner img,.str-chat__message-attachment--image .str-chat__modal--open .str-chat__modal__inner.str-chat-react__modal__inner img,.str-chat__message-attachment--gallery .str-chat__modal--open .str-chat__modal__inner.str-chat-react__modal__inner img{max-width:unset;max-height:calc(100vh - 80px);cursor:default}.str-chat{--str-chat__message-notification-background-color: var(--str-chat__primary-color);--str-chat__message-notification-border-block-start: none;--str-chat__message-notification-border-block-end: none;--str-chat__message-notification-border-inline-start: none;--str-chat__message-notification-border-inline-end: none;--str-chat__message-notification-border-radius: 50px;--str-chat__message-notification-box-shadow: none;--str-chat__message-notification-color: var(--str-chat__on-primary-color)}.str-chat__message-notification{background:var(--str-chat__message-notification-background-color);color:var(--str-chat__message-notification-color);box-shadow:var(--str-chat__message-notification-box-shadow);border-radius:var(--str-chat__message-notification-border-radius);-webkit-border-before:var(--str-chat__message-notification-border-block-start);border-block-start:var(--str-chat__message-notification-border-block-start);-webkit-border-after:var(--str-chat__message-notification-border-block-end);border-block-end:var(--str-chat__message-notification-border-block-end);-webkit-border-start:var(--str-chat__message-notification-border-inline-start);border-inline-start:var(--str-chat__message-notification-border-inline-start);-webkit-border-end:var(--str-chat__message-notification-border-inline-end);border-inline-end:var(--str-chat__message-notification-border-inline-end);font:var(--str-chat__caption-text);cursor:pointer}.str-chat{--str-chat__notification-list-border-radius: none;--str-chat__notification-list-color: var(--str-chat__notification-list-text-color);--str-chat__notification-list-background-color: transparent;--str-chat__notification-list-border-block-start: none;--str-chat__notification-list-border-block-end: none;--str-chat__notification-list-border-inline-start: none;--str-chat__notification-list-border-inline-end: none;--str-chat__notification-list-box-shadow: none}.str-chat__list-notifications{background:var(--str-chat__notification-list-background-color);color:var(--str-chat__notification-list-color);box-shadow:var(--str-chat__notification-list-box-shadow);border-radius:var(--str-chat__notification-list-border-radius);-webkit-border-before:var(--str-chat__notification-list-border-block-start);border-block-start:var(--str-chat__notification-list-border-block-start);-webkit-border-after:var(--str-chat__notification-list-border-block-end);border-block-end:var(--str-chat__notification-list-border-block-end);-webkit-border-start:var(--str-chat__notification-list-border-inline-start);border-inline-start:var(--str-chat__notification-list-border-inline-start);-webkit-border-end:var(--str-chat__notification-list-border-inline-end);border-inline-end:var(--str-chat__notification-list-border-inline-end)}.str-chat{--str-chat__notification-border-radius: var(--str-chat__border-radius-sm);--str-chat__notification-color: var(--str-chat__opaque-surface-text-color);--str-chat__notification-background-color: var(--str-chat__opaque-surface-background-color);--str-chat__notification-border-block-start: none;--str-chat__notification-border-block-end: none;--str-chat__notification-border-inline-start: none;--str-chat__notification-border-inline-end: none;--str-chat__notification-box-shadow: 0 0 8px var(--str-chat__box-shadow-color)}.str-chat__notification{background:var(--str-chat__notification-background-color);color:var(--str-chat__notification-color);box-shadow:var(--str-chat__notification-box-shadow);border-radius:var(--str-chat__notification-border-radius);-webkit-border-before:var(--str-chat__notification-border-block-start);border-block-start:var(--str-chat__notification-border-block-start);-webkit-border-after:var(--str-chat__notification-border-block-end);border-block-end:var(--str-chat__notification-border-block-end);-webkit-border-start:var(--str-chat__notification-border-inline-start);border-inline-start:var(--str-chat__notification-border-inline-start);-webkit-border-end:var(--str-chat__notification-border-inline-end);border-inline-end:var(--str-chat__notification-border-inline-end);font:var(--str-chat__subtitle-text)}.str-chat__poll .str-chat__poll-header .str-chat__poll-subtitle{color:var(--str-chat__text-low-emphasis-color)}.str-chat__poll .str-chat__checkmark{border-radius:var(--str-chat__border-radius-circle);border:1px solid var(--str-chat__disabled-color)}.str-chat__poll .str-chat__checkmark--checked{background-color:var(--str-chat__primary-color);border:none}.str-chat__poll .str-chat__poll-option-list .str-chat__poll-option.str-chat__poll-option--votable:hover{cursor:pointer}.str-chat__poll .str-chat__poll-option-list .str-chat__poll-option .str-chat__poll-option__votes-bar{background:linear-gradient(to right, var(--str-chat__primary-color) var(--str-chat__amount-bar-fulfillment), var(--str-chat__surface-color) var(--str-chat__amount-bar-fulfillment));border-radius:calc(var(--str-chat__spacing-px)*4)}.str-chat__poll .str-chat__poll-option-list .str-chat__poll-option .str-chat__poll-option__votes-bar--winner{background:linear-gradient(to right, var(--str-chat__info-color) var(--str-chat__amount-bar-fulfillment), var(--str-chat__surface-color) var(--str-chat__amount-bar-fulfillment))}.str-chat__poll .str-chat__poll-option-list--full,.str-chat__poll .str-chat__poll-answer,.str-chat__poll .str-chat__modal__poll-option-list__title,.str-chat__poll .str-chat__modal__poll-results .str-chat__modal__poll-results__title,.str-chat__poll .str-chat__modal__poll-results .str-chat__poll-option{border-radius:.75rem}.str-chat__poll-option-list--full{overflow:clip}.str-chat__poll--closed .str-chat__poll-option:hover{cursor:unset}.str-chat__poll-actions .str-chat__modal .str-chat__poll-answer__text,.str-chat__poll-actions .str-chat__modal .str-chat__modal__poll-option-list__title,.str-chat__poll-actions .str-chat__modal .str-chat__modal__poll-results__title{font:var(--str-chat__subtitle-medium-text)}.str-chat__poll-actions .str-chat__modal .str-chat__poll-option-list--full,.str-chat__poll-actions .str-chat__modal .str-chat__poll-answer,.str-chat__poll-actions .str-chat__modal .str-chat__modal__poll-option-list__title,.str-chat__poll-actions .str-chat__modal .str-chat__modal__poll-results__title,.str-chat__poll-actions .str-chat__modal .str-chat__poll-option{background-color:var(--str-chat__tertiary-surface-color)}.str-chat__poll-actions .str-chat__modal .str-chat__poll-option-list--full .str-chat__poll-option-text{font-weight:500}.str-chat__poll-actions .str-chat__modal .str-chat__poll-option-list--full .str-chat__poll-option--votable:hover{background-color:var(--str-chat__secondary-surface-color)}.str-chat__poll-actions .str-chat__modal .str-chat__poll-option .str-chat__poll-option__header{font:var(--str-chat__subtitle-text)}.str-chat__poll-actions .str-chat__modal .str-chat__poll-option .str-chat__poll-option__header .str-chat__poll-option__option-text{font:var(--str-chat__subtitle-medium-text)}.str-chat__poll-actions .str-chat__modal .str-chat__poll-option .str-chat__poll-option__show-all-votes-button{font:var(--str-chat__subtitle-text);color:var(--str-chat__primary-color)}.str-chat__poll-vote .str-chat__poll-vote__author__name{text-transform:capitalize}.str-chat__poll-vote .str-chat__poll-vote__timestamp{color:var(--str-chat__text-low-emphasis-color)}.str-chat__quoted-poll-preview{font:var(--str-chat__body-medium-text)}.str-chat__poll-creation-dialog .str-chat__form__input-fieldset{border:none}.str-chat__poll-creation-dialog .str-chat__form__expandable-field,.str-chat__poll-creation-dialog .str-chat__form__input-field:not(.str-chat__form__input-field--with-label),.str-chat__poll-creation-dialog .str-chat__form__input-field--with-label .str-chat__form__input-field__value{background-color:var(--str-chat__tertiary-surface-color);border-radius:.75rem}.str-chat__poll-creation-dialog .str-chat__form__expandable-field input,.str-chat__poll-creation-dialog .str-chat__form__input-field:not(.str-chat__form__input-field--with-label) input,.str-chat__poll-creation-dialog .str-chat__form__input-field--with-label .str-chat__form__input-field__value input{border:none;background:rgba(0,0,0,0);outline:none}.str-chat__poll-creation-dialog .str-chat__form__expandable-field input::-webkit-input-placeholder, .str-chat__poll-creation-dialog .str-chat__form__input-field:not(.str-chat__form__input-field--with-label) input::-webkit-input-placeholder, .str-chat__poll-creation-dialog .str-chat__form__input-field--with-label .str-chat__form__input-field__value input::-webkit-input-placeholder{font:var(--str-chat__subtitle-text)}.str-chat__poll-creation-dialog .str-chat__form__expandable-field input,.str-chat__poll-creation-dialog .str-chat__form__expandable-field input::placeholder,.str-chat__poll-creation-dialog .str-chat__form__input-field:not(.str-chat__form__input-field--with-label) input,.str-chat__poll-creation-dialog .str-chat__form__input-field:not(.str-chat__form__input-field--with-label) input::placeholder,.str-chat__poll-creation-dialog .str-chat__form__input-field--with-label .str-chat__form__input-field__value input,.str-chat__poll-creation-dialog .str-chat__form__input-field--with-label .str-chat__form__input-field__value input::placeholder{font:var(--str-chat__subtitle-text)}.str-chat__poll-creation-dialog .str-chat__form__input-field--draggable input{pointer-events:auto}.str-chat__poll-creation-dialog .str-chat__form__input-field--draggable .str-chat__drag-handle{background-color:var(--str-chat__text-low-emphasis-color);-webkit-mask:var(--str-chat__handle-icon) no-repeat center/contain;mask:var(--str-chat__handle-icon) no-repeat center/contain}.str-chat__poll-creation-dialog .str-chat__form__input-field--has-error{border:1px solid var(--str-chat__message-error-message-color)}.str-chat__poll-creation-dialog .str-chat__form__expandable-field .str-chat__form__input-field--has-error{border:none}.str-chat__poll-creation-dialog .str-chat__form__expandable-field .str-chat__form__input-field--has-error .str-chat__form__input-field__value{border:none}.str-chat__poll-creation-dialog .str-chat__form__input-field--with-label.str-chat__form__input-field--has-error{border:none}.str-chat__poll-creation-dialog .str-chat__form__input-field--with-label.str-chat__form__input-field--has-error .str-chat__form__input-field__value{border:1px solid var(--str-chat__message-error-message-color)}.str-chat__poll-creation-dialog .str-chat__form__switch-field{background-color:var(--str-chat__tertiary-surface-color);border-radius:.75rem}.str-chat__poll-creation-dialog .str-chat__form__switch-field,.str-chat__poll-creation-dialog .str-chat__form__switch-field label{cursor:pointer}.str-chat__poll-creation-dialog .str-chat__form__switch-field .str-chat__form__switch-field__switch{cursor:pointer;background-color:var(--str-chat__text-low-emphasis-color);border-radius:100px}.str-chat__poll-creation-dialog .str-chat__form__switch-field .str-chat__form__switch-field__switch .str-chat__form__switch-field__switch-handle{border-radius:var(--str-chat__border-radius-circle);background-color:var(--str-chat__disabled-color)}.str-chat__poll-creation-dialog .str-chat__form__switch-field .str-chat__form__switch-field__switch.str-chat__form__switch-field__switch--on{background-color:var(--str-chat__green600)}.str-chat__poll-creation-dialog .str-chat__form__switch-field .str-chat__form__switch-field__switch.str-chat__form__switch-field__switch--on .str-chat__form__switch-field__switch-handle{background-color:var(--str-chat__background-color);border-radius:var(--str-chat__border-radius-circle)}.str-chat{--str-chat__thread-border-radius: 0;--str-chat__thread-color: var(--str-chat__text-color);--str-chat__thread-background-color: var(--str-chat__secondary-background-color);--str-chat__thread-border-block-start: none;--str-chat__thread-border-block-end: none;--str-chat__thread-border-inline-start: 1px solid var(--str-chat__surface-color);--str-chat__thread-border-inline-end: none;--str-chat__thread-box-shadow: none;--str-chat__thread-header-border-radius: 0;--str-chat__thread-header-color: var(--str-chat__text-color);--str-chat__thread-header-background-color: var(--str-chat__secondary-background-color);--str-chat__thread-header-border-block-start: none;--str-chat__thread-header-border-block-end: none;--str-chat__thread-header-border-inline-start: none;--str-chat__thread-header-border-inline-end: none;--str-chat__thread-header-box-shadow: none;--str-chat__thread-header-info-color: var(--str-chat__text-low-emphasis-color)}.str-chat__thread-container{background:var(--str-chat__thread-background-color);color:var(--str-chat__thread-color);box-shadow:var(--str-chat__thread-box-shadow);border-radius:var(--str-chat__thread-border-radius);-webkit-border-before:var(--str-chat__thread-border-block-start);border-block-start:var(--str-chat__thread-border-block-start);-webkit-border-after:var(--str-chat__thread-border-block-end);border-block-end:var(--str-chat__thread-border-block-end);-webkit-border-start:var(--str-chat__thread-border-inline-start);border-inline-start:var(--str-chat__thread-border-inline-start);-webkit-border-end:var(--str-chat__thread-border-inline-end);border-inline-end:var(--str-chat__thread-border-inline-end)}.str-chat__thread-container .str-chat__thread-header{background:var(--str-chat__thread-header-background-color);color:var(--str-chat__thread-header-color);box-shadow:var(--str-chat__thread-header-box-shadow);border-radius:var(--str-chat__thread-header-border-radius);-webkit-border-before:var(--str-chat__thread-header-border-block-start);border-block-start:var(--str-chat__thread-header-border-block-start);-webkit-border-after:var(--str-chat__thread-header-border-block-end);border-block-end:var(--str-chat__thread-header-border-block-end);-webkit-border-start:var(--str-chat__thread-header-border-inline-start);border-inline-start:var(--str-chat__thread-header-border-inline-start);-webkit-border-end:var(--str-chat__thread-header-border-inline-end);border-inline-end:var(--str-chat__thread-header-border-inline-end)}.str-chat__thread-container .str-chat__thread-header .str-chat__thread-header-name,.str-chat__thread-container .str-chat__thread-header .str-chat__thread-header-title{font:var(--str-chat__subtitle-medium-text)}.str-chat__thread-container .str-chat__thread-header .str-chat__thread-header-channel-name,.str-chat__thread-container .str-chat__thread-header .str-chat__thread-header-subtitle{font:var(--str-chat__body-text);color:var(--str-chat__thread-header-info-color)}.str-chat__thread-container .str-chat__thread-header .str-chat__close-thread-button{background-color:rgba(0,0,0,0);border:none}.str-chat__thread-container .str-chat__thread-header .str-chat__close-thread-button svg path{fill:var(--str-chat__thread-color)}.str-chat{--str-chat__tooltip-border-radius: var(--str-chat__border-radius-xs);--str-chat__tooltip-color: var(--str-chat__text-color);--str-chat__tooltip-background-color: var(--str-chat__secondary-background-color);--str-chat__tooltip-border-block-start: none;--str-chat__tooltip-border-block-end: none;--str-chat__tooltip-border-inline-start: none;--str-chat__tooltip-border-inline-end: none;--str-chat__tooltip-box-shadow: 0 0 20px var(--str-chat__box-shadow-color)}.str-chat__tooltip{background:var(--str-chat__tooltip-background-color);color:var(--str-chat__tooltip-color);box-shadow:var(--str-chat__tooltip-box-shadow);border-radius:var(--str-chat__tooltip-border-radius);-webkit-border-before:var(--str-chat__tooltip-border-block-start);border-block-start:var(--str-chat__tooltip-border-block-start);-webkit-border-after:var(--str-chat__tooltip-border-block-end);border-block-end:var(--str-chat__tooltip-border-block-end);-webkit-border-start:var(--str-chat__tooltip-border-inline-start);border-inline-start:var(--str-chat__tooltip-border-inline-start);-webkit-border-end:var(--str-chat__tooltip-border-inline-end);border-inline-end:var(--str-chat__tooltip-border-inline-end);font:var(--str-chat__caption-text)}.str-chat__tooltip::after{background-color:var(--str-chat__tooltip-background-color)}.str-chat{--str-chat__typing-indicator-border-radius: none;--str-chat__typing-indicator-color: var(--str-chat__text-low-emphasis-color);--str-chat__typing-indicator-background-color: var(--str-chat__overlay-color);--str-chat__typing-indicator-border-block-start: none;--str-chat__typing-indicator-border-block-end: none;--str-chat__typing-indicator-border-inline-start: none;--str-chat__typing-indicator-border-inline-end: none;--str-chat__typing-indicator-box-shadow: none;--str-chat__typing-indicator-dot-background-color: var(--str-chat__text-color)}.str-chat__typing-indicator{background:var(--str-chat__typing-indicator-background-color);color:var(--str-chat__typing-indicator-color);box-shadow:var(--str-chat__typing-indicator-box-shadow);border-radius:var(--str-chat__typing-indicator-border-radius);-webkit-border-before:var(--str-chat__typing-indicator-border-block-start);border-block-start:var(--str-chat__typing-indicator-border-block-start);-webkit-border-after:var(--str-chat__typing-indicator-border-block-end);border-block-end:var(--str-chat__typing-indicator-border-block-end);-webkit-border-start:var(--str-chat__typing-indicator-border-inline-start);border-inline-start:var(--str-chat__typing-indicator-border-inline-start);-webkit-border-end:var(--str-chat__typing-indicator-border-inline-end);border-inline-end:var(--str-chat__typing-indicator-border-inline-end)}.str-chat__typing-indicator .str-chat__typing-indicator__dots .str-chat__typing-indicator__dot{border-radius:999px;-webkit-animation:dotFlashing 1s infinite alternate;animation:dotFlashing 1s infinite alternate;background-color:var(--str-chat__typing-indicator-dot-background-color)}.str-chat__typing-indicator .str-chat__typing-indicator__dots .str-chat__typing-indicator__dot:nth-child(1){-webkit-animation-delay:0s;animation-delay:0s}.str-chat__typing-indicator .str-chat__typing-indicator__dots .str-chat__typing-indicator__dot:nth-child(2){-webkit-animation-delay:.5s;animation-delay:.5s}.str-chat__typing-indicator .str-chat__typing-indicator__dots .str-chat__typing-indicator__dot:nth-child(3){-webkit-animation-delay:1s;animation-delay:1s}@-webkit-keyframes dotFlashing{0%{opacity:1}50%{opacity:.6}100%{opacity:.2}}@keyframes dotFlashing{0%{opacity:1}50%{opacity:.6}100%{opacity:.2}}.str-chat{--str-chat-thread-list-border-color: var(--str-chat__surface-color);--str-chat-thread-list-container-background-color: var(--str-chat__secondary-background-color);--str-chat-unseen-threads-banner-background-color: var(--str-chat__text-color);--str-chat-unseen-threads-banner-color: var(--str-chat__opaque-surface-text-color);--str-chat-thread-list-item-background-color-default: var(--str-chat__secondary-background-color);--str-chat-thread-list-item-background-color-selected: var(--str-chat__surface-color);--str-chat-thread-list-item-text-color: var(--str-chat__text-color);--str-chat-thread-list-item-text-low-emphasis-color: var(--str-chat__text-low-emphasis-color);--str-chat-thread-list-empty-placeholder-background-color: var( --str-chat__secondary-background-color );--str-chat-thread-list-empty-placeholder-color: var(--str-chat__text-low-emphasis-color)}.str-chat__thread-list-container{background-color:var(--str-chat-thread-list-container-background-color)}.str-chat__unseen-threads-banner{border-radius:16px;background:var(--str-chat-unseen-threads-banner-background-color);color:var(--str-chat-unseen-threads-banner-color)}.str-chat__unseen-threads-banner__button{--str-chat-icon-color: var(--str-chat-unseen-threads-banner-color)}.str-chat__thread-list{border-right:1px solid var(--str-chat-thread-list-border-color)}.str-chat__thread-list .str-chat__thread-list-item{--str-chat-icon-color: var(--str-chat-thread-list-item-text-color);border:none;background-color:var(--str-chat-thread-list-item-background-color-default);color:var(--str-chat-thread-list-item-text-color)}.str-chat__thread-list .str-chat__thread-list-item[aria-selected=true]{background-color:var(--str-chat-thread-list-item-background-color-selected)}.str-chat__thread-list .str-chat__thread-list-item[aria-selected=true] .str-chat__thread-list-item__parent-message-text,.str-chat__thread-list .str-chat__thread-list-item[aria-selected=true] .str-chat__thread-list-item__latest-reply-text-and-timestamp{color:inherit}.str-chat__thread-list .str-chat__thread-list-item .str-chat__thread-list-item__parent-message-text{color:var(--str-chat-thread-list-item-text-low-emphasis-color)}.str-chat__thread-list .str-chat__thread-list-item .str-chat__thread-list-item__latest-reply{--str-chat__avatar-background-color: var(--str-chat__secondary-surface-color);--str-chat__avatar-color: var(--str-chat__text-low-emphasis-color)}.str-chat__thread-list .str-chat__thread-list-item .str-chat__thread-list-item__latest-reply-text-and-timestamp{color:var(--str-chat-thread-list-item-text-low-emphasis-color)}.str-chat__thread-list-empty-placeholder{--str-chat-icon-color: var(--str-chat-thread-list-empty-placeholder-color);background-color:var(--str-chat-thread-list-empty-placeholder-background-color);color:var(--str-chat-thread-list-empty-placeholder-color)}.str-chat{--str-chat-selector-background-color: var(--str-chat__secondary-background-color);--str-chat-selector-border-color: var(--str-chat__surface-color);--str-chat-selector-button-color-default: var(--str-chat__text-low-emphasis-color);--str-chat-selector-button-color-selected: var(--str-chat__text-color);--str-chat-selector-button-background-color-default: transparent;--str-chat-selector-button-background-color-selected: var(--str-chat__surface-color)}.str-chat__chat-view__selector{border-right:1px solid var(--str-chat-selector-border-color);background-color:var(--str-chat-selector-background-color)}.str-chat__chat-view__selector-button{--str-chat-icon-color: var(--str-chat-selector-button-color-default);border:none;background:var(--str-chat-selector-button-background-color-default);color:var(--str-chat-selector-button-color-default)}.str-chat__chat-view__selector-button[aria-selected=true]{--str-chat-icon-color: var(--str-chat-selector-button-color-selected);color:var(--str-chat-selector-button-color-selected);background:var(--str-chat-selector-button-background-color-selected)}.str-chat{--str-chat-unread-count-badge-color: var(--str-chat__on-unread-badge-color);--str-chat-unread-count-badge-background-color: var(--str-chat__danger-color)}.str-chat__unread-count-badge{background-color:var(--str-chat-unread-count-badge-background-color);color:var(--str-chat-unread-count-badge-color);border-radius:9999px}


/*# sourceMappingURL=vendors-271675c8-62607ef40769b367.css.map*/