:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-toast-width: 320px;
  --toastify-toast-background: #fff;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(
    to right,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
}

.Toastify__toast-container {
  z-index: 9999;
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, 9999);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
  position: fixed;
  padding: 4px;
  width: 320px;
  width: var(--toastify-toast-width);
  box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}
.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}
.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}
.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: 0;
    left: auto;
    left: initial;
  }
}
.Toastify__toast {
  position: relative;
  min-height: 64px;
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  max-height: 800px;
  max-height: var(--toastify-toast-max-height);
  overflow: hidden;
  font-family: sans-serif;
  font-family: var(--toastify-font-family);
  cursor: default;
  direction: ltr;
  /* webkit only issue #791 */
  z-index: 0;
}
.Toastify__toast--rtl {
  direction: rtl;
}
.Toastify__toast--close-on-click {
  cursor: pointer;
}
.Toastify__toast-body {
  margin: auto 0;
  flex: 1 1 auto;
  padding: 6px;
  display: flex;
  align-items: center;
}
.Toastify__toast-body > div:last-child {
  word-break: break-word;
  flex: 1;
}
[dir="ltr"] .Toastify__toast-icon {
          margin-right: 10px;
}
[dir="rtl"] .Toastify__toast-icon {
          margin-left: 10px;
}
.Toastify__toast-icon {
  -webkit-margin-end: 10px;
  width: 20px;
  flex-shrink: 0;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.7s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0;
  }
}
.Toastify__toast-theme--dark {
  background: #121212;
  background: var(--toastify-color-dark);
  color: #fff;
  color: var(--toastify-text-color-dark);
}
.Toastify__toast-theme--light {
  background: #fff;
  background: var(--toastify-color-light);
  color: #757575;
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--default {
  background: #fff;
  background: var(--toastify-color-light);
  color: #757575;
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--info {
  color: #fff;
  color: var(--toastify-text-color-info);
  background: #3498db;
  background: var(--toastify-color-info);
}
.Toastify__toast-theme--colored.Toastify__toast--success {
  color: #fff;
  color: var(--toastify-text-color-success);
  background: #07bc0c;
  background: var(--toastify-color-success);
}
.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: #fff;
  color: var(--toastify-text-color-warning);
  background: #f1c40f;
  background: var(--toastify-color-warning);
}
.Toastify__toast-theme--colored.Toastify__toast--error {
  color: #fff;
  color: var(--toastify-text-color-error);
  background: #e74c3c;
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: linear-gradient(
    to right,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
  background: var(--toastify-color-progress-light);
}
.Toastify__progress-bar-theme--dark {
  background: #bb86fc;
  background: var(--toastify-color-progress-dark);
}
.Toastify__progress-bar--info {
  background: #3498db;
  background: var(--toastify-color-progress-info);
}
.Toastify__progress-bar--success {
  background: #07bc0c;
  background: var(--toastify-color-progress-success);
}
.Toastify__progress-bar--warning {
  background: #f1c40f;
  background: var(--toastify-color-progress-warning);
}
.Toastify__progress-bar--error {
  background: #e74c3c;
  background: var(--toastify-color-progress-error);
}
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: rgba(255, 255, 255, 0.7);
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  align-self: flex-start;
}
.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}
.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}
.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: 9999;
  z-index: var(--toastify-z-index);
  opacity: 0.7;
  transform-origin: left;
}
.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}
.Toastify__progress-bar--rtl {
  right: 0;
  left: auto;
  left: initial;
  transform-origin: right;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: #e0e0e0;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: #616161;
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}
.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}
.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}
.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}
.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}
.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}
.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}
@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}
@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}
.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}
.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}
.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
}
.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
}
.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
}
.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/*# sourceMappingURL=ReactToastify.css.map */.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{padding:0 !important;box-shadow:none !important;border-color:rgba(0,0,0,0) !important}.str-chat .ngxp__container,.str-chat .float-ui-container{z-index:1;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-left:auto;margin-right: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__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__location-icon: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9ImN1cnJlbnRDb2xvciIgdmlld0JveD0iMCAwIDI1NS44NTYgMjU1Ljg1NiI+PHBhdGggZD0iTTEyNy45MjggMzguOGMtMzAuNzUgMC01NS43NjggMjUuMDE3LTU1Ljc2OCA1NS43NjdzMjUuMDE4IDU1Ljc2NyA1NS43NjggNTUuNzY3IDU1Ljc2OC0yNS4wMTcgNTUuNzY4LTU1Ljc2N1MxNTguNjc4IDM4LjggMTI3LjkyOCAzOC44em0wIDk2LjUzM2MtMjIuNDc5IDAtNDAuNzY4LTE4LjI4OC00MC43NjgtNDAuNzY3UzEwNS40NDkgNTMuOCAxMjcuOTI4IDUzLjhzNDAuNzY4IDE4LjI4OCA0MC43NjggNDAuNzY3LTE4LjI4OCA0MC43NjYtNDAuNzY4IDQwLjc2NnoiLz48cGF0aCBkPSJNMTI3LjkyOCAwQzc1Ljc4NCAwIDMzLjM2MiA0Mi40MjIgMzMuMzYyIDk0LjU2NmMwIDMwLjA3MiAyNS4yMiA3NC44NzUgNDAuMjUzIDk4LjkwNCA5Ljg5MSAxNS44MDkgMjAuNTIgMzAuODU1IDI5LjkyOCA0Mi4zNjUgMTUuMTAxIDE4LjQ3NCAyMC41MDYgMjAuMDIgMjQuMzg2IDIwLjAyIDMuOTM4IDAgOS4wNDEtMS41NDcgMjQuMDk1LTIwLjAzMSA5LjQyOS0xMS41NzkgMjAuMDYzLTI2LjYxNiAyOS45NDQtNDIuMzQyIDE1LjEzNi0yNC4wODggNDAuNTI3LTY4Ljk3MSA0MC41MjctOTguOTE3QzIyMi40OTUgNDIuNDIyIDE4MC4wNzMgMCAxMjcuOTI4IDB6bTQzLjY0MSAxODEuODAzYy0xOS4zOTYgMzEuNDgzLTM3LjIwMyA1Mi43NTctNDMuNzMgNTguMTg4LTYuNTYxLTUuMjY0LTI0LjA3OS0yNi4wMzItNDMuNzQ2LTU4LjA4OS0yMi43MDctMzcuMDE1LTM1LjczLTY4Ljg0OC0zNS43My04Ny4zMzZDNDguMzYyIDUwLjY5MyA4NC4wNTUgMTUgMTI3LjkyOCAxNXM3OS41NjYgMzUuNjkzIDc5LjU2NiA3OS41NjZjLjAwMSAxOC4zODItMTMuMDk0IDUwLjE3OC0zNS45MjUgODcuMjM3eiIvPjwvc3ZnPg==");--str-chat__handle-icon: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTYgNiIgZmlsbD0iY3VycmVuQ29sb3IiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8cGF0aCBkPSJNMTYgMEgwVjJIMTZWMFpNMCA2SDE2VjRIMFY2WiIvPgo8L3N2Zz4K");--str-chat__circle-stop-icon: url("data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiBoZWlnaHQ9IjMyIiB2aWV3Qm94PSI0IDQgMjggMjgiIHdpZHRoPSIzMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjQ1NTEgMjcuMjQ0MUMyMi42MzA5IDI3LjI0NDEgMjcuNzQ0MSAyMi4xMTk4IDI3Ljc0NDEgMTUuOTU1MUMyNy43NDQxIDkuNzc5MyAyMi42MTk4IDQuNjY2MDIgMTYuNDQ0IDQuNjY2MDJDMTAuMjc5MyA0LjY2NjAyIDUuMTY2MDIgOS43NzkzIDUuMTY2MDIgMTUuOTU1MUM1LjE2NjAyIDIyLjExOTggMTAuMjkwNCAyNy4yNDQxIDE2LjQ1NTEgMjcuMjQ0MVpNMTYuNDU1MSAyNS4zNjI2QzExLjIzMTEgMjUuMzYyNiA3LjA1ODU5IDIxLjE3OSA3LjA1ODU5IDE1Ljk1NTFDNy4wNTg1OSAxMC43MzExIDExLjIyMDEgNi41NDc1MyAxNi40NDQgNi41NDc1M0MyMS42NjggNi41NDc1MyAyNS44NTE2IDEwLjczMTEgMjUuODYyNiAxNS45NTUxQzI1Ljg3MzcgMjEuMTc5IDIxLjY3OSAyNS4zNjI2IDE2LjQ1NTEgMjUuMzYyNlpNMTMuNTIyMSAxOS45ODM3SDE5LjM2NTlDMjAuMDYzMiAxOS45ODM3IDIwLjQ3MjcgMTkuNTc0MiAyMC40NzI3IDE4Ljg5OTFWMTMuMDExMUMyMC40NzI3IDEyLjMyNDkgMjAuMDYzMiAxMS45MjY0IDE5LjM2NTkgMTEuOTI2NEgxMy41MjIxQzEyLjgzNTkgMTEuOTI2NCAxMi40MTU0IDEyLjMyNDkgMTIuNDE1NCAxMy4wMTExVjE4Ljg5OTFDMTIuNDE1NCAxOS41NzQyIDEyLjgzNTkgMTkuOTgzNyAxMy41MjIxIDE5Ljk4MzdaIiBmaWxsPSIjMDA1ZmZmIi8+Cjwvc3ZnPg==");--str-chat__magnifier-glass-icon: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjEgMjEiIGZpbGw9ImN1cnJlbnRDb2xvciIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOSAwQzEzLjk2OCAwIDE4IDQuMDMyIDE4IDlDMTggMTMuOTY4IDEzLjk2OCAxOCA5IDE4QzQuMDMyIDE4IDAgMTMuOTY4IDAgOUMwIDQuMDMyIDQuMDMyIDAgOSAwWk05IDE2QzEyLjg2NyAxNiAxNiAxMi44NjcgMTYgOUMxNiA1LjEzMiAxMi44NjcgMiA5IDJDNS4xMzIgMiAyIDUuMTMyIDIgOUMyIDEyLjg2NyA1LjEzMiAxNiA5IDE2Wk0yMC4zMTQgMTguODk5TDE3LjQ4NSAxNi4wNzFMMTYuMDcxIDE3LjQ4NUwxOC44OTkgMjAuMzE0TDIwLjMxNCAxOC44OTlaIi8+Cjwvc3ZnPgo=");--str-chat__clear-icon: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAgMjAiIGZpbGw9ImN1cnJlbnRDb2xvciIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0wIDEwQzAgNC40NzcxNSA0LjQ3NzE1IDAgMTAgMEMxNS41MjI4IDAgMjAgNC40NzcxNSAyMCAxMEMyMCAxNS41MjI4IDE1LjUyMjggMjAgMTAgMjBDNC40NzcxNSAyMCAwIDE1LjUyMjggMCAxMFpNMTAgMkM1LjU4MTcyIDIgMiA1LjU4MTcyIDIgMTBDMiAxNC40MTgzIDUuNTgxNzIgMTggMTAgMThDMTQuNDE4MyAxOCAxOCAxNC40MTgzIDE4IDEwQzE4IDUuNTgxNzIgMTQuNDE4MyAyIDEwIDJaTTEzLjUzNTggNi40NjQ0NkMxMy4xNDUzIDYuMDczOTQgMTIuNTEyMSA2LjA3Mzk0IDEyLjEyMTYgNi40NjQ0NkwxMC4wMDAzIDguNTg1NzhMNy44Nzg5OCA2LjQ2NDQ2QzcuNDg4NDYgNi4wNzM5NCA2Ljg1NTI5IDYuMDczOTQgNi40NjQ3NyA2LjQ2NDQ2QzYuMDc0MjQgNi44NTQ5OSA2LjA3NDI0IDcuNDg4MTUgNi40NjQ3NyA3Ljg3ODY4TDguNTg2MDkgMTBMNi40NjQ3NyAxMi4xMjEzQzYuMDc0MjQgMTIuNTExOCA2LjA3NDI0IDEzLjE0NSA2LjQ2NDc3IDEzLjUzNTVDNi44NTUyOSAxMy45MjYxIDcuNDg4NDYgMTMuOTI2MSA3Ljg3ODk4IDEzLjUzNTVMMTAuMDAwMyAxMS40MTQyTDEyLjEyMTYgMTMuNTM1NUMxMi41MTIxIDEzLjkyNjEgMTMuMTQ1MyAxMy45MjYxIDEzLjUzNTggMTMuNTM1NUMxMy45MjY0IDEzLjE0NSAxMy45MjY0IDEyLjUxMTggMTMuNTM1OCAxMi4xMjEzTDExLjQxNDUgMTBMMTMuNTM1OCA3Ljg3ODY4QzEzLjkyNjQgNy40ODgxNSAxMy45MjY0IDYuODU0OTkgMTMuNTM1OCA2LjQ2NDQ2WiIvPgo8L3N2Zz4K")}@font-face{font-family:"stream-chat-icons";src:url("/assets/stream-chat-icons.CVCe0Jge.eot");src:url("/assets/stream-chat-icons.CVCe0Jge.eot#iefix") format("embedded-opentype"),url("/assets/stream-chat-icons.BLRMizsT.woff") format("woff2"),url("/assets/stream-chat-icons.BLRMizsT.woff") format("woff"),url("/assets/stream-chat-icons.C_tSEO3S.ttf") format("truetype"),url("/assets/stream-chat-icons.DWRBO47D.svg#stream-chat-icons") 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("/assets/stream-chat-icons.DWRBO47D.svg#stream-chat-icons") 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%;-o-object-fit:cover;object-fit:cover}.str-chat__avatar .str-chat__avatar-fallback{text-align:center;height:inherit;width:inherit}[dir="ltr"] .str-chat__avatar .str-chat__avatar--online-indicator{right:3%}[dir="rtl"] .str-chat__avatar .str-chat__avatar--online-indicator{left:3%}.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);top: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{-o-object-fit:cover;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{-o-object-fit:contain;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(1000000/1000000,1px)*var(--original-height, 1000000));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);-o-object-fit:cover;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(1000000/1000000,1px)*var(--original-height, 1000000));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:-moz-fit-content;width:fit-content;grid-gap:var(--str-chat__spacing-0_5);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%;-o-object-fit:cover;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{-o-object-fit:contain;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);-moz-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);-moz-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;-moz-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-geolocation{margin:var(--str-chat__attachment-margin);min-width:200px}.str-chat__attachment-list .str-chat__message-attachment-geolocation .str-chat__message-attachment-geolocation__placeholder{position:relative;display:flex;justify-content:center;align-items:center;padding:var(--str-chat__spacing-2)}.str-chat__attachment-list .str-chat__message-attachment-geolocation .str-chat__message-attachment-geolocation__placeholder .str-chat__message-geolocation__icon{height:calc(var(--str-chat__spacing-px)*150)}[dir="ltr"] .str-chat__attachment-list .str-chat__message-attachment-geolocation .str-chat__message-attachment-geolocation__placeholder .str-chat__message-attachment-geolocation__placeholder-link{right:.75rem}[dir="rtl"] .str-chat__attachment-list .str-chat__message-attachment-geolocation .str-chat__message-attachment-geolocation__placeholder .str-chat__message-attachment-geolocation__placeholder-link{left:.75rem}.str-chat__attachment-list .str-chat__message-attachment-geolocation .str-chat__message-attachment-geolocation__placeholder .str-chat__message-attachment-geolocation__placeholder-link{position:absolute;top:.75rem;bottom:.75rem;height:calc(var(--str-chat__spacing-px)*20);width:calc(var(--str-chat__spacing-px)*20)}.str-chat__attachment-list .str-chat__message-attachment-geolocation .str-chat__message-attachment-geolocation__status{display:flex;justify-content:center;padding:.5rem 2rem}.str-chat__attachment-list .str-chat__message-attachment-geolocation .str-chat__message-attachment-geolocation__status .str-chat__message-attachment-geolocation__status--active{display:flex;flex-direction:column;align-items:center;gap:.375rem}.str-chat__attachment-list .str-chat__message-attachment-geolocation .str-chat__message-attachment-geolocation__status .str-chat__message-attachment-geolocation__status--active .str-chat__message-attachment-geolocation__stop-sharing-button{color:var(--str-chat__danger-color)}.str-chat__attachment-list .str-chat__message-attachment-geolocation .str-chat__message-attachment-geolocation__status .str-chat__message-attachment-geolocation__status--active .str-chat__message-attachment-geolocation__status--active-status{color:var(--str-chat__info-color)}.str-chat__attachment-list .str-chat__message-attachment-geolocation .str-chat__message-attachment-geolocation__status .str-chat__message-attachment-geolocation__status--active .str-chat__message-attachment-geolocation__status--active-until{text-transform:lowercase}.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}[dir="ltr"] .str-chat__attachment-list .str-chat__message-attachment-audio-widget--progress-track .str-chat__message-attachment-audio-widget--progress-indicator{left:0}[dir="rtl"] .str-chat__attachment-list .str-chat__message-attachment-audio-widget--progress-track .str-chat__message-attachment-audio-widget--progress-indicator{right:0}.str-chat__attachment-list .str-chat__message-attachment-audio-widget--progress-track .str-chat__message-attachment-audio-widget--progress-indicator{position:absolute;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;grid-gap:calc(var(--str-chat__spacing-px)*9);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;-moz-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;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;-moz-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{-o-object-fit:cover;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__location-preview,.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);-moz-column-gap:var(--str-chat__spacing-2);column-gap:var(--str-chat__spacing-2)}.str-chat__attachment-preview-list .str-chat__location-preview .str-chat__attachment-preview-metadata,.str-chat__attachment-preview-list .str-chat__location-preview .str-chat__attachment-preview-file-end,.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__location-preview .str-chat__attachment-preview-metadata .str-chat__attachment-preview-title,.str-chat__attachment-preview-list .str-chat__location-preview .str-chat__attachment-preview-metadata .str-chat__attachment-preview-subtitle,.str-chat__attachment-preview-list .str-chat__location-preview .str-chat__attachment-preview-metadata .str-chat__attachment-preview-file-name,.str-chat__attachment-preview-list .str-chat__location-preview .str-chat__attachment-preview-file-end .str-chat__attachment-preview-title,.str-chat__attachment-preview-list .str-chat__location-preview .str-chat__attachment-preview-file-end .str-chat__attachment-preview-subtitle,.str-chat__attachment-preview-list .str-chat__location-preview .str-chat__attachment-preview-file-end .str-chat__attachment-preview-file-name,.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-subtitle,.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-subtitle,.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-subtitle,.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-subtitle,.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-subtitle,.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-subtitle,.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__location-preview .str-chat__location-preview-image,.str-chat__attachment-preview-list .str-chat__location-preview .str-chat__attachment-preview-file-icon,.str-chat__attachment-preview-list .str-chat__attachment-preview-unsupported .str-chat__location-preview-image,.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__location-preview-image,.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__location-preview-image,.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__location-preview .str-chat__location-preview-image svg,.str-chat__attachment-preview-list .str-chat__location-preview .str-chat__attachment-preview-file-icon svg,.str-chat__attachment-preview-list .str-chat__attachment-preview-unsupported .str-chat__location-preview-image svg,.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__location-preview-image 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__location-preview-image 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:auto;width:initial}.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:0;padding:initial;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;background:initial;border:medium none currentColor;border:initial;border-radius:var(--str-chat__border-radius-circle);display:flex}[dir="ltr"] .str-chat__attachment-preview-list .str-chat__attachment-preview-delete{right:calc(var(--str-chat__spacing-px)*2)}[dir="rtl"] .str-chat__attachment-preview-list .str-chat__attachment-preview-delete{left:calc(var(--str-chat__spacing-px)*2)}.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);cursor:pointer;z-index:1}.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)}[dir="ltr"] .str-chat__attachment-preview-list .str-chat__attachment-preview-error{left:0}[dir="rtl"] .str-chat__attachment-preview-list .str-chat__attachment-preview-error{right:0}.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:0;padding:initial;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;background:initial;border:medium none currentColor;border:initial;border-radius:0;border-radius:initial;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}.str-chat__message-textarea-angular-host .mention-menu{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:0;padding:initial;margin:0;margin:initial}.str-chat__suggestion-list-container .str-chat__suggestion-list--react{overflow-y:visible;overflow-y:initial}.str-chat__suggestion-list-container .str-chat__suggestion-list--react .str-chat__suggestion-list-item>button{width:100%}.str-chat__slash-command{padding:var(--str-chat__spacing-2_5)}[dir="ltr"] .str-chat__slash-command .str-chat__slash-command-header .str-chat__slash-command-args{margin-left:var(--str-chat__spacing-2)}[dir="rtl"] .str-chat__slash-command .str-chat__slash-command-header .str-chat__slash-command-args{margin-right:var(--str-chat__spacing-2)}.str-chat__user-item{display:flex;align-items:center;justify-content:center;padding:var(--str-chat__spacing-2_5);-moz-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;display:flex;align-items:center;width:100%}.str-chat__emoji-item{display:flex;align-items:center;justify-content:center;padding:var(--str-chat__spacing-2_5);-moz-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;display:flex;align-items:center;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-left:1rem;padding-right: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-top:.5rem;padding-bottom:.5rem;overflow-x:auto;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-left:1rem;margin-right: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;bottom: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);-moz-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{height:100%;padding:0 var(--str-chat__spacing-2)}.str-chat__loading-channel .str-chat__loading-channel-message-list .str-chat__li{margin-left:calc(-1*var(--str-chat__spacing-2));margin-right:calc(-1*var(--str-chat__spacing-2));padding-left:var(--str-chat__spacing-2);padding-right:var(--str-chat__spacing-2)}.str-chat__loading-channel .str-chat__loading-channel-message-list .str-chat__parent-message-li{margin-left:calc(-1*var(--str-chat__spacing-2));margin-right: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-left:calc(-1*min(var(--str-chat__spacing-10), 4%));margin-right:calc(-1*min(var(--str-chat__spacing-10), 4%));padding-left:min(var(--str-chat__spacing-10),4%);padding-right:min(var(--str-chat__spacing-10),4%)}.str-chat__loading-channel .str-chat__loading-channel-message-list .str-chat__parent-message-li{margin-left:calc(-1*min(var(--str-chat__spacing-10), 4%) - 2px);margin-right: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%;-moz-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%;-moz-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;-moz-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);-moz-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-container{position:relative}.str-chat__channel-preview-container .str-chat__channel-preview__action-buttons{position:absolute;right:var(--str-chat__spacing-2);bottom:var(--str-chat__spacing-3);display:flex;flex-direction:row;align-items:center;gap:1px}.str-chat__channel-preview-container .str-chat__channel-preview__action-buttons .str-chat__channel-preview__action-button{--str-chat-icon-height: 13px;cursor:pointer;padding-top:2px;padding-bottom:2px;padding-left:4px;padding-right:4px}[dir="ltr"] .str-chat__channel-preview{text-align:left}[dir="rtl"] .str-chat__channel-preview{text-align:right}.str-chat__channel-preview{display:flex;-moz-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;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;-moz-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;-moz-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;max-width:calc(100% - 40px)}[dir="ltr"] .str-chat__channel-preview-loading{text-align:left}[dir="rtl"] .str-chat__channel-preview-loading{text-align:right}.str-chat__channel-preview-loading{display:flex;-moz-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}.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--active.str-chat__channel-search--inline,.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%;-moz-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{top:0;right:0;bottom:0;left:0;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:2.25rem 1.25rem}.str-chat__dialog .str-chat__dialog__controls .str-chat__dialog__controls-button{background:none;border:none}.str-chat-angular__dialog-body.str-chat__dialog__body{padding:0}.str-chat-angular__dialog-body .str-chat__dialog__controls{padding-bottom:0}.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-left:.675rem;padding-right:.675rem}.str-chat__drag-and-drop-container__item{display:flex;width:100%;padding-top:.25rem;padding-bottom:.25rem}.str-chat__dropzone-container{display:flex;align-items:center;justify-content:center;position:absolute;height:100%;width:100%;z-index:5}.str-chat__dropzone-container p{margin:0;margin:initial}.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:-moz-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__form__switch-field{width:100%;padding:1rem}.str-chat__form__switch-field input[type=checkbox]{display:none}.str-chat__form__switch-field label{display:flex;align-items:center;justify-content:space-between;width:100%}.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__form__switch-field .str-chat__form__switch-field__switch .str-chat__form__switch-field__switch-handle{height:1.5rem;width:1.5rem}.str-chat__form__switch-field .str-chat__form__switch-field__switch.str-chat__form__switch-field__switch--on{justify-content:flex-end}[dir="ltr"] .str-chat__dropdown .str-chat__dropdown__open-button{text-align:left}[dir="rtl"] .str-chat__dropdown .str-chat__dropdown__open-button{text-align:right}.str-chat__dropdown .str-chat__dropdown__open-button{width:100%}.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{-o-object-fit:contain;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{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--poll{--str-chat-icon-width: var(--str-chat-icon-height);-webkit-mask:var(--str-chat__poll-icon) no-repeat center/contain;mask:var(--str-chat__poll-icon) no-repeat center/contain}.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-left:.75rem;padding-right:.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-left:.5rem;padding-right:.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-left:.5rem;padding-right:.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__link-preview-card--loading .str-chat__link-preview-card__content{display:flex;flex-direction:column;gap:.25rem}.str-chat__link-preview-card--loading .str-chat__link-preview-card__content .str-chat__link-preview-card__content-title{height:calc(var(--str-chat__spacing-px)*16);width:100%}.str-chat__link-preview-card--loading .str-chat__link-preview-card__content .str-chat__link-preview-card__content-description{height:calc(var(--str-chat__spacing-px)*12);width:100%}.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;animation:rotate 1s linear infinite}.str-chat__loading-indicator svg{width:var(--str-chat__loading-indicator-size);height:var(--str-chat__loading-indicator-size)}@keyframes rotate{from{transform:rotate(0deg)}to{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__modal.str-chat__share-location-modal .str-chat__modal__close-button{display:none}.str-chat__modal.str-chat__share-location-modal .str-chat__share-location-dialog .str-chat__modal-header{padding-top:0}.str-chat__modal.str-chat__share-location-modal .str-chat__share-location-dialog .str-chat__dialog__body{display:flex;flex-direction:column;gap:1rem;padding-top:0;padding-bottom:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.str-chat__modal.str-chat__share-location-modal .str-chat__share-location-dialog .str-chat__dialog__body .str-chat__live-location-activation{padding:.5rem}.str-chat__modal.str-chat__share-location-modal .str-chat__share-location-dialog .str-chat__dialog__body .str-chat__live-location-activation .str-chat__form__switch-field{padding:.5rem}.str-chat__modal.str-chat__share-location-modal .str-chat__share-location-dialog .str-chat__dialog__body .str-chat__live-location-activation .str-chat__dropdown__open-button{padding:.5rem}.str-chat__modal.str-chat__share-location-modal .str-chat__share-location-dialog .str-chat__dialog__body .str-chat__live-location-activation .str-chat__dialog-contents .str-chat__dropdown__items{display:flex;flex-direction:column;align-items:flex-start;padding-top:.25rem;padding-bottom:.25rem}[dir="ltr"] .str-chat__modal.str-chat__share-location-modal .str-chat__share-location-dialog .str-chat__dialog__body .str-chat__live-location-activation .str-chat__dialog-contents .str-chat__dropdown__items .str-chat__live-location-sharing-duration-option{text-align:left}[dir="rtl"] .str-chat__modal.str-chat__share-location-modal .str-chat__share-location-dialog .str-chat__dialog__body .str-chat__live-location-activation .str-chat__dialog-contents .str-chat__dropdown__items .str-chat__live-location-sharing-duration-option{text-align:right}.str-chat__modal.str-chat__share-location-modal .str-chat__share-location-dialog .str-chat__dialog__body .str-chat__live-location-activation .str-chat__dialog-contents .str-chat__dropdown__items .str-chat__live-location-sharing-duration-option{padding:.25rem .5rem;width:100%}.str-chat__modal.str-chat__share-location-modal .str-chat__share-location-dialog .str-chat__dialog__controls{padding:1.25rem 1rem 0}.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__quoted-message-line-clamp: 5}.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__quoted-message-text-value{overflow:hidden;display:-webkit-box;-webkit-line-clamp:var(--str-chat__quoted-message-line-clamp);line-clamp:var(--str-chat__quoted-message-line-clamp);-webkit-box-orient:vertical}.str-chat__message,.str-chat__quoted-message-preview{display:grid;word-wrap:break-word;word-break:break-word;hyphens:auto;word-wrap:break-word}.str-chat__message .str-chat__message-reminder,.str-chat__quoted-message-preview .str-chat__message-reminder{grid-area:message-reminder;padding-top:.5rem;padding-bottom:.125rem;margin:0}.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:". message-reminder" "avatar message" ". replies" ". translation-notice" ". custom-metadata" ". metadata";-moz-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-reminder" "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--blocked,.str-chat__quoted-message-preview.str-chat__message--blocked{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;grid-column-gap:var(--str-chat__spacing-2);-moz-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{white-space:pre-line;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--me .str-chat__message-inner,.str-chat__quoted-message-preview.str-chat__message--me .str-chat__message-inner{grid-template-areas:"reminder reminder" "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;margin-top: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;-moz-column-gap:var(--str-chat__spacing-1);column-gap:var(--str-chat__spacing-1);margin-top: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) * 16);display:flex;align-items:center;justify-content:center;-moz-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:var(--str-chat-icon-height);height:var(--str-chat-icon-height)}.str-chat__message .str-chat__message-status.str-chat__message-status-sent,.str-chat__quoted-message-preview .str-chat__message-status.str-chat__message-status-sent{--str-chat-icon-height: calc(var(--str-chat__spacing-px) * 12)}.str-chat__message .str-chat__message-status.str-chat__message-status-sent svg,.str-chat__quoted-message-preview .str-chat__message-status.str-chat__message-status-sent svg{width:var(--str-chat-icon-height);height:var(--str-chat-icon-height)}.str-chat__message .str-chat__message-status-sent,.str-chat__quoted-message-preview .str-chat__message-status-sent{--str-chat-icon-height: calc(var(--str-chat__spacing-px) * 12)}.str-chat__message .str-chat__message-status-sent svg,.str-chat__quoted-message-preview .str-chat__message-status-sent svg{width:var(--str-chat-icon-height);height:var(--str-chat-icon-height)}.str-chat__message .str-chat__message-status-delivered,.str-chat__quoted-message-preview .str-chat__message-status-delivered{--str-chat-icon-height: calc(var(--str-chat__spacing-px) * 15)}.str-chat__message .str-chat__message-status-delivered svg,.str-chat__quoted-message-preview .str-chat__message-status-delivered svg{width:var(--str-chat-icon-height);height:var(--str-chat-icon-height)}.str-chat__message .str-chat__message-replies-count-button-wrapper,.str-chat__message .str-chat__message-is-thread-reply-button-wrapper,.str-chat__quoted-message-preview .str-chat__message-replies-count-button-wrapper,.str-chat__quoted-message-preview .str-chat__message-is-thread-reply-button-wrapper{grid-area:replies}.str-chat__message .str-chat__message-replies-count-button-wrapper button,.str-chat__message .str-chat__message-is-thread-reply-button-wrapper button,.str-chat__quoted-message-preview .str-chat__message-replies-count-button-wrapper button,.str-chat__quoted-message-preview .str-chat__message-is-thread-reply-button-wrapper button{cursor:pointer;padding:0}.str-chat__message .str-chat__message-replies-count-button-wrapper button:disabled,.str-chat__message .str-chat__message-is-thread-reply-button-wrapper button:disabled,.str-chat__quoted-message-preview .str-chat__message-replies-count-button-wrapper button:disabled,.str-chat__quoted-message-preview .str-chat__message-is-thread-reply-button-wrapper button:disabled{cursor:auto}.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{white-space:pre-line;margin:0}.str-chat__message .str-chat__message--blocked-inner,.str-chat__quoted-message-preview .str-chat__message--blocked-inner{padding:var(--str-chat__spacing-2) var(--str-chat__spacing-4)}.str-chat__message .str-chat__message--blocked-inner p,.str-chat__quoted-message-preview .str-chat__message--blocked-inner p{white-space:pre-line;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;-moz-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{white-space:pre-line;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}[dir="ltr"] .str-chat__message.str-chat__message--error .str-chat__message-error-icon,[dir="ltr"] .str-chat__message.str-chat__message--failed .str-chat__message-error-icon,[dir="ltr"] .str-chat__quoted-message-preview.str-chat__message--error .str-chat__message-error-icon,[dir="ltr"] .str-chat__quoted-message-preview.str-chat__message--failed .str-chat__message-error-icon{right:calc(-1*(var(--str-chat__spacing-px) * 18)/2);right:calc(-1*calc(var(--str-chat__spacing-px) * 18)/2)}[dir="rtl"] .str-chat__message.str-chat__message--error .str-chat__message-error-icon,[dir="rtl"] .str-chat__message.str-chat__message--failed .str-chat__message-error-icon,[dir="rtl"] .str-chat__quoted-message-preview.str-chat__message--error .str-chat__message-error-icon,[dir="rtl"] .str-chat__quoted-message-preview.str-chat__message--failed .str-chat__message-error-icon{left:calc(-1*(var(--str-chat__spacing-px) * 18)/2);left:calc(-1*calc(var(--str-chat__spacing-px) * 18)/2)}[dir="ltr"] .str-chat__message.str-chat__message--error .str-chat__message-error-icon,[dir="ltr"] .str-chat__message.str-chat__message--failed .str-chat__message-error-icon,[dir="ltr"] .str-chat__quoted-message-preview.str-chat__message--error .str-chat__message-error-icon,[dir="ltr"] .str-chat__quoted-message-preview.str-chat__message--failed .str-chat__message-error-icon{right:calc(-1*(var(--str-chat__spacing-px) * 18)/2)}[dir="rtl"] .str-chat__message.str-chat__message--error .str-chat__message-error-icon,[dir="rtl"] .str-chat__message.str-chat__message--failed .str-chat__message-error-icon,[dir="rtl"] .str-chat__quoted-message-preview.str-chat__message--error .str-chat__message-error-icon,[dir="rtl"] .str-chat__quoted-message-preview.str-chat__message--failed .str-chat__message-error-icon{left:calc(-1*(var(--str-chat__spacing-px) * 18)/2)}.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}.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):not(.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):not(.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__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message-options,.str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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):not(.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):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message-options{display:flex}.str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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):not(.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__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message-options,.str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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):not(.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):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message-options{display:flex}.str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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):not(.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__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message-options,.str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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):not(.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):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message-options{display:flex}.str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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):not(.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__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message-options,.str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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):not(.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):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message-options{display:flex}.str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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):not(.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__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message-options,.str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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):not(.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):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message-options{display:flex}.str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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):not(.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__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message-options,.str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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):not(.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):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message-options{display:flex}.str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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):not(.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__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message-options,.str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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):not(.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):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message-options{display:flex}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner{margin-right:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner{margin-left:0}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner{margin-right:0}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message--other .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message--other .str-chat__message-inner{margin-right:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner{margin-left:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message--other .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message--other .str-chat__message-inner{margin-left:0}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner{margin-right:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner{margin-left:0}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner{margin-right:0}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message--other .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message--other .str-chat__message-inner{margin-right:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner{margin-left:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message--other .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message--other .str-chat__message-inner{margin-left:0}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner{margin-right:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner{margin-left:0}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner{margin-right:0}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner{margin-right:0}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner{margin-right:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner{margin-left:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner{margin-left:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner{margin-left:0}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner{margin-right:0}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message--other .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message--other .str-chat__message-inner{margin-right:0}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner{margin-right:0}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message--other .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message--other .str-chat__message-inner{margin-right:0}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner{margin-right:0}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner{margin-right:0}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message--other .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message--other .str-chat__message-inner{margin-right:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner{margin-left:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message--other .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message--other .str-chat__message-inner{margin-left:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner{margin-left:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message--other .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message--other .str-chat__message-inner{margin-left:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner{margin-left:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--other .str-chat__message-inner{margin-left:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message--other .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message--other .str-chat__message-inner{margin-left:0}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner{margin-left:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner{margin-right:0}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner{margin-left:0}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message--me .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message--me .str-chat__message-inner{margin-left:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner{margin-right:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message--me .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message--me .str-chat__message-inner{margin-right:0}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner{margin-left:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner{margin-right:0}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner{margin-left:0}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message--me .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message--me .str-chat__message-inner{margin-left:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner{margin-right:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message--me .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message--me .str-chat__message-inner{margin-right:0}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner{margin-left:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner{margin-right:0}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner{margin-left:0}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner{margin-left:0}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner{margin-left:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner{margin-right:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner{margin-right:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner{margin-right:0}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner{margin-left:0}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message--me .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message--me .str-chat__message-inner{margin-left:0}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner{margin-left:0}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message--me .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message--me .str-chat__message-inner{margin-left:0}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner{margin-left:0}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner{margin-left:0}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message--me .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message--me .str-chat__message-inner{margin-left:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner{margin-right:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message--me .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message--me .str-chat__message-inner{margin-right:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner{margin-right:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message--me .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message--me .str-chat__message-inner{margin-right:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner{margin-right:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[\:has\(.str-chat__message-options--active\)] .str-chat__message--me .str-chat__message-inner{margin-right:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message--me .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.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,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:has(.str-chat__message-options--active) .str-chat__message--me .str-chat__message-inner{margin-right:0}@supports not selector(:has(a, b)){.str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message-options,.str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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):not(.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):not(.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):not(.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message-options,.str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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):not(.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):not(.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):not(.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message-options,.str-chat__ul:not(.str-chat__message-options-in-bubble):not(.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):not(.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):not(.str-chat__message-with-touch-support) .str-chat__li:focus-within .str-chat__message-options{display:flex}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--other .str-chat__message-inner,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[focus-within] .str-chat__message--other .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--other .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[focus-within] .str-chat__message--other .str-chat__message-inner{margin-right:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--other .str-chat__message-inner,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[focus-within] .str-chat__message--other .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--other .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[focus-within] .str-chat__message--other .str-chat__message-inner{margin-left:0}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--other .str-chat__message-inner,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[focus-within] .str-chat__message--other .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--other .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[focus-within] .str-chat__message--other .str-chat__message-inner{margin-right:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--other .str-chat__message-inner,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[focus-within] .str-chat__message--other .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--other .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[focus-within] .str-chat__message--other .str-chat__message-inner{margin-left:0}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--other .str-chat__message-inner,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[focus-within] .str-chat__message--other .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--other .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[focus-within] .str-chat__message--other .str-chat__message-inner{margin-right:0}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--other .str-chat__message-inner,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[focus-within] .str-chat__message--other .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--other .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[focus-within] .str-chat__message--other .str-chat__message-inner{margin-right:0}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--other .str-chat__message-inner,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:focus-within .str-chat__message--other .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--other .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:focus-within .str-chat__message--other .str-chat__message-inner{margin-right:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--other .str-chat__message-inner,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[focus-within] .str-chat__message--other .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--other .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[focus-within] .str-chat__message--other .str-chat__message-inner{margin-left:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--other .str-chat__message-inner,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[focus-within] .str-chat__message--other .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--other .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[focus-within] .str-chat__message--other .str-chat__message-inner{margin-left:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--other .str-chat__message-inner,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:focus-within .str-chat__message--other .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--other .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:focus-within .str-chat__message--other .str-chat__message-inner{margin-left:0}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--me .str-chat__message-inner,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[focus-within] .str-chat__message--me .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--me .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[focus-within] .str-chat__message--me .str-chat__message-inner{margin-left:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--me .str-chat__message-inner,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[focus-within] .str-chat__message--me .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--me .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[focus-within] .str-chat__message--me .str-chat__message-inner{margin-right:0}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--me .str-chat__message-inner,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[focus-within] .str-chat__message--me .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--me .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[focus-within] .str-chat__message--me .str-chat__message-inner{margin-left:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--me .str-chat__message-inner,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[focus-within] .str-chat__message--me .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--me .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[focus-within] .str-chat__message--me .str-chat__message-inner{margin-right:0}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--me .str-chat__message-inner,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[focus-within] .str-chat__message--me .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--me .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[focus-within] .str-chat__message--me .str-chat__message-inner{margin-left:0}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--me .str-chat__message-inner,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[focus-within] .str-chat__message--me .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--me .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[focus-within] .str-chat__message--me .str-chat__message-inner{margin-left:0}[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--me .str-chat__message-inner,[dir="ltr"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:focus-within .str-chat__message--me .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--me .str-chat__message-inner,[dir="ltr"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:focus-within .str-chat__message--me .str-chat__message-inner{margin-left:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--me .str-chat__message-inner,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[focus-within] .str-chat__message--me .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--me .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[focus-within] .str-chat__message--me .str-chat__message-inner{margin-right:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--me .str-chat__message-inner,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[focus-within] .str-chat__message--me .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--me .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li[focus-within] .str-chat__message--me .str-chat__message-inner{margin-right:0}[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--me .str-chat__message-inner,[dir="rtl"] .str-chat__ul:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:focus-within .str-chat__message--me .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:hover .str-chat__message--me .str-chat__message-inner,[dir="rtl"] .str-chat__virtual-list:not(.str-chat__message-options-in-bubble):not(.str-chat__message-with-touch-support) .str-chat__li:focus-within .str-chat__message--me .str-chat__message-inner{margin-right: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}[dir="ltr"] .str-chat__ul.str-chat__message-options-in-bubble .str-chat__message--other .str-chat__message-inner:hover,[dir="ltr"] .str-chat__virtual-list.str-chat__message-options-in-bubble .str-chat__message--other .str-chat__message-inner:hover{margin-right:0}[dir="rtl"] .str-chat__ul.str-chat__message-options-in-bubble .str-chat__message--other .str-chat__message-inner:hover,[dir="rtl"] .str-chat__virtual-list.str-chat__message-options-in-bubble .str-chat__message--other .str-chat__message-inner:hover{margin-left:0}[dir="ltr"] .str-chat__ul.str-chat__message-options-in-bubble .str-chat__message--me .str-chat__message-inner:hover,[dir="ltr"] .str-chat__virtual-list.str-chat__message-options-in-bubble .str-chat__message--me .str-chat__message-inner:hover{margin-left:0}[dir="rtl"] .str-chat__ul.str-chat__message-options-in-bubble .str-chat__message--me .str-chat__message-inner:hover,[dir="rtl"] .str-chat__virtual-list.str-chat__message-options-in-bubble .str-chat__message--me .str-chat__message-inner:hover{margin-right: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-inner[focus-within] .str-chat__message-options{display:flex}.str-chat__message-inner:focus-within .str-chat__message-options{display:flex}[dir="ltr"] .str-chat__message--other .str-chat__message-inner[\:not-has\(.str-chat__message-options--active\)]{margin-right:var(--str-chat-message-options-size)}[dir="rtl"] .str-chat__message--other .str-chat__message-inner[\:not-has\(.str-chat__message-options--active\)]{margin-left:var(--str-chat-message-options-size)}[dir="ltr"] .str-chat__message--other .str-chat__message-inner[\:not-has\(.str-chat__message-options--active\)]{margin-right:var(--str-chat-message-options-size)}[dir="ltr"] .str-chat__message--other .str-chat__message-inner:not(:has(.str-chat__message-options--active)){margin-right:var(--str-chat-message-options-size)}[dir="rtl"] .str-chat__message--other .str-chat__message-inner[\:not-has\(.str-chat__message-options--active\)]{margin-left:var(--str-chat-message-options-size)}[dir="rtl"] .str-chat__message--other .str-chat__message-inner:not(:has(.str-chat__message-options--active)){margin-left:var(--str-chat-message-options-size)}[dir="ltr"] .str-chat__message--me .str-chat__message-inner{margin-left:var(--str-chat-message-options-size)}[dir="rtl"] .str-chat__message--me .str-chat__message-inner{margin-right:var(--str-chat-message-options-size)}.str-chat__li--middle .str-chat__message,.str-chat__li--top .str-chat__message{margin-bottom: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{margin-bottom: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{margin-bottom: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-top:.5rem;padding-bottom:.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-top:.5rem;padding-bottom:.5rem;height:100%;width:100%;white-space:nowrap}[dir="ltr"] .str-chat__unread-messages-notification button:first-of-type{padding-left:.75rem;padding-right:.375rem}[dir="rtl"] .str-chat__unread-messages-notification button:first-of-type{padding-right:.75rem;padding-left:.375rem}[dir="ltr"] .str-chat__unread-messages-notification button:last-of-type{padding-left:.375rem;padding-right:.75rem}[dir="rtl"] .str-chat__unread-messages-notification button:last-of-type{padding-right:.375rem;padding-left:.75rem}.str-chat__unread-messages-notification button:last-of-type svg{width:.875rem}.str-chat-angular__message-bubble{transform:translate3d(0, 0, 0)}.str-chat-angular__message-bubble.str-chat-angular__message-bubble--attachment-modal-open{transform:none}.str-chat__message-edited-timestamp{overflow:hidden;transition:height .1s}.str-chat__message-edited-timestamp--open{height:1rem;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;-moz-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-left:0;margin-right: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-box__submenu,.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}[dir="ltr"] .str-chat__message-actions-box .str-chat__message-actions-box__submenu .str-chat__message-actions-list-item-button,[dir="ltr"] .str-chat__message-actions-box .str-chat__message-actions-list .str-chat__message-actions-list-item-button{text-align:left}[dir="rtl"] .str-chat__message-actions-box .str-chat__message-actions-box__submenu .str-chat__message-actions-list-item-button,[dir="rtl"] .str-chat__message-actions-box .str-chat__message-actions-list .str-chat__message-actions-list-item-button{text-align:right}.str-chat__message-actions-box .str-chat__message-actions-box__submenu .str-chat__message-actions-list-item-button,.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%}.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__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-angular__create-poll{--str-chat-icon-height: calc(var(--str-chat__spacing-px) * 21);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__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);-moz-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:0;padding:initial;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;background:initial;border:medium none currentColor;border:initial;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__stop-ai-generation-button{width:calc(var(--str-chat__spacing-px)*30);height:calc(var(--str-chat__spacing-px)*28);cursor:pointer}.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)}[dir="ltr"] .str-chat__message-input .str-chat__message-input-cooldown{margin-left:var(--str-chat__spacing-2)}[dir="rtl"] .str-chat__message-input .str-chat__message-input-cooldown{margin-right:var(--str-chat__spacing-2)}.str-chat__message-input .str-chat__message-input-cooldown{display:flex;align-items:center;justify-content:center;margin-top:calc(var(--str-chat__spacing-2)/2);margin-bottom:calc(var(--str-chat__spacing-2)/2);min-width:calc((var(--str-chat__spacing-px) * 45) - var(--str-chat__spacing-2));min-width:calc(calc(var(--str-chat__spacing-px) * 45) - var(--str-chat__spacing-2));min-height: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__quoted-message-preview .str-chat__quoted-poll-preview__name{white-space:nowrap;overflow-y:visible;overflow-x:hidden;overflow-x:clip;text-overflow:ellipsis;overflow-x:hidden}.str-chat__message-input .str-chat__recording-permission-denied-notification{position:absolute;left:.5rem;max-width:100%;bottom:100%;padding:1rem;margin-left:.5rem;margin-right:.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{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-top:.5rem;padding-bottom:.5rem}.str-chat__send-to-channel-checkbox__container{width:100%;display:flex;padding:.5rem .75rem}.str-chat__send-to-channel-checkbox__container .str-chat__send-to-channel-checkbox__field{display:flex;align-items:center}.str-chat__send-to-channel-checkbox__container .str-chat__send-to-channel-checkbox__field label{padding-left:.5rem;padding-right:.5rem}.str-chat__send-to-channel-checkbox__container .str-chat__send-to-channel-checkbox__field input{margin:0}.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-left:calc(-1*var(--str-chat__spacing-2));margin-right:calc(-1*var(--str-chat__spacing-2));padding-left:var(--str-chat__spacing-2);padding-right:var(--str-chat__spacing-2)}.str-chat__list .str-chat__message-list-scroll .str-chat__parent-message-li{margin-left:calc(-1*var(--str-chat__spacing-2));margin-right: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-left:calc(-1*min(var(--str-chat__spacing-10), 4%));margin-right:calc(-1*min(var(--str-chat__spacing-10), 4%));padding-left:min(var(--str-chat__spacing-10),4%);padding-right:min(var(--str-chat__spacing-10),4%)}.str-chat__list .str-chat__message-list-scroll .str-chat__parent-message-li{margin-left:calc(-1*min(var(--str-chat__spacing-10), 4%) - 2px);margin-right: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{padding-bottom:var(--str-chat__spacing-4);margin-bottom:var(--str-chat__spacing-4)}[dir="ltr"] .str-chat__list .str-chat__parent-message-li .str-chat__thread-start{text-align:left}[dir="rtl"] .str-chat__list .str-chat__parent-message-li .str-chat__thread-start{text-align:right}.str-chat__list .str-chat__parent-message-li .str-chat__thread-start{padding-top:var(--str-chat__spacing-3)}[dir="ltr"] .str-chat__jump-to-latest-message{right:var(--str-chat__spacing-2)}[dir="rtl"] .str-chat__jump-to-latest-message{left:var(--str-chat__spacing-2)}.str-chat__jump-to-latest-message{position:absolute;bottom:var(--str-chat__spacing-4);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%;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-left:calc(-1*var(--str-chat__spacing-2));margin-right:calc(-1*var(--str-chat__spacing-2));padding-left:var(--str-chat__spacing-2);padding-right:var(--str-chat__spacing-2)}.str-chat__virtual-list .str-chat__message-list-scroll>div .str-chat__parent-message-li{margin-left:calc(-1*var(--str-chat__spacing-2));margin-right: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-left:calc(-1*min(var(--str-chat__spacing-10), 4%));margin-right:calc(-1*min(var(--str-chat__spacing-10), 4%));padding-left:min(var(--str-chat__spacing-10),4%);padding-right:min(var(--str-chat__spacing-10),4%)}.str-chat__virtual-list .str-chat__message-list-scroll>div .str-chat__parent-message-li{margin-left:calc(-1*min(var(--str-chat__spacing-10), 4%) - 2px);margin-right:calc(-1*min(var(--str-chat__spacing-10), 4%) - 2px)}}.str-chat__virtual-list .str-chat__parent-message-li{padding-bottom:var(--str-chat__spacing-4)}[dir="ltr"] .str-chat__virtual-list .str-chat__parent-message-li .str-chat__thread-start{text-align:left}[dir="rtl"] .str-chat__virtual-list .str-chat__parent-message-li .str-chat__thread-start{text-align:right}.str-chat__virtual-list .str-chat__parent-message-li .str-chat__thread-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{margin-bottom:0 !important}.str-chat__virtual-list .str-chat__virtual-list-message-wrapper{padding-bottom: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;margin-top:var(--str-chat__spacing-0_5);margin-bottom:var(--str-chat__spacing-0_5);-moz-column-gap:var(--str-chat__spacing-0_5);column-gap:var(--str-chat__spacing-0_5);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{display:flex !important}.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);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:-moz-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{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;bottom: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;margin-bottom:var(--str-chat__spacing-0_5);width:-moz-fit-content;width:fit-content;-moz-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{display:flex !important}.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);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}[dir="ltr"] .str-chat__message--me .str-chat__message-reaction-selector{right:0}[dir="rtl"] .str-chat__message--me .str-chat__message-reaction-selector{left:0}[dir="ltr"] .str-chat__message--other .str-chat__message-reaction-selector{left:0}[dir="rtl"] .str-chat__message--other .str-chat__message-reaction-selector{right:0}.str-chat-react__message-reaction-selector{position:static;bottom:auto;bottom:initial}.str-chat-react__message-reaction-selector ul{margin:0}[dir="ltr"] .str-chat__message--me .str-chat-react__message-reaction-selector,[dir="ltr"] .str-chat__message--other .str-chat-react__message-reaction-selector{left:auto;left:initial}[dir="rtl"] .str-chat__message--me .str-chat-react__message-reaction-selector,[dir="rtl"] .str-chat__message--other .str-chat-react__message-reaction-selector{right:auto;right:initial}.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:none;border:none;cursor:pointer;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:0;padding:initial;background:transparent none repeat 0 0 / auto auto padding-box border-box scroll;background:initial;border:medium none currentColor;border:initial;border-radius:var(--str-chat__border-radius-circle);margin:var(--str-chat__spacing-2);cursor:pointer}[dir="ltr"] .str-chat__modal--open .str-chat__modal__close-button{right:0}[dir="rtl"] .str-chat__modal--open .str-chat__modal__close-button{left:0}.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;top: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;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-action{padding:.675rem;font:var(--str-chat__subtitle-text);color:var(--str-chat__primary-color)}.str-chat__poll-results-modal button,.str-chat__poll-answer-list-modal button,.str-chat__add-poll-answer-modal button,.str-chat__suggest-poll-option-modal button,.str-chat__poll-options-modal button{background:none;border:none;cursor:pointer}.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-top:1rem;padding-bottom:.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;grid-gap:.125rem;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-react__modal.str-chat__poll-action-modal .str-chat__modal__close-button,.str-chat__poll-actions:not(.str-chat-angular__poll-actions) .str-chat__modal .str-chat__modal__close-button{display:none}.str-chat-react__modal.str-chat__poll-action-modal .str-chat__modal__inner,.str-chat__poll-actions .str-chat__modal .str-chat__modal__inner{padding:0 0 .5rem;overflow:hidden;max-width:400px}.str-chat-react__modal.str-chat__poll-action-modal .str-chat__modal__inner .str-chat__tooltip,.str-chat__poll-actions .str-chat__modal .str-chat__modal__inner .str-chat__tooltip{max-width:300px}.str-chat-react__modal.str-chat__poll-action-modal .str-chat__modal__inner .str-chat__modal__suggest-poll-option .str-chat__form-field-error,.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-react__modal.str-chat__poll-action-modal .str-chat__modal__inner .str-chat__modal__poll-answer-list,.str-chat-react__modal.str-chat__poll-action-modal .str-chat__modal__inner .str-chat__modal__poll-option-list,.str-chat-react__modal.str-chat__poll-action-modal .str-chat__modal__inner .str-chat__modal__poll-results,.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-react__modal.str-chat__poll-action-modal .str-chat__modal__inner .str-chat__modal__poll-answer-list .str-chat__loading-indicator-placeholder,.str-chat-react__modal.str-chat__poll-action-modal .str-chat__modal__inner .str-chat__poll-option--full-vote-list .str-chat__loading-indicator-placeholder,.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-react__modal.str-chat__poll-action-modal .str-chat__modal__inner .str-chat__modal__poll-option-list__title,.str-chat-react__modal.str-chat__poll-action-modal .str-chat__modal__inner .str-chat__modal__poll-results__title,.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-react__modal.str-chat__poll-action-modal .str-chat__modal__inner .str-chat__modal__poll-answer-list__body,.str-chat-react__modal.str-chat__poll-action-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-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-react__modal.str-chat__poll-action-modal .str-chat__modal__inner .str-chat__modal__poll-results__body,.str-chat-react__modal.str-chat__poll-action-modal .str-chat__modal__inner .str-chat__modal__poll-option-list__body,.str-chat-react__modal.str-chat__poll-action-modal .str-chat__modal__inner .str-chat__poll-answer-list,.str-chat-react__modal.str-chat__poll-action-modal .str-chat__modal__inner .str-chat__modal__poll-results__option-list,.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-react__modal.str-chat__poll-action-modal .str-chat__modal__inner .str-chat__poll-answer-list,.str-chat__poll-actions .str-chat__modal .str-chat__modal__inner .str-chat__poll-answer-list{padding-bottom:0}.str-chat-react__modal.str-chat__poll-action-modal .str-chat__modal__inner .str-chat__modal__poll-results__body,.str-chat-react__modal.str-chat__poll-action-modal .str-chat__modal__inner .str-chat__modal__poll-option-list__body,.str-chat-react__modal.str-chat__poll-action-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__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-react__modal.str-chat__poll-action-modal .str-chat__modal__inner .str-chat__poll-answer-list,.str-chat-react__modal.str-chat__poll-action-modal .str-chat__modal__inner .str-chat__modal__poll-results__option-list,.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-react__modal.str-chat__poll-action-modal .str-chat__modal__inner .str-chat__modal__poll-results__body,.str-chat-react__modal.str-chat__poll-action-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__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-react__modal.str-chat__poll-action-modal .str-chat__modal__inner .str-chat__poll-option__show-all-votes-button,.str-chat__poll-actions .str-chat__modal .str-chat__modal__inner .str-chat__poll-option__show-all-votes-button{padding-bottom:1rem}.str-chat-react__modal.str-chat__poll-action-modal .str-chat__modal__inner .str-chat__poll-answer,.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-react__modal.str-chat__poll-action-modal .str-chat__modal__inner .str-chat__poll-answer .str-chat__poll-answer__text,.str-chat__poll-actions .str-chat__modal .str-chat__modal__inner .str-chat__poll-answer .str-chat__poll-answer__text{margin:0}.str-chat-react__modal.str-chat__poll-action-modal .str-chat__modal__inner .str-chat__checkmark,.str-chat__poll-actions .str-chat__modal .str-chat__modal__inner .str-chat__checkmark{margin-right:1rem}.str-chat-react__modal.str-chat__poll-action-modal .str-chat__modal__inner .str-chat__poll-option__header,.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-react__modal.str-chat__poll-action-modal .str-chat__modal__inner .str-chat__poll-option__header .str-chat__poll-option__option-text,.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-react__modal.str-chat__poll-action-modal .str-chat__modal__inner .str-chat__poll-vote,.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-top:.375rem;padding-bottom:.375rem}.str-chat-react__modal.str-chat__poll-action-modal .str-chat__modal__inner .str-chat__poll-vote .str-chat__poll-vote__author,.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-react__modal.str-chat__poll-action-modal .str-chat__modal__inner .str-chat__poll-vote .str-chat__poll-vote__author .str-chat__poll-vote__author__name,.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-react__modal.str-chat__poll-action-modal .str-chat__modal__inner .str-chat__poll-result-option-vote-counter,.str-chat__poll-actions .str-chat__modal .str-chat__modal__inner .str-chat__poll-result-option-vote-counter{display:flex;gap:.375rem}.str-chat-react__modal.str-chat__poll-action-modal .str-chat__modal__inner .str-chat__poll-result-option-vote-counter .str-chat__poll-result-winning-option-icon,.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-left:1rem;padding-right:1rem;flex:1}.str-chat__modal__poll-results--option-detail .str-chat__modal__poll-results__body{padding-left:1rem;padding-right:1rem}.str-chat__quoted-poll-preview{display:flex;flex-wrap:wrap;gap:.5rem;align-items:flex-start}.str-chat-angular__create-poll-modal .str-chat__modal .str-chat__modal__close-button,.str-chat__modal.str-chat__create-poll-modal .str-chat__modal__close-button{display:none}.str-chat-angular__create-poll-modal .str-chat__modal .str-chat__modal__inner,.str-chat__modal.str-chat__create-poll-modal .str-chat__modal__inner{padding:0;max-height:none;max-height:initial;display:block}.str-chat-angular__create-poll-modal .str-chat__modal .str-chat__poll-creation-dialog,.str-chat__modal.str-chat__create-poll-modal .str-chat__poll-creation-dialog{height:100%;width:100%;display:flex;flex-direction:column}.str-chat-angular__create-poll-modal .str-chat__modal .str-chat__poll-creation-dialog button,.str-chat__modal.str-chat__create-poll-modal .str-chat__poll-creation-dialog button{background:none;border:none;cursor:pointer}.str-chat-angular__create-poll-modal .str-chat__modal .str-chat__poll-creation-dialog .str-chat__modal-header,.str-chat__modal.str-chat__create-poll-modal .str-chat__poll-creation-dialog .str-chat__modal-header{padding-top:14px;padding-bottom:14px}.str-chat-angular__create-poll-modal .str-chat__modal .str-chat__poll-creation-dialog .str-chat__modal-header .str-chat__modal-header__close-button,.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-angular__create-poll-modal .str-chat__modal .str-chat__poll-creation-dialog .str-chat__dialog__body,.str-chat__modal.str-chat__create-poll-modal .str-chat__poll-creation-dialog .str-chat__dialog__body{flex:1 1;padding:1rem}.str-chat-angular__create-poll-modal .str-chat__modal .str-chat__poll-creation-dialog .str-chat__dialog__body form,.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-angular__create-poll-modal .str-chat__modal .str-chat__poll-creation-dialog .str-chat__form__input-fieldset,.str-chat__modal.str-chat__create-poll-modal .str-chat__poll-creation-dialog .str-chat__form__input-fieldset{margin:0;padding:0}.str-chat-angular__create-poll-modal .str-chat__modal .str-chat__poll-creation-dialog .str-chat__form__input-fieldset .str-chat__form__input-field,.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-angular__create-poll-modal .str-chat__modal .str-chat__poll-creation-dialog .str-chat__form__input-fieldset .str-chat__form__input-field .str-chat__form__input-field__value,.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-angular__create-poll-modal .str-chat__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,.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-angular__create-poll-modal .str-chat__modal .str-chat__poll-creation-dialog .str-chat__form__input-field--with-label .str-chat__form__input-field__value,.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-angular__create-poll-modal .str-chat__modal .str-chat__poll-creation-dialog .str-chat__form__input-field__value input,.str-chat__modal.str-chat__create-poll-modal .str-chat__poll-creation-dialog .str-chat__form__input-field__value input{width:100%}.str-chat-angular__create-poll-modal .str-chat__modal .str-chat__poll-creation-dialog .str-chat__form__expandable-field,.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-angular__create-poll-modal .str-chat__modal .str-chat__poll-creation-dialog .str-chat__form__expandable-field .str-chat__form__switch-field,.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-angular__create-poll-modal .str-chat__modal .str-chat__poll-creation-dialog .str-chat__form__expandable-field .str-chat__form__input-field,.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-angular__create-poll-modal .str-chat__modal .str-chat__poll-creation-dialog .str-chat__form__expandable-field .str-chat__form__input-field .str-chat__form__input-field__value,.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-angular__create-poll-modal .str-chat__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,.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-angular__create-poll-modal .str-chat__modal .str-chat__poll-creation-dialog .str-chat__form__input-fieldset__values,.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-angular__create-poll-modal .str-chat__modal .str-chat__poll-creation-dialog .str-chat__form__field-label,.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-angular__create-poll-modal .str-chat__modal .str-chat__poll-creation-dialog .str-chat__form__input-field--draggable,.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-angular__create-poll-modal .str-chat__modal .str-chat__poll-creation-dialog .str-chat__form__input-field--draggable .str-chat__drag-handle,.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}@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:none;max-height:initial}}.str-chat-angular__poll-actions .str-chat__modal__poll-option-list{max-height:100%;min-height:0;display:flex;flex-direction:column}.str-chat-angular__poll-actions .str-chat__modal__poll-option-list .str-chat__modal__poll-option-list__body{max-height:100%;min-height:0;display:flex;flex-direction:column}.str-chat-angular__poll-actions .str-chat__modal__poll-option-list .str-chat__modal__poll-option-list__body stream-poll-options-list{height:100%;overflow-y:auto;overflow-x:hidden}.str-chat__search{position:relative;display:flex;flex-direction:column;justify-content:center}.str-chat__search.str-chat__search--active{flex:1;max-height:100%}.str-chat__search .str-chat__search-bar{display:flex;align-items:center;justify-content:center;padding:var(--str-chat__spacing-2_5) var(--str-chat__spacing-2);gap:.25rem}.str-chat__search .str-chat__search-bar .str-chat__search-bar-button{background:none;border:none;padding:var(--str-chat__spacing-1);cursor:pointer}.str-chat__search .str-chat__search-bar .str-chat__search-input--wrapper{display:flex;align-items:center;flex:1;padding:var(--str-chat__spacing-1_5) var(--str-chat__spacing-2);min-width:0}.str-chat__search .str-chat__search-bar .str-chat__search-input--wrapper .str-chat__search-input--icon{height:20px;width:20px;margin-right:.5rem}.str-chat__search .str-chat__search-bar .str-chat__search-input--wrapper .str-chat__search-input--clear-button{background:none;border:none;cursor:pointer;padding:0}.str-chat__search .str-chat__search-bar .str-chat__search-input--wrapper .str-chat__search-input--clear-button:disabled{cursor:default}.str-chat__search .str-chat__search-bar .str-chat__search-input--wrapper .str-chat__search-input--clear-button .str-chat__search-input--clear-button-icon{height:20px;width:20px;mask-size:20px;-webkit-mask-size:20px}.str-chat__search .str-chat__search-bar .str-chat__search-input--wrapper input{flex:1;min-width:0}.str-chat__search .str-chat__search-results{flex:1;display:flex;flex-direction:column;min-height:0}.str-chat__search .str-chat__search-results .str-chat__search-results-header{width:100%}.str-chat__search .str-chat__search-results .str-chat__search-results-header button{background:none;border:none;cursor:pointer}.str-chat__search .str-chat__search-results .str-chat__search-results-header .str-chat__search-results-header__filter-source-buttons{display:flex;flex-wrap:wrap;gap:.5rem;padding:var(--str-chat__spacing-3) var(--str-chat__spacing-2_5);width:100%}.str-chat__search .str-chat__search-results .str-chat__search-results-header .str-chat__search-results-header__filter-source-buttons .str-chat__search-results-header__filter-source-button{padding:.5rem .75rem;border-radius:var(--str-chat__border-radius-circle);background-color:var(--str-chat__tertiary-surface-color)}.str-chat__search .str-chat__search-results .str-chat__search-results-header .str-chat__search-results-header__filter-source-buttons .str-chat__search-results-header__filter-source-button--active{background-color:var(--str-chat__surface-color);color:var(--str-chat__text-color);font-weight:500}.str-chat__search .str-chat__search-results .str-chat__search-results-presearch,.str-chat__search .str-chat__search-results .str-chat__search-source-results-empty{width:100%;display:flex;justify-content:center;align-items:center;padding:1.25rem}.str-chat__search .str-chat__search-results .str-chat__search-source-results{flex:1;display:flex;flex-direction:column;min-height:0}.str-chat__search .str-chat__search-results .str-chat__search-source-results .str-chat__search-source-result-list{flex:1;display:flex;flex-direction:column;min-height:0}.str-chat__search .str-chat__search-results .str-chat__search-source-results .str-chat__search-source-result-list .str-chat__infinite-scroll-paginator__content{display:flex;flex-direction:column}.str-chat__search .str-chat__search-results .str-chat__search-source-results .str-chat__search-source-result-list .str-chat__search-result{display:flex;align-items:center;width:100%;-moz-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__search .str-chat__search-results .str-chat__search-source-results .str-chat__search-source-result-list .str-chat__search-result .search__result-text,.str-chat__search .str-chat__search-results .str-chat__search-source-results .str-chat__search-source-result-list .str-chat__search-result .str-chat__search-result--display-name{white-space:nowrap;overflow-y:visible;overflow-x:hidden;overflow-x:clip;text-overflow:ellipsis;overflow-y:hidden}.str-chat__search .str-chat__search-results .str-chat__search-source-results .str-chat__search-source-result-list .str-chat__search-source-result-list__footer{height:4rem;width:100%;display:flex;justify-content:center;align-items:center;flex-direction:column}.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);-moz-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{padding-top: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:-moz-max-content;width:max-content}.str-chat__typing-indicator-react-host{position:static !important}.str-chat__virtual-list .str-chat__typing-indicator{position:static}[dir="ltr"] .str-chat__typing-indicator{left:0}[dir="rtl"] .str-chat__typing-indicator{right:0}[dir="ltr"] .str-chat__typing-indicator{right:0}[dir="rtl"] .str-chat__typing-indicator{left:0}.str-chat__typing-indicator{padding:var(--str-chat__spacing-1_5);display:flex;justify-content:flex-start;align-items:center;-moz-column-gap:var(--str-chat__spacing-1);column-gap:var(--str-chat__spacing-1);position:absolute;bottom:0}.str-chat__typing-indicator .str-chat__typing-indicator__dots{display:flex;align-items:center;justify-content:center;-moz-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-top:14px;padding-bottom:14px;padding-left:8px;padding-right: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-top:14px;padding-bottom:14px;padding-left:8px;padding-right: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-left:8px;padding-right:8px;padding-top:16px;padding-bottom: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-left:10px;padding-right:10px;padding-top:10px;padding-bottom: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-feature-settings:"tnum";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__ai-state-indicator-container{padding:0 8px}.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__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;-moz-appearance:none;appearance:none;background-color:rgba(0,0,0,0);border:0;cursor:pointer;outline:none;position:absolute;z-index:4;filter:drop-shadow(0 2px 2px rgb(25.5, 25.5, 25.5))}@media(hover: hover)and (pointer: fine){.image-gallery-icon:hover{color:#337ab7}.image-gallery-icon:hover .image-gallery-svg{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%;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;-moz-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%;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:none;max-width:initial;-o-object-fit:contain;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%;-o-object-fit:contain;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)}[dir="ltr"] .str-chat__cta-button{border-left:var(--str-chat__cta-button-border-inline-start)}[dir="rtl"] .str-chat__cta-button{border-right:var(--str-chat__cta-button-border-inline-start)}[dir="ltr"] .str-chat__cta-button{border-right:var(--str-chat__cta-button-border-inline-end)}[dir="rtl"] .str-chat__cta-button{border-left:var(--str-chat__cta-button-border-inline-end)}.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);border-top:var(--str-chat__cta-button-border-block-start);border-bottom:var(--str-chat__cta-button-border-block-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}[dir="ltr"] .str-chat__circle-fab{border-left:var(--str-chat__circle-fab-border-inline-start)}[dir="rtl"] .str-chat__circle-fab{border-right:var(--str-chat__circle-fab-border-inline-start)}[dir="ltr"] .str-chat__circle-fab{border-right:var(--str-chat__circle-fab-border-inline-end)}[dir="rtl"] .str-chat__circle-fab{border-left:var(--str-chat__circle-fab-border-inline-end)}.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);border-top:var(--str-chat__circle-fab-border-block-start);border-bottom:var(--str-chat__circle-fab-border-block-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)}[dir="ltr"] .str-chat__avatar .str-chat__avatar-image{border-left:var(--str-chat__avatar-border-inline-start)}[dir="rtl"] .str-chat__avatar .str-chat__avatar-image{border-right:var(--str-chat__avatar-border-inline-start)}[dir="ltr"] .str-chat__avatar .str-chat__avatar-image{border-right:var(--str-chat__avatar-border-inline-end)}[dir="rtl"] .str-chat__avatar .str-chat__avatar-image{border-left:var(--str-chat__avatar-border-inline-end)}.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);border-top:var(--str-chat__avatar-border-block-start);border-bottom:var(--str-chat__avatar-border-block-end);display:block}[dir="ltr"] .str-chat__avatar.str-chat__avatar--no-letters{border-left:var(--str-chat__avatar-border-inline-start)}[dir="rtl"] .str-chat__avatar.str-chat__avatar--no-letters{border-right:var(--str-chat__avatar-border-inline-start)}[dir="ltr"] .str-chat__avatar.str-chat__avatar--no-letters{border-right:var(--str-chat__avatar-border-inline-end)}[dir="rtl"] .str-chat__avatar.str-chat__avatar--no-letters{border-left:var(--str-chat__avatar-border-inline-end)}.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);border-top:var(--str-chat__avatar-border-block-start);border-bottom:var(--str-chat__avatar-border-block-end)}[dir="ltr"] .str-chat__avatar .str-chat__avatar-fallback{border-left:var(--str-chat__avatar-border-inline-start)}[dir="rtl"] .str-chat__avatar .str-chat__avatar-fallback{border-right:var(--str-chat__avatar-border-inline-start)}[dir="ltr"] .str-chat__avatar .str-chat__avatar-fallback{border-right:var(--str-chat__avatar-border-inline-end)}[dir="rtl"] .str-chat__avatar .str-chat__avatar-fallback{border-left: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);border-top:var(--str-chat__avatar-border-block-start);border-bottom:var(--str-chat__avatar-border-block-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__geolocation-attachment-border-radius: calc( var(--str-chat__message-bubble-border-radius) - var(--str-chat__attachment-margin) );--str-chat__geolocation-attachment-color: var(--str-chat__text-color);--str-chat__geolocation-attachment-secondary-color: var(--str-chat__text-low-emphasis-color);--str-chat__geolocation-attachment-background-color: var(--str-chat__secondary-background-color);--str-chat__geolocation-attachment-border-block-start: none;--str-chat__geolocation-attachment-border-block-end: none;--str-chat__geolocation-attachment-border-inline-start: none;--str-chat__geolocation-attachment-border-inline-end: none;--str-chat__geolocation-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)}[dir="ltr"] .str-chat__attachment-list{border-left:var(--str-chat__attachment-list-border-inline-start)}[dir="rtl"] .str-chat__attachment-list{border-right:var(--str-chat__attachment-list-border-inline-start)}[dir="ltr"] .str-chat__attachment-list{border-right:var(--str-chat__attachment-list-border-inline-end)}[dir="rtl"] .str-chat__attachment-list{border-left:var(--str-chat__attachment-list-border-inline-end)}.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);border-top:var(--str-chat__attachment-list-border-block-start);border-bottom:var(--str-chat__attachment-list-border-block-end)}[dir="ltr"] .str-chat__attachment-list .str-chat__message-attachment--image,[dir="ltr"] .str-chat__attachment-list .str-chat__message-attachment-card--header,[dir="ltr"] .str-chat__attachment-list .str-chat__message-attachment--video{border-left:var(--str-chat__image-attachment-border-inline-start)}[dir="rtl"] .str-chat__attachment-list .str-chat__message-attachment--image,[dir="rtl"] .str-chat__attachment-list .str-chat__message-attachment-card--header,[dir="rtl"] .str-chat__attachment-list .str-chat__message-attachment--video{border-right:var(--str-chat__image-attachment-border-inline-start)}[dir="ltr"] .str-chat__attachment-list .str-chat__message-attachment--image,[dir="ltr"] .str-chat__attachment-list .str-chat__message-attachment-card--header,[dir="ltr"] .str-chat__attachment-list .str-chat__message-attachment--video{border-right:var(--str-chat__image-attachment-border-inline-end)}[dir="rtl"] .str-chat__attachment-list .str-chat__message-attachment--image,[dir="rtl"] .str-chat__attachment-list .str-chat__message-attachment-card--header,[dir="rtl"] .str-chat__attachment-list .str-chat__message-attachment--video{border-left:var(--str-chat__image-attachment-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);border-top:var(--str-chat__image-attachment-border-block-start);border-bottom:var(--str-chat__image-attachment-border-block-end)}[dir="ltr"] .str-chat__attachment-list .str-chat__gallery{border-left:var(--str-chat__image-gallery-attachment-border-inline-start)}[dir="rtl"] .str-chat__attachment-list .str-chat__gallery{border-right:var(--str-chat__image-gallery-attachment-border-inline-start)}[dir="ltr"] .str-chat__attachment-list .str-chat__gallery{border-right:var(--str-chat__image-gallery-attachment-border-inline-end)}[dir="rtl"] .str-chat__attachment-list .str-chat__gallery{border-left:var(--str-chat__image-gallery-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);border-top:var(--str-chat__image-gallery-attachment-border-block-start);border-bottom:var(--str-chat__image-gallery-attachment-border-block-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%,#d4d5d7 25%, #f4f4f4 0%, #f4f4f4 50%);background-image:repeating-conic-gradient(#d4d5d7 0% 25%, #f4f4f4 0% 50%);background-size:24px 24px}[dir="ltr"] .str-chat__attachment-list .str-chat__message-attachment-unsupported,[dir="ltr"] .str-chat__attachment-list .str-chat__message-attachment-file--item{border-left:var(--str-chat__file-attachment-border-inline-start)}[dir="rtl"] .str-chat__attachment-list .str-chat__message-attachment-unsupported,[dir="rtl"] .str-chat__attachment-list .str-chat__message-attachment-file--item{border-right:var(--str-chat__file-attachment-border-inline-start)}[dir="ltr"] .str-chat__attachment-list .str-chat__message-attachment-unsupported,[dir="ltr"] .str-chat__attachment-list .str-chat__message-attachment-file--item{border-right:var(--str-chat__file-attachment-border-inline-end)}[dir="rtl"] .str-chat__attachment-list .str-chat__message-attachment-unsupported,[dir="rtl"] .str-chat__attachment-list .str-chat__message-attachment-file--item{border-left:var(--str-chat__file-attachment-border-inline-end)}.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);border-top:var(--str-chat__file-attachment-border-block-start);border-bottom:var(--str-chat__file-attachment-border-block-end)}[dir="ltr"] .str-chat__attachment-list .str-chat__message-attachment-geolocation{border-left:var(--str-chat__geolocation-attachment-border-inline-start)}[dir="rtl"] .str-chat__attachment-list .str-chat__message-attachment-geolocation{border-right:var(--str-chat__geolocation-attachment-border-inline-start)}[dir="ltr"] .str-chat__attachment-list .str-chat__message-attachment-geolocation{border-right:var(--str-chat__geolocation-attachment-border-inline-end)}[dir="rtl"] .str-chat__attachment-list .str-chat__message-attachment-geolocation{border-left:var(--str-chat__geolocation-attachment-border-inline-end)}.str-chat__attachment-list .str-chat__message-attachment-geolocation{background:var(--str-chat__geolocation-attachment-background-color);color:var(--str-chat__geolocation-attachment-color);box-shadow:var(--str-chat__geolocation-attachment-box-shadow);border-radius:var(--str-chat__geolocation-attachment-border-radius);border-top:var(--str-chat__geolocation-attachment-border-block-start);border-bottom:var(--str-chat__geolocation-attachment-border-block-end);overflow:hidden}.str-chat__attachment-list .str-chat__message-attachment-geolocation .str-chat__message-attachment-geolocation__placeholder .str-chat__message-attachment-geolocation__placeholder-link{color:currentColor}.str-chat__attachment-list .str-chat__message-attachment-geolocation .str-chat__message-attachment-geolocation__status{background-color:var(--str-chat__tertiary-surface-color)}.str-chat__attachment-list .str-chat__message-attachment-geolocation .str-chat__message-attachment-geolocation__status .str-chat__message-attachment-geolocation__status--active .str-chat__message-attachment-geolocation__stop-sharing-button{background:none;border:none;font:var(--str-chat__subtitle-medium-text);cursor:pointer}.str-chat__attachment-list .str-chat__message-attachment-geolocation .str-chat__message-attachment-geolocation__status .str-chat__message-attachment-geolocation__status--active .str-chat__message-attachment-geolocation__status--active-until{font:var(--str-chat__caption-text)}.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)}[dir="ltr"] .str-chat__attachment-list .str-chat__message-attachment-audio-widget{border-left:var(--str-chat__audio-attachment-widget-border-inline-start)}[dir="rtl"] .str-chat__attachment-list .str-chat__message-attachment-audio-widget{border-right:var(--str-chat__audio-attachment-widget-border-inline-start)}[dir="ltr"] .str-chat__attachment-list .str-chat__message-attachment-audio-widget{border-right:var(--str-chat__audio-attachment-widget-border-inline-end)}[dir="rtl"] .str-chat__attachment-list .str-chat__message-attachment-audio-widget{border-left:var(--str-chat__audio-attachment-widget-border-inline-end)}.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);border-top:var(--str-chat__audio-attachment-widget-border-block-start);border-bottom:var(--str-chat__audio-attachment-widget-border-block-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}[dir="ltr"] .str-chat__attachment-list .str-chat__message-attachment-audio-widget--play-button{border-left:var(--str-chat__audio-attachment-controls-button-border-inline-start)}[dir="rtl"] .str-chat__attachment-list .str-chat__message-attachment-audio-widget--play-button{border-right:var(--str-chat__audio-attachment-controls-button-border-inline-start)}[dir="ltr"] .str-chat__attachment-list .str-chat__message-attachment-audio-widget--play-button{border-right:var(--str-chat__audio-attachment-controls-button-border-inline-end)}[dir="rtl"] .str-chat__attachment-list .str-chat__message-attachment-audio-widget--play-button{border-left:var(--str-chat__audio-attachment-controls-button-border-inline-end)}.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);border-top:var(--str-chat__audio-attachment-controls-button-border-block-start);border-bottom:var(--str-chat__audio-attachment-controls-button-border-block-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)}[dir="ltr"] .str-chat__attachment-list .str-chat__message-attachment__voice-recording-widget{border-left:var(--str-chat__voice-recording-attachment-widget-border-inline-start)}[dir="rtl"] .str-chat__attachment-list .str-chat__message-attachment__voice-recording-widget{border-right:var(--str-chat__voice-recording-attachment-widget-border-inline-start)}[dir="ltr"] .str-chat__attachment-list .str-chat__message-attachment__voice-recording-widget{border-right:var(--str-chat__voice-recording-attachment-widget-border-inline-end)}[dir="rtl"] .str-chat__attachment-list .str-chat__message-attachment__voice-recording-widget{border-left:var(--str-chat__voice-recording-attachment-widget-border-inline-end)}.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);border-top:var(--str-chat__voice-recording-attachment-widget-border-block-start);border-bottom:var(--str-chat__voice-recording-attachment-widget-border-block-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}[dir="ltr"] .str-chat__attachment-list .str-chat__message-attachment--card{border-left:var(--str-chat__card-attachment-border-inline-start)}[dir="rtl"] .str-chat__attachment-list .str-chat__message-attachment--card{border-right:var(--str-chat__card-attachment-border-inline-start)}[dir="ltr"] .str-chat__attachment-list .str-chat__message-attachment--card{border-right:var(--str-chat__card-attachment-border-inline-end)}[dir="rtl"] .str-chat__attachment-list .str-chat__message-attachment--card{border-left:var(--str-chat__card-attachment-border-inline-end)}.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);border-top:var(--str-chat__card-attachment-border-block-start);border-bottom:var(--str-chat__card-attachment-border-block-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)}[dir="ltr"] .str-chat__attachment-list .str-chat__message-attachment-actions{border-left:var(--str-chat__attachment-actions-border-inline-start)}[dir="rtl"] .str-chat__attachment-list .str-chat__message-attachment-actions{border-right:var(--str-chat__attachment-actions-border-inline-start)}[dir="ltr"] .str-chat__attachment-list .str-chat__message-attachment-actions{border-right:var(--str-chat__attachment-actions-border-inline-end)}[dir="rtl"] .str-chat__attachment-list .str-chat__message-attachment-actions{border-left:var(--str-chat__attachment-actions-border-inline-end)}.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);border-top:var(--str-chat__attachment-actions-border-block-start);border-bottom:var(--str-chat__attachment-actions-border-block-end)}[dir="ltr"] .str-chat__attachment-list .str-chat__message-attachment-actions .str-chat__message-attachment-actions-button{border-left:var(--str-chat__attachment-action-border-inline-start)}[dir="rtl"] .str-chat__attachment-list .str-chat__message-attachment-actions .str-chat__message-attachment-actions-button{border-right:var(--str-chat__attachment-action-border-inline-start)}[dir="ltr"] .str-chat__attachment-list .str-chat__message-attachment-actions .str-chat__message-attachment-actions-button{border-right:var(--str-chat__attachment-action-border-inline-end)}[dir="rtl"] .str-chat__attachment-list .str-chat__message-attachment-actions .str-chat__message-attachment-actions-button{border-left:var(--str-chat__attachment-action-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);border-top:var(--str-chat__attachment-action-border-block-start);border-bottom:var(--str-chat__attachment-action-border-block-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)}[dir="ltr"] .str-chat__attachment-list .str-chat__message-attachment-actions .str-chat__message-attachment-actions-button:not(:last-of-type){border-right:none}[dir="rtl"] .str-chat__attachment-list .str-chat__message-attachment-actions .str-chat__message-attachment-actions-button:not(:last-of-type){border-left:none}[dir="ltr"] .str-chat__attachment-list .str-chat__message-attachment-with-actions.str-chat__message-attachment--giphy .str-chat__message-attachment-card--header{border-bottom-left-radius:0}[dir="rtl"] .str-chat__attachment-list .str-chat__message-attachment-with-actions.str-chat__message-attachment--giphy .str-chat__message-attachment-card--header{border-bottom-right-radius:0}[dir="ltr"] .str-chat__attachment-list .str-chat__message-attachment-with-actions.str-chat__message-attachment--giphy .str-chat__message-attachment-card--header{border-bottom-right-radius:0}[dir="rtl"] .str-chat__attachment-list .str-chat__message-attachment-with-actions.str-chat__message-attachment--giphy .str-chat__message-attachment-card--header{border-bottom-left-radius:0}[dir="ltr"] .str-chat__message-attachment-audio-widget--play-button{border-left:var(--str-chat__audio-attachment-controls-button-border-inline-start)}[dir="rtl"] .str-chat__message-attachment-audio-widget--play-button{border-right:var(--str-chat__audio-attachment-controls-button-border-inline-start)}[dir="ltr"] .str-chat__message-attachment-audio-widget--play-button{border-right:var(--str-chat__audio-attachment-controls-button-border-inline-end)}[dir="rtl"] .str-chat__message-attachment-audio-widget--play-button{border-left:var(--str-chat__audio-attachment-controls-button-border-inline-end)}.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);border-top:var(--str-chat__audio-attachment-controls-button-border-block-start);border-bottom:var(--str-chat__audio-attachment-controls-button-border-block-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)}[dir="ltr"] .str-chat__message-attachment-card.str-chat__message-attachment-card--audio .str-chat__message-attachment-card--header{border-bottom-left-radius:0}[dir="rtl"] .str-chat__message-attachment-card.str-chat__message-attachment-card--audio .str-chat__message-attachment-card--header{border-bottom-right-radius:0}[dir="ltr"] .str-chat__message-attachment-card.str-chat__message-attachment-card--audio .str-chat__message-attachment-card--header{border-bottom-right-radius:0}[dir="rtl"] .str-chat__message-attachment-card.str-chat__message-attachment-card--audio .str-chat__message-attachment-card--header{border-bottom-left-radius:0}[dir="ltr"] .str-chat__message-attachment__voice-recording-widget{border-left:var(--str-chat__voice-recording-attachment-widget-border-inline-start)}[dir="rtl"] .str-chat__message-attachment__voice-recording-widget{border-right:var(--str-chat__voice-recording-attachment-widget-border-inline-start)}[dir="ltr"] .str-chat__message-attachment__voice-recording-widget{border-right:var(--str-chat__voice-recording-attachment-widget-border-inline-end)}[dir="rtl"] .str-chat__message-attachment__voice-recording-widget{border-left:var(--str-chat__voice-recording-attachment-widget-border-inline-end)}.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);border-top:var(--str-chat__voice-recording-attachment-widget-border-block-start);border-bottom:var(--str-chat__voice-recording-attachment-widget-border-block-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}[dir="ltr"] .str-chat__attachment-preview-list{border-left:var(--str-chat__attachment-preview-list-border-inline-start)}[dir="rtl"] .str-chat__attachment-preview-list{border-right:var(--str-chat__attachment-preview-list-border-inline-start)}[dir="ltr"] .str-chat__attachment-preview-list{border-right:var(--str-chat__attachment-preview-list-border-inline-end)}[dir="rtl"] .str-chat__attachment-preview-list{border-left:var(--str-chat__attachment-preview-list-border-inline-end)}.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);border-top:var(--str-chat__attachment-preview-list-border-block-start);border-bottom:var(--str-chat__attachment-preview-list-border-block-end)}.str-chat__attachment-preview-list .str-chat__attachment-list-scroll-container{border-radius:inherit}[dir="ltr"] .str-chat__attachment-preview-list .str-chat__attachment-preview-image{border-left:var(--str-chat__attachment-preview-image-border-inline-start)}[dir="rtl"] .str-chat__attachment-preview-list .str-chat__attachment-preview-image{border-right:var(--str-chat__attachment-preview-image-border-inline-start)}[dir="ltr"] .str-chat__attachment-preview-list .str-chat__attachment-preview-image{border-right:var(--str-chat__attachment-preview-image-border-inline-end)}[dir="rtl"] .str-chat__attachment-preview-list .str-chat__attachment-preview-image{border-left:var(--str-chat__attachment-preview-image-border-inline-end)}.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);border-top:var(--str-chat__attachment-preview-image-border-block-start);border-bottom:var(--str-chat__attachment-preview-image-border-block-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)}[dir="ltr"] .str-chat__attachment-preview-list .str-chat__location-preview,[dir="ltr"] .str-chat__attachment-preview-list .str-chat__attachment-preview-unsupported,[dir="ltr"] .str-chat__attachment-preview-list .str-chat__attachment-preview-voice-recording,[dir="ltr"] .str-chat__attachment-preview-list .str-chat__attachment-preview-file{border-left:var(--str-chat__attachment-preview-file-border-inline-start)}[dir="rtl"] .str-chat__attachment-preview-list .str-chat__location-preview,[dir="rtl"] .str-chat__attachment-preview-list .str-chat__attachment-preview-unsupported,[dir="rtl"] .str-chat__attachment-preview-list .str-chat__attachment-preview-voice-recording,[dir="rtl"] .str-chat__attachment-preview-list .str-chat__attachment-preview-file{border-right:var(--str-chat__attachment-preview-file-border-inline-start)}[dir="ltr"] .str-chat__attachment-preview-list .str-chat__location-preview,[dir="ltr"] .str-chat__attachment-preview-list .str-chat__attachment-preview-unsupported,[dir="ltr"] .str-chat__attachment-preview-list .str-chat__attachment-preview-voice-recording,[dir="ltr"] .str-chat__attachment-preview-list .str-chat__attachment-preview-file{border-right:var(--str-chat__attachment-preview-file-border-inline-end)}[dir="rtl"] .str-chat__attachment-preview-list .str-chat__location-preview,[dir="rtl"] .str-chat__attachment-preview-list .str-chat__attachment-preview-unsupported,[dir="rtl"] .str-chat__attachment-preview-list .str-chat__attachment-preview-voice-recording,[dir="rtl"] .str-chat__attachment-preview-list .str-chat__attachment-preview-file{border-left:var(--str-chat__attachment-preview-file-border-inline-end)}.str-chat__attachment-preview-list .str-chat__location-preview,.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);border-top:var(--str-chat__attachment-preview-file-border-block-start);border-bottom:var(--str-chat__attachment-preview-file-border-block-end)}.str-chat__attachment-preview-list .str-chat__location-preview .str-chat__attachment-preview-title,.str-chat__attachment-preview-list .str-chat__location-preview .str-chat__attachment-preview-file-name,.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__location-preview .str-chat__attachment-preview-subtitle,.str-chat__attachment-preview-list .str-chat__attachment-preview-unsupported .str-chat__attachment-preview-subtitle,.str-chat__attachment-preview-list .str-chat__attachment-preview-voice-recording .str-chat__attachment-preview-subtitle,.str-chat__attachment-preview-list .str-chat__attachment-preview-file .str-chat__attachment-preview-subtitle{font:var(--str-chat__caption-text)}.str-chat__attachment-preview-list .str-chat__location-preview .str-chat__attachment-preview-file-download,.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__location-preview .str-chat__attachment-preview-file-download svg path,.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__location-preview .str-chat__location-preview-image{color:var(--str-chat__active-primary-color)}.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}[dir="ltr"] .mention-menu{border-left:var(--str-chat__autocomplete-menu-border-inline-start) !important}[dir="rtl"] .mention-menu{border-right:var(--str-chat__autocomplete-menu-border-inline-start) !important}[dir="ltr"] .mention-menu{border-right:var(--str-chat__autocomplete-menu-border-inline-end) !important}[dir="rtl"] .mention-menu{border-left:var(--str-chat__autocomplete-menu-border-inline-end) !important}.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;border-top:var(--str-chat__autocomplete-menu-border-block-start) !important;border-bottom:var(--str-chat__autocomplete-menu-border-block-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}[dir="ltr"] .str-chat__slash-command{border-left:var(--str-chat__slash-command-border-inline-start)}[dir="rtl"] .str-chat__slash-command{border-right:var(--str-chat__slash-command-border-inline-start)}[dir="ltr"] .str-chat__slash-command{border-right:var(--str-chat__slash-command-border-inline-end)}[dir="rtl"] .str-chat__slash-command{border-left:var(--str-chat__slash-command-border-inline-end)}.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);border-top:var(--str-chat__slash-command-border-block-start);border-bottom:var(--str-chat__slash-command-border-block-end);text-align:left;font:var(--str-chat__subtitle-text)}.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)}[dir="ltr"] .str-chat__user-item{border-left:var(--str-chat__mention-list-user-item-border-inline-start)}[dir="rtl"] .str-chat__user-item{border-right:var(--str-chat__mention-list-user-item-border-inline-start)}[dir="ltr"] .str-chat__user-item{border-right:var(--str-chat__mention-list-user-item-border-inline-end)}[dir="rtl"] .str-chat__user-item{border-left:var(--str-chat__mention-list-user-item-border-inline-end)}.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);border-top:var(--str-chat__mention-list-user-item-border-block-start);border-bottom:var(--str-chat__mention-list-user-item-border-block-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)}[dir="ltr"] .str-chat__emoji-item{border-left:var(--str-chat__mention-list-emoji-item-border-inline-start)}[dir="rtl"] .str-chat__emoji-item{border-right:var(--str-chat__mention-list-emoji-item-border-inline-start)}[dir="ltr"] .str-chat__emoji-item{border-right:var(--str-chat__mention-list-emoji-item-border-inline-end)}[dir="rtl"] .str-chat__emoji-item{border-left:var(--str-chat__mention-list-emoji-item-border-inline-end)}.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);border-top:var(--str-chat__mention-list-emoji-item-border-block-start);border-bottom:var(--str-chat__mention-list-emoji-item-border-block-end)}.str-chat__emoji-item .str-chat__emoji-item--name{font:var(--str-chat__subtitle-text)}[dir="ltr"] .str-chat__suggestion-list-container{border-left:var(--str-chat__suggestion-list-container-border-inline-start)}[dir="rtl"] .str-chat__suggestion-list-container{border-right:var(--str-chat__suggestion-list-container-border-inline-start)}[dir="ltr"] .str-chat__suggestion-list-container{border-right:var(--str-chat__suggestion-list-container-border-inline-end)}[dir="rtl"] .str-chat__suggestion-list-container{border-left:var(--str-chat__suggestion-list-container-border-inline-end)}.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);border-top:var(--str-chat__suggestion-list-container-border-block-start);border-bottom:var(--str-chat__suggestion-list-container-border-block-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__suggestion-list-container .str-chat__suggestion-list--react .str-chat__suggestion-list-item>button{background:none;border:none;text-decoration:none}.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)}[dir="ltr"] .str-chat__channel{border-left:var(--str-chat__channel-border-inline-start)}[dir="rtl"] .str-chat__channel{border-right:var(--str-chat__channel-border-inline-start)}[dir="ltr"] .str-chat__channel{border-right:var(--str-chat__channel-border-inline-end)}[dir="rtl"] .str-chat__channel{border-left:var(--str-chat__channel-border-inline-end)}.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);border-top:var(--str-chat__channel-border-block-start);border-bottom:var(--str-chat__channel-border-block-end)}[dir="ltr"] .str-chat__empty-channel{border-left:var(--str-chat__channel-border-inline-start)}[dir="rtl"] .str-chat__empty-channel{border-right:var(--str-chat__channel-border-inline-start)}[dir="ltr"] .str-chat__empty-channel{border-right:var(--str-chat__channel-border-inline-end)}[dir="rtl"] .str-chat__empty-channel{border-left: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);border-top:var(--str-chat__channel-border-block-start);border-bottom:var(--str-chat__channel-border-block-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{animation:pulsate 1s linear 0s infinite alternate}.str-chat__loading-channel:nth-of-type(2){animation:pulsate 1s linear .3334s infinite alternate}.str-chat__loading-channel:last-of-type{animation:pulsate 1s linear .6667s infinite alternate}@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)}[dir="ltr"] .str-chat__channel-header{border-left:var(--str-chat__channel-header-border-inline-start)}[dir="rtl"] .str-chat__channel-header{border-right:var(--str-chat__channel-header-border-inline-start)}[dir="ltr"] .str-chat__channel-header{border-right:var(--str-chat__channel-header-border-inline-end)}[dir="rtl"] .str-chat__channel-header{border-left:var(--str-chat__channel-header-border-inline-end)}.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);border-top:var(--str-chat__channel-header-border-block-start);border-bottom:var(--str-chat__channel-header-border-block-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)}[dir="ltr"] .str-chat__channel-list{border-left:var(--str-chat__channel-list-border-inline-start)}[dir="rtl"] .str-chat__channel-list{border-right:var(--str-chat__channel-list-border-inline-start)}[dir="ltr"] .str-chat__channel-list{border-right:var(--str-chat__channel-list-border-inline-end)}[dir="rtl"] .str-chat__channel-list{border-left:var(--str-chat__channel-list-border-inline-end)}.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);border-top:var(--str-chat__channel-list-border-block-start);border-bottom:var(--str-chat__channel-list-border-block-end)}[dir="ltr"] .str-chat__channel-list .str-chat__load-more-button__button{border-left:var(--str-chat__channel-list-load-more-border-inline-start)}[dir="rtl"] .str-chat__channel-list .str-chat__load-more-button__button{border-right:var(--str-chat__channel-list-load-more-border-inline-start)}[dir="ltr"] .str-chat__channel-list .str-chat__load-more-button__button{border-right:var(--str-chat__channel-list-load-more-border-inline-end)}[dir="rtl"] .str-chat__channel-list .str-chat__load-more-button__button{border-left:var(--str-chat__channel-list-load-more-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);border-top:var(--str-chat__channel-list-load-more-border-block-start);border-bottom:var(--str-chat__channel-list-load-more-border-block-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-container .str-chat__channel-preview__action-buttons .str-chat__channel-preview__action-button{--str-chat-icon-color: var(--str-chat__text-low-emphasis-color);border:none;background-color:rgba(0,0,0,0)}.str-chat__channel-preview-container .str-chat__channel-preview__action-buttons .str-chat__channel-preview__action-button--pin.str-chat__channel-preview__action-button--active{--str-chat-icon-color: var(--str-chat__unread-badge-color)}.str-chat__channel-preview-container .str-chat__channel-preview__action-buttons .str-chat__channel-preview__action-button--archive.str-chat__channel-preview__action-button--active{--str-chat-icon-color: var(--str-chat__text-color)}[dir="ltr"] .str-chat__channel-preview{border-left:var(--str-chat__channel-preview-border-inline-start)}[dir="rtl"] .str-chat__channel-preview{border-right:var(--str-chat__channel-preview-border-inline-start)}[dir="ltr"] .str-chat__channel-preview{border-right:var(--str-chat__channel-preview-border-inline-end)}[dir="rtl"] .str-chat__channel-preview{border-left:var(--str-chat__channel-preview-border-inline-end)}.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);border-top:var(--str-chat__channel-preview-border-block-start);border-bottom:var(--str-chat__channel-preview-border-block-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)}[dir="ltr"] .str-chat__channel-preview .str-chat__channel-preview-end-first-row .str-chat__channel-preview-unread-badge{border-left:var(--str-chat__channel-preview-unread-badge-border-inline-start)}[dir="rtl"] .str-chat__channel-preview .str-chat__channel-preview-end-first-row .str-chat__channel-preview-unread-badge{border-right:var(--str-chat__channel-preview-unread-badge-border-inline-start)}[dir="ltr"] .str-chat__channel-preview .str-chat__channel-preview-end-first-row .str-chat__channel-preview-unread-badge{border-right:var(--str-chat__channel-preview-unread-badge-border-inline-end)}[dir="rtl"] .str-chat__channel-preview .str-chat__channel-preview-end-first-row .str-chat__channel-preview-unread-badge{border-left:var(--str-chat__channel-preview-unread-badge-border-inline-end)}.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);border-top:var(--str-chat__channel-preview-unread-badge-border-block-start);border-bottom:var(--str-chat__channel-preview-unread-badge-border-block-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{animation:pulsate 1s linear 0s infinite alternate}.str-chat__channel-preview-loading:nth-of-type(2){animation:pulsate 1s linear .3334s infinite alternate}.str-chat__channel-preview-loading:last-of-type{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}[dir="ltr"] .str-chat__channel-search-input--wrapper{border-left:var(--str-chat__channel-search-input-wrapper-border-inline-start)}[dir="rtl"] .str-chat__channel-search-input--wrapper{border-right:var(--str-chat__channel-search-input-wrapper-border-inline-start)}[dir="ltr"] .str-chat__channel-search-input--wrapper{border-right:var(--str-chat__channel-search-input-wrapper-border-inline-end)}[dir="rtl"] .str-chat__channel-search-input--wrapper{border-left:var(--str-chat__channel-search-input-wrapper-border-inline-end)}.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);border-top:var(--str-chat__channel-search-input-wrapper-border-block-start);border-bottom:var(--str-chat__channel-search-input-wrapper-border-block-end)}[dir="ltr"] .str-chat__channel-search-input--wrapper input{border-left:var(--str-chat__channel-search-input-border-inline-start)}[dir="rtl"] .str-chat__channel-search-input--wrapper input{border-right:var(--str-chat__channel-search-input-border-inline-start)}[dir="ltr"] .str-chat__channel-search-input--wrapper input{border-right:var(--str-chat__channel-search-input-border-inline-end)}[dir="rtl"] .str-chat__channel-search-input--wrapper input{border-left:var(--str-chat__channel-search-input-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);border-top:var(--str-chat__channel-search-input-border-block-start);border-bottom:var(--str-chat__channel-search-input-border-block-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)}[dir="ltr"] .str-chat__channel-search-input--wrapper-active{border-left:var(--str-chat__channel-search-input-wrapper-active-border-inline-start)}[dir="rtl"] .str-chat__channel-search-input--wrapper-active{border-right:var(--str-chat__channel-search-input-wrapper-active-border-inline-start)}[dir="ltr"] .str-chat__channel-search-input--wrapper-active{border-right:var(--str-chat__channel-search-input-wrapper-active-border-inline-end)}[dir="rtl"] .str-chat__channel-search-input--wrapper-active{border-left:var(--str-chat__channel-search-input-wrapper-active-border-inline-end)}.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);border-top:var(--str-chat__channel-search-input-wrapper-active-border-block-start);border-bottom:var(--str-chat__channel-search-input-wrapper-active-border-block-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)}[dir="ltr"] .str-chat__channel-search-results-header{border-left:var(--str-chat__channel-search-results-header-border-inline-start)}[dir="rtl"] .str-chat__channel-search-results-header{border-right:var(--str-chat__channel-search-results-header-border-inline-start)}[dir="ltr"] .str-chat__channel-search-results-header{border-right:var(--str-chat__channel-search-results-header-border-inline-end)}[dir="rtl"] .str-chat__channel-search-results-header{border-left:var(--str-chat__channel-search-results-header-border-inline-end)}.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);border-top:var(--str-chat__channel-search-results-header-border-block-start);border-bottom:var(--str-chat__channel-search-results-header-border-block-end);font:var(--str-chat__subtitle-text)}[dir="ltr"] .str-chat__channel-search-result-list{border-left:var(--str-chat__channel-search-result-list-border-inline-start)}[dir="rtl"] .str-chat__channel-search-result-list{border-right:var(--str-chat__channel-search-result-list-border-inline-start)}[dir="ltr"] .str-chat__channel-search-result-list{border-right:var(--str-chat__channel-search-result-list-border-inline-end)}[dir="rtl"] .str-chat__channel-search-result-list{border-left:var(--str-chat__channel-search-result-list-border-inline-end)}.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);border-top:var(--str-chat__channel-search-result-list-border-block-start);border-bottom:var(--str-chat__channel-search-result-list-border-block-end)}.str-chat__channel-search-result-list.popup{box-shadow:var(--str-chat__channel-search-result-list-popup-box-shadow)}[dir="ltr"] .str-chat__channel-search-result-list .str-chat__channel-search-container-searching{border-left:var(--str-chat__channel-search-results-loading-indicator-border-inline-start)}[dir="rtl"] .str-chat__channel-search-result-list .str-chat__channel-search-container-searching{border-right:var(--str-chat__channel-search-results-loading-indicator-border-inline-start)}[dir="ltr"] .str-chat__channel-search-result-list .str-chat__channel-search-container-searching{border-right:var(--str-chat__channel-search-results-loading-indicator-border-inline-end)}[dir="rtl"] .str-chat__channel-search-result-list .str-chat__channel-search-container-searching{border-left:var(--str-chat__channel-search-results-loading-indicator-border-inline-end)}.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);border-top:var(--str-chat__channel-search-results-loading-indicator-border-block-start);border-bottom:var(--str-chat__channel-search-results-loading-indicator-border-block-end)}[dir="ltr"] .str-chat__channel-search-result-list .str-chat__channel-search-container-empty{border-left:var(--str-chat__channel-search-results-empty-border-inline-start)}[dir="rtl"] .str-chat__channel-search-result-list .str-chat__channel-search-container-empty{border-right:var(--str-chat__channel-search-results-empty-border-inline-start)}[dir="ltr"] .str-chat__channel-search-result-list .str-chat__channel-search-container-empty{border-right:var(--str-chat__channel-search-results-empty-border-inline-end)}[dir="rtl"] .str-chat__channel-search-result-list .str-chat__channel-search-container-empty{border-left:var(--str-chat__channel-search-results-empty-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);border-top:var(--str-chat__channel-search-results-empty-border-block-start);border-bottom:var(--str-chat__channel-search-results-empty-border-block-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)}[dir="ltr"] .str-chat__channel-search-result-list .str-chat__channel-search-result{border-left:var(--str-chat__channel-search-result-border-inline-start)}[dir="rtl"] .str-chat__channel-search-result-list .str-chat__channel-search-result{border-right:var(--str-chat__channel-search-result-border-inline-start)}[dir="ltr"] .str-chat__channel-search-result-list .str-chat__channel-search-result{border-right:var(--str-chat__channel-search-result-border-inline-end)}[dir="rtl"] .str-chat__channel-search-result-list .str-chat__channel-search-result{border-left:var(--str-chat__channel-search-result-border-inline-end)}.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);border-top:var(--str-chat__channel-search-result-border-block-start);border-bottom:var(--str-chat__channel-search-result-border-block-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)}[dir="ltr"] .str-chat__dialog-menu{border-left:var(--str-chat__dialog-menu-border-inline-start)}[dir="rtl"] .str-chat__dialog-menu{border-right:var(--str-chat__dialog-menu-border-inline-start)}[dir="ltr"] .str-chat__dialog-menu{border-right:var(--str-chat__dialog-menu-border-inline-end)}[dir="rtl"] .str-chat__dialog-menu{border-left:var(--str-chat__dialog-menu-border-inline-end)}.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);border-top:var(--str-chat__dialog-menu-border-block-start);border-bottom:var(--str-chat__dialog-menu-border-block-end)}[dir="ltr"] .str-chat__dialog-menu .str-chat__dialog-menu__button{border-left:var(--str-chat__dialog-menu-button-border-inline-start)}[dir="rtl"] .str-chat__dialog-menu .str-chat__dialog-menu__button{border-right:var(--str-chat__dialog-menu-button-border-inline-start)}[dir="ltr"] .str-chat__dialog-menu .str-chat__dialog-menu__button{border-right:var(--str-chat__dialog-menu-button-border-inline-end)}[dir="rtl"] .str-chat__dialog-menu .str-chat__dialog-menu__button{border-left:var(--str-chat__dialog-menu-button-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);border-top:var(--str-chat__dialog-menu-button-border-block-start);border-bottom:var(--str-chat__dialog-menu-button-border-block-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__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__dropzone-container{background-color:var(--str-chat__dropzone-container-background-color);color:var(--str-chat__dropzone-container-color);backdrop-filter:var(--str-chat__dropzone-container-backdrop-filter);font:var(--str-chat__subtitle-text)}.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}[dir="ltr"] .str-chat__edit-message-form .str-chat__edit-message-form-options .str-chat__edit-message-cancel,[dir="ltr"] .str-chat__edit-message-form .str-chat__edit-message-form-options .str-chat__edit-message-send{border-left:var(--str-chat__edit-message-modal-button-border-inline-start)}[dir="rtl"] .str-chat__edit-message-form .str-chat__edit-message-form-options .str-chat__edit-message-cancel,[dir="rtl"] .str-chat__edit-message-form .str-chat__edit-message-form-options .str-chat__edit-message-send{border-right:var(--str-chat__edit-message-modal-button-border-inline-start)}[dir="ltr"] .str-chat__edit-message-form .str-chat__edit-message-form-options .str-chat__edit-message-cancel,[dir="ltr"] .str-chat__edit-message-form .str-chat__edit-message-form-options .str-chat__edit-message-send{border-right:var(--str-chat__edit-message-modal-button-border-inline-end)}[dir="rtl"] .str-chat__edit-message-form .str-chat__edit-message-form-options .str-chat__edit-message-cancel,[dir="rtl"] .str-chat__edit-message-form .str-chat__edit-message-form-options .str-chat__edit-message-send{border-left:var(--str-chat__edit-message-modal-button-border-inline-end)}.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);border-top:var(--str-chat__edit-message-modal-button-border-block-start);border-bottom:var(--str-chat__edit-message-modal-button-border-block-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 input::-webkit-outer-spin-button,.str-chat input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.str-chat input[type=number]{-moz-appearance:textfield}.str-chat__form-field-error{font-size:.75rem;color:var(--str-chat__danger-color)}.str-chat__form__switch-field{background-color:var(--str-chat__tertiary-surface-color);border-radius:.75rem}.str-chat__form__switch-field,.str-chat__form__switch-field label{cursor:pointer}.str-chat__form__switch-field label{display:flex;gap:.5rem}.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__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__form__switch-field .str-chat__form__switch-field__switch.str-chat__form__switch-field__switch--on{background-color:var(--str-chat__green600)}.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__form__switch-field--disabled .str-chat__form__switch-field--disabled,.str-chat__form__switch-field--disabled .str-chat__form__switch-field--disabled .str-chat__form__switch-field__switch,.str-chat__form__switch-field--disabled label{cursor:not-allowed}.str-chat__dropdown .str-chat__dropdown__open-button{background:none;border:none;cursor:pointer}.str-chat__dropdown .str-chat__dropdown__items{background-color:var(--str-chat__background-color)}.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__icon--poll{background-color:var(--str-chat-icon-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{--str-chat__link-preview-loading-state-color: var(--str-chat__disabled-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__link-preview-card--loading .str-chat__link-preview-card__content-title,.str-chat__link-preview-card--loading .str-chat__link-preview-card__content-description{background-image:linear-gradient(-90deg, var(--str-chat__link-preview-loading-state-color) 0%, var(--str-chat__link-preview-loading-state-color) 100%);animation:pulsate 1s linear 0s infinite alternate;border-radius:calc(var(--str-chat__spacing-px)*3)}.str-chat__link-preview-card--loading .str-chat__link-preview-card__content-title:nth-of-type(2),.str-chat__link-preview-card--loading .str-chat__link-preview-card__content-description:nth-of-type(2){animation:pulsate 1s linear .3334s infinite alternate}.str-chat__link-preview-card--loading .str-chat__link-preview-card__content-title:last-of-type,.str-chat__link-preview-card--loading .str-chat__link-preview-card__content-description:last-of-type{animation:pulsate 1s linear .6667s infinite alternate}@keyframes pulsate{from{opacity:.5}to{opacity:1}}.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__share-location-dialog .str-chat__live-location-activation{border-radius:var(--str-chat__border-radius-sm);border:1px solid var(--str-chat__secondary-overlay-color)}.str-chat__share-location-dialog .str-chat__live-location-activation .str-chat__form__switch-field{background-color:var(--str-chat__background-color)}.str-chat__share-location-dialog .str-chat__live-location-activation .str-chat__dropdown__open-button{border-radius:var(--str-chat__border-radius-xs);border:1px solid var(--str-chat__secondary-overlay-color);background-color:var(--str-chat__tertiary-surface-color)}.str-chat__share-location-dialog .str-chat__live-location-activation .str-chat__dropdown__items{box-shadow:0 0 8px var(--str-chat__box-shadow-color);border-radius:var(--str-chat__border-radius-xs)}.str-chat__share-location-dialog .str-chat__live-location-activation .str-chat__dropdown__items .str-chat__live-location-sharing-duration-option{background:none;border:none;cursor:pointer}.str-chat__share-location-dialog .str-chat__live-location-activation .str-chat__dropdown__items .str-chat__live-location-sharing-duration-option:hover{background-color:var(--str-chat__message-options-hover-background-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__blocked-message-border-radius: var(--str-chat__border-radius-md);--str-chat__blocked-message-color: var(--str-chat__text-low-emphasis-color);--str-chat__blocked-message-background-color: var(--str-chat__secondary-surface-color);--str-chat__blocked-message-border-block-start: none;--str-chat__blocked-message-border-block-end: none;--str-chat__blocked-message-border-inline-start: none;--str-chat__blocked-message-border-inline-end: none;--str-chat__blocked-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-reminder-color: var(--str-chat__primary-color);--str-chat__message-reminder-background-color: var(--str-chat__secondary-background-color);--str-chat__message-reminder-border-block-start: none;--str-chat__message-reminder-border-block-end: none;--str-chat__message-reminder-border-inline-start: none;--str-chat__message-reminder-border-inline-end: none;--str-chat__message-reminder-box-shadow: none;--str-chat__message-reminder-border-radius: 0}[dir="ltr"] .str-chat__message--system{border-left:var(--str-chat__system-message-border-inline-start)}[dir="rtl"] .str-chat__message--system{border-right:var(--str-chat__system-message-border-inline-start)}[dir="ltr"] .str-chat__message--system{border-right:var(--str-chat__system-message-border-inline-end)}[dir="rtl"] .str-chat__message--system{border-left:var(--str-chat__system-message-border-inline-end)}.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);border-top:var(--str-chat__system-message-border-block-start);border-bottom:var(--str-chat__system-message-border-block-end);font:var(--str-chat__caption-text)}[dir="ltr"] .str-chat__date-separator{border-left:var(--str-chat__date-separator-border-inline-start)}[dir="rtl"] .str-chat__date-separator{border-right:var(--str-chat__date-separator-border-inline-start)}[dir="ltr"] .str-chat__date-separator{border-right:var(--str-chat__date-separator-border-inline-end)}[dir="rtl"] .str-chat__date-separator{border-left:var(--str-chat__date-separator-border-inline-end)}.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);border-top:var(--str-chat__date-separator-border-block-start);border-bottom:var(--str-chat__date-separator-border-block-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-mention{color:var(--str-chat__message-mention-color);font:var(--str-chat__body2-medium-text)}[dir="ltr"] .str-chat__message{border-left:var(--str-chat__message-border-inline-start)}[dir="rtl"] .str-chat__message{border-right:var(--str-chat__message-border-inline-start)}[dir="ltr"] .str-chat__message{border-right:var(--str-chat__message-border-inline-end)}[dir="rtl"] .str-chat__message{border-left:var(--str-chat__message-border-inline-end)}.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);border-top:var(--str-chat__message-border-block-start);border-bottom:var(--str-chat__message-border-block-end)}.str-chat__message a{text-decoration:none;color:var(--str-chat__message-link-color)}[dir="ltr"] .str-chat__message .str-chat__message-reminder{border-left:var(--str-chat__message-reminder-border-inline-start)}[dir="rtl"] .str-chat__message .str-chat__message-reminder{border-right:var(--str-chat__message-reminder-border-inline-start)}[dir="ltr"] .str-chat__message .str-chat__message-reminder{border-right:var(--str-chat__message-reminder-border-inline-end)}[dir="rtl"] .str-chat__message .str-chat__message-reminder{border-left:var(--str-chat__message-reminder-border-inline-end)}.str-chat__message .str-chat__message-reminder{background:var(--str-chat__message-reminder-background-color);color:var(--str-chat__message-reminder-color);box-shadow:var(--str-chat__message-reminder-box-shadow);border-radius:var(--str-chat__message-reminder-border-radius);border-top:var(--str-chat__message-reminder-border-block-start);border-bottom:var(--str-chat__message-reminder-border-block-end);font:var(--str-chat__caption-medium-text)}[dir="ltr"] .str-chat__message .str-chat__message-bubble{border-left:var(--str-chat__message-bubble-border-inline-start)}[dir="rtl"] .str-chat__message .str-chat__message-bubble{border-right:var(--str-chat__message-bubble-border-inline-start)}[dir="ltr"] .str-chat__message .str-chat__message-bubble{border-right:var(--str-chat__message-bubble-border-inline-end)}[dir="rtl"] .str-chat__message .str-chat__message-bubble{border-left:var(--str-chat__message-bubble-border-inline-end)}.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);border-top:var(--str-chat__message-bubble-border-block-start);border-bottom:var(--str-chat__message-bubble-border-block-end);font:var(--str-chat__body2-text)}[dir="ltr"] .str-chat__message .str-chat__message--deleted-inner{border-left:var(--str-chat__deleted-message-border-inline-start)}[dir="rtl"] .str-chat__message .str-chat__message--deleted-inner{border-right:var(--str-chat__deleted-message-border-inline-start)}[dir="ltr"] .str-chat__message .str-chat__message--deleted-inner{border-right:var(--str-chat__deleted-message-border-inline-end)}[dir="rtl"] .str-chat__message .str-chat__message--deleted-inner{border-left:var(--str-chat__deleted-message-border-inline-end)}.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);border-top:var(--str-chat__deleted-message-border-block-start);border-bottom:var(--str-chat__deleted-message-border-block-end);font:var(--str-chat__body2-text)}[dir="ltr"] .str-chat__message .str-chat__message--blocked-inner{border-left:var(--str-chat__blocked-message-border-inline-start)}[dir="rtl"] .str-chat__message .str-chat__message--blocked-inner{border-right:var(--str-chat__blocked-message-border-inline-start)}[dir="ltr"] .str-chat__message .str-chat__message--blocked-inner{border-right:var(--str-chat__blocked-message-border-inline-end)}[dir="rtl"] .str-chat__message .str-chat__message--blocked-inner{border-left:var(--str-chat__blocked-message-border-inline-end)}.str-chat__message .str-chat__message--blocked-inner{background:var(--str-chat__blocked-message-background-color);color:var(--str-chat__blocked-message-color);box-shadow:var(--str-chat__blocked-message-box-shadow);border-radius:var(--str-chat__blocked-message-border-radius);border-top:var(--str-chat__blocked-message-border-block-start);border-bottom:var(--str-chat__blocked-message-border-block-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-status-sent svg path,.str-chat__message .str-chat__message-status-delivered svg path{fill:var(--str-chat__text-low-emphasis-color)}.str-chat__message .str-chat__message-replies-count-button-wrapper button,.str-chat__message .str-chat__message-is-thread-reply-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)}.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)}}[dir="ltr"] .str-chat__li--top .str-chat__message--other .str-chat__message-bubble,[dir="ltr"] .str-chat__li--single .str-chat__message--other .str-chat__message-bubble{border-bottom-left-radius:calc(var(--str-chat__message-bubble-border-radius)/6)}[dir="rtl"] .str-chat__li--top .str-chat__message--other .str-chat__message-bubble,[dir="rtl"] .str-chat__li--single .str-chat__message--other .str-chat__message-bubble{border-bottom-right-radius:calc(var(--str-chat__message-bubble-border-radius)/6)}[dir="ltr"] .str-chat__li--top .str-chat__message--me .str-chat__message-bubble,[dir="ltr"] .str-chat__li--single .str-chat__message--me .str-chat__message-bubble{border-bottom-right-radius:calc(var(--str-chat__message-bubble-border-radius)/6)}[dir="rtl"] .str-chat__li--top .str-chat__message--me .str-chat__message-bubble,[dir="rtl"] .str-chat__li--single .str-chat__message--me .str-chat__message-bubble{border-bottom-left-radius:calc(var(--str-chat__message-bubble-border-radius)/6)}[dir="ltr"] .str-chat__li--middle .str-chat__message--other .str-chat__message-bubble,[dir="ltr"] .str-chat__li--bottom .str-chat__message--other .str-chat__message-bubble{border-top-left-radius:calc(var(--str-chat__message-bubble-border-radius)/6)}[dir="rtl"] .str-chat__li--middle .str-chat__message--other .str-chat__message-bubble,[dir="rtl"] .str-chat__li--bottom .str-chat__message--other .str-chat__message-bubble{border-top-right-radius:calc(var(--str-chat__message-bubble-border-radius)/6)}[dir="ltr"] .str-chat__li--middle .str-chat__message--other .str-chat__message-bubble,[dir="ltr"] .str-chat__li--bottom .str-chat__message--other .str-chat__message-bubble{border-bottom-left-radius:calc(var(--str-chat__message-bubble-border-radius)/6)}[dir="rtl"] .str-chat__li--middle .str-chat__message--other .str-chat__message-bubble,[dir="rtl"] .str-chat__li--bottom .str-chat__message--other .str-chat__message-bubble{border-bottom-right-radius:calc(var(--str-chat__message-bubble-border-radius)/6)}[dir="ltr"] .str-chat__li--middle .str-chat__message--me .str-chat__message-bubble,[dir="ltr"] .str-chat__li--bottom .str-chat__message--me .str-chat__message-bubble{border-top-right-radius:calc(var(--str-chat__message-bubble-border-radius)/6)}[dir="rtl"] .str-chat__li--middle .str-chat__message--me .str-chat__message-bubble,[dir="rtl"] .str-chat__li--bottom .str-chat__message--me .str-chat__message-bubble{border-top-left-radius:calc(var(--str-chat__message-bubble-border-radius)/6)}[dir="ltr"] .str-chat__li--middle .str-chat__message--me .str-chat__message-bubble,[dir="ltr"] .str-chat__li--bottom .str-chat__message--me .str-chat__message-bubble{border-bottom-right-radius:calc(var(--str-chat__message-bubble-border-radius)/6)}[dir="rtl"] .str-chat__li--middle .str-chat__message--me .str-chat__message-bubble,[dir="rtl"] .str-chat__li--bottom .str-chat__message--me .str-chat__message-bubble{border-bottom-left-radius:calc(var(--str-chat__message-bubble-border-radius)/6)}[dir="ltr"] .str-chat__message-with-thread-link.str-chat__message--other .str-chat__message-bubble{border-bottom-left-radius:calc(var(--str-chat__message-bubble-border-radius)/6)}[dir="rtl"] .str-chat__message-with-thread-link.str-chat__message--other .str-chat__message-bubble{border-bottom-right-radius:calc(var(--str-chat__message-bubble-border-radius)/6)}[dir="ltr"] .str-chat__message-with-thread-link.str-chat__message--me .str-chat__message-bubble{border-bottom-right-radius:calc(var(--str-chat__message-bubble-border-radius)/6)}[dir="rtl"] .str-chat__message-with-thread-link.str-chat__message--me .str-chat__message-bubble{border-bottom-left-radius:calc(var(--str-chat__message-bubble-border-radius)/6)}[dir="ltr"] .str-chat__quoted-message-preview{border-left:var(--str-chat__message-border-inline-start)}[dir="rtl"] .str-chat__quoted-message-preview{border-right:var(--str-chat__message-border-inline-start)}[dir="ltr"] .str-chat__quoted-message-preview{border-right:var(--str-chat__message-border-inline-end)}[dir="rtl"] .str-chat__quoted-message-preview{border-left:var(--str-chat__message-border-inline-end)}.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);border-top:var(--str-chat__message-border-block-start);border-bottom:var(--str-chat__message-border-block-end)}[dir="ltr"] .str-chat__quoted-message-preview .str-chat__quoted-message-bubble{border-left:var(--str-chat__message-bubble-border-inline-start)}[dir="rtl"] .str-chat__quoted-message-preview .str-chat__quoted-message-bubble{border-right:var(--str-chat__message-bubble-border-inline-start)}[dir="ltr"] .str-chat__quoted-message-preview .str-chat__quoted-message-bubble{border-right:var(--str-chat__message-bubble-border-inline-end)}[dir="rtl"] .str-chat__quoted-message-preview .str-chat__quoted-message-bubble{border-left:var(--str-chat__message-bubble-border-inline-end)}[dir="ltr"] .str-chat__quoted-message-preview .str-chat__quoted-message-bubble{border-bottom-left-radius:calc(var(--str-chat__message-bubble-border-radius)/6)}[dir="rtl"] .str-chat__quoted-message-preview .str-chat__quoted-message-bubble{border-bottom-right-radius:calc(var(--str-chat__message-bubble-border-radius)/6)}.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);border-top:var(--str-chat__message-bubble-border-block-start);border-bottom:var(--str-chat__message-bubble-border-block-end);background-color:var(--str-chat__quoted-message-bubble-background-color)}.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}[dir="ltr"] .str-chat__message-actions-box{border-left:var(--str-chat__message-actions-box-border-inline-start)}[dir="rtl"] .str-chat__message-actions-box{border-right:var(--str-chat__message-actions-box-border-inline-start)}[dir="ltr"] .str-chat__message-actions-box{border-right:var(--str-chat__message-actions-box-border-inline-end)}[dir="rtl"] .str-chat__message-actions-box{border-left:var(--str-chat__message-actions-box-border-inline-end)}.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);border-top:var(--str-chat__message-actions-box-border-block-start);border-bottom:var(--str-chat__message-actions-box-border-block-end)}[dir="ltr"] .str-chat__message-actions-box .str-chat__message-actions-list-item-button{border-left:var(--str-chat__message-actions-box-item-border-inline-start)}[dir="rtl"] .str-chat__message-actions-box .str-chat__message-actions-list-item-button{border-right:var(--str-chat__message-actions-box-item-border-inline-start)}[dir="ltr"] .str-chat__message-actions-box .str-chat__message-actions-list-item-button{border-right:var(--str-chat__message-actions-box-item-border-inline-end)}[dir="rtl"] .str-chat__message-actions-box .str-chat__message-actions-list-item-button{border-left:var(--str-chat__message-actions-box-item-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);border-top:var(--str-chat__message-actions-box-item-border-block-start);border-bottom:var(--str-chat__message-actions-box-item-border-block-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)}.str-chat__message-actions-box .str_chat__button-with-submenu--submenu-open{background-color:var(--str-chat__message-actions-box-item-hover-background-color)}[dir="ltr"] .str-chat__message-actions-box .str-chat__message-actions-box__submenu{border-left:var(--str-chat__message-actions-box-border-inline-start)}[dir="rtl"] .str-chat__message-actions-box .str-chat__message-actions-box__submenu{border-right:var(--str-chat__message-actions-box-border-inline-start)}[dir="ltr"] .str-chat__message-actions-box .str-chat__message-actions-box__submenu{border-right:var(--str-chat__message-actions-box-border-inline-end)}[dir="rtl"] .str-chat__message-actions-box .str-chat__message-actions-box__submenu{border-left:var(--str-chat__message-actions-box-border-inline-end)}.str-chat__message-actions-box .str-chat__message-actions-box__submenu{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);border-top:var(--str-chat__message-actions-box-border-block-start);border-bottom:var(--str-chat__message-actions-box-border-block-end)}@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}[dir="ltr"] .str-chat__message-bounce-prompt .str-chat__message-bounce-edit,[dir="ltr"] .str-chat__message-bounce-prompt .str-chat__message-bounce-send,[dir="ltr"] .str-chat__message-bounce-prompt .str-chat__message-bounce-delete{border-left:var(--str-chat__message-bounce-button-border-inline-start)}[dir="rtl"] .str-chat__message-bounce-prompt .str-chat__message-bounce-edit,[dir="rtl"] .str-chat__message-bounce-prompt .str-chat__message-bounce-send,[dir="rtl"] .str-chat__message-bounce-prompt .str-chat__message-bounce-delete{border-right:var(--str-chat__message-bounce-button-border-inline-start)}[dir="ltr"] .str-chat__message-bounce-prompt .str-chat__message-bounce-edit,[dir="ltr"] .str-chat__message-bounce-prompt .str-chat__message-bounce-send,[dir="ltr"] .str-chat__message-bounce-prompt .str-chat__message-bounce-delete{border-right:var(--str-chat__message-bounce-button-border-inline-end)}[dir="rtl"] .str-chat__message-bounce-prompt .str-chat__message-bounce-edit,[dir="rtl"] .str-chat__message-bounce-prompt .str-chat__message-bounce-send,[dir="rtl"] .str-chat__message-bounce-prompt .str-chat__message-bounce-delete{border-left:var(--str-chat__message-bounce-button-border-inline-end)}.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);border-top:var(--str-chat__message-bounce-button-border-block-start);border-bottom:var(--str-chat__message-bounce-button-border-block-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__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 )}[dir="ltr"] .str-chat__message-input{border-left:var(--str-chat__message-input-border-inline-start)}[dir="rtl"] .str-chat__message-input{border-right:var(--str-chat__message-input-border-inline-start)}[dir="ltr"] .str-chat__message-input{border-right:var(--str-chat__message-input-border-inline-end)}[dir="rtl"] .str-chat__message-input{border-left:var(--str-chat__message-input-border-inline-end)}.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);border-top:var(--str-chat__message-input-border-block-start);border-bottom:var(--str-chat__message-input-border-block-end)}[dir="ltr"] .str-chat__message-input .str-chat__file-input-container,[dir="ltr"] .str-chat__message-input .str-chat-angular__create-poll{border-left:var(--str-chat__message-input-tools-border-inline-start)}[dir="rtl"] .str-chat__message-input .str-chat__file-input-container,[dir="rtl"] .str-chat__message-input .str-chat-angular__create-poll{border-right:var(--str-chat__message-input-tools-border-inline-start)}[dir="ltr"] .str-chat__message-input .str-chat__file-input-container,[dir="ltr"] .str-chat__message-input .str-chat-angular__create-poll{border-right:var(--str-chat__message-input-tools-border-inline-end)}[dir="rtl"] .str-chat__message-input .str-chat__file-input-container,[dir="rtl"] .str-chat__message-input .str-chat-angular__create-poll{border-left:var(--str-chat__message-input-tools-border-inline-end)}.str-chat__message-input .str-chat__file-input-container,.str-chat__message-input .str-chat-angular__create-poll{--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);border-top:var(--str-chat__message-input-tools-border-block-start);border-bottom:var(--str-chat__message-input-tools-border-block-end)}.str-chat__message-input .str-chat__file-input-container svg path,.str-chat__message-input .str-chat-angular__create-poll 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)}[dir="ltr"] .str-chat__message-input .str-chat__message-textarea-container{border-left:var(--str-chat__message-textarea-border-inline-start)}[dir="rtl"] .str-chat__message-input .str-chat__message-textarea-container{border-right:var(--str-chat__message-textarea-border-inline-start)}[dir="ltr"] .str-chat__message-input .str-chat__message-textarea-container{border-right:var(--str-chat__message-textarea-border-inline-end)}[dir="rtl"] .str-chat__message-input .str-chat__message-textarea-container{border-left:var(--str-chat__message-textarea-border-inline-end)}.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);border-top:var(--str-chat__message-textarea-border-block-start);border-bottom:var(--str-chat__message-textarea-border-block-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__stop-ai-generation-button{background-image:var(--str-chat__circle-stop-icon);background-color:rgba(0,0,0,0);border-width:0}[dir="ltr"] .str-chat__message-input .str-chat__send-button{border-left:var(--str-chat__message-send-border-inline-start)}[dir="rtl"] .str-chat__message-input .str-chat__send-button{border-right:var(--str-chat__message-send-border-inline-start)}[dir="ltr"] .str-chat__message-input .str-chat__send-button{border-right:var(--str-chat__message-send-border-inline-end)}[dir="rtl"] .str-chat__message-input .str-chat__send-button{border-left:var(--str-chat__message-send-border-inline-end)}.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);border-top:var(--str-chat__message-send-border-block-start);border-bottom:var(--str-chat__message-send-border-block-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)}[dir="ltr"] .str-chat__message-input .str-chat__start-recording-audio-button{border-left:var(--str-chat__start-recording-audio-button-border-inline-start)}[dir="rtl"] .str-chat__message-input .str-chat__start-recording-audio-button{border-right:var(--str-chat__start-recording-audio-button-border-inline-start)}[dir="ltr"] .str-chat__message-input .str-chat__start-recording-audio-button{border-right:var(--str-chat__start-recording-audio-button-border-inline-end)}[dir="rtl"] .str-chat__message-input .str-chat__start-recording-audio-button{border-left:var(--str-chat__start-recording-audio-button-border-inline-end)}.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);border-top:var(--str-chat__start-recording-audio-button-border-block-start);border-bottom:var(--str-chat__start-recording-audio-button-border-block-end)}.str-chat__message-input .str-chat__start-recording-audio-button:disabled{background-color:var(--str-chat__message-send-disabled-background-color)}[dir="ltr"] .str-chat__message-input .str-chat__message-input-cooldown{border-left:var(--str-chat__cooldown-border-inline-start)}[dir="rtl"] .str-chat__message-input .str-chat__message-input-cooldown{border-right:var(--str-chat__cooldown-border-inline-start)}[dir="ltr"] .str-chat__message-input .str-chat__message-input-cooldown{border-right:var(--str-chat__cooldown-border-inline-end)}[dir="rtl"] .str-chat__message-input .str-chat__message-input-cooldown{border-left:var(--str-chat__cooldown-border-inline-end)}.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);border-top:var(--str-chat__cooldown-border-block-start);border-bottom:var(--str-chat__cooldown-border-block-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__attachment-selector-actions-menu .str-chat__attachment-selector-actions-menu__add-location-button .str-chat__dialog-menu__button-icon{-webkit-mask:var(--str-chat__location-icon) no-repeat center/contain;mask:var(--str-chat__location-icon) no-repeat center/contain}.str-chat__send-to-channel-checkbox__field *{cursor:pointer}.str-chat__send-to-channel-checkbox__field label{color:var(--str-chat__text-low-emphasis-color);font:var(--str-chat__body-text)}.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)}[dir="ltr"] .str-chat__list{border-left:var(--str-chat__message-list-border-inline-start)}[dir="rtl"] .str-chat__list{border-right:var(--str-chat__message-list-border-inline-start)}[dir="ltr"] .str-chat__list{border-right:var(--str-chat__message-list-border-inline-end)}[dir="rtl"] .str-chat__list{border-left:var(--str-chat__message-list-border-inline-end)}.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);border-top:var(--str-chat__message-list-border-block-start);border-bottom:var(--str-chat__message-list-border-block-end)}.str-chat__list .str-chat__parent-message-li{border-bottom: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)}[dir="ltr"] .str-chat__jump-to-latest-message .str-chat__circle-fab{border-left:var(--str-chat__jump-to-latest-message-border-inline-start)}[dir="rtl"] .str-chat__jump-to-latest-message .str-chat__circle-fab{border-right:var(--str-chat__jump-to-latest-message-border-inline-start)}[dir="ltr"] .str-chat__jump-to-latest-message .str-chat__circle-fab{border-right:var(--str-chat__jump-to-latest-message-border-inline-end)}[dir="rtl"] .str-chat__jump-to-latest-message .str-chat__circle-fab{border-left:var(--str-chat__jump-to-latest-message-border-inline-end)}.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);border-top:var(--str-chat__jump-to-latest-message-border-block-start);border-bottom:var(--str-chat__jump-to-latest-message-border-block-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}[dir="ltr"] .str-chat__virtual-list{border-left:var(--str-chat__virtual-list-border-inline-start)}[dir="rtl"] .str-chat__virtual-list{border-right:var(--str-chat__virtual-list-border-inline-start)}[dir="ltr"] .str-chat__virtual-list{border-right:var(--str-chat__virtual-list-border-inline-end)}[dir="rtl"] .str-chat__virtual-list{border-left:var(--str-chat__virtual-list-border-inline-end)}.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);border-top:var(--str-chat__virtual-list-border-block-start);border-bottom:var(--str-chat__virtual-list-border-block-end)}.str-chat__virtual-list .str-chat__parent-message-li{border-bottom: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)}[dir="ltr"] .str-chat__message-reactions-container .str-chat__message-reactions{border-left:var(--str-chat__message-reactions-border-inline-start)}[dir="rtl"] .str-chat__message-reactions-container .str-chat__message-reactions{border-right:var(--str-chat__message-reactions-border-inline-start)}[dir="ltr"] .str-chat__message-reactions-container .str-chat__message-reactions{border-right:var(--str-chat__message-reactions-border-inline-end)}[dir="rtl"] .str-chat__message-reactions-container .str-chat__message-reactions{border-left:var(--str-chat__message-reactions-border-inline-end)}.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);border-top:var(--str-chat__message-reactions-border-block-start);border-bottom:var(--str-chat__message-reactions-border-block-end)}[dir="ltr"] .str-chat__message-reactions-container .str-chat__message-reactions .str-chat__message-reaction{border-left:var(--str-chat__message-reaction-border-inline-start)}[dir="rtl"] .str-chat__message-reactions-container .str-chat__message-reactions .str-chat__message-reaction{border-right:var(--str-chat__message-reaction-border-inline-start)}[dir="ltr"] .str-chat__message-reactions-container .str-chat__message-reactions .str-chat__message-reaction{border-right:var(--str-chat__message-reaction-border-inline-end)}[dir="rtl"] .str-chat__message-reactions-container .str-chat__message-reactions .str-chat__message-reaction{border-left:var(--str-chat__message-reaction-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);border-top:var(--str-chat__message-reaction-border-block-start);border-bottom:var(--str-chat__message-reaction-border-block-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{border-bottom:solid rgba(0,0,0,0)}.str-chat__message-reactions-details .str-chat__message-reactions-details-reaction-type--selected{border-bottom: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}[dir="ltr"] .str-chat__reaction-selector .str-chat__message-reactions-options{border-left:var(--str-chat__message-reactions-options-border-inline-start)}[dir="rtl"] .str-chat__reaction-selector .str-chat__message-reactions-options{border-right:var(--str-chat__message-reactions-options-border-inline-start)}[dir="ltr"] .str-chat__reaction-selector .str-chat__message-reactions-options{border-right:var(--str-chat__message-reactions-options-border-inline-end)}[dir="rtl"] .str-chat__reaction-selector .str-chat__message-reactions-options{border-left:var(--str-chat__message-reactions-options-border-inline-end)}.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);border-top:var(--str-chat__message-reactions-options-border-block-start);border-bottom:var(--str-chat__message-reactions-options-border-block-end)}[dir="ltr"] .str-chat__reaction-selector .str-chat__message-reactions-options .str-chat__message-reactions-option{border-left:var(--str-chat__message-reactions-option-border-inline-start)}[dir="rtl"] .str-chat__reaction-selector .str-chat__message-reactions-options .str-chat__message-reactions-option{border-right:var(--str-chat__message-reactions-option-border-inline-start)}[dir="ltr"] .str-chat__reaction-selector .str-chat__message-reactions-options .str-chat__message-reactions-option{border-right:var(--str-chat__message-reactions-option-border-inline-end)}[dir="rtl"] .str-chat__reaction-selector .str-chat__message-reactions-options .str-chat__message-reactions-option{border-left:var(--str-chat__message-reactions-option-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);border-top:var(--str-chat__message-reactions-option-border-block-start);border-bottom:var(--str-chat__message-reactions-option-border-block-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);backdrop-filter:var(--str-chat__modal-overlay-backdrop-filter)}[dir="ltr"] .str-chat__modal .str-chat__modal__inner{border-left:var(--str-chat__modal-border-inline-start)}[dir="rtl"] .str-chat__modal .str-chat__modal__inner{border-right:var(--str-chat__modal-border-inline-start)}[dir="ltr"] .str-chat__modal .str-chat__modal__inner{border-right:var(--str-chat__modal-border-inline-end)}[dir="rtl"] .str-chat__modal .str-chat__modal__inner{border-left:var(--str-chat__modal-border-inline-end)}.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);border-top:var(--str-chat__modal-border-block-start);border-bottom:var(--str-chat__modal-border-block-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:auto;width:initial;max-width:none;max-width:initial;height:auto;height:initial;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:none;max-width:initial;max-height:calc(100vh - 80px);cursor:default}.str-chat-react__modal.str-chat__modal--open.str-chat__image-modal .str-chat__modal__inner.str-chat-react__modal__inner,.str-chat-react__modal.str-chat__modal--open.str-chat__gallery-modal .str-chat__modal__inner.str-chat-react__modal__inner{background-color:rgba(0,0,0,0);width:auto;width:initial;max-width:none;max-width:initial;height:auto;height:initial;padding:0}.str-chat-react__modal.str-chat__modal--open.str-chat__image-modal .str-chat__modal__inner.str-chat-react__modal__inner img,.str-chat-react__modal.str-chat__modal--open.str-chat__gallery-modal .str-chat__modal__inner.str-chat-react__modal__inner img{max-width:none;max-width:initial;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)}[dir="ltr"] .str-chat__message-notification{border-left:var(--str-chat__message-notification-border-inline-start)}[dir="rtl"] .str-chat__message-notification{border-right:var(--str-chat__message-notification-border-inline-start)}[dir="ltr"] .str-chat__message-notification{border-right:var(--str-chat__message-notification-border-inline-end)}[dir="rtl"] .str-chat__message-notification{border-left:var(--str-chat__message-notification-border-inline-end)}.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);border-top:var(--str-chat__message-notification-border-block-start);border-bottom:var(--str-chat__message-notification-border-block-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}[dir="ltr"] .str-chat__list-notifications{border-left:var(--str-chat__notification-list-border-inline-start)}[dir="rtl"] .str-chat__list-notifications{border-right:var(--str-chat__notification-list-border-inline-start)}[dir="ltr"] .str-chat__list-notifications{border-right:var(--str-chat__notification-list-border-inline-end)}[dir="rtl"] .str-chat__list-notifications{border-left:var(--str-chat__notification-list-border-inline-end)}.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);border-top:var(--str-chat__notification-list-border-block-start);border-bottom:var(--str-chat__notification-list-border-block-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)}[dir="ltr"] .str-chat__notification{border-left:var(--str-chat__notification-border-inline-start)}[dir="rtl"] .str-chat__notification{border-right:var(--str-chat__notification-border-inline-start)}[dir="ltr"] .str-chat__notification{border-right:var(--str-chat__notification-border-inline-end)}[dir="rtl"] .str-chat__notification{border-left:var(--str-chat__notification-border-inline-end)}.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);border-top:var(--str-chat__notification-border-block-start);border-bottom:var(--str-chat__notification-border-block-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-option-list--full,.str-chat__poll-answer,.str-chat__modal__poll-option-list__title,.str-chat__modal__poll-results .str-chat__modal__poll-results__title,.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:inherit}.str-chat__modal .str-chat__poll-answer__text,.str-chat__modal .str-chat__modal__poll-option-list__title,.str-chat__modal .str-chat__modal__poll-results__title,.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__modal .str-chat__poll-option-list--full,.str-chat__modal .str-chat__poll-answer,.str-chat__modal .str-chat__modal__poll-option-list__title,.str-chat__modal .str-chat__modal__poll-results__title,.str-chat__modal .str-chat__poll-option,.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__modal .str-chat__poll-option-list--full .str-chat__poll-option-text,.str-chat__poll-actions .str-chat__modal .str-chat__poll-option-list--full .str-chat__poll-option-text{font-weight:500}.str-chat__modal .str-chat__poll-option-list--full .str-chat__poll-option--votable:hover,.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__modal .str-chat__poll-option .str-chat__poll-option__header,.str-chat__poll-actions .str-chat__modal .str-chat__poll-option .str-chat__poll-option__header{font:var(--str-chat__subtitle-text)}.str-chat__modal .str-chat__poll-option .str-chat__poll-option__header .str-chat__poll-option__option-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__modal .str-chat__poll-option .str-chat__poll-option__show-all-votes-button,.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::-moz-placeholder, .str-chat__poll-creation-dialog .str-chat__form__input-field:not(.str-chat__form__input-field--with-label) input::-moz-placeholder, .str-chat__poll-creation-dialog .str-chat__form__input-field--with-label .str-chat__form__input-field__value input::-moz-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{--str-chat__search-input-color: var(--str-chat__text-color);--str-chat__search-input-placeholder-color: var(--str-chat__text-low-emphasis-color);--str-chat__search-input-icon-color: var(--str-chat__text-low-emphasis-color);--str-chat__search-input-border-block-start: none;--str-chat__search-input-border-block-end: none;--str-chat__search-input-border-inline-start: none;--str-chat__search-input-border-inline-end: none;--str-chat__search-input-wrapper-border-radius: var(--str-chat__border-radius-circle);--str-chat__search-input-wrapper-background-color: transparent;--str-chat__search-input-wrapper-border-block-start: var(--str-chat__surface-color) 1px solid;--str-chat__search-input-wrapper-border-block-end: var(--str-chat__surface-color) 1px solid;--str-chat__search-input-wrapper-border-inline-start: var(--str-chat__surface-color) 1px solid;--str-chat__search-input-wrapper-border-inline-end: var(--str-chat__surface-color) 1px solid;--str-chat__search-input-wrapper-active-border-radius: var(--str-chat__border-radius-circle);--str-chat__search-input-wrapper-active-background-color: transparent;--str-chat__search-input-wrapper-active-border-block-start: var(--str-chat__primary-color) 1px solid;--str-chat__search-input-wrapper-active-border-block-end: var(--str-chat__primary-color) 1px solid;--str-chat__search-input-wrapper-active-border-inline-start: var( --str-chat__primary-color ) 1px solid;--str-chat__search-input-wrapper-active-border-inline-end: var(--str-chat__primary-color) 1px solid;--str-chat__search-result-background-color: transparent;--str-chat__search-result-border-block-start: none;--str-chat__search-result-border-block-end: none;--str-chat__search-result-border-inline-start: none;--str-chat__search-result-border-inline-end: none;--str-chat__search-result-hover-background-color: var( --str-chat__secondary-surface-color );--str-chat__search-result-list-color: var(--str-chat__text-color);--str-chat__search-result-list-background-color: var(--str-chat__secondary-background-color);--str-chat__search-result-list-border-block-start: none;--str-chat__search-result-list-border-block-end: none;--str-chat__search-result-list-border-inline-start: none;--str-chat__search-result-list-border-inline-end: none;--str-chat__search-result-list-popup-box-shadow: 0 4px 4px var(--str-chat__box-shadow-color);--str-chat__search-results-header-color: var(--str-chat__text-low-emphasis-color);--str-chat__search-results-header-background-color: var(--str-chat__background-color);--str-chat__search-results-header-border-block-start: none;--str-chat__search-results-header-border-block-end: var(--str-chat__surface-color) 1px solid;--str-chat__search-results-header-border-inline-start: none;--str-chat__search-results-header-border-inline-end: none;--str-chat__search-results-empty-color: var(--str-chat__text-low-emphasis-color);--str-chat__search-results-empty-icon-color: var(--str-chat__disabled-color);--str-chat__search-results-empty-background-color: var(--str-chat__background-color);--str-chat__search-results-empty-border-block-start: none;--str-chat__search-results-empty-border-block-end: none;--str-chat__search-results-empty-border-inline-start: none;--str-chat__search-results-empty-border-inline-end: none}[dir="ltr"] .str-chat__search-input--wrapper{border-left:var(--str-chat__search-input-wrapper-border-inline-start)}[dir="rtl"] .str-chat__search-input--wrapper{border-right:var(--str-chat__search-input-wrapper-border-inline-start)}[dir="ltr"] .str-chat__search-input--wrapper{border-right:var(--str-chat__search-input-wrapper-border-inline-end)}[dir="rtl"] .str-chat__search-input--wrapper{border-left:var(--str-chat__search-input-wrapper-border-inline-end)}.str-chat__search-input--wrapper{background:var(--str-chat__search-input-wrapper-background-color);color:var(--str-chat__search-input-wrapper-color);box-shadow:var(--str-chat__search-input-wrapper-box-shadow);border-radius:var(--str-chat__search-input-wrapper-border-radius);border-top:var(--str-chat__search-input-wrapper-border-block-start);border-bottom:var(--str-chat__search-input-wrapper-border-block-end)}.str-chat__search-input--wrapper .str-chat__search-input--icon{background-image:var(--str-chat__magnifier-glass-icon);background-repeat:no-repeat}[dir="ltr"] .str-chat__search-input--wrapper input{border-left:var(--str-chat__search-input-border-inline-start)}[dir="rtl"] .str-chat__search-input--wrapper input{border-right:var(--str-chat__search-input-border-inline-start)}[dir="ltr"] .str-chat__search-input--wrapper input{border-right:var(--str-chat__search-input-border-inline-end)}[dir="rtl"] .str-chat__search-input--wrapper input{border-left:var(--str-chat__search-input-border-inline-end)}.str-chat__search-input--wrapper input{background:var(--str-chat__search-input-background-color);color:var(--str-chat__search-input-color);box-shadow:var(--str-chat__search-input-box-shadow);border-radius:var(--str-chat__search-input-border-radius);border-top:var(--str-chat__search-input-border-block-start);border-bottom:var(--str-chat__search-input-border-block-end);outline:none;font:var(--str-chat__subtitle-text)}.str-chat__search-input--wrapper .str-chat__search-input--clear-button-icon{background-color:rgba(0,0,0,0);-webkit-mask:var(--str-chat__clear-icon) no-repeat center/contain;mask:var(--str-chat__clear-icon) no-repeat center/contain}[dir="ltr"] .str-chat__search-input--wrapper-active{border-left:var(--str-chat__search-input-wrapper-active-border-inline-start)}[dir="rtl"] .str-chat__search-input--wrapper-active{border-right:var(--str-chat__search-input-wrapper-active-border-inline-start)}[dir="ltr"] .str-chat__search-input--wrapper-active{border-right:var(--str-chat__search-input-wrapper-active-border-inline-end)}[dir="rtl"] .str-chat__search-input--wrapper-active{border-left:var(--str-chat__search-input-wrapper-active-border-inline-end)}.str-chat__search-input--wrapper-active{background:var(--str-chat__search-input-wrapper-active-background-color);color:var(--str-chat__search-input-wrapper-active-color);box-shadow:var(--str-chat__search-input-wrapper-active-box-shadow);border-radius:var(--str-chat__search-input-wrapper-active-border-radius);border-top:var(--str-chat__search-input-wrapper-active-border-block-start);border-bottom:var(--str-chat__search-input-wrapper-active-border-block-end)}.str-chat__search-input--wrapper-active .str-chat__search-input--clear-button-icon{background-color:var(--str-chat__text-low-emphasis-color)}.str-chat__search-bar-button--exit-search{background:none;border:none;color:var(--str-chat__primary-color);font:var(--str-chat__subtitle-text)}[dir="ltr"] .str-chat__search-results-header{border-left:var(--str-chat__search-results-header-border-inline-start)}[dir="rtl"] .str-chat__search-results-header{border-right:var(--str-chat__search-results-header-border-inline-start)}[dir="ltr"] .str-chat__search-results-header{border-right:var(--str-chat__search-results-header-border-inline-end)}[dir="rtl"] .str-chat__search-results-header{border-left:var(--str-chat__search-results-header-border-inline-end)}.str-chat__search-results-header{background:var(--str-chat__search-results-header-background-color);color:var(--str-chat__search-results-header-color);box-shadow:var(--str-chat__search-results-header-box-shadow);border-radius:var(--str-chat__search-results-header-border-radius);border-top:var(--str-chat__search-results-header-border-block-start);border-bottom:var(--str-chat__search-results-header-border-block-end);font:var(--str-chat__subtitle-text)}[dir="ltr"] .str-chat__search-source-result-list{border-left:var(--str-chat__search-result-list-border-inline-start)}[dir="rtl"] .str-chat__search-source-result-list{border-right:var(--str-chat__search-result-list-border-inline-start)}[dir="ltr"] .str-chat__search-source-result-list{border-right:var(--str-chat__search-result-list-border-inline-end)}[dir="rtl"] .str-chat__search-source-result-list{border-left:var(--str-chat__search-result-list-border-inline-end)}.str-chat__search-source-result-list{background:var(--str-chat__search-result-list-background-color);color:var(--str-chat__search-result-list-color);box-shadow:var(--str-chat__search-result-list-box-shadow);border-radius:var(--str-chat__search-result-list-border-radius);border-top:var(--str-chat__search-result-list-border-block-start);border-bottom:var(--str-chat__search-result-list-border-block-end)}[dir="ltr"] .str-chat__search-source-result-list .str-chat__search-container-empty{border-left:var(--str-chat__search-results-empty-border-inline-start)}[dir="rtl"] .str-chat__search-source-result-list .str-chat__search-container-empty{border-right:var(--str-chat__search-results-empty-border-inline-start)}[dir="ltr"] .str-chat__search-source-result-list .str-chat__search-container-empty{border-right:var(--str-chat__search-results-empty-border-inline-end)}[dir="rtl"] .str-chat__search-source-result-list .str-chat__search-container-empty{border-left:var(--str-chat__search-results-empty-border-inline-end)}.str-chat__search-source-result-list .str-chat__search-container-empty{background:var(--str-chat__search-results-empty-background-color);color:var(--str-chat__search-results-empty-color);box-shadow:var(--str-chat__search-results-empty-box-shadow);border-radius:var(--str-chat__search-results-empty-border-radius);border-top:var(--str-chat__search-results-empty-border-block-start);border-bottom:var(--str-chat__search-results-empty-border-block-end);font:var(--str-chat__subtitle2-medium-text)}.str-chat__search-source-result-list .str-chat__search-container-empty svg path{fill:var(--str-chat__search-results-empty-icon-color)}[dir="ltr"] .str-chat__search-source-result-list .str-chat__search-result{border-left:var(--str-chat__search-result-border-inline-start)}[dir="rtl"] .str-chat__search-source-result-list .str-chat__search-result{border-right:var(--str-chat__search-result-border-inline-start)}[dir="ltr"] .str-chat__search-source-result-list .str-chat__search-result{border-right:var(--str-chat__search-result-border-inline-end)}[dir="rtl"] .str-chat__search-source-result-list .str-chat__search-result{border-left:var(--str-chat__search-result-border-inline-end)}.str-chat__search-source-result-list .str-chat__search-result{background:var(--str-chat__search-result-background-color);color:var(--str-chat__search-result-color);box-shadow:var(--str-chat__search-result-box-shadow);border-radius:var(--str-chat__search-result-border-radius);border-top:var(--str-chat__search-result-border-block-start);border-bottom:var(--str-chat__search-result-border-block-end)}.str-chat__search-source-result-list .str-chat__search-result.str-chat__channel-preview-messenger--active{background-color:var(--str-chat__channel-preview-active-background-color)}.str-chat__search-source-result-list .str-chat__search-result .str-chat__search-result--display-name{font:var(--str-chat__subtitle-medium-text)}.str-chat__search-source-result-list .str-chat__search-result:hover,.str-chat__search-source-result-list .str-chat__search-result--focused{background-color:var(--str-chat__search-result-hover-background-color)}.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)}[dir="ltr"] .str-chat__thread-container{border-left:var(--str-chat__thread-border-inline-start)}[dir="rtl"] .str-chat__thread-container{border-right:var(--str-chat__thread-border-inline-start)}[dir="ltr"] .str-chat__thread-container{border-right:var(--str-chat__thread-border-inline-end)}[dir="rtl"] .str-chat__thread-container{border-left:var(--str-chat__thread-border-inline-end)}.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);border-top:var(--str-chat__thread-border-block-start);border-bottom:var(--str-chat__thread-border-block-end)}[dir="ltr"] .str-chat__thread-container .str-chat__thread-header{border-left:var(--str-chat__thread-header-border-inline-start)}[dir="rtl"] .str-chat__thread-container .str-chat__thread-header{border-right:var(--str-chat__thread-header-border-inline-start)}[dir="ltr"] .str-chat__thread-container .str-chat__thread-header{border-right:var(--str-chat__thread-header-border-inline-end)}[dir="rtl"] .str-chat__thread-container .str-chat__thread-header{border-left:var(--str-chat__thread-header-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);border-top:var(--str-chat__thread-header-border-block-start);border-bottom:var(--str-chat__thread-header-border-block-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)}[dir="ltr"] .str-chat__tooltip{border-left:var(--str-chat__tooltip-border-inline-start)}[dir="rtl"] .str-chat__tooltip{border-right:var(--str-chat__tooltip-border-inline-start)}[dir="ltr"] .str-chat__tooltip{border-right:var(--str-chat__tooltip-border-inline-end)}[dir="rtl"] .str-chat__tooltip{border-left:var(--str-chat__tooltip-border-inline-end)}.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);border-top:var(--str-chat__tooltip-border-block-start);border-bottom:var(--str-chat__tooltip-border-block-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)}[dir="ltr"] .str-chat__typing-indicator{border-left:var(--str-chat__typing-indicator-border-inline-start)}[dir="rtl"] .str-chat__typing-indicator{border-right:var(--str-chat__typing-indicator-border-inline-start)}[dir="ltr"] .str-chat__typing-indicator{border-right:var(--str-chat__typing-indicator-border-inline-end)}[dir="rtl"] .str-chat__typing-indicator{border-left:var(--str-chat__typing-indicator-border-inline-end)}.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);border-top:var(--str-chat__typing-indicator-border-block-start);border-bottom:var(--str-chat__typing-indicator-border-block-end)}.str-chat__typing-indicator .str-chat__typing-indicator__dots .str-chat__typing-indicator__dot{border-radius:999px;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){animation-delay:0s}.str-chat__typing-indicator .str-chat__typing-indicator__dots .str-chat__typing-indicator__dot:nth-child(2){animation-delay:.5s}.str-chat__typing-indicator .str-chat__typing-indicator__dots .str-chat__typing-indicator__dot:nth-child(3){animation-delay:1s}@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}.str-chat__ai-state-indicator-container{background-color:var(--str-chat__grey300)}.str-chat__ai-state-indicator-text{color:var(--str-chat__text-color)}@font-face {
    font-family: 'Monument Extended';
    src: url('/assets/MonumentExtended-Regular.C8KTyA3T.otf') format('opentype');
}@font-face {
    font-family: 'Poppins';
    src: url('/assets/Poppins-Medium.Cxde2ZoM.ttf') format('truetype');
}@font-face {
    font-family: 'Inter';
    font-weight: 300;
    src: url('/assets/Inter-Light.DhAqtaZH.ttf') format('truetype');
}@font-face {
    font-family: 'Inter';
    font-weight: 400;
    src: url('/assets/Inter-Regular.BSzZiyVN.ttf') format('truetype');
}@font-face {
    font-family: 'Inter';
    font-weight: 500;
    src: url('/assets/Inter-Medium.OnHWrDSF.ttf') format('truetype');
}@font-face {
    font-family: 'Inter';
    font-weight: 600;
    src: url('/assets/Inter-SemiBold.G8w9vdgA.ttf') format('truetype');
}@font-face {
    font-family: 'Inter';
    font-weight: 700;
    src: url('/assets/Inter-SemiBold.G8w9vdgA.ttf') format('truetype');
}@font-face {
    font-family: 'Inter';
    font-weight: 800;
    src: url('/assets/Inter-ExtraBold.DZtS5_wi.ttf') format('truetype');
}/*
We are only using Mono Italic Font for now, so others are commented.
Uncomment others when you will need them
*//*@font-face {*//*    font-family: 'Digital-7';*//*    src: url('/public/Digital-7.woff2') format('woff2'),*//*    url('/public/Digital-7.woff') format('woff');*//*    font-weight: normal;*//*    font-style: normal;*//*    font-display: swap;*//*}*//*@font-face {*//*    font-family: 'Digital-7';*//*    src: url('/public/Digital-7Italic.woff2') format('woff2'),*//*    url('/public/Digital-7Italic.woff') format('woff');*//*    font-weight: normal;*//*    font-style: italic;*//*    font-display: swap;*//*}*//*@font-face {*//*    font-family: 'Digital-7 Mono';*//*    src: url('/public/Digital-7Mono.woff2') format('woff2'),*//*    url('/public/Digital-7Mono.woff') format('woff');*//*    font-weight: normal;*//*    font-style: normal;*//*    font-display: swap;*//*}*/@font-face {
    font-family: 'Digital-7 Mono';
    src:
        url('/assets/Digital-7MonoItalic.CsIPmUct.woff2') format('woff2'),
        url('/assets/Digital-7MonoItalic.BkHVR2V-.woff') format('woff');
    font-weight: normal;
    font-style: italic;
}:root {
    --status-indicator-size: 10px;
    --status-indicator-animation-duration: 2s;

    --status-indicator-color: rgb(216, 226, 233);
    --status-indicator-color-semi: rgba(216, 226, 233, 0.5);
    --status-indicator-color-transparent: rgba(216, 226, 233, 0);

    --status-indicator-color-active: rgb(0, 149, 255);
    --status-indicator-color-active-semi: rgba(0, 149, 255, 0.5);
    --status-indicator-color-active-transparent: rgba(0, 149, 255, 0);

    --status-indicator-color-positive: rgb(213, 251, 81);
    --status-indicator-color-positive-semi: rgba(213, 251, 81, 0.5);
    --status-indicator-color-positive-transparent: rgba(75, 210, 143, 0);

    --status-indicator-color-intermediary: rgb(255, 170, 0);
    --status-indicator-color-intermediary-semi: rgba(255, 170, 0, 0.5);
    --status-indicator-color-intermediary-transparent: rgba(255, 170, 0, 0);

    --status-indicator-color-negative: rgb(255, 77, 77);
    --status-indicator-color-negative-semi: rgba(255, 77, 77, 0.5);
    --status-indicator-color-negative-transparent: rgba(255, 77, 77, 0);
}@keyframes status-indicator-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(216, 226, 233, 0.5);
        box-shadow: 0 0 0 0 var(--status-indicator-color-semi);
    }
    70% {
        box-shadow: 0 0 0 10px
            rgba(216, 226, 233, 0);
        box-shadow: 0 0 0 var(--status-indicator-size)
            var(--status-indicator-color-transparent);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(216, 226, 233, 0);
        box-shadow: 0 0 0 0 var(--status-indicator-color-transparent);
    }
}@keyframes status-indicator-pulse-active {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 149, 255, 0.5);
        box-shadow: 0 0 0 0 var(--status-indicator-color-active-semi);
    }
    70% {
        box-shadow: 0 0 0 10px
            rgba(0, 149, 255, 0);
        box-shadow: 0 0 0 var(--status-indicator-size)
            var(--status-indicator-color-active-transparent);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 149, 255, 0);
        box-shadow: 0 0 0 0 var(--status-indicator-color-active-transparent);
    }
}@keyframes status-indicator-pulse-positive {
    0% {
        box-shadow: 0 0 0 0 rgba(213, 251, 81, 0.5);
        box-shadow: 0 0 0 0 var(--status-indicator-color-positive-semi);
    }
    70% {
        box-shadow: 0 0 0 10px
            rgba(75, 210, 143, 0);
        box-shadow: 0 0 0 var(--status-indicator-size)
            var(--status-indicator-color-positive-transparent);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(75, 210, 143, 0);
        box-shadow: 0 0 0 0 var(--status-indicator-color-positive-transparent);
    }
}@keyframes status-indicator-pulse-intermediary {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 170, 0, 0.5);
        box-shadow: 0 0 0 0 var(--status-indicator-color-intermediary-semi);
    }
    70% {
        box-shadow: 0 0 0 10px
            rgba(255, 170, 0, 0);
        box-shadow: 0 0 0 var(--status-indicator-size)
            var(--status-indicator-color-intermediary-transparent);
    }
    100% {
        box-shadow: 0 0 0 0
            rgba(255, 170, 0, 0);
        box-shadow: 0 0 0 0
            var(--status-indicator-color-intermediary-transparent);
    }
}@keyframes status-indicator-pulse-negative {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.5);
        box-shadow: 0 0 0 0 var(--status-indicator-color-negative-semi);
    }
    70% {
        box-shadow: 0 0 0 10px
            rgba(255, 77, 77, 0);
        box-shadow: 0 0 0 var(--status-indicator-size)
            var(--status-indicator-color-negative-transparent);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 77, 77, 0);
        box-shadow: 0 0 0 0 var(--status-indicator-color-negative-transparent);
    }
}status-indicator {
    display: inline-block;
    border-radius: 50%;
    cursor: pointer;
    width: 10px;
    width: var(--status-indicator-size);
    height: 10px;
    height: var(--status-indicator-size);
    background-color: rgb(216, 226, 233);
    background-color: var(--status-indicator-color);
}status-indicator[pulse] {
    animation-name: status-indicator-pulse;
    animation-duration: 2s;
    animation-duration: var(--status-indicator-animation-duration);
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-delay: 0;
    animation-fill-mode: none;
}status-indicator[active] {
    background-color: rgb(0, 149, 255);
    background-color: var(--status-indicator-color-active);
}status-indicator[active][pulse] {
    animation-name: status-indicator-pulse-active;
}status-indicator[positive] {
    background-color: rgb(213, 251, 81);
    background-color: var(--status-indicator-color-positive);
    animation-name: status-indicator-pulse-positive;
}status-indicator[positive][pulse] {
    animation-name: status-indicator-pulse-positive;
}status-indicator[intermediary] {
    background-color: rgb(255, 170, 0);
    background-color: var(--status-indicator-color-intermediary);
}status-indicator[intermediary][pulse] {
    animation-name: status-indicator-pulse-intermediary;
}status-indicator[negative] {
    background-color: rgb(255, 77, 77);
    background-color: var(--status-indicator-color-negative);
    animation-name: status-indicator-pulse-negative;
}status-indicator[negative][pulse] {
    animation-name: status-indicator-pulse-negative;
}html,
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    --left-panel-width: 248px;
    --central-panel-width: calc(55% - var(--left-panel-width));
    --left-panel-banner-width: 140px;
}html img,
html svg {
    display: inline-block;
}._loading_overlay_wrapper {
    height: 100%;
}._loading_overlay_wrapper--active {
    overflow: hidden;
}._loading_overlay_overlay {
    background-color: rgba(0, 0, 0, 0.9) !important;
}.upper-case {
    text-transform: uppercase;
}.overlay {
    z-index: 100;
}.input {
    font-family: Inter, sans-serif;
}/* Hide scrollbar for Chrome, Safari and Opera */.scroll-none::-webkit-scrollbar {
    display: none;
}/* Hide scrollbar for IE, Edge and Firefox */.scroll-none {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}::-webkit-input-placeholder {
    font-family: Inter, sans-serif;
}:-moz-placeholder {
    font-family: Inter, sans-serif;
}::-moz-placeholder {
    font-family: Inter, sans-serif;
}:-ms-input-placeholder {
    font-family: Inter, sans-serif;
}.pointer {
    cursor: pointer;
}.Label {
    color: white !important;
}.p-PaymentMethodSelector,
.p-LinkAutofillPrompt {
    display: none !important;
}[id^='emoji-mart-search-'] {
    color: white;
    background-color: black;
}.emoji-mart-search-icon {
    fill: white;
    margin-top: -4px;
}.str-chat__channel-list {
    background: transparent !important;
    border: none !important;
    border-right: none !important;
}.str-chat {
    --str-chat__loading-indicator-color: #000;
    --str-chat__background-color: #000;
}.str-chat__message-input {
    background: #151515 !important;
}.str-chat__message-textarea-container {
    border: none !important;
    outline: none !important;
}div[data-side='left'][data-align='start'][role='menu'][data-state='open'] {
    padding-top: 100px !important;
    max-height: calc(100vh - 100px) !important;
    overflow-y: auto !important;
}div[data-side='right'][data-align='start'][role='menu'][data-state='open'] {
    padding-top: 100px !important;
    max-height: calc(100vh - 100px) !important;
    overflow-y: auto !important;
}.str-chat__textarea textarea {
    color: white !important;
    background: #151515 !important;
    border: none !important;
    outline: none !important;
}.str-chat__textarea.str-chat__message-textarea-react-host {
    margin-top: -15px !important;
}.reply-icon {
    display: none !important;
}.cancel-reply-button {
    display: none !important;
}.str-chat__message-url-link {
    color: white !important;
}.str-chat__message-simple-status,
.str-chat__message-status,
.str-chat__message-status-read-by {
    display: none !important;
}.str-chat__message-simple-name {
    color: #fff !important;
}.str-chat__message-simple-name {
    font-size: 10px;
    font-weight: 500;
}.str-chat__message-simple-timestamp {
    color: #999 !important;
}.str-chat__message-simple-timestamp {
    font-size: 10px;
    font-weight: 400;
    margin-left: 4px;
}.str-chat__message-attachment-card--url {
    color: #000 !important;
}.str-chat__message-mention {
    color: #fff !important;
}.str-chat__thread-container,
.str-chat__thread {
    background: #000 !important;
}.str-chat__quoted-message-reply-to-message {
    color: #fff !important;
}.str-chat__message-simple-text-inner p {
    font-weight: 400 !important;
}.str-chat__message-simple-text-inner p {
    color: #fff;
}/* Fix pinned categories text color */.border.rounded-\[29px\].cursor-pointer {
    color: #fff !important;
}.border.rounded-\[29px\].cursor-pointer.text-black {
    color: #000 !important;
}/* Fix message layout order */.str-chat__message-inner {
    display: flex !important;
    flex-direction: column !important;
}.str-chat__message-data,
.str-chat__message-simple-data {
    order: -2 !important;
    display: flex !important;
    align-self: flex-start !important;
    margin-bottom: 4px !important;
}/* Align message-data to the end for own messages */.str-chat__message--me .str-chat__message-data,
.str-chat__message--me .str-chat__message-simple-data {
    align-self: flex-end !important;
}.str-chat__message-bubble {
    order: -1 !important;
    border-radius: 12px !important;
}.admin-message .str-chat__message-bubble {
    background: #494552 !important;
}.str-chat__message-reactions-host {
    order: 0 !important;
}.str-chat__message-reactions {
    background: #494552 !important;
    border-radius: 12px !important;
}.str-chat__message-reaction {
    background: none !important;
}.str-chat__message-reaction-count {
    color: #fff !important;
}/* Add margin to timestamp on right side to prevent overlap with avatar */.str-chat__message--me .str-chat__message-simple-timestamp {
    margin-right: 48px !important;
}/* Add margin bottom to avatar only for admin own messages (right side) */.admin-message.str-chat__message--me
    .str-chat__avatar.str-chat__avatar--circle {
    margin-bottom: -12px !important;
}/* Add margin bottom to avatar for admin other user messages (left side) */.admin-message.str-chat__message--other
    .str-chat__avatar.str-chat__avatar--circle {
    margin-bottom: -30px !important;
}/* Add margin end to avatar for non-admin messages */[dir="ltr"] .non-admin-message .str-chat__avatar.str-chat__avatar--circle{
    margin-right: 8px !important}[dir="rtl"] .non-admin-message .str-chat__avatar.str-chat__avatar--circle{
    margin-left: 8px !important}/* Increase border radius for message text */.str-chat__message-text {
    border-radius: 12px !important;
}.non-admin-message .str-chat__message-text {
    background: none !important;
}
*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 rgba(0,0,0,0);
  --tw-ring-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow-colored: 0 0 rgba(0,0,0,0);
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 rgba(0,0,0,0);
  --tw-ring-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow-colored: 0 0 rgba(0,0,0,0);
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}/*
! tailwindcss v3.4.19 | MIT License | https://tailwindcss.com
*//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: Roboto, sans-serif; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted currentColor;
          text-decoration: underline dotted currentColor;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}

input[type="range"]::-webkit-slider-thumb {
  height: 1rem;
  width: 1rem;
  background: #3B71CA;
  border-radius: 9999px;
  border: 0;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.dark input[type="range"]::-webkit-slider-thumb {
  background: #8FAEE0;
}

input[type="range"]:disabled::-webkit-slider-thumb {
  background: #a3a3a3;
}

input[type="range"]:disabled:focus::-webkit-slider-thumb {
  background: #a3a3a3;
}

input[type="range"]:disabled:active::-webkit-slider-thumb {
  background: #a3a3a3;
}

.dark input[type="range"]:disabled::-webkit-slider-thumb {
  background: #737373;
}

.dark input[type="range"]:disabled:focus::-webkit-slider-thumb {
  background: #737373;
}

.dark input[type="range"]:disabled:active::-webkit-slider-thumb {
  background: #737373;
}

input[type="range"]::-moz-range-thumb {
  height: 1rem;
  width: 1rem;
  background: #3B71CA;
  border-radius: 9999px;
  border: 0;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.dark input[type="range"]::-moz-range-thumb {
  background: #8FAEE0;
}

input[type="range"]:disabled::-moz-range-thumb {
  background: #a3a3a3;
}

.dark input[type="range"]:disabled::-moz-range-thumb {
  background: #737373;
}

input[type="range"]::-moz-range-progress {
  background: #3061AF;
}

input[type="range"]::-ms-fill-lower {
  background: #3061AF;
}

.dark input[type="range"]::-moz-range-progress {
  background: #6590D5;
}

.dark input[type="range"]::-ms-fill-lower {
  background: #6590D5;
}

input[type="range"]:focus {
  outline: none;
}

input[type="range"]:focus::-webkit-slider-thumb {
  background: #3061AF;
}

input[type="range"]:active::-webkit-slider-thumb {
  background: #285192;
}

.dark input[type="range"]:focus::-webkit-slider-thumb {
  background: #6590D5;
}

.dark input[type="range"]:active::-webkit-slider-thumb {
  background: #3061AF;
}
.container {
  width: 100%;
}
@media (min-width: 320px) {

  .container {
    max-width: 320px;
  }
}
@media (min-width: 640px) {

  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {

  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {

  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {

  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {

  .container {
    max-width: 1536px;
  }
}
.visible {
  visibility: visible;
}
.collapse {
  visibility: collapse;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.\!absolute {
  position: absolute !important;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.sticky {
  position: sticky;
}
.-bottom-\[12px\] {
  bottom: -12px;
}
.left-0 {
  left: 0px;
}
.left-1\/2 {
  left: 50%;
}
.left-2\.5 {
  left: 0.625rem;
}
.right-2\.5 {
  right: 0.625rem;
}
.top-0 {
  top: 0px;
}
.top-2\.5 {
  top: 0.625rem;
}
.isolate {
  isolation: isolate;
}
.-z-10 {
  z-index: -10;
}
.z-0 {
  z-index: 0;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-\[24px\] {
  margin-bottom: 24px;
}
.ml-1 {
  margin-left: 0.25rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.ml-4 {
  margin-left: 1rem;
}
.ml-\[-4px\] {
  margin-left: -4px;
}
.ml-auto {
  margin-left: auto;
}
.mr-0 {
  margin-right: 0px;
}
.mr-4 {
  margin-right: 1rem;
}
.mt-0\.5 {
  margin-top: 0.125rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-3\.5 {
  margin-top: 0.875rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-\[1px\] {
  margin-top: 1px;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline {
  display: inline;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.contents {
  display: contents;
}
.hidden {
  display: none;
}
.aspect-video {
  aspect-ratio: 16 / 9;
}
.h-12 {
  height: 3rem;
}
.h-3 {
  height: 0.75rem;
}
.h-4 {
  height: 1rem;
}
.h-5 {
  height: 1.25rem;
}
.h-6 {
  height: 1.5rem;
}
.h-\[64px\] {
  height: 64px;
}
.h-\[calc\(100\%-204px\)\] {
  height: calc(100% - 204px);
}
.h-full {
  height: 100%;
}
.max-h-\[350px\] {
  max-height: 350px;
}
.max-h-\[calc\(100vh-73px\)\] {
  max-height: calc(100vh - 73px);
}
.max-h-screen {
  max-height: 100vh;
}
.min-h-\[420px\] {
  min-height: 420px;
}
.min-h-screen {
  min-height: 100vh;
}
.w-1\/5 {
  width: 20%;
}
.w-3 {
  width: 0.75rem;
}
.w-4 {
  width: 1rem;
}
.w-\[200px\] {
  width: 200px;
}
.w-\[4\%\] {
  width: 4%;
}
.w-\[50px\] {
  width: 50px;
}
.w-\[80\%\] {
  width: 80%;
}
.w-\[90\%\] {
  width: 90%;
}
.w-full {
  width: 100%;
}
.max-w-7xl {
  max-width: 80rem;
}
.max-w-none {
  max-width: none;
}
.max-w-xl {
  max-width: 36rem;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-shrink {
  flex-shrink: 1;
}
.shrink {
  flex-shrink: 1;
}
.flex-grow {
  flex-grow: 1;
}
.grow {
  flex-grow: 1;
}
.border-collapse {
  border-collapse: collapse;
}
.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-1\/2 {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-\[-50\%\] {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.cursor-pointer {
  cursor: pointer;
}
.select-all {
  -webkit-user-select: all;
     -moz-user-select: all;
          user-select: all;
}
.resize {
  resize: both;
}
.snap-x {
  scroll-snap-type: x var(--tw-scroll-snap-strictness);
}
.snap-mandatory {
  --tw-scroll-snap-strictness: mandatory;
}
.snap-start {
  scroll-snap-align: start;
}
.scroll-pl-\[5\%\] {
  scroll-padding-left: 5%;
}
.list-decimal {
  list-style-type: decimal;
}
.list-disc {
  list-style-type: disc;
}
.list-none {
  list-style-type: none;
}
.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.content-end {
  align-content: flex-end;
}
.items-center {
  align-items: center;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.space-x-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * (1 - var(--tw-space-x-reverse)));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * (1 - var(--tw-space-y-reverse)));
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * (1 - var(--tw-space-y-reverse)));
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.overflow-auto {
  overflow: auto;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-x-auto {
  overflow-x: auto;
}
.overflow-y-auto {
  overflow-y: auto;
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.whitespace-normal {
  white-space: normal;
}
.text-wrap {
  text-wrap: wrap;
}
.text-balance {
  text-wrap: balance;
}
.break-words {
  word-wrap: break-word;
}
.break-all {
  word-break: break-all;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-\[29px\] {
  border-radius: 29px;
}
.rounded-\[8\] {
  border-radius: 8;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.border {
  border-width: 1px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-t {
  border-top-width: 1px;
}
.border-\[\#28262D\] {
  --tw-border-opacity: 1;
  border-color: rgba(40, 38, 45, 1);
  border-color: rgba(40, 38, 45, var(--tw-border-opacity, 1));
}
.border-\[\#494552\] {
  --tw-border-opacity: 1;
  border-color: rgba(73, 69, 82, 1);
  border-color: rgba(73, 69, 82, var(--tw-border-opacity, 1));
}
.border-white\/40 {
  border-color: rgba(255, 255, 255, 0.4);
}
.\!bg-\[\#28262D\] {
  --tw-bg-opacity: 1 !important;
  background-color: rgba(40, 38, 45, 1) !important;
  background-color: rgba(40, 38, 45, var(--tw-bg-opacity, 1)) !important;
}
.bg-\[\#00163A\] {
  --tw-bg-opacity: 1;
  background-color: rgba(0, 22, 58, 1);
  background-color: rgba(0, 22, 58, var(--tw-bg-opacity, 1));
}
.bg-\[\#024BB5\] {
  --tw-bg-opacity: 1;
  background-color: rgba(2, 75, 181, 1);
  background-color: rgba(2, 75, 181, var(--tw-bg-opacity, 1));
}
.bg-\[\#28262D\] {
  --tw-bg-opacity: 1;
  background-color: rgba(40, 38, 45, 1);
  background-color: rgba(40, 38, 45, var(--tw-bg-opacity, 1));
}
.bg-\[\#4F4EE3\] {
  --tw-bg-opacity: 1;
  background-color: rgba(79, 78, 227, 1);
  background-color: rgba(79, 78, 227, var(--tw-bg-opacity, 1));
}
.bg-\[\#B40B06\] {
  --tw-bg-opacity: 1;
  background-color: rgba(180, 11, 6, 1);
  background-color: rgba(180, 11, 6, var(--tw-bg-opacity, 1));
}
.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, 1);
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity, 1));
}
.bg-blue-600 {
  --tw-bg-opacity: 1;
  background-color: rgba(37, 99, 235, 1);
  background-color: rgba(37, 99, 235, var(--tw-bg-opacity, 1));
}
.bg-blue-700 {
  --tw-bg-opacity: 1;
  background-color: rgba(29, 78, 216, 1);
  background-color: rgba(29, 78, 216, var(--tw-bg-opacity, 1));
}
.bg-transparent {
  background-color: transparent;
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
}
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}
.from-black {
  --tw-gradient-from: #000 var(--tw-gradient-from-position);
  --tw-gradient-to: rgba(0, 0, 0, 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.via-black {
  --tw-gradient-to: rgba(0, 0, 0, 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #000 var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.to-\[\#002F87\] {
  --tw-gradient-to: #002F87 var(--tw-gradient-to-position);
}
.bg-cover {
  background-size: cover;
}
.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.p-1\.5 {
  padding: 0.375rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.pt-8 {
  padding-top: 2rem;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.align-top {
  vertical-align: top;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-5xl {
  font-size: 3rem;
  line-height: 1;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-\[Termina_Test\] {
  font-weight: Termina Test;
}
.font-bold {
  font-weight: 700;
}
.font-extrabold {
  font-weight: 800;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.lowercase {
  text-transform: lowercase;
}
.capitalize {
  text-transform: capitalize;
}
.tabular-nums {
  --tw-numeric-spacing: tabular-nums;
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}
.leading-tight {
  line-height: 1.25;
}
.tracking-tight {
  letter-spacing: -0.025em;
}
.text-\[\#00163A\] {
  --tw-text-opacity: 1;
  color: rgba(0, 22, 58, 1);
  color: rgba(0, 22, 58, var(--tw-text-opacity, 1));
}
.text-black {
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, 1);
  color: rgba(0, 0, 0, var(--tw-text-opacity, 1));
}
.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgba(75, 85, 99, 1);
  color: rgba(75, 85, 99, var(--tw-text-opacity, 1));
}
.text-gray-700 {
  --tw-text-opacity: 1;
  color: rgba(55, 65, 81, 1);
  color: rgba(55, 65, 81, var(--tw-text-opacity, 1));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
.underline {
  text-decoration-line: underline;
}
.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}
.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}
.outline {
  outline-style: solid;
}
.blur {
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.grayscale {
  --tw-grayscale: grayscale(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.backdrop-blur-md {
  --tw-backdrop-blur: blur(12px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.backdrop-filter {
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-200 {
  transition-duration: 200ms;
}
.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

ul {
  list-style-type: disc;
  padding-left: 1rem;
}

ol {
  list-style-type: disc;
  padding-left: 1rem;
}

.hover\:bg-blue-600\/40:hover {
  background-color: rgba(37, 99, 235, 0.4);
}

.hover\:bg-blue-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(29, 78, 216, 1);
  background-color: rgba(29, 78, 216, var(--tw-bg-opacity, 1));
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.disabled\:opacity-50:disabled {
  opacity: 0.5;
}

@media (min-width: 768px) {

  .md\:mt-24 {
    margin-top: 6rem;
  }

  .md\:block {
    display: block;
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:rounded-2xl {
    border-radius: 1rem;
  }

  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .md\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

.\[\&_\.left-section-circle\]\:focus-within\:outline[focus-within] .left-section-circle {
  outline-style: solid;
}

.\[\&_\.left-section-circle\]\:focus-within\:outline:focus-within .left-section-circle {
  outline-style: solid;
}

.\[\&_\.left-section-circle\]\:focus-within\:outline-1[focus-within] .left-section-circle {
  outline-width: 1px;
}

.\[\&_\.left-section-circle\]\:focus-within\:outline-1:focus-within .left-section-circle {
  outline-width: 1px;
}

.\[\&_input\:\:placeholder\]\:text-\[16px\] input::-moz-placeholder {
  font-size: 16px;
}

.\[\&_input\:\:placeholder\]\:text-\[16px\] input::placeholder {
  font-size: 16px;
}

.\[\&_input\]\:\!text-white input {
  --tw-text-opacity: 1 !important;
  color: rgba(255, 255, 255, 1) !important;
  color: rgba(255, 255, 255, var(--tw-text-opacity, 1)) !important;
}
/* ----- CSS reset ----- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

input,
button,
textarea,
select {
  font: inherit;
}

button,
select {
  text-transform: none;
}

/* ----- Global styles ----- */
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial,
    sans-serif, Apple Color Emoji, Segoe UI Emoji;
  font-family: var(--mantine-font-family);
  font-size: calc(1rem * 1);
  font-size: var(--mantine-font-size-md);
  line-height: 1.55;
  line-height: var(--mantine-line-height);
  background-color: var(--mantine-color-body);
  color: var(--mantine-color-text);

  -webkit-font-smoothing: antialiased;

  -webkit-font-smoothing: var(--mantine-webkit-font-smoothing);
  -moz-osx-font-smoothing: grayscale;
  -moz-osx-font-smoothing: var(--mantine-moz-font-smoothing);
}
@media screen and (max-device-width: 31.25em) {
body {
    -webkit-text-size-adjust: 100%
}
  }

@media (prefers-reduced-motion: reduce) {
    [data-respect-reduced-motion] [data-reduce-motion] {
      transition: none;
      animation: none;
    }
  }

[data-mantine-color-scheme='light'] .mantine-light-hidden {
    display: none;
}

[data-mantine-color-scheme='dark'] .mantine-dark-hidden {
    display: none;
}

.mantine-focus-auto.focus-visible {
    outline: 2px solid var(--mantine-color-blue-filled);
    outline: 2px solid var(--mantine-primary-color-filled);
    outline-offset: calc(0.125rem * 1);
    outline-offset: calc(0.125rem * var(--mantine-scale));
  }

.mantine-focus-auto.focus-visible {
    outline: 2px solid var(--mantine-color-blue-filled);
    outline: 2px solid var(--mantine-primary-color-filled);
    outline-offset: calc(0.125rem * 1);
    outline-offset: calc(0.125rem * var(--mantine-scale));
  }

.mantine-focus-auto:focus-visible {
    outline: 2px solid var(--mantine-color-blue-filled);
    outline: 2px solid var(--mantine-primary-color-filled);
    outline-offset: calc(0.125rem * 1);
    outline-offset: calc(0.125rem * var(--mantine-scale));
  }

.mantine-focus-always:focus {
    outline: 2px solid var(--mantine-color-blue-filled);
    outline: 2px solid var(--mantine-primary-color-filled);
    outline-offset: calc(0.125rem * 1);
    outline-offset: calc(0.125rem * var(--mantine-scale));
  }

.mantine-focus-never:focus {
    outline: none;
  }

.mantine-active:active {
    transform: translateY(calc(0.0625rem * 1));
    transform: translateY(calc(0.0625rem * var(--mantine-scale)));
  }

fieldset:disabled .mantine-active:active {
    transform: none;
  }

:where([dir="rtl"]) .mantine-rotate-rtl {
    transform: rotate(180deg);
}

/* ----- Default CSS variables ----- */

:root {
  color-scheme: light dark;
  color-scheme: var(--mantine-color-scheme);

  --mantine-z-index-app: 100;
  --mantine-z-index-modal: 200;
  --mantine-z-index-popover: 300;
  --mantine-z-index-overlay: 400;
  --mantine-z-index-max: 9999;

  --mantine-scale: 1;
  --mantine-cursor-type: default;
  --mantine-webkit-font-smoothing: antialiased;
  --mantine-color-scheme: light dark;
  --mantine-moz-font-smoothing: grayscale;
  --mantine-color-white: #fff;
  --mantine-color-black: #000;
  --mantine-line-height: 1.55;
  --mantine-font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial,
    sans-serif, Apple Color Emoji, Segoe UI Emoji;
  --mantine-font-family-monospace: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    Liberation Mono, Courier New, monospace;
  --mantine-font-family-headings: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica,
    Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji;
  --mantine-heading-font-weight: 700;
  --mantine-radius-default: calc(0.25rem * var(--mantine-scale));
  --mantine-primary-color-0: var(--mantine-color-blue-0);
  --mantine-primary-color-1: var(--mantine-color-blue-1);
  --mantine-primary-color-2: var(--mantine-color-blue-2);
  --mantine-primary-color-3: var(--mantine-color-blue-3);
  --mantine-primary-color-4: var(--mantine-color-blue-4);
  --mantine-primary-color-5: var(--mantine-color-blue-5);
  --mantine-primary-color-6: var(--mantine-color-blue-6);
  --mantine-primary-color-7: var(--mantine-color-blue-7);
  --mantine-primary-color-8: var(--mantine-color-blue-8);
  --mantine-primary-color-9: var(--mantine-color-blue-9);
  --mantine-primary-color-filled: var(--mantine-color-blue-filled);
  --mantine-primary-color-filled-hover: var(--mantine-color-blue-filled-hover);
  --mantine-primary-color-light: var(--mantine-color-blue-light);
  --mantine-primary-color-light-hover: var(--mantine-color-blue-light-hover);
  --mantine-primary-color-light-color: var(--mantine-color-blue-light-color);
  --mantine-breakpoint-xs: 36em;
  --mantine-breakpoint-sm: 48em;
  --mantine-breakpoint-md: 62em;
  --mantine-breakpoint-lg: 75em;
  --mantine-breakpoint-xl: 88em;
  --mantine-spacing-xs: calc(0.625rem * var(--mantine-scale));
  --mantine-spacing-sm: calc(0.75rem * var(--mantine-scale));
  --mantine-spacing-md: calc(1rem * var(--mantine-scale));
  --mantine-spacing-lg: calc(1.25rem * var(--mantine-scale));
  --mantine-spacing-xl: calc(2rem * var(--mantine-scale));
  --mantine-font-size-xs: calc(0.75rem * var(--mantine-scale));
  --mantine-font-size-sm: calc(0.875rem * var(--mantine-scale));
  --mantine-font-size-md: calc(1rem * var(--mantine-scale));
  --mantine-font-size-lg: calc(1.125rem * var(--mantine-scale));
  --mantine-font-size-xl: calc(1.25rem * var(--mantine-scale));
  --mantine-line-height-xs: 1.4;
  --mantine-line-height-sm: 1.45;
  --mantine-line-height-md: 1.55;
  --mantine-line-height-lg: 1.6;
  --mantine-line-height-xl: 1.65;
  --mantine-shadow-xs: 0 calc(0.0625rem * var(--mantine-scale))
      calc(0.1875rem * var(--mantine-scale)) rgba(0, 0, 0, 0.05),
    0 calc(0.0625rem * var(--mantine-scale)) calc(0.125rem * var(--mantine-scale))
      rgba(0, 0, 0, 0.1);
  --mantine-shadow-sm: 0 calc(0.0625rem * var(--mantine-scale))
      calc(0.1875rem * var(--mantine-scale)) rgba(0, 0, 0, 0.05),
    rgba(0, 0, 0, 0.05) 0 calc(0.625rem * var(--mantine-scale))
      calc(0.9375rem * var(--mantine-scale)) calc(-0.3125rem * var(--mantine-scale)),
    rgba(0, 0, 0, 0.04) 0 calc(0.4375rem * var(--mantine-scale))
      calc(0.4375rem * var(--mantine-scale)) calc(-0.3125rem * var(--mantine-scale));
  --mantine-shadow-md: 0 calc(0.0625rem * var(--mantine-scale))
      calc(0.1875rem * var(--mantine-scale)) rgba(0, 0, 0, 0.05),
    rgba(0, 0, 0, 0.05) 0 calc(1.25rem * var(--mantine-scale))
      calc(1.5625rem * var(--mantine-scale)) calc(-0.3125rem * var(--mantine-scale)),
    rgba(0, 0, 0, 0.04) 0 calc(0.625rem * var(--mantine-scale))
      calc(0.625rem * var(--mantine-scale)) calc(-0.3125rem * var(--mantine-scale));
  --mantine-shadow-lg: 0 calc(0.0625rem * var(--mantine-scale))
      calc(0.1875rem * var(--mantine-scale)) rgba(0, 0, 0, 0.05),
    rgba(0, 0, 0, 0.05) 0 calc(1.75rem * var(--mantine-scale))
      calc(1.4375rem * var(--mantine-scale)) calc(-0.4375rem * var(--mantine-scale)),
    rgba(0, 0, 0, 0.04) 0 calc(0.75rem * var(--mantine-scale)) calc(0.75rem * var(--mantine-scale))
      calc(-0.4375rem * var(--mantine-scale));
  --mantine-shadow-xl: 0 calc(0.0625rem * var(--mantine-scale))
      calc(0.1875rem * var(--mantine-scale)) rgba(0, 0, 0, 0.05),
    rgba(0, 0, 0, 0.05) 0 calc(2.25rem * var(--mantine-scale)) calc(1.75rem * var(--mantine-scale))
      calc(-0.4375rem * var(--mantine-scale)),
    rgba(0, 0, 0, 0.04) 0 calc(1.0625rem * var(--mantine-scale))
      calc(1.0625rem * var(--mantine-scale)) calc(-0.4375rem * var(--mantine-scale));
  --mantine-radius-xs: calc(0.125rem * var(--mantine-scale));
  --mantine-radius-sm: calc(0.25rem * var(--mantine-scale));
  --mantine-radius-md: calc(0.5rem * var(--mantine-scale));
  --mantine-radius-lg: calc(1rem * var(--mantine-scale));
  --mantine-radius-xl: calc(2rem * var(--mantine-scale));
  --mantine-color-dark-0: #c9c9c9;
  --mantine-color-dark-1: #b8b8b8;
  --mantine-color-dark-2: #828282;
  --mantine-color-dark-3: #696969;
  --mantine-color-dark-4: #424242;
  --mantine-color-dark-5: #3b3b3b;
  --mantine-color-dark-6: #2e2e2e;
  --mantine-color-dark-7: #242424;
  --mantine-color-dark-8: #1f1f1f;
  --mantine-color-dark-9: #141414;
  --mantine-color-gray-0: #f8f9fa;
  --mantine-color-gray-1: #f1f3f5;
  --mantine-color-gray-2: #e9ecef;
  --mantine-color-gray-3: #dee2e6;
  --mantine-color-gray-4: #ced4da;
  --mantine-color-gray-5: #adb5bd;
  --mantine-color-gray-6: #868e96;
  --mantine-color-gray-7: #495057;
  --mantine-color-gray-8: #343a40;
  --mantine-color-gray-9: #212529;
  --mantine-color-red-0: #fff5f5;
  --mantine-color-red-1: #ffe3e3;
  --mantine-color-red-2: #ffc9c9;
  --mantine-color-red-3: #ffa8a8;
  --mantine-color-red-4: #ff8787;
  --mantine-color-red-5: #ff6b6b;
  --mantine-color-red-6: #fa5252;
  --mantine-color-red-7: #f03e3e;
  --mantine-color-red-8: #e03131;
  --mantine-color-red-9: #c92a2a;
  --mantine-color-pink-0: #fff0f6;
  --mantine-color-pink-1: #ffdeeb;
  --mantine-color-pink-2: #fcc2d7;
  --mantine-color-pink-3: #faa2c1;
  --mantine-color-pink-4: #f783ac;
  --mantine-color-pink-5: #f06595;
  --mantine-color-pink-6: #e64980;
  --mantine-color-pink-7: #d6336c;
  --mantine-color-pink-8: #c2255c;
  --mantine-color-pink-9: #a61e4d;
  --mantine-color-grape-0: #f8f0fc;
  --mantine-color-grape-1: #f3d9fa;
  --mantine-color-grape-2: #eebefa;
  --mantine-color-grape-3: #e599f7;
  --mantine-color-grape-4: #da77f2;
  --mantine-color-grape-5: #cc5de8;
  --mantine-color-grape-6: #be4bdb;
  --mantine-color-grape-7: #ae3ec9;
  --mantine-color-grape-8: #9c36b5;
  --mantine-color-grape-9: #862e9c;
  --mantine-color-violet-0: #f3f0ff;
  --mantine-color-violet-1: #e5dbff;
  --mantine-color-violet-2: #d0bfff;
  --mantine-color-violet-3: #b197fc;
  --mantine-color-violet-4: #9775fa;
  --mantine-color-violet-5: #845ef7;
  --mantine-color-violet-6: #7950f2;
  --mantine-color-violet-7: #7048e8;
  --mantine-color-violet-8: #6741d9;
  --mantine-color-violet-9: #5f3dc4;
  --mantine-color-indigo-0: #edf2ff;
  --mantine-color-indigo-1: #dbe4ff;
  --mantine-color-indigo-2: #bac8ff;
  --mantine-color-indigo-3: #91a7ff;
  --mantine-color-indigo-4: #748ffc;
  --mantine-color-indigo-5: #5c7cfa;
  --mantine-color-indigo-6: #4c6ef5;
  --mantine-color-indigo-7: #4263eb;
  --mantine-color-indigo-8: #3b5bdb;
  --mantine-color-indigo-9: #364fc7;
  --mantine-color-blue-0: #e7f5ff;
  --mantine-color-blue-1: #d0ebff;
  --mantine-color-blue-2: #a5d8ff;
  --mantine-color-blue-3: #74c0fc;
  --mantine-color-blue-4: #4dabf7;
  --mantine-color-blue-5: #339af0;
  --mantine-color-blue-6: #228be6;
  --mantine-color-blue-7: #1c7ed6;
  --mantine-color-blue-8: #1971c2;
  --mantine-color-blue-9: #1864ab;
  --mantine-color-cyan-0: #e3fafc;
  --mantine-color-cyan-1: #c5f6fa;
  --mantine-color-cyan-2: #99e9f2;
  --mantine-color-cyan-3: #66d9e8;
  --mantine-color-cyan-4: #3bc9db;
  --mantine-color-cyan-5: #22b8cf;
  --mantine-color-cyan-6: #15aabf;
  --mantine-color-cyan-7: #1098ad;
  --mantine-color-cyan-8: #0c8599;
  --mantine-color-cyan-9: #0b7285;
  --mantine-color-teal-0: #e6fcf5;
  --mantine-color-teal-1: #c3fae8;
  --mantine-color-teal-2: #96f2d7;
  --mantine-color-teal-3: #63e6be;
  --mantine-color-teal-4: #38d9a9;
  --mantine-color-teal-5: #20c997;
  --mantine-color-teal-6: #12b886;
  --mantine-color-teal-7: #0ca678;
  --mantine-color-teal-8: #099268;
  --mantine-color-teal-9: #087f5b;
  --mantine-color-green-0: #ebfbee;
  --mantine-color-green-1: #d3f9d8;
  --mantine-color-green-2: #b2f2bb;
  --mantine-color-green-3: #8ce99a;
  --mantine-color-green-4: #69db7c;
  --mantine-color-green-5: #51cf66;
  --mantine-color-green-6: #40c057;
  --mantine-color-green-7: #37b24d;
  --mantine-color-green-8: #2f9e44;
  --mantine-color-green-9: #2b8a3e;
  --mantine-color-lime-0: #f4fce3;
  --mantine-color-lime-1: #e9fac8;
  --mantine-color-lime-2: #d8f5a2;
  --mantine-color-lime-3: #c0eb75;
  --mantine-color-lime-4: #a9e34b;
  --mantine-color-lime-5: #94d82d;
  --mantine-color-lime-6: #82c91e;
  --mantine-color-lime-7: #74b816;
  --mantine-color-lime-8: #66a80f;
  --mantine-color-lime-9: #5c940d;
  --mantine-color-yellow-0: #fff9db;
  --mantine-color-yellow-1: #fff3bf;
  --mantine-color-yellow-2: #ffec99;
  --mantine-color-yellow-3: #ffe066;
  --mantine-color-yellow-4: #ffd43b;
  --mantine-color-yellow-5: #fcc419;
  --mantine-color-yellow-6: #fab005;
  --mantine-color-yellow-7: #f59f00;
  --mantine-color-yellow-8: #f08c00;
  --mantine-color-yellow-9: #e67700;
  --mantine-color-orange-0: #fff4e6;
  --mantine-color-orange-1: #ffe8cc;
  --mantine-color-orange-2: #ffd8a8;
  --mantine-color-orange-3: #ffc078;
  --mantine-color-orange-4: #ffa94d;
  --mantine-color-orange-5: #ff922b;
  --mantine-color-orange-6: #fd7e14;
  --mantine-color-orange-7: #f76707;
  --mantine-color-orange-8: #e8590c;
  --mantine-color-orange-9: #d9480f;
  --mantine-h1-font-size: calc(2.125rem * var(--mantine-scale));
  --mantine-h1-line-height: 1.3;
  --mantine-h1-font-weight: 700;
  --mantine-h2-font-size: calc(1.625rem * var(--mantine-scale));
  --mantine-h2-line-height: 1.35;
  --mantine-h2-font-weight: 700;
  --mantine-h3-font-size: calc(1.375rem * var(--mantine-scale));
  --mantine-h3-line-height: 1.4;
  --mantine-h3-font-weight: 700;
  --mantine-h4-font-size: calc(1.125rem * var(--mantine-scale));
  --mantine-h4-line-height: 1.45;
  --mantine-h4-font-weight: 700;
  --mantine-h5-font-size: calc(1rem * var(--mantine-scale));
  --mantine-h5-line-height: 1.5;
  --mantine-h5-font-weight: 700;
  --mantine-h6-font-size: calc(0.875rem * var(--mantine-scale));
  --mantine-h6-line-height: 1.5;
  --mantine-h6-font-weight: 700;
}

:root[data-mantine-color-scheme='dark'] {
  --mantine-color-scheme: dark;
  --mantine-primary-color-contrast: var(--mantine-color-white);
  --mantine-color-bright: var(--mantine-color-white);
  --mantine-color-text: var(--mantine-color-dark-0);
  --mantine-color-body: var(--mantine-color-dark-7);
  --mantine-color-error: var(--mantine-color-red-8);
  --mantine-color-placeholder: var(--mantine-color-dark-3);
  --mantine-color-anchor: var(--mantine-color-blue-4);
  --mantine-color-default: var(--mantine-color-dark-6);
  --mantine-color-default-hover: var(--mantine-color-dark-5);
  --mantine-color-default-color: var(--mantine-color-white);
  --mantine-color-default-border: var(--mantine-color-dark-4);
  --mantine-color-dimmed: var(--mantine-color-dark-2);
  --mantine-color-dark-text: var(--mantine-color-dark-4);
  --mantine-color-dark-filled: var(--mantine-color-dark-8);
  --mantine-color-dark-filled-hover: var(--mantine-color-dark-7);
  --mantine-color-dark-light: rgba(36, 36, 36, 0.15);
  --mantine-color-dark-light-hover: rgba(36, 36, 36, 0.2);
  --mantine-color-dark-light-color: var(--mantine-color-dark-3);
  --mantine-color-dark-outline: var(--mantine-color-dark-4);
  --mantine-color-dark-outline-hover: rgba(36, 36, 36, 0.05);
  --mantine-color-gray-text: var(--mantine-color-gray-4);
  --mantine-color-gray-filled: var(--mantine-color-gray-8);
  --mantine-color-gray-filled-hover: var(--mantine-color-gray-9);
  --mantine-color-gray-light: rgba(134, 142, 150, 0.15);
  --mantine-color-gray-light-hover: rgba(134, 142, 150, 0.2);
  --mantine-color-gray-light-color: var(--mantine-color-gray-3);
  --mantine-color-gray-outline: var(--mantine-color-gray-4);
  --mantine-color-gray-outline-hover: rgba(206, 212, 218, 0.05);
  --mantine-color-red-text: var(--mantine-color-red-4);
  --mantine-color-red-filled: var(--mantine-color-red-8);
  --mantine-color-red-filled-hover: var(--mantine-color-red-9);
  --mantine-color-red-light: rgba(250, 82, 82, 0.15);
  --mantine-color-red-light-hover: rgba(250, 82, 82, 0.2);
  --mantine-color-red-light-color: var(--mantine-color-red-3);
  --mantine-color-red-outline: var(--mantine-color-red-4);
  --mantine-color-red-outline-hover: rgba(255, 135, 135, 0.05);
  --mantine-color-pink-text: var(--mantine-color-pink-4);
  --mantine-color-pink-filled: var(--mantine-color-pink-8);
  --mantine-color-pink-filled-hover: var(--mantine-color-pink-9);
  --mantine-color-pink-light: rgba(230, 73, 128, 0.15);
  --mantine-color-pink-light-hover: rgba(230, 73, 128, 0.2);
  --mantine-color-pink-light-color: var(--mantine-color-pink-3);
  --mantine-color-pink-outline: var(--mantine-color-pink-4);
  --mantine-color-pink-outline-hover: rgba(247, 131, 172, 0.05);
  --mantine-color-grape-text: var(--mantine-color-grape-4);
  --mantine-color-grape-filled: var(--mantine-color-grape-8);
  --mantine-color-grape-filled-hover: var(--mantine-color-grape-9);
  --mantine-color-grape-light: rgba(190, 75, 219, 0.15);
  --mantine-color-grape-light-hover: rgba(190, 75, 219, 0.2);
  --mantine-color-grape-light-color: var(--mantine-color-grape-3);
  --mantine-color-grape-outline: var(--mantine-color-grape-4);
  --mantine-color-grape-outline-hover: rgba(218, 119, 242, 0.05);
  --mantine-color-violet-text: var(--mantine-color-violet-4);
  --mantine-color-violet-filled: var(--mantine-color-violet-8);
  --mantine-color-violet-filled-hover: var(--mantine-color-violet-9);
  --mantine-color-violet-light: rgba(121, 80, 242, 0.15);
  --mantine-color-violet-light-hover: rgba(121, 80, 242, 0.2);
  --mantine-color-violet-light-color: var(--mantine-color-violet-3);
  --mantine-color-violet-outline: var(--mantine-color-violet-4);
  --mantine-color-violet-outline-hover: rgba(151, 117, 250, 0.05);
  --mantine-color-indigo-text: var(--mantine-color-indigo-4);
  --mantine-color-indigo-filled: var(--mantine-color-indigo-8);
  --mantine-color-indigo-filled-hover: var(--mantine-color-indigo-9);
  --mantine-color-indigo-light: rgba(76, 110, 245, 0.15);
  --mantine-color-indigo-light-hover: rgba(76, 110, 245, 0.2);
  --mantine-color-indigo-light-color: var(--mantine-color-indigo-3);
  --mantine-color-indigo-outline: var(--mantine-color-indigo-4);
  --mantine-color-indigo-outline-hover: rgba(116, 143, 252, 0.05);
  --mantine-color-blue-text: var(--mantine-color-blue-4);
  --mantine-color-blue-filled: var(--mantine-color-blue-8);
  --mantine-color-blue-filled-hover: var(--mantine-color-blue-9);
  --mantine-color-blue-light: rgba(34, 139, 230, 0.15);
  --mantine-color-blue-light-hover: rgba(34, 139, 230, 0.2);
  --mantine-color-blue-light-color: var(--mantine-color-blue-3);
  --mantine-color-blue-outline: var(--mantine-color-blue-4);
  --mantine-color-blue-outline-hover: rgba(77, 171, 247, 0.05);
  --mantine-color-cyan-text: var(--mantine-color-cyan-4);
  --mantine-color-cyan-filled: var(--mantine-color-cyan-8);
  --mantine-color-cyan-filled-hover: var(--mantine-color-cyan-9);
  --mantine-color-cyan-light: rgba(21, 170, 191, 0.15);
  --mantine-color-cyan-light-hover: rgba(21, 170, 191, 0.2);
  --mantine-color-cyan-light-color: var(--mantine-color-cyan-3);
  --mantine-color-cyan-outline: var(--mantine-color-cyan-4);
  --mantine-color-cyan-outline-hover: rgba(59, 201, 219, 0.05);
  --mantine-color-teal-text: var(--mantine-color-teal-4);
  --mantine-color-teal-filled: var(--mantine-color-teal-8);
  --mantine-color-teal-filled-hover: var(--mantine-color-teal-9);
  --mantine-color-teal-light: rgba(18, 184, 134, 0.15);
  --mantine-color-teal-light-hover: rgba(18, 184, 134, 0.2);
  --mantine-color-teal-light-color: var(--mantine-color-teal-3);
  --mantine-color-teal-outline: var(--mantine-color-teal-4);
  --mantine-color-teal-outline-hover: rgba(56, 217, 169, 0.05);
  --mantine-color-green-text: var(--mantine-color-green-4);
  --mantine-color-green-filled: var(--mantine-color-green-8);
  --mantine-color-green-filled-hover: var(--mantine-color-green-9);
  --mantine-color-green-light: rgba(64, 192, 87, 0.15);
  --mantine-color-green-light-hover: rgba(64, 192, 87, 0.2);
  --mantine-color-green-light-color: var(--mantine-color-green-3);
  --mantine-color-green-outline: var(--mantine-color-green-4);
  --mantine-color-green-outline-hover: rgba(105, 219, 124, 0.05);
  --mantine-color-lime-text: var(--mantine-color-lime-4);
  --mantine-color-lime-filled: var(--mantine-color-lime-8);
  --mantine-color-lime-filled-hover: var(--mantine-color-lime-9);
  --mantine-color-lime-light: rgba(130, 201, 30, 0.15);
  --mantine-color-lime-light-hover: rgba(130, 201, 30, 0.2);
  --mantine-color-lime-light-color: var(--mantine-color-lime-3);
  --mantine-color-lime-outline: var(--mantine-color-lime-4);
  --mantine-color-lime-outline-hover: rgba(169, 227, 75, 0.05);
  --mantine-color-yellow-text: var(--mantine-color-yellow-4);
  --mantine-color-yellow-filled: var(--mantine-color-yellow-8);
  --mantine-color-yellow-filled-hover: var(--mantine-color-yellow-9);
  --mantine-color-yellow-light: rgba(250, 176, 5, 0.15);
  --mantine-color-yellow-light-hover: rgba(250, 176, 5, 0.2);
  --mantine-color-yellow-light-color: var(--mantine-color-yellow-3);
  --mantine-color-yellow-outline: var(--mantine-color-yellow-4);
  --mantine-color-yellow-outline-hover: rgba(255, 212, 59, 0.05);
  --mantine-color-orange-text: var(--mantine-color-orange-4);
  --mantine-color-orange-filled: var(--mantine-color-orange-8);
  --mantine-color-orange-filled-hover: var(--mantine-color-orange-9);
  --mantine-color-orange-light: rgba(253, 126, 20, 0.15);
  --mantine-color-orange-light-hover: rgba(253, 126, 20, 0.2);
  --mantine-color-orange-light-color: var(--mantine-color-orange-3);
  --mantine-color-orange-outline: var(--mantine-color-orange-4);
  --mantine-color-orange-outline-hover: rgba(255, 169, 77, 0.05);
}

:root[data-mantine-color-scheme='light'] {
  --mantine-color-scheme: light;
  --mantine-color-bright: var(--mantine-color-black);
  --mantine-color-text: var(--mantine-color-black);
  --mantine-color-body: var(--mantine-color-white);
  --mantine-primary-color-contrast: var(--mantine-color-white);
  --mantine-color-error: var(--mantine-color-red-6);
  --mantine-color-placeholder: var(--mantine-color-gray-5);
  --mantine-color-anchor: var(--mantine-primary-color-filled);
  --mantine-color-default: var(--mantine-color-white);
  --mantine-color-default-hover: var(--mantine-color-gray-0);
  --mantine-color-default-color: var(--mantine-color-gray-9);
  --mantine-color-default-border: var(--mantine-color-gray-4);
  --mantine-color-dimmed: var(--mantine-color-gray-6);
  --mantine-color-dark-text: var(--mantine-color-dark-filled);
  --mantine-color-dark-filled: var(--mantine-color-dark-6);
  --mantine-color-dark-filled-hover: var(--mantine-color-dark-7);
  --mantine-color-dark-light: rgba(56, 56, 56, 0.1);
  --mantine-color-dark-light-hover: rgba(56, 56, 56, 0.12);
  --mantine-color-dark-light-color: var(--mantine-color-dark-6);
  --mantine-color-dark-outline: var(--mantine-color-dark-6);
  --mantine-color-dark-outline-hover: rgba(56, 56, 56, 0.05);
  --mantine-color-gray-text: var(--mantine-color-gray-filled);
  --mantine-color-gray-filled: var(--mantine-color-gray-6);
  --mantine-color-gray-filled-hover: var(--mantine-color-gray-7);
  --mantine-color-gray-light: rgba(134, 142, 150, 0.1);
  --mantine-color-gray-light-hover: rgba(134, 142, 150, 0.12);
  --mantine-color-gray-light-color: var(--mantine-color-gray-6);
  --mantine-color-gray-outline: var(--mantine-color-gray-6);
  --mantine-color-gray-outline-hover: rgba(134, 142, 150, 0.05);
  --mantine-color-red-text: var(--mantine-color-red-filled);
  --mantine-color-red-filled: var(--mantine-color-red-6);
  --mantine-color-red-filled-hover: var(--mantine-color-red-7);
  --mantine-color-red-light: rgba(250, 82, 82, 0.1);
  --mantine-color-red-light-hover: rgba(250, 82, 82, 0.12);
  --mantine-color-red-light-color: var(--mantine-color-red-6);
  --mantine-color-red-outline: var(--mantine-color-red-6);
  --mantine-color-red-outline-hover: rgba(250, 82, 82, 0.05);
  --mantine-color-pink-text: var(--mantine-color-pink-filled);
  --mantine-color-pink-filled: var(--mantine-color-pink-6);
  --mantine-color-pink-filled-hover: var(--mantine-color-pink-7);
  --mantine-color-pink-light: rgba(230, 73, 128, 0.1);
  --mantine-color-pink-light-hover: rgba(230, 73, 128, 0.12);
  --mantine-color-pink-light-color: var(--mantine-color-pink-6);
  --mantine-color-pink-outline: var(--mantine-color-pink-6);
  --mantine-color-pink-outline-hover: rgba(230, 73, 128, 0.05);
  --mantine-color-grape-text: var(--mantine-color-grape-filled);
  --mantine-color-grape-filled: var(--mantine-color-grape-6);
  --mantine-color-grape-filled-hover: var(--mantine-color-grape-7);
  --mantine-color-grape-light: rgba(190, 75, 219, 0.1);
  --mantine-color-grape-light-hover: rgba(190, 75, 219, 0.12);
  --mantine-color-grape-light-color: var(--mantine-color-grape-6);
  --mantine-color-grape-outline: var(--mantine-color-grape-6);
  --mantine-color-grape-outline-hover: rgba(190, 75, 219, 0.05);
  --mantine-color-violet-text: var(--mantine-color-violet-filled);
  --mantine-color-violet-filled: var(--mantine-color-violet-6);
  --mantine-color-violet-filled-hover: var(--mantine-color-violet-7);
  --mantine-color-violet-light: rgba(121, 80, 242, 0.1);
  --mantine-color-violet-light-hover: rgba(121, 80, 242, 0.12);
  --mantine-color-violet-light-color: var(--mantine-color-violet-6);
  --mantine-color-violet-outline: var(--mantine-color-violet-6);
  --mantine-color-violet-outline-hover: rgba(121, 80, 242, 0.05);
  --mantine-color-indigo-text: var(--mantine-color-indigo-filled);
  --mantine-color-indigo-filled: var(--mantine-color-indigo-6);
  --mantine-color-indigo-filled-hover: var(--mantine-color-indigo-7);
  --mantine-color-indigo-light: rgba(76, 110, 245, 0.1);
  --mantine-color-indigo-light-hover: rgba(76, 110, 245, 0.12);
  --mantine-color-indigo-light-color: var(--mantine-color-indigo-6);
  --mantine-color-indigo-outline: var(--mantine-color-indigo-6);
  --mantine-color-indigo-outline-hover: rgba(76, 110, 245, 0.05);
  --mantine-color-blue-text: var(--mantine-color-blue-filled);
  --mantine-color-blue-filled: var(--mantine-color-blue-6);
  --mantine-color-blue-filled-hover: var(--mantine-color-blue-7);
  --mantine-color-blue-light: rgba(34, 139, 230, 0.1);
  --mantine-color-blue-light-hover: rgba(34, 139, 230, 0.12);
  --mantine-color-blue-light-color: var(--mantine-color-blue-6);
  --mantine-color-blue-outline: var(--mantine-color-blue-6);
  --mantine-color-blue-outline-hover: rgba(34, 139, 230, 0.05);
  --mantine-color-cyan-text: var(--mantine-color-cyan-filled);
  --mantine-color-cyan-filled: var(--mantine-color-cyan-6);
  --mantine-color-cyan-filled-hover: var(--mantine-color-cyan-7);
  --mantine-color-cyan-light: rgba(21, 170, 191, 0.1);
  --mantine-color-cyan-light-hover: rgba(21, 170, 191, 0.12);
  --mantine-color-cyan-light-color: var(--mantine-color-cyan-6);
  --mantine-color-cyan-outline: var(--mantine-color-cyan-6);
  --mantine-color-cyan-outline-hover: rgba(21, 170, 191, 0.05);
  --mantine-color-teal-text: var(--mantine-color-teal-filled);
  --mantine-color-teal-filled: var(--mantine-color-teal-6);
  --mantine-color-teal-filled-hover: var(--mantine-color-teal-7);
  --mantine-color-teal-light: rgba(18, 184, 134, 0.1);
  --mantine-color-teal-light-hover: rgba(18, 184, 134, 0.12);
  --mantine-color-teal-light-color: var(--mantine-color-teal-6);
  --mantine-color-teal-outline: var(--mantine-color-teal-6);
  --mantine-color-teal-outline-hover: rgba(18, 184, 134, 0.05);
  --mantine-color-green-text: var(--mantine-color-green-filled);
  --mantine-color-green-filled: var(--mantine-color-green-6);
  --mantine-color-green-filled-hover: var(--mantine-color-green-7);
  --mantine-color-green-light: rgba(64, 192, 87, 0.1);
  --mantine-color-green-light-hover: rgba(64, 192, 87, 0.12);
  --mantine-color-green-light-color: var(--mantine-color-green-6);
  --mantine-color-green-outline: var(--mantine-color-green-6);
  --mantine-color-green-outline-hover: rgba(64, 192, 87, 0.05);
  --mantine-color-lime-text: var(--mantine-color-lime-filled);
  --mantine-color-lime-filled: var(--mantine-color-lime-6);
  --mantine-color-lime-filled-hover: var(--mantine-color-lime-7);
  --mantine-color-lime-light: rgba(130, 201, 30, 0.1);
  --mantine-color-lime-light-hover: rgba(130, 201, 30, 0.12);
  --mantine-color-lime-light-color: var(--mantine-color-lime-6);
  --mantine-color-lime-outline: var(--mantine-color-lime-6);
  --mantine-color-lime-outline-hover: rgba(130, 201, 30, 0.05);
  --mantine-color-yellow-text: var(--mantine-color-yellow-filled);
  --mantine-color-yellow-filled: var(--mantine-color-yellow-6);
  --mantine-color-yellow-filled-hover: var(--mantine-color-yellow-7);
  --mantine-color-yellow-light: rgba(250, 176, 5, 0.1);
  --mantine-color-yellow-light-hover: rgba(250, 176, 5, 0.12);
  --mantine-color-yellow-light-color: var(--mantine-color-yellow-6);
  --mantine-color-yellow-outline: var(--mantine-color-yellow-6);
  --mantine-color-yellow-outline-hover: rgba(250, 176, 5, 0.05);
  --mantine-color-orange-text: var(--mantine-color-orange-filled);
  --mantine-color-orange-filled: var(--mantine-color-orange-6);
  --mantine-color-orange-filled-hover: var(--mantine-color-orange-7);
  --mantine-color-orange-light: rgba(253, 126, 20, 0.1);
  --mantine-color-orange-light-hover: rgba(253, 126, 20, 0.12);
  --mantine-color-orange-light-color: var(--mantine-color-orange-6);
  --mantine-color-orange-outline: var(--mantine-color-orange-6);
  --mantine-color-orange-outline-hover: rgba(253, 126, 20, 0.05);
}

.m_d57069b5 {
  --scrollarea-scrollbar-size: calc(0.75rem * var(--mantine-scale));

  position: relative;
  overflow: hidden;
}

.m_c0783ff9 {
  scrollbar-width: none;
  overscroll-behavior: var(--scrollarea-over-scroll-behavior);
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  height: 100%;
}

.m_c0783ff9::-webkit-scrollbar {
    display: none;
  }

[dir="ltr"] .m_c0783ff9:where([data-scrollbars='xy'], [data-scrollbars='y']):where(
        [data-offset-scrollbars='xy'],
        [data-offset-scrollbars='y'],
        [data-offset-scrollbars='present']
      ):where([data-vertical-hidden]) {
        padding-right: 0;
}

[dir="rtl"] .m_c0783ff9:where([data-scrollbars='xy'], [data-scrollbars='y']):where(
        [data-offset-scrollbars='xy'],
        [data-offset-scrollbars='y'],
        [data-offset-scrollbars='present']
      ):where([data-vertical-hidden]) {
        padding-left: 0;
}

[dir="ltr"] .m_c0783ff9:where([data-scrollbars='xy'], [data-scrollbars='y']):where(
        [data-offset-scrollbars='xy'],
        [data-offset-scrollbars='y'],
        [data-offset-scrollbars='present']
      ):where([data-vertical-hidden]) {
        padding-left: 0;
}

[dir="rtl"] .m_c0783ff9:where([data-scrollbars='xy'], [data-scrollbars='y']):where(
        [data-offset-scrollbars='xy'],
        [data-offset-scrollbars='y'],
        [data-offset-scrollbars='present']
      ):where([data-vertical-hidden]) {
        padding-right: 0;
}

[dir="ltr"] .m_c0783ff9:where([data-scrollbars='xy'], [data-scrollbars='y']):where(
        [data-offset-scrollbars='xy'],
        [data-offset-scrollbars='y'],
        [data-offset-scrollbars='present']
      ):not([data-vertical-hidden]) {
        padding-right: var(--scrollarea-scrollbar-size);
}

[dir="rtl"] .m_c0783ff9:where([data-scrollbars='xy'], [data-scrollbars='y']):where(
        [data-offset-scrollbars='xy'],
        [data-offset-scrollbars='y'],
        [data-offset-scrollbars='present']
      ):not([data-vertical-hidden]) {
        padding-left: var(--scrollarea-scrollbar-size);
}

[dir="ltr"] .m_c0783ff9:where([data-scrollbars='xy'], [data-scrollbars='y']):where(
        [data-offset-scrollbars='xy'],
        [data-offset-scrollbars='y'],
        [data-offset-scrollbars='present']
      ):not([data-vertical-hidden]) {
        padding-left: 0;
        padding-left: initial;
}

[dir="rtl"] .m_c0783ff9:where([data-scrollbars='xy'], [data-scrollbars='y']):where(
        [data-offset-scrollbars='xy'],
        [data-offset-scrollbars='y'],
        [data-offset-scrollbars='present']
      ):not([data-vertical-hidden]) {
        padding-right: 0;
        padding-right: initial;
}

.m_c0783ff9:where([data-scrollbars='xy'], [data-scrollbars='x']):where(
        [data-offset-scrollbars='xy'],
        [data-offset-scrollbars='x'],
        [data-offset-scrollbars='present']
      ):where([data-horizontal-hidden]) {
        padding-bottom: 0;
      }

.m_c0783ff9:where([data-scrollbars='xy'], [data-scrollbars='x']):where(
        [data-offset-scrollbars='xy'],
        [data-offset-scrollbars='x'],
        [data-offset-scrollbars='present']
      ):not([data-horizontal-hidden]) {
        padding-bottom: var(--scrollarea-scrollbar-size);
      }

.m_f8f631dd {
  min-width: 100%;
  display: table;
}

.m_c44ba933 {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  touch-action: none;
  box-sizing: border-box;
  transition:
    background-color 150ms ease,
    opacity 150ms ease;

  padding: calc(var(--scrollarea-scrollbar-size) / 5);
  display: flex;
  background-color: transparent;
  flex-direction: row;
}

@media (hover: hover) {
    :where([data-mantine-color-scheme='light']) .m_c44ba933:hover {
      background-color: #f8f9fa;
      background-color: var(--mantine-color-gray-0);
  }

      :where([data-mantine-color-scheme='light']) .m_c44ba933:hover > .m_d8b5e363 {
        background-color: rgba(0, 0, 0, 0.5);
      }

    :where([data-mantine-color-scheme='dark']) .m_c44ba933:hover {
      background-color: #1f1f1f;
      background-color: var(--mantine-color-dark-8);
  }

      :where([data-mantine-color-scheme='dark']) .m_c44ba933:hover > .m_d8b5e363 {
        background-color: rgba(255, 255, 255, 0.5);
      }
}

@media (hover: none) {
    :where([data-mantine-color-scheme='light']) .m_c44ba933:active {
      background-color: #f8f9fa;
      background-color: var(--mantine-color-gray-0);
  }

      :where([data-mantine-color-scheme='light']) .m_c44ba933:active > .m_d8b5e363 {
        background-color: rgba(0, 0, 0, 0.5);
      }

    :where([data-mantine-color-scheme='dark']) .m_c44ba933:active {
      background-color: #1f1f1f;
      background-color: var(--mantine-color-dark-8);
  }

      :where([data-mantine-color-scheme='dark']) .m_c44ba933:active > .m_d8b5e363 {
        background-color: rgba(255, 255, 255, 0.5);
      }
}

.m_c44ba933:where([data-hidden], [data-state='hidden']) {
    display: none;
  }

[dir="ltr"] .m_c44ba933:where([data-orientation='vertical']) {
    right: 0;
}

[dir="rtl"] .m_c44ba933:where([data-orientation='vertical']) {
    left: 0;
}

.m_c44ba933:where([data-orientation='vertical']) {
    width: var(--scrollarea-scrollbar-size);
    top: 0;
    bottom: var(--sa-corner-width);
  }

[dir="ltr"] .m_c44ba933:where([data-orientation='horizontal']) {
    left: 0;
}

[dir="rtl"] .m_c44ba933:where([data-orientation='horizontal']) {
    right: 0;
}

[dir="ltr"] .m_c44ba933:where([data-orientation='horizontal']) {
    right: var(--sa-corner-width);
}

[dir="rtl"] .m_c44ba933:where([data-orientation='horizontal']) {
    left: var(--sa-corner-width);
}

.m_c44ba933:where([data-orientation='horizontal']) {
    height: var(--scrollarea-scrollbar-size);
    flex-direction: column;
    bottom: 0;
  }

.m_d8b5e363 {
  flex: 1;
  border-radius: var(--scrollarea-scrollbar-size);
  position: relative;
  transition: background-color 150ms ease;
  overflow: hidden;
  opacity: var(--thumb-opacity);
}

.m_d8b5e363::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    min-width: calc(2.75rem * 1);
    min-width: calc(2.75rem * var(--mantine-scale));
    min-height: calc(2.75rem * 1);
    min-height: calc(2.75rem * var(--mantine-scale));
  }

:where([data-mantine-color-scheme='light']) .m_d8b5e363 {
    background-color: rgba(0, 0, 0, 0.4);
}

:where([data-mantine-color-scheme='dark']) .m_d8b5e363 {
    background-color: rgba(255, 255, 255, 0.4);
}

[dir="ltr"] .m_21657268 {
  right: 0;
}

[dir="rtl"] .m_21657268 {
  left: 0;
}

.m_21657268 {
  position: absolute;
  opacity: 0;
  transition: opacity 150ms ease;
  display: block;
  bottom: 0;
}

:where([data-mantine-color-scheme='light']) .m_21657268 {
    background-color: #f8f9fa;
    background-color: var(--mantine-color-gray-0);
}

:where([data-mantine-color-scheme='dark']) .m_21657268 {
    background-color: #1f1f1f;
    background-color: var(--mantine-color-dark-8);
}

.m_21657268:where([data-hovered]) {
    opacity: 1;
  }

.m_21657268:where([data-hidden]) {
    display: none;
  }

.m_87cf2631 {
  background-color: transparent;
  cursor: pointer;
  border: 0;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: calc(1rem * 1);
  font-size: var(--mantine-font-size-md);
  text-align: left;
  text-decoration: none;
  color: inherit;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

  :where([dir="rtl"]) .m_87cf2631 {
    text-align: right;
}

.m_515a97f8 {
  border: 0;
  clip: rect(0 0 0 0);
  height: calc(0.0625rem * 1);
  height: calc(0.0625rem * var(--mantine-scale));
  width: calc(0.0625rem * 1);
  width: calc(0.0625rem * var(--mantine-scale));
  margin: calc(-0.0625rem * 1);
  margin: calc(-0.0625rem * var(--mantine-scale));
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
}

.m_1b7284a3 {
  --paper-radius: var(--mantine-radius-default);

  outline: 0;
  -webkit-tap-highlight-color: transparent;
  display: block;
  touch-action: manipulation;
  text-decoration: none;
  border-radius: var(--paper-radius);
  box-shadow: var(--paper-shadow);
  background-color: var(--mantine-color-body);
}

  [data-mantine-color-scheme='light'] .m_1b7284a3 {
    --paper-border-color: var(--mantine-color-gray-3);
}

  [data-mantine-color-scheme='dark'] .m_1b7284a3 {
    --paper-border-color: var(--mantine-color-dark-4);
}

  .m_1b7284a3:where([data-with-border]) {
    border: calc(0.0625rem * 1) solid var(--paper-border-color);
    border: calc(0.0625rem * var(--mantine-scale)) solid var(--paper-border-color);
  }

.m_9814e45f {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  background: var(--overlay-bg, rgba(0, 0, 0, 0.6));
  backdrop-filter: var(--overlay-filter);
  border-radius: 0;
  border-radius: var(--overlay-radius, 0);
  z-index: var(--overlay-z-index);
}

  .m_9814e45f:where([data-fixed]) {
    position: fixed;
  }

  .m_9814e45f:where([data-center]) {
    display: flex;
    align-items: center;
    justify-content: center;
  }

.m_38a85659 {
  position: absolute;
  border: 1px solid var(--popover-border-color);
  padding: calc(0.75rem * 1) calc(1rem * 1);
  padding: var(--mantine-spacing-sm) var(--mantine-spacing-md);
  box-shadow: none;
  box-shadow: var(--popover-shadow, none);
  border-radius: calc(0.25rem * 1);
  border-radius: var(--popover-radius, var(--mantine-radius-default));
}

  .m_38a85659:where([data-fixed]) {
    position: fixed;
  }

  .m_38a85659:focus {
    outline: none;
  }

  :where([data-mantine-color-scheme='light']) .m_38a85659 {
    --popover-border-color: var(--mantine-color-gray-2);
    background-color: #fff;
    background-color: var(--mantine-color-white);
}

  :where([data-mantine-color-scheme='dark']) .m_38a85659 {
    --popover-border-color: var(--mantine-color-dark-4);
    background-color: #2e2e2e;
    background-color: var(--mantine-color-dark-6);
}

.m_a31dc6c1 {
  background-color: inherit;
  border: 1px solid var(--popover-border-color);
  z-index: 1;
}

.m_3d7bc908 {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.m_5ae2e3c {
  --loader-size-xs: calc(1.125rem * var(--mantine-scale));
  --loader-size-sm: calc(1.375rem * var(--mantine-scale));
  --loader-size-md: calc(2.25rem * var(--mantine-scale));
  --loader-size-lg: calc(2.75rem * var(--mantine-scale));
  --loader-size-xl: calc(3.625rem * var(--mantine-scale));
  --loader-size: var(--loader-size-md);
  --loader-color: var(--mantine-primary-color-filled);
}

/* ----- Bars loader ----- */
@keyframes m_5d2b3b9d {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }

  50%,
  100% {
    transform: scale(1);
  }
}

.m_7a2bd4cd {
  position: relative;
  width: var(--loader-size);
  height: var(--loader-size);
  display: flex;
  gap: calc(var(--loader-size) / 5);
}

.m_870bb79 {
  flex: 1;
  background: var(--loader-color);
  animation: m_5d2b3b9d 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
  border-radius: calc(0.125rem * 1);
  border-radius: calc(0.125rem * var(--mantine-scale));
}

.m_870bb79:nth-of-type(1) {
    animation-delay: -240ms;
  }

.m_870bb79:nth-of-type(2) {
    animation-delay: -120ms;
  }

.m_870bb79:nth-of-type(3) {
    animation-delay: 0;
  }

/* ----- Dots loader ----- */
@keyframes m_aac34a1 {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(0.6);
    opacity: 0.5;
  }
}

.m_4e3f22d7 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(var(--loader-size) / 10);
  position: relative;
  width: var(--loader-size);
  height: var(--loader-size);
}

.m_870c4af {
  width: calc(var(--loader-size) / 3 - var(--loader-size) / 15);
  height: calc(var(--loader-size) / 3 - var(--loader-size) / 15);
  border-radius: 50%;
  background: var(--loader-color);
  animation: m_aac34a1 0.8s infinite linear;
}

.m_870c4af:nth-child(2) {
    animation-delay: 0.4s;
  }

/* ----- Oval loader ----- */
@keyframes m_f8e89c4b {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.m_b34414df {
  display: inline-block;
  width: var(--loader-size);
  height: var(--loader-size);
}

.m_b34414df::after {
    content: '';
    display: block;
    width: var(--loader-size);
    height: var(--loader-size);
    border-radius: calc(625rem * 1);
    border-radius: calc(625rem * var(--mantine-scale));
    border-width: calc(var(--loader-size) / 8);
    border-style: solid;
    border-color: var(--loader-color) var(--loader-color) var(--loader-color) transparent;
    animation: m_f8e89c4b 1.2s linear infinite;
  }

.m_8d3f4000 {
  --ai-size-xs: calc(1.125rem * var(--mantine-scale));
  --ai-size-sm: calc(1.375rem * var(--mantine-scale));
  --ai-size-md: calc(1.75rem * var(--mantine-scale));
  --ai-size-lg: calc(2.125rem * var(--mantine-scale));
  --ai-size-xl: calc(2.75rem * var(--mantine-scale));

  --ai-size-input-xs: calc(1.875rem * var(--mantine-scale));
  --ai-size-input-sm: calc(2.25rem * var(--mantine-scale));
  --ai-size-input-md: calc(2.625rem * var(--mantine-scale));
  --ai-size-input-lg: calc(3.125rem * var(--mantine-scale));
  --ai-size-input-xl: calc(3.75rem * var(--mantine-scale));

  --ai-size: var(--ai-size-md);
  --ai-color: var(--mantine-color-white);

  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  overflow: hidden;

  width: var(--ai-size);
  height: var(--ai-size);
  min-width: var(--ai-size);
  min-height: var(--ai-size);
  border-radius: calc(0.25rem * 1);
  border-radius: var(--ai-radius, var(--mantine-radius-default));
  background: var(--mantine-color-blue-filled);
  background: var(--ai-bg, var(--mantine-primary-color-filled));
  color: #fff;
  color: var(--ai-color, var(--mantine-color-white));
  border: calc(0.0625rem * 1) solid transparent;
  border: var(--ai-bd, calc(0.0625rem * var(--mantine-scale)) solid transparent);
  cursor: pointer;
}

  @media (hover: hover) {
    .m_8d3f4000:hover:where(:not([data-loading]):not(:disabled):not([data-disabled])) {
      background-color: var(--mantine-color-blue-filled-hover);
      background-color: var(--ai-hover, var(--mantine-primary-color-filled-hover));
      color: var(--ai-color);
      color: var(--ai-hover-color, var(--ai-color));
    }
}

  @media (hover: none) {
    .m_8d3f4000:active:where(:not([data-loading]):not(:disabled):not([data-disabled])) {
      background-color: var(--mantine-color-blue-filled-hover);
      background-color: var(--ai-hover, var(--mantine-primary-color-filled-hover));
      color: var(--ai-color);
      color: var(--ai-hover-color, var(--ai-color));
    }
}

  .m_8d3f4000[data-loading] {
    cursor: not-allowed;
  }

  .m_8d3f4000[data-loading] .m_8d3afb97 {
      opacity: 0;
      transform: translateY(100%);
    }

  .m_8d3f4000:where(:disabled:not([data-loading]), [data-disabled]:not([data-loading])) {
    cursor: not-allowed;
    border: calc(0.0625rem * 1) solid transparent;
    border: calc(0.0625rem * var(--mantine-scale)) solid transparent;
  }

  :where([data-mantine-color-scheme='light']) .m_8d3f4000:where(:disabled:not([data-loading]), [data-disabled]:not([data-loading])) {
      background-color: #f1f3f5;
      background-color: var(--mantine-color-gray-1);
      color: #adb5bd;
      color: var(--mantine-color-gray-5);
}

  :where([data-mantine-color-scheme='dark']) .m_8d3f4000:where(:disabled:not([data-loading]), [data-disabled]:not([data-loading])) {
      background-color: #2e2e2e;
      background-color: var(--mantine-color-dark-6);
      color: #696969;
      color: var(--mantine-color-dark-3);
}

  .m_8d3f4000:where(:disabled:not([data-loading]), [data-disabled]:not([data-loading])):active {
      transform: none;
    }

.m_302b9fb1 {
  top: calc(-0.0625rem * 1);
  right: calc(-0.0625rem * 1);
  bottom: calc(-0.0625rem * 1);
  left: calc(-0.0625rem * 1);
  top: calc(-0.0625rem * var(--mantine-scale));
  right: calc(-0.0625rem * var(--mantine-scale));
  bottom: calc(-0.0625rem * var(--mantine-scale));
  left: calc(-0.0625rem * var(--mantine-scale));
  position: absolute;
  border-radius: calc(0.25rem * 1);
  border-radius: var(--ai-radius, var(--mantine-radius-default));
  display: flex;
  align-items: center;
  justify-content: center;
}

:where([data-mantine-color-scheme='light']) .m_302b9fb1 {
    background-color: rgba(255, 255, 255, 0.15);
}

:where([data-mantine-color-scheme='dark']) .m_302b9fb1 {
    background-color: rgba(0, 0, 0, 0.15);
}

.m_1a0f1b21 {
  --ai-border-width: calc(0.0625rem * var(--mantine-scale));
  display: flex;
}

.m_1a0f1b21 :where(*):focus {
      position: relative;
      z-index: 1;
    }

.m_1a0f1b21[data-orientation='horizontal'] {
    flex-direction: row;
  }

[dir="ltr"] .m_1a0f1b21[data-orientation='horizontal'] .m_8d3f4000:not(:only-child):first-child,[dir="ltr"]  .m_1a0f1b21[data-orientation='horizontal'] .m_437b6484:not(:only-child):first-child {
        border-bottom-right-radius: 0;
}

[dir="rtl"] .m_1a0f1b21[data-orientation='horizontal'] .m_8d3f4000:not(:only-child):first-child,[dir="rtl"]  .m_1a0f1b21[data-orientation='horizontal'] .m_437b6484:not(:only-child):first-child {
        border-bottom-left-radius: 0;
}

[dir="ltr"] .m_1a0f1b21[data-orientation='horizontal'] .m_8d3f4000:not(:only-child):first-child,[dir="ltr"]  .m_1a0f1b21[data-orientation='horizontal'] .m_437b6484:not(:only-child):first-child {
        border-top-right-radius: 0;
}

[dir="rtl"] .m_1a0f1b21[data-orientation='horizontal'] .m_8d3f4000:not(:only-child):first-child,[dir="rtl"]  .m_1a0f1b21[data-orientation='horizontal'] .m_437b6484:not(:only-child):first-child {
        border-top-left-radius: 0;
}

[dir="ltr"] .m_1a0f1b21[data-orientation='horizontal'] .m_8d3f4000:not(:only-child):first-child,[dir="ltr"]  .m_1a0f1b21[data-orientation='horizontal'] .m_437b6484:not(:only-child):first-child {
        border-right-width: calc(var(--ai-border-width) / 2);
}

[dir="rtl"] .m_1a0f1b21[data-orientation='horizontal'] .m_8d3f4000:not(:only-child):first-child,[dir="rtl"]  .m_1a0f1b21[data-orientation='horizontal'] .m_437b6484:not(:only-child):first-child {
        border-left-width: calc(var(--ai-border-width) / 2);
}

[dir="ltr"] .m_1a0f1b21[data-orientation='horizontal'] .m_8d3f4000:not(:only-child):last-child,[dir="ltr"]  .m_1a0f1b21[data-orientation='horizontal'] .m_437b6484:not(:only-child):last-child {
        border-bottom-left-radius: 0;
}

[dir="rtl"] .m_1a0f1b21[data-orientation='horizontal'] .m_8d3f4000:not(:only-child):last-child,[dir="rtl"]  .m_1a0f1b21[data-orientation='horizontal'] .m_437b6484:not(:only-child):last-child {
        border-bottom-right-radius: 0;
}

[dir="ltr"] .m_1a0f1b21[data-orientation='horizontal'] .m_8d3f4000:not(:only-child):last-child,[dir="ltr"]  .m_1a0f1b21[data-orientation='horizontal'] .m_437b6484:not(:only-child):last-child {
        border-top-left-radius: 0;
}

[dir="rtl"] .m_1a0f1b21[data-orientation='horizontal'] .m_8d3f4000:not(:only-child):last-child,[dir="rtl"]  .m_1a0f1b21[data-orientation='horizontal'] .m_437b6484:not(:only-child):last-child {
        border-top-right-radius: 0;
}

[dir="ltr"] .m_1a0f1b21[data-orientation='horizontal'] .m_8d3f4000:not(:only-child):last-child,[dir="ltr"]  .m_1a0f1b21[data-orientation='horizontal'] .m_437b6484:not(:only-child):last-child {
        border-left-width: calc(var(--ai-border-width) / 2);
}

[dir="rtl"] .m_1a0f1b21[data-orientation='horizontal'] .m_8d3f4000:not(:only-child):last-child,[dir="rtl"]  .m_1a0f1b21[data-orientation='horizontal'] .m_437b6484:not(:only-child):last-child {
        border-right-width: calc(var(--ai-border-width) / 2);
}

.m_1a0f1b21[data-orientation='horizontal'] .m_8d3f4000:not(:only-child):not(:first-child):not(:last-child), .m_1a0f1b21[data-orientation='horizontal'] .m_437b6484:not(:only-child):not(:first-child):not(:last-child) {
        border-radius: 0;
        border-left-width: calc(var(--ai-border-width) / 2);
        border-right-width: calc(var(--ai-border-width) / 2);
      }

.m_1a0f1b21[data-orientation='vertical'] {
    flex-direction: column;
  }

[dir="ltr"] .m_1a0f1b21[data-orientation='vertical'] .m_8d3f4000:not(:only-child):first-child,[dir="ltr"]  .m_1a0f1b21[data-orientation='vertical'] .m_437b6484:not(:only-child):first-child {
        border-bottom-left-radius: 0;
}

[dir="rtl"] .m_1a0f1b21[data-orientation='vertical'] .m_8d3f4000:not(:only-child):first-child,[dir="rtl"]  .m_1a0f1b21[data-orientation='vertical'] .m_437b6484:not(:only-child):first-child {
        border-bottom-right-radius: 0;
}

[dir="ltr"] .m_1a0f1b21[data-orientation='vertical'] .m_8d3f4000:not(:only-child):first-child,[dir="ltr"]  .m_1a0f1b21[data-orientation='vertical'] .m_437b6484:not(:only-child):first-child {
        border-bottom-right-radius: 0;
}

[dir="rtl"] .m_1a0f1b21[data-orientation='vertical'] .m_8d3f4000:not(:only-child):first-child,[dir="rtl"]  .m_1a0f1b21[data-orientation='vertical'] .m_437b6484:not(:only-child):first-child {
        border-bottom-left-radius: 0;
}

.m_1a0f1b21[data-orientation='vertical'] .m_8d3f4000:not(:only-child):first-child, .m_1a0f1b21[data-orientation='vertical'] .m_437b6484:not(:only-child):first-child {
        border-bottom-width: calc(var(--ai-border-width) / 2);
      }

[dir="ltr"] .m_1a0f1b21[data-orientation='vertical'] .m_8d3f4000:not(:only-child):last-child,[dir="ltr"]  .m_1a0f1b21[data-orientation='vertical'] .m_437b6484:not(:only-child):last-child {
        border-top-left-radius: 0;
}

[dir="rtl"] .m_1a0f1b21[data-orientation='vertical'] .m_8d3f4000:not(:only-child):last-child,[dir="rtl"]  .m_1a0f1b21[data-orientation='vertical'] .m_437b6484:not(:only-child):last-child {
        border-top-right-radius: 0;
}

[dir="ltr"] .m_1a0f1b21[data-orientation='vertical'] .m_8d3f4000:not(:only-child):last-child,[dir="ltr"]  .m_1a0f1b21[data-orientation='vertical'] .m_437b6484:not(:only-child):last-child {
        border-top-right-radius: 0;
}

[dir="rtl"] .m_1a0f1b21[data-orientation='vertical'] .m_8d3f4000:not(:only-child):last-child,[dir="rtl"]  .m_1a0f1b21[data-orientation='vertical'] .m_437b6484:not(:only-child):last-child {
        border-top-left-radius: 0;
}

.m_1a0f1b21[data-orientation='vertical'] .m_8d3f4000:not(:only-child):last-child, .m_1a0f1b21[data-orientation='vertical'] .m_437b6484:not(:only-child):last-child {
        border-top-width: calc(var(--ai-border-width) / 2);
      }

.m_1a0f1b21[data-orientation='vertical'] .m_8d3f4000:not(:only-child):not(:first-child):not(:last-child), .m_1a0f1b21[data-orientation='vertical'] .m_437b6484:not(:only-child):not(:first-child):not(:last-child) {
        border-radius: 0;
        border-bottom-width: calc(var(--ai-border-width) / 2);
        border-top-width: calc(var(--ai-border-width) / 2);
      }

.m_8d3afb97 {
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 150ms ease,
    opacity 100ms ease;
  width: 100%;
  height: 100%;
}

.m_437b6484 {
  --section-height-xs: calc(1.125rem * var(--mantine-scale));
  --section-height-sm: calc(1.375rem * var(--mantine-scale));
  --section-height-md: calc(1.75rem * var(--mantine-scale));
  --section-height-lg: calc(2.125rem * var(--mantine-scale));
  --section-height-xl: calc(2.75rem * var(--mantine-scale));

  --section-height-input-xs: calc(1.875rem * var(--mantine-scale));
  --section-height-input-sm: calc(2.25rem * var(--mantine-scale));
  --section-height-input-md: calc(2.625rem * var(--mantine-scale));
  --section-height-input-lg: calc(3.125rem * var(--mantine-scale));
  --section-height-input-xl: calc(3.75rem * var(--mantine-scale));

  --section-padding-x-xs: calc(0.375rem * var(--mantine-scale));
  --section-padding-x-sm: calc(0.5rem * var(--mantine-scale));
  --section-padding-x-md: calc(0.625rem * var(--mantine-scale));
  --section-padding-x-lg: calc(0.75rem * var(--mantine-scale));
  --section-padding-x-xl: calc(1rem * var(--mantine-scale));

  --section-height: var(--section-height-sm);
  --section-padding-x: var(--section-padding-x-sm);
  --section-color: var(--mantine-color-white);

  font-weight: 600;
  width: auto;
  border-radius: calc(0.25rem * 1);
  border-radius: var(--section-radius, var(--mantine-radius-default));
  font-size: calc(0.875rem * 1);
  font-size: var(--section-fz, var(--mantine-font-size-sm));
  background: var(--mantine-color-blue-filled);
  background: var(--section-bg, var(--mantine-primary-color-filled));
  border: calc(0.0625rem * 1) solid transparent;
  border: var(--section-bd, calc(0.0625rem * var(--mantine-scale)) solid transparent);
  color: #fff;
  color: var(--section-color, var(--mantine-color-white));
  height: var(--section-height-sm);
  height: var(--section-height, var(--section-height-sm));
  padding-left: var(--section-padding-x-sm);
  padding-right: var(--section-padding-x-sm);
  padding-left: var(--section-padding-x, var(--section-padding-x-sm));
  padding-right: var(--section-padding-x, var(--section-padding-x-sm));
  vertical-align: middle;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.m_86a44da5 {
  --cb-size-xs: calc(1.125rem * var(--mantine-scale));
  --cb-size-sm: calc(1.375rem * var(--mantine-scale));
  --cb-size-md: calc(1.75rem * var(--mantine-scale));
  --cb-size-lg: calc(2.125rem * var(--mantine-scale));
  --cb-size-xl: calc(2.75rem * var(--mantine-scale));

  --cb-size: var(--cb-size-md);
  --cb-icon-size: 70%;
  --cb-radius: var(--mantine-radius-default);

  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;

  width: var(--cb-size);
  height: var(--cb-size);
  min-width: var(--cb-size);
  min-height: var(--cb-size);
  border-radius: var(--cb-radius);
}

  :where([data-mantine-color-scheme='light']) .m_86a44da5 {
    color: #495057;
    color: var(--mantine-color-gray-7);
}

  :where([data-mantine-color-scheme='dark']) .m_86a44da5 {
    color: #b8b8b8;
    color: var(--mantine-color-dark-1);
}

  .m_86a44da5[data-disabled],
  .m_86a44da5:disabled {
    cursor: not-allowed;
    opacity: 0.6;
  }

@media (hover: hover) {
    :where([data-mantine-color-scheme='light']) .m_220c80f2:where(:not([data-disabled]):not(:disabled)):hover {
      background-color: #f8f9fa;
      background-color: var(--mantine-color-gray-0);
  }

    :where([data-mantine-color-scheme='dark']) .m_220c80f2:where(:not([data-disabled]):not(:disabled)):hover {
      background-color: #2e2e2e;
      background-color: var(--mantine-color-dark-6);
  }
}

@media (hover: none) {
    :where([data-mantine-color-scheme='light']) .m_220c80f2:where(:not([data-disabled]):not(:disabled)):active {
      background-color: #f8f9fa;
      background-color: var(--mantine-color-gray-0);
  }

    :where([data-mantine-color-scheme='dark']) .m_220c80f2:where(:not([data-disabled]):not(:disabled)):active {
      background-color: #2e2e2e;
      background-color: var(--mantine-color-dark-6);
  }
}

.m_4081bf90 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex-wrap: var(--group-wrap, wrap);
  justify-content: flex-start;
  justify-content: var(--group-justify, flex-start);
  align-items: center;
  align-items: var(--group-align, center);
  gap: calc(1rem * 1);
  gap: var(--group-gap, var(--mantine-spacing-md));
}

  .m_4081bf90:where([data-grow]) > * {
      flex-grow: 1;
      max-width: var(--group-child-width);
    }

.m_615af6c9 {
  line-height: 1;
  padding: 0;
  margin: 0;
  font-weight: 400;
  font-size: calc(1rem * 1);
  font-size: var(--mantine-font-size-md);
}

[dir="ltr"] .m_b5489c3c {
  padding-right: calc((1rem * 1) - (0.3125rem * 1));
  padding-right: calc(calc(1rem * 1) - (0.3125rem * 1));
  padding-right: calc(var(--mb-padding, var(--mantine-spacing-md)) - (0.3125rem * var(--mantine-scale)));
  padding-right: calc((1rem * 1) - (0.3125rem * 1));
  padding-right: calc(calc(1rem * 1) - calc(0.3125rem * 1));
  padding-right: calc(var(--mb-padding, var(--mantine-spacing-md)) - calc(0.3125rem * var(--mantine-scale)));
}

[dir="rtl"] .m_b5489c3c {
  padding-left: calc((1rem * 1) - (0.3125rem * 1));
  padding-left: calc(calc(1rem * 1) - (0.3125rem * 1));
  padding-left: calc(var(--mb-padding, var(--mantine-spacing-md)) - (0.3125rem * var(--mantine-scale)));
  padding-left: calc((1rem * 1) - (0.3125rem * 1));
  padding-left: calc(calc(1rem * 1) - calc(0.3125rem * 1));
  padding-left: calc(var(--mb-padding, var(--mantine-spacing-md)) - calc(0.3125rem * var(--mantine-scale)));
}

[dir="ltr"] .m_b5489c3c {
  transition: padding-right 100ms;
}

[dir="rtl"] .m_b5489c3c {
  transition: padding-left 100ms;
}

[dir="ltr"] .m_b5489c3c {
  padding-right: calc((1rem * 1) - (0.3125rem * 1));
  padding-right: calc(calc(1rem * 1) - (0.3125rem * 1));
  padding-right: calc(var(--mb-padding, var(--mantine-spacing-md)) - (0.3125rem * var(--mantine-scale)));
}

[dir="rtl"] .m_b5489c3c {
  padding-left: calc((1rem * 1) - (0.3125rem * 1));
  padding-left: calc(calc(1rem * 1) - (0.3125rem * 1));
  padding-left: calc(var(--mb-padding, var(--mantine-spacing-md)) - (0.3125rem * var(--mantine-scale)));
}

[dir="ltr"] .m_b5489c3c {
  padding-right: calc((1rem * 1) - (0.3125rem * 1));
  padding-right: calc(calc(1rem * 1) - calc(0.3125rem * 1));
}

[dir="rtl"] .m_b5489c3c {
  padding-left: calc((1rem * 1) - (0.3125rem * 1));
  padding-left: calc(calc(1rem * 1) - calc(0.3125rem * 1));
}

[dir="ltr"] .m_b5489c3c {
  padding-right: calc((1rem * 1) - (0.3125rem * 1));
  padding-right: calc(calc(1rem * 1) - (0.3125rem * 1));
}

[dir="rtl"] .m_b5489c3c {
  padding-left: calc((1rem * 1) - (0.3125rem * 1));
  padding-left: calc(calc(1rem * 1) - (0.3125rem * 1));
}

[dir="ltr"] .m_b5489c3c {
  padding-right: calc((1rem * 1) - (0.3125rem * 1));
}

[dir="rtl"] .m_b5489c3c {
  padding-left: calc((1rem * 1) - (0.3125rem * 1));
}

[dir="ltr"] .m_b5489c3c {
  padding-right: calc((1rem * 1) - (0.3125rem * 1));
}

[dir="rtl"] .m_b5489c3c {
  padding-left: calc((1rem * 1) - (0.3125rem * 1));
}

.m_b5489c3c {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: calc(1rem * 1);
  padding: var(--mb-padding, var(--mantine-spacing-md));
  position: sticky;
  top: 0;
  background-color: var(--mantine-color-body);
  z-index: 1000;
  min-height: calc(3.75rem * 1);
  min-height: calc(3.75rem * var(--mantine-scale));
}

.m_60c222c7 {
  position: fixed;
  width: 100%;
  top: 0;
  bottom: 0;
  z-index: var(--mb-z-index);
  pointer-events: none;
}

.m_fd1ab0aa {
  pointer-events: all;
  box-shadow: 0 calc(0.0625rem * 1)
      calc(0.1875rem * 1) rgba(0, 0, 0, 0.05),
    rgba(0, 0, 0, 0.05) 0 calc(2.25rem * 1) calc(1.75rem * 1)
      calc(-0.4375rem * 1),
    rgba(0, 0, 0, 0.04) 0 calc(1.0625rem * 1)
      calc(1.0625rem * 1) calc(-0.4375rem * 1);
  box-shadow: var(--mb-shadow, var(--mantine-shadow-xl));
}

.m_fd1ab0aa [data-mantine-scrollbar] {
    z-index: 1001;
  }

[dir="ltr"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
    padding-right: calc(calc(1rem * 1) + (0.3125rem * 1));
    padding-right: calc(var(--mb-padding, var(--mantine-spacing-md)) + (0.3125rem * var(--mantine-scale)));
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
    padding-right: calc(calc(1rem * 1) + calc(0.3125rem * 1));
    padding-right: calc(var(--mb-padding, var(--mantine-spacing-md)) + calc(0.3125rem * var(--mantine-scale)));
}

[dir="rtl"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
    padding-left: calc(calc(1rem * 1) + (0.3125rem * 1));
    padding-left: calc(var(--mb-padding, var(--mantine-spacing-md)) + (0.3125rem * var(--mantine-scale)));
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
    padding-left: calc(calc(1rem * 1) + calc(0.3125rem * 1));
    padding-left: calc(var(--mb-padding, var(--mantine-spacing-md)) + calc(0.3125rem * var(--mantine-scale)));
}

[dir="ltr"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
    padding-right: calc(calc(1rem * 1) + (0.3125rem * 1));
    padding-right: calc(var(--mb-padding, var(--mantine-spacing-md)) + (0.3125rem * var(--mantine-scale)));
}

[dir="rtl"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
    padding-left: calc(calc(1rem * 1) + (0.3125rem * 1));
    padding-left: calc(var(--mb-padding, var(--mantine-spacing-md)) + (0.3125rem * var(--mantine-scale)));
}

[dir="ltr"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
    padding-right: calc(calc(1rem * 1) + calc(0.3125rem * 1));
}

[dir="rtl"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
    padding-left: calc(calc(1rem * 1) + calc(0.3125rem * 1));
}

[dir="ltr"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
    padding-right: calc(calc(1rem * 1) + (0.3125rem * 1));
}

[dir="rtl"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
    padding-left: calc(calc(1rem * 1) + (0.3125rem * 1));
}

[dir="ltr"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
}

[dir="rtl"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
}

[dir="ltr"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
}

[dir="rtl"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
}

[dir="ltr"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
    padding-right: calc(calc(1rem * 1) + (0.3125rem * 1));
    padding-right: calc(var(--mb-padding, var(--mantine-spacing-md)) + (0.3125rem * var(--mantine-scale)));
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
    padding-right: calc(calc(1rem * 1) + calc(0.3125rem * 1));
    padding-right: calc(var(--mb-padding, var(--mantine-spacing-md)) + calc(0.3125rem * var(--mantine-scale)));
}

[dir="ltr"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
    padding-right: calc(calc(1rem * 1) + (0.3125rem * 1));
    padding-right: calc(var(--mb-padding, var(--mantine-spacing-md)) + (0.3125rem * var(--mantine-scale)));
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
    padding-right: calc(calc(1rem * 1) + calc(0.3125rem * 1));
    padding-right: calc(var(--mb-padding, var(--mantine-spacing-md)) + (0.3125rem * var(--mantine-scale)));
    padding-right: calc(var(--mb-padding, var(--mantine-spacing-md)) + calc(0.3125rem * var(--mantine-scale)));
}

[dir="ltr"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
    padding-right: calc(calc(1rem * 1) + (0.3125rem * 1));
    padding-right: calc(var(--mb-padding, var(--mantine-spacing-md)) + (0.3125rem * var(--mantine-scale)));
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
    padding-right: calc(calc(1rem * 1) + calc(0.3125rem * 1));
    padding-right: calc(var(--mb-padding, var(--mantine-spacing-md)) + (0.3125rem * var(--mantine-scale)));
    padding-right: calc(var(--mb-padding, var(--mantine-spacing-md)) + calc(0.3125rem * var(--mantine-scale)));
}

[dir="ltr"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
    padding-right: calc(calc(1rem * 1) + (0.3125rem * 1));
    padding-right: calc(var(--mb-padding, var(--mantine-spacing-md)) + (0.3125rem * var(--mantine-scale)));
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
    padding-right: calc(calc(1rem * 1) + calc(0.3125rem * 1));
    padding-right: calc(var(--mb-padding, var(--mantine-spacing-md)) + (0.3125rem * var(--mantine-scale)));
    padding-right: calc(var(--mb-padding, var(--mantine-spacing-md)) + calc(0.3125rem * var(--mantine-scale)));
}

[dir="ltr"] [data-offset-scrollbars] .m_fd1ab0aa:has([data-mantine-scrollbar]) .m_b5489c3c {
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
    padding-right: calc(calc(1rem * 1) + (0.3125rem * 1));
    padding-right: calc(var(--mb-padding, var(--mantine-spacing-md)) + (0.3125rem * var(--mantine-scale)));
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
    padding-right: calc(calc(1rem * 1) + calc(0.3125rem * 1));
    padding-right: calc(var(--mb-padding, var(--mantine-spacing-md)) + calc(0.3125rem * var(--mantine-scale)));
}

[dir="rtl"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
    padding-left: calc(calc(1rem * 1) + (0.3125rem * 1));
    padding-left: calc(var(--mb-padding, var(--mantine-spacing-md)) + (0.3125rem * var(--mantine-scale)));
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
    padding-left: calc(calc(1rem * 1) + calc(0.3125rem * 1));
    padding-left: calc(var(--mb-padding, var(--mantine-spacing-md)) + calc(0.3125rem * var(--mantine-scale)));
}

[dir="rtl"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
    padding-left: calc(calc(1rem * 1) + (0.3125rem * 1));
    padding-left: calc(var(--mb-padding, var(--mantine-spacing-md)) + (0.3125rem * var(--mantine-scale)));
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
    padding-left: calc(calc(1rem * 1) + calc(0.3125rem * 1));
    padding-left: calc(var(--mb-padding, var(--mantine-spacing-md)) + (0.3125rem * var(--mantine-scale)));
    padding-left: calc(var(--mb-padding, var(--mantine-spacing-md)) + calc(0.3125rem * var(--mantine-scale)));
}

[dir="rtl"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
    padding-left: calc(calc(1rem * 1) + (0.3125rem * 1));
    padding-left: calc(var(--mb-padding, var(--mantine-spacing-md)) + (0.3125rem * var(--mantine-scale)));
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
    padding-left: calc(calc(1rem * 1) + calc(0.3125rem * 1));
    padding-left: calc(var(--mb-padding, var(--mantine-spacing-md)) + (0.3125rem * var(--mantine-scale)));
    padding-left: calc(var(--mb-padding, var(--mantine-spacing-md)) + calc(0.3125rem * var(--mantine-scale)));
}

[dir="rtl"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
    padding-left: calc(calc(1rem * 1) + (0.3125rem * 1));
    padding-left: calc(var(--mb-padding, var(--mantine-spacing-md)) + (0.3125rem * var(--mantine-scale)));
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
    padding-left: calc(calc(1rem * 1) + calc(0.3125rem * 1));
    padding-left: calc(var(--mb-padding, var(--mantine-spacing-md)) + (0.3125rem * var(--mantine-scale)));
    padding-left: calc(var(--mb-padding, var(--mantine-spacing-md)) + calc(0.3125rem * var(--mantine-scale)));
}

[dir="rtl"] [data-offset-scrollbars] .m_fd1ab0aa:has([data-mantine-scrollbar]) .m_b5489c3c {
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
    padding-left: calc(calc(1rem * 1) + (0.3125rem * 1));
    padding-left: calc(var(--mb-padding, var(--mantine-spacing-md)) + (0.3125rem * var(--mantine-scale)));
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
    padding-left: calc(calc(1rem * 1) + calc(0.3125rem * 1));
    padding-left: calc(var(--mb-padding, var(--mantine-spacing-md)) + calc(0.3125rem * var(--mantine-scale)));
}

[dir="ltr"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
    padding-right: calc(calc(1rem * 1) + (0.3125rem * 1));
    padding-right: calc(var(--mb-padding, var(--mantine-spacing-md)) + (0.3125rem * var(--mantine-scale)));
}

[dir="rtl"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
    padding-left: calc(calc(1rem * 1) + (0.3125rem * 1));
    padding-left: calc(var(--mb-padding, var(--mantine-spacing-md)) + (0.3125rem * var(--mantine-scale)));
}

[dir="ltr"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
    padding-right: calc(calc(1rem * 1) + calc(0.3125rem * 1));
}

[dir="rtl"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
    padding-left: calc(calc(1rem * 1) + calc(0.3125rem * 1));
}

[dir="ltr"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
    padding-right: calc(calc(1rem * 1) + (0.3125rem * 1));
}

[dir="rtl"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
    padding-left: calc(calc(1rem * 1) + (0.3125rem * 1));
}

[dir="ltr"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
}

[dir="rtl"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
}

[dir="ltr"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
}

[dir="rtl"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
}

[dir="ltr"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
    padding-right: calc(calc(1rem * 1) + (0.3125rem * 1));
    padding-right: calc(var(--mb-padding, var(--mantine-spacing-md)) + (0.3125rem * var(--mantine-scale)));
}

[dir="ltr"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
    padding-right: calc(calc(1rem * 1) + (0.3125rem * 1));
    padding-right: calc(var(--mb-padding, var(--mantine-spacing-md)) + (0.3125rem * var(--mantine-scale)));
}

[dir="ltr"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
    padding-right: calc(calc(1rem * 1) + (0.3125rem * 1));
    padding-right: calc(var(--mb-padding, var(--mantine-spacing-md)) + (0.3125rem * var(--mantine-scale)));
}

[dir="ltr"] [data-offset-scrollbars] .m_fd1ab0aa:has([data-mantine-scrollbar]) .m_b5489c3c {
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
    padding-right: calc(calc(1rem * 1) + (0.3125rem * 1));
    padding-right: calc(var(--mb-padding, var(--mantine-spacing-md)) + (0.3125rem * var(--mantine-scale)));
}

[dir="rtl"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
    padding-left: calc(calc(1rem * 1) + (0.3125rem * 1));
    padding-left: calc(var(--mb-padding, var(--mantine-spacing-md)) + (0.3125rem * var(--mantine-scale)));
}

[dir="rtl"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
    padding-left: calc(calc(1rem * 1) + (0.3125rem * 1));
    padding-left: calc(var(--mb-padding, var(--mantine-spacing-md)) + (0.3125rem * var(--mantine-scale)));
}

[dir="rtl"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
    padding-left: calc(calc(1rem * 1) + (0.3125rem * 1));
    padding-left: calc(var(--mb-padding, var(--mantine-spacing-md)) + (0.3125rem * var(--mantine-scale)));
}

[dir="rtl"] [data-offset-scrollbars] .m_fd1ab0aa:has([data-mantine-scrollbar]) .m_b5489c3c {
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
    padding-left: calc(calc(1rem * 1) + (0.3125rem * 1));
    padding-left: calc(var(--mb-padding, var(--mantine-spacing-md)) + (0.3125rem * var(--mantine-scale)));
}

[dir="ltr"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
    padding-right: calc(calc(1rem * 1) + calc(0.3125rem * 1));
}

[dir="ltr"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
    padding-right: calc(calc(1rem * 1) + calc(0.3125rem * 1));
}

[dir="ltr"] [data-offset-scrollbars] .m_fd1ab0aa:has([data-mantine-scrollbar]) .m_b5489c3c {
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
    padding-right: calc(calc(1rem * 1) + calc(0.3125rem * 1));
}

[dir="rtl"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
    padding-left: calc(calc(1rem * 1) + calc(0.3125rem * 1));
}

[dir="rtl"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
    padding-left: calc(calc(1rem * 1) + calc(0.3125rem * 1));
}

[dir="rtl"] [data-offset-scrollbars] .m_fd1ab0aa:has([data-mantine-scrollbar]) .m_b5489c3c {
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
    padding-left: calc(calc(1rem * 1) + calc(0.3125rem * 1));
}

[dir="ltr"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
    padding-right: calc(calc(1rem * 1) + (0.3125rem * 1));
}

[dir="rtl"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
    padding-left: calc(calc(1rem * 1) + (0.3125rem * 1));
}

[dir="ltr"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
}

[dir="rtl"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
}

[dir="ltr"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
}

[dir="rtl"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
}

[dir="ltr"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
    padding-right: calc(calc(1rem * 1) + (0.3125rem * 1));
}

[dir="ltr"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
    padding-right: calc(calc(1rem * 1) + (0.3125rem * 1));
}

[dir="ltr"] [data-offset-scrollbars] .m_fd1ab0aa:has([data-mantine-scrollbar]) .m_b5489c3c {
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
    padding-right: calc(calc(1rem * 1) + (0.3125rem * 1));
}

[dir="rtl"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
    padding-left: calc(calc(1rem * 1) + (0.3125rem * 1));
}

[dir="rtl"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
    padding-left: calc(calc(1rem * 1) + (0.3125rem * 1));
}

[dir="rtl"] [data-offset-scrollbars] .m_fd1ab0aa:has([data-mantine-scrollbar]) .m_b5489c3c {
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
    padding-left: calc(calc(1rem * 1) + (0.3125rem * 1));
}

[dir="ltr"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
}

[dir="ltr"] [data-offset-scrollbars] .m_fd1ab0aa:has([data-mantine-scrollbar]) .m_b5489c3c {
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
}

[dir="rtl"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
}

[dir="rtl"] [data-offset-scrollbars] .m_fd1ab0aa:has([data-mantine-scrollbar]) .m_b5489c3c {
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
}

[dir="ltr"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
}

[dir="rtl"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
}

[dir="ltr"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
}

[dir="ltr"] [data-offset-scrollbars] .m_fd1ab0aa:has([data-mantine-scrollbar]) .m_b5489c3c {
    padding-right: calc((1rem * 1) + (0.3125rem * 1));
}

[dir="rtl"] [data-offset-scrollbars] .m_fd1ab0aa[\:has\(\[data-mantine-scrollbar\]\)] .m_b5489c3c {
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
}

[dir="rtl"] [data-offset-scrollbars] .m_fd1ab0aa:has([data-mantine-scrollbar]) .m_b5489c3c {
    padding-left: calc((1rem * 1) + (0.3125rem * 1));
}

[dir="ltr"] .m_606cb269 {
  margin-left: auto;
}

[dir="rtl"] .m_606cb269 {
  margin-right: auto;
}

.m_5df29311 {
  padding: calc(1rem * 1);
  padding: var(--mb-padding, var(--mantine-spacing-md));
  padding-top: calc(1rem * 1);
  padding-top: var(--mb-padding, var(--mantine-spacing-md));
}

.m_5df29311:where(:not(:only-child)) {
    padding-top: 0;
  }

.m_6c018570 {
  position: relative;
  margin-top: 0rem;
  margin-top: var(--input-margin-top, 0rem);
  margin-bottom: 0rem;
  margin-bottom: var(--input-margin-bottom, 0rem);

  --input-height-xs: calc(1.875rem * var(--mantine-scale));
  --input-height-sm: calc(2.25rem * var(--mantine-scale));
  --input-height-md: calc(2.625rem * var(--mantine-scale));
  --input-height-lg: calc(3.125rem * var(--mantine-scale));
  --input-height-xl: calc(3.75rem * var(--mantine-scale));

  --input-padding-y-xs: calc(0.3125rem * var(--mantine-scale));
  --input-padding-y-sm: calc(0.375rem * var(--mantine-scale));
  --input-padding-y-md: calc(0.5rem * var(--mantine-scale));
  --input-padding-y-lg: calc(0.625rem * var(--mantine-scale));
  --input-padding-y-xl: calc(0.8125rem * var(--mantine-scale));

  --input-height: var(--input-height-sm);
  --input-radius: var(--mantine-radius-default);

  --input-cursor: text;
  --input-text-align: left;
  --input-line-height: calc(var(--input-height) - calc(0.125rem * var(--mantine-scale)));
  --input-padding: calc(var(--input-height) / 3);
  --input-padding-inline-start: var(--input-padding);
  --input-padding-inline-end: var(--input-padding);
  --input-placeholder-color: var(--mantine-color-placeholder);
  --input-color: var(--mantine-color-text);

  --input-left-section-size: var(--input-left-section-width, calc(var(--input-height) - calc(0.125rem * var(--mantine-scale))));

  --input-right-section-size: var(
    --input-right-section-width,
    calc(var(--input-height) - calc(0.125rem * var(--mantine-scale)))
  );

  --input-size: var(--input-height);

  --section-y: calc(0.0625rem * var(--mantine-scale));
  --left-section-start: calc(0.0625rem * var(--mantine-scale));
  --left-section-border-radius: var(--input-radius) 0 0 var(--input-radius);

  --right-section-end: calc(0.0625rem * var(--mantine-scale));
  --right-section-border-radius: 0 var(--input-radius) var(--input-radius) 0;
}

  .m_6c018570[data-variant='unstyled'] {
    --input-padding: 0;
    --input-padding-y: 0;
    --input-padding-inline-start: 0;
    --input-padding-inline-end: 0;
  }

  .m_6c018570[data-pointer] {
    --input-cursor: pointer;
  }

  .m_6c018570[data-multiline] {
    --input-padding-y-xs: calc(0.28125rem * var(--mantine-scale));
    --input-padding-y-sm: calc(0.34375rem * var(--mantine-scale));
    --input-padding-y-md: calc(0.4375rem * var(--mantine-scale));
    --input-padding-y-lg: calc(0.59375rem * var(--mantine-scale));
    --input-padding-y-xl: calc(0.8125rem * var(--mantine-scale));

    --input-size: auto;
    --input-line-height: var(--mantine-line-height);
    --input-padding-y: var(--input-padding-y-sm);
  }

  .m_6c018570[data-with-left-section] {
    --input-padding-inline-start: var(--input-left-section-size);
  }

  .m_6c018570[data-with-right-section] {
    --input-padding-inline-end: var(--input-right-section-size);
  }

  [data-mantine-color-scheme='light'] .m_6c018570 {
    --input-disabled-bg: var(--mantine-color-gray-1);
    --input-disabled-color: var(--mantine-color-gray-6);
}

  [data-mantine-color-scheme='light'] .m_6c018570[data-variant='default'] {
      --input-bd: var(--mantine-color-gray-4);
      --input-bg: var(--mantine-color-white);
      --input-bd-focus: var(--mantine-primary-color-filled);
    }

  [data-mantine-color-scheme='light'] .m_6c018570[data-variant='filled'] {
      --input-bd: transparent;
      --input-bg: var(--mantine-color-gray-1);
      --input-bd-focus: var(--mantine-primary-color-filled);
    }

  [data-mantine-color-scheme='light'] .m_6c018570[data-variant='unstyled'] {
      --input-bd: transparent;
      --input-bg: transparent;
      --input-bd-focus: transparent;
    }

  [data-mantine-color-scheme='dark'] .m_6c018570 {
    --input-disabled-bg: var(--mantine-color-dark-6);
    --input-disabled-color: var(--mantine-color-dark-2);
}

  [data-mantine-color-scheme='dark'] .m_6c018570[data-variant='default'] {
      --input-bd: var(--mantine-color-dark-4);
      --input-bg: var(--mantine-color-dark-6);
      --input-bd-focus: var(--mantine-primary-color-filled);
    }

  [data-mantine-color-scheme='dark'] .m_6c018570[data-variant='filled'] {
      --input-bd: transparent;
      --input-bg: var(--mantine-color-dark-5);
      --input-bd-focus: var(--mantine-primary-color-filled);
    }

  [data-mantine-color-scheme='dark'] .m_6c018570[data-variant='unstyled'] {
      --input-bd: transparent;
      --input-bg: transparent;
      --input-bd-focus: transparent;
    }

  [data-mantine-color-scheme] .m_6c018570[data-error]:not([data-variant='unstyled']) {
      --input-bd: var(--mantine-color-error);
    }

  [data-mantine-color-scheme] .m_6c018570[data-error] {

    --input-color: var(--mantine-color-error);
    --input-placeholder-color: var(--mantine-color-error);
    --input-section-color: var(--mantine-color-error);
}

  :where([dir="rtl"]) .m_6c018570 {
    --input-text-align: right;
    --left-section-border-radius: 0 var(--input-radius) var(--input-radius) 0;
    --right-section-border-radius: var(--input-radius) 0 0 var(--input-radius);
}

[dir="ltr"] .m_8fb7ebe7 {
  padding-left: var(--input-padding-inline-start);
}

[dir="rtl"] .m_8fb7ebe7 {
  padding-right: var(--input-padding-inline-start);
}

[dir="ltr"] .m_8fb7ebe7 {
  padding-right: var(--input-padding-inline-end);
}

[dir="rtl"] .m_8fb7ebe7 {
  padding-left: var(--input-padding-inline-end);
}

.m_8fb7ebe7 {
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  resize: none;
  resize: var(--input-resize, none);
  display: block;
  width: 100%;
  transition: border-color 100ms ease;

  text-align: var(--input-text-align);
  color: var(--input-color);
  border: calc(0.0625rem * 1) solid var(--input-bd);
  border: calc(0.0625rem * var(--mantine-scale)) solid var(--input-bd);
  background-color: var(--input-bg);
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial,
    sans-serif, Apple Color Emoji, Segoe UI Emoji;
  font-family: var(--input-font-family, var(--mantine-font-family));
  height: var(--input-size);
  min-height: var(--input-height);
  line-height: var(--input-line-height);
  font-size: calc(0.875rem * 1);
  font-size: var(--input-fz, var(--input-fz, var(--mantine-font-size-sm)));
  border-radius: var(--input-radius);
  padding-top: 0rem;
  padding-top: var(--input-padding-y, 0rem);
  padding-bottom: 0rem;
  padding-bottom: var(--input-padding-y, 0rem);
  cursor: var(--input-cursor);
  overflow: var(--input-overflow);
}

/* Used as data attribute in Textarea component, does not have associated prop on the Input component */

.m_8fb7ebe7[data-no-overflow] {
    --input-overflow: hidden;
  }

/* Used as data attribute in JsonInput component, does not have associated prop on the Input component */

.m_8fb7ebe7[data-monospace] {
    --input-font-family: var(--mantine-font-family-monospace);
    --input-fz: calc(var(--input-fz, var(--mantine-font-size-sm)) - calc(0.125rem * var(--mantine-scale)));
  }

.m_8fb7ebe7:focus,
  .m_8fb7ebe7[focus-within] {
    outline: none;
    --input-bd: var(--input-bd-focus);
  }

.m_8fb7ebe7:focus,
  .m_8fb7ebe7:focus-within {
    outline: none;
    --input-bd: var(--input-bd-focus);
  }

[data-error] .m_8fb7ebe7:focus, [data-error] .m_8fb7ebe7[focus-within] {
      --input-bd: var(--mantine-color-error);
    }

[data-error] .m_8fb7ebe7:focus, [data-error] .m_8fb7ebe7:focus-within {
      --input-bd: var(--mantine-color-error);
    }

.m_8fb7ebe7::-moz-placeholder {
    color: var(--input-placeholder-color);
    opacity: 1;
  }

.m_8fb7ebe7::placeholder {
    color: var(--input-placeholder-color);
    opacity: 1;
  }

.m_8fb7ebe7::-webkit-inner-spin-button,
  .m_8fb7ebe7::-webkit-outer-spin-button,
  .m_8fb7ebe7::-webkit-search-decoration,
  .m_8fb7ebe7::-webkit-search-cancel-button,
  .m_8fb7ebe7::-webkit-search-results-button,
  .m_8fb7ebe7::-webkit-search-results-decoration {
    -webkit-appearance: none;
            appearance: none;
  }

.m_8fb7ebe7[type='number'] {
    -moz-appearance: textfield;
  }

.m_8fb7ebe7:disabled,
  .m_8fb7ebe7[data-disabled] {
    cursor: not-allowed;
    opacity: 0.6;
    background-color: var(--input-disabled-bg);
    color: var(--input-disabled-color);
  }

/* Required to be a separate selector to work in Firefox, can be merged with &:disabled once :has is supported */

.m_8fb7ebe7[\:has\(input\:disabled\)] {
    cursor: not-allowed;
    opacity: 0.6;
    background-color: var(--input-disabled-bg);
    color: var(--input-disabled-color);
  }

.m_8fb7ebe7:has(input:disabled) {
    cursor: not-allowed;
    opacity: 0.6;
    background-color: var(--input-disabled-bg);
    color: var(--input-disabled-color);
  }

[dir="ltr"] .m_82577fc2 {
  left: var(--section-start);
}

[dir="rtl"] .m_82577fc2 {
  right: var(--section-start);
}

[dir="ltr"] .m_82577fc2 {
  right: var(--section-end);
}

[dir="rtl"] .m_82577fc2 {
  left: var(--section-end);
}

.m_82577fc2 {
  pointer-events: var(--section-pointer-events);
  position: absolute;
  z-index: 1;
  bottom: var(--section-y);
  top: var(--section-y);
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--section-size);
  border-radius: var(--section-border-radius);
  color: var(--mantine-color-dimmed);
  color: var(--input-section-color, var(--mantine-color-dimmed));
}

.m_82577fc2[data-position='right'] {
    --section-pointer-events: var(--input-right-section-pointer-events);
    --section-end: var(--right-section-end);
    --section-size: var(--input-right-section-size);
    --section-border-radius: var(--right-section-border-radius);
  }

.m_82577fc2[data-position='left'] {
    --section-pointer-events: var(--input-left-section-pointer-events);
    --section-start: var(--left-section-start);
    --section-size: var(--input-left-section-size);
    --section-border-radius: var(--left-section-border-radius);
  }

/* ----- Input.Placeholder ----- */
.m_88bacfd0 {
  color: var(--mantine-color-placeholder);
  color: var(--input-placeholder-color, var(--mantine-color-placeholder));
}
[data-error] .m_88bacfd0 {
    --input-placeholder-color: var(--input-color, var(--mantine-color-placeholder));
  }

/* ----- Input.Wrapper ----- */
.m_46b77525 {
  line-height: 1.55;
  line-height: var(--mantine-line-height);
}

.m_8fdc1311 {
  display: inline-block;
  font-weight: 500;
  word-break: break-word;
  cursor: default;
  -webkit-tap-highlight-color: transparent;
  font-size: calc(0.875rem * 1);
  font-size: var(--input-label-size, var(--mantine-font-size-sm));
}

.m_78a94662 {
  color: var(--mantine-color-error);
  color: var(--input-asterisk-color, var(--mantine-color-error));
}

.m_8f816625,
.m_fe47ce59 {
  word-wrap: break-word;
  line-height: 1.2;
  display: block;
  margin: 0;
  padding: 0;
}

.m_8f816625 {
  color: var(--mantine-color-error);
  font-size: calc((0.875rem * 1) - (0.125rem * 1));
  font-size: calc(calc(0.875rem * 1) - (0.125rem * 1));
  font-size: var(--input-error-size, calc(var(--mantine-font-size-sm) - (0.125rem * var(--mantine-scale))));
  font-size: calc((0.875rem * 1) - (0.125rem * 1));
  font-size: calc(calc(0.875rem * 1) - calc(0.125rem * 1));
  font-size: var(--input-error-size, calc(var(--mantine-font-size-sm) - calc(0.125rem * var(--mantine-scale))));
}

.m_fe47ce59 {
  color: var(--mantine-color-dimmed);
  font-size: calc((0.875rem * 1) - (0.125rem * 1));
  font-size: calc(calc(0.875rem * 1) - (0.125rem * 1));
  font-size: var(--input-description-size, calc(var(--mantine-font-size-sm) - (0.125rem * var(--mantine-scale))));
  font-size: calc((0.875rem * 1) - (0.125rem * 1));
  font-size: calc(calc(0.875rem * 1) - calc(0.125rem * 1));
  font-size: var(--input-description-size, calc(var(--mantine-font-size-sm) - calc(0.125rem * var(--mantine-scale))));
}

.m_8bffd616 {
  display: flex;
}

.m_96b553a6 {
  --transition-duration: 150ms;

  top: 0;
  left: 0;
  position: absolute;
  z-index: 0;
  transition-property: transform, width, height;
  transition-timing-function: ease;
  transition-duration: 0ms;
}

  .m_96b553a6:where([data-initialized]) {
    transition-duration: var(--transition-duration);
  }

  .m_96b553a6:where([data-hidden]) {
    background-color: red;
    display: none;
  }

.m_9bdbb667 {
  --accordion-radius: var(--mantine-radius-default);
}

.m_df78851f {
  word-break: break-word;
}

.m_4ba554d4 {
  padding: calc(1rem * 1);
  padding: var(--mantine-spacing-md);
  padding-top: calc((0.625rem * 1) / 2);
  padding-top: calc(calc(0.625rem * 1) / 2);
  padding-top: calc(var(--mantine-spacing-xs) / 2);
}

.m_8fa820a0 {
  margin: 0;
  padding: 0;
}

.m_4ba585b8 {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  padding-left: calc(1rem * 1);
  padding-right: calc(1rem * 1);
  padding-left: var(--mantine-spacing-md);
  padding-right: var(--mantine-spacing-md);
  opacity: 1;
  cursor: pointer;
  background-color: transparent;
}

[dir="ltr"] .m_4ba585b8:where([data-chevron-position='left']) {
    padding-left: 0;
}

[dir="rtl"] .m_4ba585b8:where([data-chevron-position='left']) {
    padding-right: 0;
}

.m_4ba585b8:where([data-chevron-position='left']) {
    flex-direction: row;
  }

:where([data-mantine-color-scheme='light']) .m_4ba585b8 {
    color: #000;
    color: var(--mantine-color-black);
}

:where([data-mantine-color-scheme='dark']) .m_4ba585b8 {
    color: #c9c9c9;
    color: var(--mantine-color-dark-0);
}

.m_4ba585b8:where(:disabled, [data-disabled]) {
    opacity: 0.4;
    cursor: not-allowed;
  }

@media (hover: hover) {
      :where([data-mantine-color-scheme='light']) .m_6939a5e9:where(:not(:disabled):not([data-disabled])):hover, :where([data-mantine-color-scheme='light']) .m_4271d21b:where(:not(:disabled):not([data-disabled])):hover {
        background-color: #f8f9fa;
        background-color: var(--mantine-color-gray-0);
  }

      :where([data-mantine-color-scheme='dark']) .m_6939a5e9:where(:not(:disabled):not([data-disabled])):hover, :where([data-mantine-color-scheme='dark']) .m_4271d21b:where(:not(:disabled):not([data-disabled])):hover {
        background-color: #2e2e2e;
        background-color: var(--mantine-color-dark-6);
  }
}

@media (hover: none) {
      :where([data-mantine-color-scheme='light']) .m_6939a5e9:where(:not(:disabled):not([data-disabled])):active, :where([data-mantine-color-scheme='light']) .m_4271d21b:where(:not(:disabled):not([data-disabled])):active {
        background-color: #f8f9fa;
        background-color: var(--mantine-color-gray-0);
  }

      :where([data-mantine-color-scheme='dark']) .m_6939a5e9:where(:not(:disabled):not([data-disabled])):active, :where([data-mantine-color-scheme='dark']) .m_4271d21b:where(:not(:disabled):not([data-disabled])):active {
        background-color: #2e2e2e;
        background-color: var(--mantine-color-dark-6);
  }
}

.m_df3ffa0f {
  color: inherit;
  font-weight: 400;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-top: calc(0.75rem * 1);
  padding-top: var(--mantine-spacing-sm);
  padding-bottom: calc(0.75rem * 1);
  padding-bottom: var(--mantine-spacing-sm);
}

.m_3f35ae96 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: transform 200ms ease;
  transition: transform var(--accordion-transition-duration, 200ms) ease;
  width: calc(0.9375rem * 1);
  width: var(--accordion-chevron-size, calc(0.9375rem * var(--mantine-scale)));
  min-width: calc(0.9375rem * 1);
  min-width: var(--accordion-chevron-size, calc(0.9375rem * var(--mantine-scale)));
  transform: rotate(0deg);
}

.m_3f35ae96:where([data-rotate]) {
    transform: rotate(180deg);
  }

[dir="ltr"] .m_3f35ae96:where([data-position='left']) {
    margin-right: calc(1rem * 1);
    margin-right: var(--mantine-spacing-md);
}

[dir="rtl"] .m_3f35ae96:where([data-position='left']) {
    margin-left: calc(1rem * 1);
    margin-left: var(--mantine-spacing-md);
}

[dir="ltr"] .m_3f35ae96:where([data-position='left']) {
    margin-left: calc(1rem * 1);
    margin-left: var(--mantine-spacing-md);
}

[dir="rtl"] .m_3f35ae96:where([data-position='left']) {
    margin-right: calc(1rem * 1);
    margin-right: var(--mantine-spacing-md);
}

[dir="ltr"] .m_3f35ae96:where([data-position='left']) {
    margin-right: calc(1rem * 1);
}

[dir="rtl"] .m_3f35ae96:where([data-position='left']) {
    margin-left: calc(1rem * 1);
}

[dir="ltr"] .m_3f35ae96:where([data-position='left']) {
    margin-left: calc(1rem * 1);
}

[dir="rtl"] .m_3f35ae96:where([data-position='left']) {
    margin-right: calc(1rem * 1);
}

[dir="ltr"] .m_9bd771fe {
  margin-right: calc(0.75rem * 1);
  margin-right: var(--mantine-spacing-sm);
}

[dir="rtl"] .m_9bd771fe {
  margin-left: calc(0.75rem * 1);
  margin-left: var(--mantine-spacing-sm);
}

[dir="ltr"] .m_9bd771fe {
  margin-right: calc(0.75rem * 1);
}

[dir="rtl"] .m_9bd771fe {
  margin-left: calc(0.75rem * 1);
}

.m_9bd771fe {
  display: flex;
  align-items: center;
  justify-content: center;
}

[dir="ltr"] .m_9bd771fe:where([data-chevron-position='left']) {
    margin-right: 0;
}

[dir="rtl"] .m_9bd771fe:where([data-chevron-position='left']) {
    margin-left: 0;
}

[dir="ltr"] .m_9bd771fe:where([data-chevron-position='left']) {
    margin-left: calc(1.25rem * 1);
    margin-left: var(--mantine-spacing-lg);
}

[dir="rtl"] .m_9bd771fe:where([data-chevron-position='left']) {
    margin-right: calc(1.25rem * 1);
    margin-right: var(--mantine-spacing-lg);
}

[dir="ltr"] .m_9bd771fe:where([data-chevron-position='left']) {
    margin-left: calc(1.25rem * 1);
}

[dir="rtl"] .m_9bd771fe:where([data-chevron-position='left']) {
    margin-right: calc(1.25rem * 1);
}

:where([data-mantine-color-scheme='light']) .m_9bd7b098 {
    --item-border-color: var(--mantine-color-gray-3);
    --item-filled-color: var(--mantine-color-gray-0);
}

:where([data-mantine-color-scheme='dark']) .m_9bd7b098 {
    --item-border-color: var(--mantine-color-dark-4);
    --item-filled-color: var(--mantine-color-dark-6);
}

.m_fe19b709 {
  border-bottom: 1px solid var(--item-border-color);
}

.m_1f921b3b {
  border: 1px solid var(--item-border-color);
  transition: background-color 150ms ease;
}

.m_1f921b3b:where([data-active]) {
    background-color: var(--item-filled-color);
  }

[dir="ltr"] .m_1f921b3b:first-of-type {
    border-top-left-radius: var(--accordion-radius);
}

[dir="rtl"] .m_1f921b3b:first-of-type {
    border-top-right-radius: var(--accordion-radius);
}

[dir="ltr"] .m_1f921b3b:first-of-type {
    border-top-right-radius: var(--accordion-radius);
}

[dir="rtl"] .m_1f921b3b:first-of-type {
    border-top-left-radius: var(--accordion-radius);
}

[dir="ltr"] .m_1f921b3b:first-of-type > [data-accordion-control] {
      border-top-left-radius: var(--accordion-radius);
}

[dir="rtl"] .m_1f921b3b:first-of-type > [data-accordion-control] {
      border-top-right-radius: var(--accordion-radius);
}

[dir="ltr"] .m_1f921b3b:first-of-type > [data-accordion-control] {
      border-top-right-radius: var(--accordion-radius);
}

[dir="rtl"] .m_1f921b3b:first-of-type > [data-accordion-control] {
      border-top-left-radius: var(--accordion-radius);
}

[dir="ltr"] .m_1f921b3b:last-of-type {
    border-bottom-left-radius: var(--accordion-radius);
}

[dir="rtl"] .m_1f921b3b:last-of-type {
    border-bottom-right-radius: var(--accordion-radius);
}

[dir="ltr"] .m_1f921b3b:last-of-type {
    border-bottom-right-radius: var(--accordion-radius);
}

[dir="rtl"] .m_1f921b3b:last-of-type {
    border-bottom-left-radius: var(--accordion-radius);
}

[dir="ltr"] .m_1f921b3b:last-of-type > [data-accordion-control] {
      border-bottom-left-radius: var(--accordion-radius);
}

[dir="rtl"] .m_1f921b3b:last-of-type > [data-accordion-control] {
      border-bottom-right-radius: var(--accordion-radius);
}

[dir="ltr"] .m_1f921b3b:last-of-type > [data-accordion-control] {
      border-bottom-right-radius: var(--accordion-radius);
}

[dir="rtl"] .m_1f921b3b:last-of-type > [data-accordion-control] {
      border-bottom-left-radius: var(--accordion-radius);
}

.m_1f921b3b + .m_1f921b3b {
    border-top: 0;
  }

.m_2cdf939a {
  border-radius: var(--accordion-radius);
}

.m_2cdf939a:where([data-active]) {
    background-color: var(--item-filled-color);
  }

.m_9f59b069 {
  background-color: var(--item-filled-color);
  border-radius: var(--accordion-radius);
  border: calc(0.0625rem * 1) solid transparent;
  border: calc(0.0625rem * var(--mantine-scale)) solid transparent;
  transition: background-color 150ms ease;
}

.m_9f59b069[data-active] {
    border-color: var(--item-border-color);
  }

:where([data-mantine-color-scheme='light']) .m_9f59b069[data-active] {
      background-color: #fff;
      background-color: var(--mantine-color-white);
}

:where([data-mantine-color-scheme='dark']) .m_9f59b069[data-active] {
      background-color: #242424;
      background-color: var(--mantine-color-dark-7);
}

.m_9f59b069 + .m_9f59b069 {
    margin-top: calc(1rem * 1);
    margin-top: var(--mantine-spacing-md);
  }

[dir="ltr"] .m_7f854edf {
  left: var(--affix-left);
}

[dir="rtl"] .m_7f854edf {
  right: var(--affix-left);
}

[dir="ltr"] .m_7f854edf {
  right: var(--affix-right);
}

[dir="rtl"] .m_7f854edf {
  left: var(--affix-right);
}

.m_7f854edf {
  position: fixed;
  z-index: var(--affix-z-index);
  top: var(--affix-top);
  bottom: var(--affix-bottom);
}

.m_66836ed3 {
  --alert-radius: var(--mantine-radius-default);
  --alert-bg: var(--mantine-primary-color-light);
  --alert-bd: calc(0.0625rem * var(--mantine-scale)) solid transparent;
  --alert-color: var(--mantine-primary-color-light-color);

  padding: calc(1rem * 1) calc(1rem * 1);

  padding: var(--mantine-spacing-md) var(--mantine-spacing-md);
  border-radius: var(--alert-radius);
  position: relative;
  overflow: hidden;
  background-color: var(--alert-bg);
  border: var(--alert-bd);
  color: var(--alert-color);
}

.m_a5d60502 {
  display: flex;
}

.m_667c2793 {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: calc(0.625rem * 1);
  gap: var(--mantine-spacing-xs);
}

.m_6a03f287 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: calc(0.875rem * 1);
  font-size: var(--mantine-font-size-sm);
  font-weight: 700;
}

[dir="ltr"] .m_6a03f287:where([data-with-close-button]) {
    padding-right: calc(1rem * 1);
    padding-right: var(--mantine-spacing-md);
}

[dir="rtl"] .m_6a03f287:where([data-with-close-button]) {
    padding-left: calc(1rem * 1);
    padding-left: var(--mantine-spacing-md);
}

[dir="ltr"] .m_6a03f287:where([data-with-close-button]) {
    padding-right: calc(1rem * 1);
}

[dir="rtl"] .m_6a03f287:where([data-with-close-button]) {
    padding-left: calc(1rem * 1);
}

.m_698f4f23 {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}

[dir="ltr"] .m_667f2a6a {
  margin-right: calc(1rem * 1);
  margin-right: var(--mantine-spacing-md);
}

[dir="rtl"] .m_667f2a6a {
  margin-left: calc(1rem * 1);
  margin-left: var(--mantine-spacing-md);
}

[dir="ltr"] .m_667f2a6a {
  margin-right: calc(1rem * 1);
}

[dir="rtl"] .m_667f2a6a {
  margin-left: calc(1rem * 1);
}

.m_667f2a6a {
  line-height: 1;
  width: calc(1.25rem * 1);
  width: calc(1.25rem * var(--mantine-scale));
  height: calc(1.25rem * 1);
  height: calc(1.25rem * var(--mantine-scale));
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: calc(0.0625rem * 1);
  margin-top: calc(0.0625rem * var(--mantine-scale));
}

.m_7fa78076 {
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: calc(0.875rem * 1);
  font-size: var(--mantine-font-size-sm);
}

:where([data-mantine-color-scheme='light']) .m_7fa78076 {
    color: #000;
    color: var(--mantine-color-black);
}

:where([data-mantine-color-scheme='dark']) .m_7fa78076 {
    color: #fff;
    color: var(--mantine-color-white);
}

.m_7fa78076:where([data-variant='filled']) {
    color: var(--alert-color);
  }

.m_7fa78076:where([data-variant='white']) {
    color: #000;
    color: var(--mantine-color-black);
  }

.m_87f54839 {
  width: calc(1.25rem * 1);
  width: calc(1.25rem * var(--mantine-scale));
  height: calc(1.25rem * 1);
  height: calc(1.25rem * var(--mantine-scale));
  color: var(--alert-color);
}

.m_b6d8b162 {
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  font-size: calc(1rem * 1);
  font-size: var(--text-fz, var(--mantine-font-size-md));
  line-height: 1.55;
  line-height: var(--text-lh, var(--mantine-line-height-md));
  font-weight: normal;
  margin: 0;
  padding: 0;
  color: var(--text-color);
}

  .m_b6d8b162:where([data-truncate]) {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .m_b6d8b162:where([data-truncate='start']) {
    direction: rtl;
    text-align: right;
  }

  :where([dir="rtl"]) .m_b6d8b162:where([data-truncate='start']) {
      direction: ltr;
      text-align: left;
}

  .m_b6d8b162:where([data-variant='gradient']) {
    background-image: var(--text-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .m_b6d8b162:where([data-line-clamp]) {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: var(--text-line-clamp);
    -webkit-box-orient: vertical;
  }

  .m_b6d8b162:where([data-inherit]) {
    line-height: inherit;
    font-weight: inherit;
    font-size: inherit;
  }

  .m_b6d8b162:where([data-inline]) {
    line-height: 1;
  }

.m_849cf0da {
  color: var(--mantine-color-anchor);
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  display: inline;
  padding: 0;
  margin: 0;
  background-color: transparent;
  cursor: pointer;
}

  @media (hover: hover) {

  .m_849cf0da:where([data-underline='hover']):hover {
      text-decoration: underline;
  }
}

  @media (hover: none) {

  .m_849cf0da:where([data-underline='hover']):active {
      text-decoration: underline;
  }
}

  .m_849cf0da:where([data-underline='not-hover']) {
    text-decoration: underline;
  }

  @media (hover: hover) {

  .m_849cf0da:where([data-underline='not-hover']):hover {
      text-decoration: none;
  }
}

  @media (hover: none) {

  .m_849cf0da:where([data-underline='not-hover']):active {
      text-decoration: none;
  }
}

  .m_849cf0da:where([data-underline='always']) {
    text-decoration: underline;
  }

  .m_849cf0da:where([data-variant='gradient']),
    .m_849cf0da:where([data-variant='gradient']):hover {
      text-decoration: none;
    }

  .m_849cf0da:where([data-line-clamp]) {
    display: -webkit-box;
  }

.m_48204f9b {
  width: var(--slider-size);
  height: var(--slider-size);
  position: relative;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

  .m_48204f9b[focus-within] {
    outline: 2px solid var(--mantine-color-blue-filled);
    outline: 2px solid var(--mantine-primary-color-filled);
    outline-offset: calc(0.125rem * 1);
    outline-offset: calc(0.125rem * var(--mantine-scale));
  }

  .m_48204f9b[focus-within] {
    outline: 2px solid var(--mantine-color-blue-filled);
    outline: 2px solid var(--mantine-primary-color-filled);
    outline-offset: calc(0.125rem * 1);
    outline-offset: calc(0.125rem * var(--mantine-scale));
  }

  .m_48204f9b:focus-within {
    outline: 2px solid var(--mantine-color-blue-filled);
    outline: 2px solid var(--mantine-primary-color-filled);
    outline-offset: calc(0.125rem * 1);
    outline-offset: calc(0.125rem * var(--mantine-scale));
  }

  .m_48204f9b {

  --slider-size: calc(3.75rem * var(--mantine-scale));
  --thumb-size: calc(var(--slider-size) / 5);
}

  :where([data-mantine-color-scheme='light']) .m_48204f9b {
    background-color: #f1f3f5;
    background-color: var(--mantine-color-gray-1);
}

  :where([data-mantine-color-scheme='dark']) .m_48204f9b {
    background-color: #3b3b3b;
    background-color: var(--mantine-color-dark-5);
}

.m_bb9cdbad {
  position: absolute;
  top: calc(0.0625rem * 1);
  right: calc(0.0625rem * 1);
  bottom: calc(0.0625rem * 1);
  left: calc(0.0625rem * 1);
  top: calc(0.0625rem * var(--mantine-scale));
  right: calc(0.0625rem * var(--mantine-scale));
  bottom: calc(0.0625rem * var(--mantine-scale));
  left: calc(0.0625rem * var(--mantine-scale));
  border-radius: var(--slider-size);
  pointer-events: none;
}

.m_481dd586 {
  width: calc(0.125rem * 1);
  width: calc(0.125rem * var(--mantine-scale));
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 1px);
  transform: rotate(var(--angle));
}

.m_481dd586::before {
    content: '';
    position: absolute;
    top: calc(var(--thumb-size) / 3);
    left: calc(0.03125rem * 1);
    left: calc(0.03125rem * var(--mantine-scale));
    width: calc(0.0625rem * 1);
    width: calc(0.0625rem * var(--mantine-scale));
    height: calc(var(--thumb-size) / 1.5);
    transform: translate(-50%, -50%);
  }

:where([data-mantine-color-scheme='light']) .m_481dd586::before {
      background-color: #ced4da;
      background-color: var(--mantine-color-gray-4);
}

:where([data-mantine-color-scheme='dark']) .m_481dd586::before {
      background-color: #696969;
      background-color: var(--mantine-color-dark-3);
}

.m_481dd586[data-label]::after {
    min-width: calc(1.125rem * 1);
    min-width: calc(1.125rem * var(--mantine-scale));
    text-align: center;
    content: attr(data-label);
    position: absolute;
    top: calc(-1.5rem * 1);
    top: calc(-1.5rem * var(--mantine-scale));
    left: calc(-0.4375rem * 1);
    left: calc(-0.4375rem * var(--mantine-scale));
    transform: rotate(calc(360deg - var(--angle)));
    font-size: calc(0.75rem * 1);
    font-size: var(--mantine-font-size-xs);
  }

[dir="ltr"] .m_bc02ba3d {
  left: calc(50% - 1.5px);
}

[dir="rtl"] .m_bc02ba3d {
  right: calc(50% - 1.5px);
}

[dir="ltr"] .m_bc02ba3d {
  right: 0;
}

[dir="rtl"] .m_bc02ba3d {
  left: 0;
}

.m_bc02ba3d {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  width: calc(0.1875rem * 1);
  width: calc(0.1875rem * var(--mantine-scale));
  outline: none;
  pointer-events: none;
}

.m_bc02ba3d::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: min(var(--thumb-size), calc(var(--slider-size) / 2));
    width: calc(0.1875rem * 1);
    width: calc(0.1875rem * var(--mantine-scale));
  }

:where([data-mantine-color-scheme='light']) .m_bc02ba3d::before {
      background-color: #495057;
      background-color: var(--mantine-color-gray-7);
}

:where([data-mantine-color-scheme='dark']) .m_bc02ba3d::before {
      background-color: #b8b8b8;
      background-color: var(--mantine-color-dark-1);
}

.m_bb8e875b {
  font-size: calc(0.75rem * 1);
  font-size: var(--mantine-font-size-xs);
}

.m_89ab340[data-resizing] {
    --app-shell-transition-duration: 0ms !important;
  }
  .m_89ab340[data-disabled] {
    --app-shell-header-offset: 0rem !important;
    --app-shell-navbar-offset: 0rem !important;
    --app-shell-aside-offset: 0rem !important;
    --app-shell-footer-offset: 0rem !important;
  }
  [data-mantine-color-scheme='light'] .m_89ab340 {
    --app-shell-border-color: var(--mantine-color-gray-3);
}
  [data-mantine-color-scheme='dark'] .m_89ab340 {
    --app-shell-border-color: var(--mantine-color-dark-4);
}

.m_45252eee,
.m_9cdde9a,
.m_3b16f56b,
.m_8983817,
.m_3840c879 {
  transition-duration: var(--app-shell-transition-duration);
  transition-timing-function: var(--app-shell-transition-timing-function);
}

.m_45252eee,
.m_9cdde9a {
  position: fixed;
  display: flex;
  flex-direction: column;
  top: 0rem;
  top: var(--app-shell-header-offset, 0rem);
  height: calc(
    100dvh - 0rem - 0rem
  );
  height: calc(
    100dvh - var(--app-shell-header-offset, 0rem) - var(--app-shell-footer-offset, 0rem)
  );
  background-color: var(--mantine-color-body);
  transition-property: transform, top, height;
}

:where([data-layout='alt']) .m_45252eee, :where([data-layout='alt']) .m_9cdde9a {
    top: 0rem;
    height: 100dvh;
  }

[dir="ltr"] .m_45252eee {
  left: 0;
}

[dir="rtl"] .m_45252eee {
  right: 0;
}

.m_45252eee {
  width: var(--app-shell-navbar-width);
  transition-property: transform, top, height;
  transform: var(--app-shell-navbar-transform);
  z-index: var(--app-shell-navbar-z-index);
}

:where([dir="rtl"]) .m_45252eee {
    transform: var(--app-shell-navbar-transform-rtl);
}

[dir="ltr"] .m_45252eee:where([data-with-border]) {
    border-right: 1px solid var(--app-shell-border-color);
}

[dir="rtl"] .m_45252eee:where([data-with-border]) {
    border-left: 1px solid var(--app-shell-border-color);
}

[dir="ltr"] .m_9cdde9a {
  right: 0;
}

[dir="rtl"] .m_9cdde9a {
  left: 0;
}

.m_9cdde9a {
  width: var(--app-shell-aside-width);
  transform: var(--app-shell-aside-transform);
  z-index: var(--app-shell-aside-z-index);
}

:where([dir="rtl"]) .m_9cdde9a {
    transform: var(--app-shell-aside-transform-rtl);
}

[dir="ltr"] .m_9cdde9a:where([data-with-border]) {
    border-left: 1px solid var(--app-shell-border-color);
}

[dir="rtl"] .m_9cdde9a:where([data-with-border]) {
    border-right: 1px solid var(--app-shell-border-color);
}

[dir="ltr"] .m_8983817 {
  padding-left: calc(0rem + var(--app-shell-padding));
  padding-left: calc(var(--app-shell-navbar-offset, 0rem) + var(--app-shell-padding));
}

[dir="rtl"] .m_8983817 {
  padding-right: calc(0rem + var(--app-shell-padding));
  padding-right: calc(var(--app-shell-navbar-offset, 0rem) + var(--app-shell-padding));
}

[dir="ltr"] .m_8983817 {
  padding-right: calc(0rem + var(--app-shell-padding));
  padding-right: calc(var(--app-shell-aside-offset, 0rem) + var(--app-shell-padding));
}

[dir="rtl"] .m_8983817 {
  padding-left: calc(0rem + var(--app-shell-padding));
  padding-left: calc(var(--app-shell-aside-offset, 0rem) + var(--app-shell-padding));
}

[dir="ltr"] .m_8983817 {
  padding-left: calc(0rem + var(--app-shell-padding));
}

[dir="rtl"] .m_8983817 {
  padding-right: calc(0rem + var(--app-shell-padding));
}

[dir="ltr"] .m_8983817 {
  padding-right: calc(0rem + var(--app-shell-padding));
}

[dir="rtl"] .m_8983817 {
  padding-left: calc(0rem + var(--app-shell-padding));
}

.m_8983817 {
  padding-top: calc(0rem + var(--app-shell-padding));
  padding-top: calc(var(--app-shell-header-offset, 0rem) + var(--app-shell-padding));
  padding-bottom: calc(0rem + var(--app-shell-padding));
  padding-bottom: calc(var(--app-shell-footer-offset, 0rem) + var(--app-shell-padding));
  min-height: 100dvh;
  transition-property: padding;
}

.m_3b16f56b,
.m_3840c879 {
  position: fixed;
  left: 0;
  right: 0;
  transition-property: transform, left, right;
  background-color: var(--mantine-color-body);
}

[dir="ltr"] :where([data-layout='alt']) .m_3b16f56b,[dir="ltr"]  :where([data-layout='alt']) .m_3840c879 {
    left: 0rem;
    left: var(--app-shell-navbar-offset, 0rem);
}

[dir="rtl"] :where([data-layout='alt']) .m_3b16f56b,[dir="rtl"]  :where([data-layout='alt']) .m_3840c879 {
    right: 0rem;
    right: var(--app-shell-navbar-offset, 0rem);
}

[dir="ltr"] :where([data-layout='alt']) .m_3b16f56b,[dir="ltr"]  :where([data-layout='alt']) .m_3840c879 {
    right: 0rem;
    right: var(--app-shell-aside-offset, 0rem);
}

[dir="rtl"] :where([data-layout='alt']) .m_3b16f56b,[dir="rtl"]  :where([data-layout='alt']) .m_3840c879 {
    left: 0rem;
    left: var(--app-shell-aside-offset, 0rem);
}

[dir="ltr"] :where([data-layout='alt']) .m_3b16f56b,[dir="ltr"]  :where([data-layout='alt']) .m_3840c879 {
    left: 0rem;
}

[dir="rtl"] :where([data-layout='alt']) .m_3b16f56b,[dir="rtl"]  :where([data-layout='alt']) .m_3840c879 {
    right: 0rem;
}

[dir="ltr"] :where([data-layout='alt']) .m_3b16f56b,[dir="ltr"]  :where([data-layout='alt']) .m_3840c879 {
    right: 0rem;
}

[dir="rtl"] :where([data-layout='alt']) .m_3b16f56b,[dir="rtl"]  :where([data-layout='alt']) .m_3840c879 {
    left: 0rem;
}

.m_3b16f56b {
  top: 0;
  height: var(--app-shell-header-height);
  background-color: var(--mantine-color-body);
  transform: var(--app-shell-header-transform);
  z-index: var(--app-shell-header-z-index);
}

.m_3b16f56b:where([data-with-border]) {
    border-bottom: 1px solid var(--app-shell-border-color);
  }

.m_3840c879 {
  bottom: 0;
  height: calc(var(--app-shell-footer-height) + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  transform: var(--app-shell-footer-transform);
  z-index: var(--app-shell-footer-z-index);
}

.m_3840c879:where([data-with-border]) {
    border-top: 1px solid var(--app-shell-border-color);
  }

.m_6dcfc7c7 {
  flex-grow: 0;
}

.m_6dcfc7c7:where([data-grow]) {
    flex-grow: 1;
  }

.m_71ac47fc {
  --ar-ratio: 1;
  max-width: 100%;
}

  .m_71ac47fc > :where(*:not(style)) {
    aspect-ratio: var(--ar-ratio);
    width: 100%;
  }

  .m_71ac47fc > :where(img, video) {
    -o-object-fit: cover;
       object-fit: cover;
  }

.m_88b62a41 {
  --combobox-padding: calc(0.25rem * var(--mantine-scale));
  padding: var(--combobox-padding);
}

  .m_88b62a41[\:has\(\[data-mantine-scrollbar\]\)] .m_985517d8 {
      max-width: calc(100% + var(--combobox-padding));
    }

  .m_88b62a41:has([data-mantine-scrollbar]) .m_985517d8 {
      max-width: calc(100% + var(--combobox-padding));
    }

  [dir="ltr"] .m_88b62a41[data-composed] {
    padding-right: 0;
}

  [dir="rtl"] .m_88b62a41[data-composed] {
    padding-left: 0;
}

  .m_88b62a41[data-hidden] {
    display: none;
  }

/* Variables must be both on dropdown and options to support usage of Combobox.Options without Combobox.Dropdown */
.m_88b62a41,
.m_b2821a6e {
  --combobox-option-padding-xs: calc(0.25rem * var(--mantine-scale)) calc(0.5rem * var(--mantine-scale));
  --combobox-option-padding-sm: calc(0.375rem * var(--mantine-scale)) calc(0.625rem * var(--mantine-scale));
  --combobox-option-padding-md: calc(0.5rem * var(--mantine-scale)) calc(0.75rem * var(--mantine-scale));
  --combobox-option-padding-lg: calc(0.625rem * var(--mantine-scale)) calc(1rem * var(--mantine-scale));
  --combobox-option-padding-xl: calc(0.875rem * var(--mantine-scale)) calc(1.25rem * var(--mantine-scale));
  --combobox-option-padding: var(--combobox-option-padding-sm);
}

.m_92253aa5 {
  padding: var(--combobox-option-padding);
  font-size: calc(0.875rem * 1);
  font-size: var(--combobox-option-fz, var(--mantine-font-size-sm));
  border-radius: calc(0.25rem * 1);
  border-radius: var(--mantine-radius-default);
  background-color: transparent;
  color: inherit;
  cursor: pointer;
  word-break: break-word;
}

.m_92253aa5:where([data-combobox-selected]) {
    background-color: var(--mantine-color-blue-filled);
    background-color: var(--mantine-primary-color-filled);
    color: #fff;
    color: var(--mantine-color-white);
  }

.m_92253aa5:where([data-combobox-disabled]) {
    cursor: not-allowed;
    opacity: 0.35;
  }

@media (hover: hover) {
      :where([data-mantine-color-scheme='light']) .m_92253aa5:hover:where(:not([data-combobox-selected]):not([data-combobox-disabled])) {
        background-color: #f8f9fa;
        background-color: var(--mantine-color-gray-0);
  }

      :where([data-mantine-color-scheme='dark']) .m_92253aa5:hover:where(:not([data-combobox-selected]):not([data-combobox-disabled])) {
        background-color: #242424;
        background-color: var(--mantine-color-dark-7);
  }
}

@media (hover: none) {
      :where([data-mantine-color-scheme='light']) .m_92253aa5:active:where(:not([data-combobox-selected]):not([data-combobox-disabled])) {
        background-color: #f8f9fa;
        background-color: var(--mantine-color-gray-0);
  }

      :where([data-mantine-color-scheme='dark']) .m_92253aa5:active:where(:not([data-combobox-selected]):not([data-combobox-disabled])) {
        background-color: #242424;
        background-color: var(--mantine-color-dark-7);
  }
}

[dir="ltr"] .m_985517d8 {
  border-bottom-left-radius: 0;
}

[dir="rtl"] .m_985517d8 {
  border-bottom-right-radius: 0;
}

[dir="ltr"] .m_985517d8 {
  border-bottom-right-radius: 0;
}

[dir="rtl"] .m_985517d8 {
  border-bottom-left-radius: 0;
}

.m_985517d8 {
  margin-left: calc(var(--combobox-padding) * -1);
  margin-right: calc(var(--combobox-padding) * -1);
  margin-top: calc(var(--combobox-padding) * -1);
  width: calc(100% + var(--combobox-padding) * 2);
  border-top-width: 0;
  border-left-width: 0;
  border-right-width: 0;
  margin-bottom: var(--combobox-padding);
  position: relative;
}

:where([data-mantine-color-scheme='light']) .m_985517d8, :where([data-mantine-color-scheme='light']) .m_985517d8:focus {
      border-color: #e9ecef;
      border-color: var(--mantine-color-gray-2);
}

:where([data-mantine-color-scheme='dark']) .m_985517d8, :where([data-mantine-color-scheme='dark']) .m_985517d8:focus {
      border-color: #424242;
      border-color: var(--mantine-color-dark-4);
}

:where([data-mantine-color-scheme='light']) .m_985517d8 {
    background-color: #fff;
    background-color: var(--mantine-color-white);
}

:where([data-mantine-color-scheme='dark']) .m_985517d8 {
    background-color: #242424;
    background-color: var(--mantine-color-dark-7);
}

.m_2530cd1d {
  font-size: calc(0.875rem * 1);
  font-size: var(--combobox-option-fz, var(--mantine-font-size-sm));
  text-align: center;
  padding: var(--combobox-option-padding);
  color: var(--mantine-color-dimmed);
}

.m_858f94bd,
.m_82b967cb {
  font-size: calc(0.875rem * 1);
  font-size: var(--combobox-option-fz, var(--mantine-font-size-sm));
  border: 0 solid transparent;
  margin-left: calc(var(--combobox-padding) * -1);
  margin-right: calc(var(--combobox-padding) * -1);
  padding: var(--combobox-option-padding);
}

:where([data-mantine-color-scheme='light']) .m_858f94bd, :where([data-mantine-color-scheme='light']) .m_82b967cb {
    border-color: #e9ecef;
    border-color: var(--mantine-color-gray-2);
}

:where([data-mantine-color-scheme='dark']) .m_858f94bd, :where([data-mantine-color-scheme='dark']) .m_82b967cb {
    border-color: #424242;
    border-color: var(--mantine-color-dark-4);
}

.m_82b967cb {
  border-top-width: calc(0.0625rem * 1);
  border-top-width: calc(0.0625rem * var(--mantine-scale));
  margin-top: var(--combobox-padding);
  margin-bottom: calc(var(--combobox-padding) * -1);
}

.m_858f94bd {
  border-bottom-width: calc(0.0625rem * 1);
  border-bottom-width: calc(0.0625rem * var(--mantine-scale));
  margin-bottom: var(--combobox-padding);
  margin-top: calc(var(--combobox-padding) * -1);
}

.m_254f3e4f[\:has\(.m_2bb2e9e5\:only-child\)] {
    display: none;
  }

.m_254f3e4f:has(.m_2bb2e9e5:only-child) {
    display: none;
  }

.m_2bb2e9e5 {
  color: var(--mantine-color-dimmed);
  font-size: calc((0.875rem * 1) * 0.85);
  font-size: calc(calc(0.875rem * 1) * 0.85);
  font-size: calc(var(--combobox-option-fz, var(--mantine-font-size-sm)) * 0.85);
  padding: var(--combobox-option-padding);
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
}

[dir="ltr"] .m_2bb2e9e5::after {
    margin-left: calc(0.625rem * 1);
    margin-left: var(--mantine-spacing-xs);
}

[dir="rtl"] .m_2bb2e9e5::after {
    margin-right: calc(0.625rem * 1);
    margin-right: var(--mantine-spacing-xs);
}

[dir="ltr"] .m_2bb2e9e5::after {
    margin-left: calc(0.625rem * 1);
}

[dir="rtl"] .m_2bb2e9e5::after {
    margin-right: calc(0.625rem * 1);
}

.m_2bb2e9e5::after {
    content: '';
    flex: 1;
    left: 0;
    right: 0;
    height: calc(0.0625rem * 1);
    height: calc(0.0625rem * var(--mantine-scale));
  }

:where([data-mantine-color-scheme='light']) .m_2bb2e9e5::after {
      background-color: #e9ecef;
      background-color: var(--mantine-color-gray-2);
}

:where([data-mantine-color-scheme='dark']) .m_2bb2e9e5::after {
      background-color: #424242;
      background-color: var(--mantine-color-dark-4);
}

.m_2bb2e9e5:only-child {
    display: none;
  }

/* ------- Combobox.Chevron ------- */
.m_2943220b {
  --combobox-chevron-size-xs: calc(0.875rem * var(--mantine-scale));
  --combobox-chevron-size-sm: calc(1.125rem * var(--mantine-scale));
  --combobox-chevron-size-md: calc(1.25rem * var(--mantine-scale));
  --combobox-chevron-size-lg: calc(1.5rem * var(--mantine-scale));
  --combobox-chevron-size-xl: calc(1.75rem * var(--mantine-scale));
  --combobox-chevron-size: var(--combobox-chevron-size-sm);
}
:where([data-mantine-color-scheme='light']) .m_2943220b {
    --_combobox-chevron-color: var(--combobox-chevron-color, var(--mantine-color-gray-6));
}
:where([data-mantine-color-scheme='dark']) .m_2943220b {
    --_combobox-chevron-color: var(--combobox-chevron-color, var(--mantine-color-dark-3));
}
.m_2943220b {

  width: var(--combobox-chevron-size);
  height: var(--combobox-chevron-size);
  color: var(--_combobox-chevron-color);
}
.m_2943220b:where([data-error]) {
    color: var(--mantine-color-error);
    color: var(--combobox-chevron-color, var(--mantine-color-error));
  }

/* ------- OptionsDropdown ------- */
.m_390b5f4 {
  display: flex;
  align-items: center;
  gap: calc(0.5rem * 1);
  gap: calc(0.5rem * var(--mantine-scale));
}
.m_390b5f4:where([data-reverse]) {
    justify-content: space-between;
  }

.m_8ee53fc2 {
  opacity: 0.4;
  width: 0.8em;
  min-width: 0.8em;
  height: 0.8em;
}

:where([data-combobox-selected]) .m_8ee53fc2 {
    opacity: 1;
  }

.m_5f75b09e {
  --label-lh-xs: calc(1rem * var(--mantine-scale));
  --label-lh-sm: calc(1.25rem * var(--mantine-scale));
  --label-lh-md: calc(1.5rem * var(--mantine-scale));
  --label-lh-lg: calc(1.875rem * var(--mantine-scale));
  --label-lh-xl: calc(2.25rem * var(--mantine-scale));
  --label-lh: var(--label-lh-sm);
}

  .m_5f75b09e[data-label-position='left'] {
    --label-order: 1;
    --label-offset-end: var(--mantine-spacing-sm);
    --label-offset-start: 0;
  }

  .m_5f75b09e[data-label-position='right'] {
    --label-order: 2;
    --label-offset-end: 0;
    --label-offset-start: var(--mantine-spacing-sm);
  }

.m_5f6e695e {
  display: flex;
}

.m_d3ea56bb {
  --label-cursor: var(--mantine-cursor-type);

  -webkit-tap-highlight-color: transparent;
  display: inline-flex;
  flex-direction: column;
  font-size: calc(0.875rem * 1);
  font-size: var(--label-fz, var(--mantine-font-size-sm));
  line-height: var(--label-lh);
  cursor: var(--label-cursor);
  order: var(--label-order);
}

fieldset:disabled .m_d3ea56bb,
  .m_d3ea56bb[data-disabled] {
    --label-cursor: not-allowed;
  }

[dir="ltr"] .m_8ee546b8 {
  padding-left: var(--label-offset-start);
}

[dir="rtl"] .m_8ee546b8 {
  padding-right: var(--label-offset-start);
}

[dir="ltr"] .m_8ee546b8 {
  padding-right: var(--label-offset-end);
}

[dir="rtl"] .m_8ee546b8 {
  padding-left: var(--label-offset-end);
}

.m_8ee546b8 {
  cursor: var(--label-cursor);
  color: inherit;
}

:where([data-mantine-color-scheme='light']) fieldset:disabled .m_8ee546b8, :where([data-mantine-color-scheme='light']) .m_8ee546b8:where([data-disabled]) {
      color: #adb5bd;
      color: var(--mantine-color-gray-5);
}

:where([data-mantine-color-scheme='dark']) fieldset:disabled .m_8ee546b8, :where([data-mantine-color-scheme='dark']) .m_8ee546b8:where([data-disabled]) {
      color: #696969;
      color: var(--mantine-color-dark-3);
}

[dir="ltr"] .m_328f68c0 {
  padding-left: var(--label-offset-start);
}

[dir="rtl"] .m_328f68c0 {
  padding-right: var(--label-offset-start);
}

[dir="ltr"] .m_328f68c0 {
  padding-right: var(--label-offset-end);
}

[dir="rtl"] .m_328f68c0 {
  padding-left: var(--label-offset-end);
}

.m_328f68c0 {
  margin-top: calc((0.625rem * 1) / 2);
  margin-top: calc(calc(0.625rem * 1) / 2);
  margin-top: calc(var(--mantine-spacing-xs) / 2);
}

[dir="ltr"] .m_8e8a99cc {
  padding-left: var(--label-offset-start);
}

[dir="rtl"] .m_8e8a99cc {
  padding-right: var(--label-offset-start);
}

[dir="ltr"] .m_8e8a99cc {
  padding-right: var(--label-offset-end);
}

[dir="rtl"] .m_8e8a99cc {
  padding-left: var(--label-offset-end);
}

.m_8e8a99cc {
  margin-top: calc((0.625rem * 1) / 2);
  margin-top: calc(calc(0.625rem * 1) / 2);
  margin-top: calc(var(--mantine-spacing-xs) / 2);
}

.m_26775b0a {
  --card-radius: var(--mantine-radius-default);

  display: block;
  width: 100%;
  border-radius: var(--card-radius);
  cursor: pointer;
}

  .m_26775b0a :where(*) {
    cursor: inherit;
  }

  .m_26775b0a:where([data-with-border]) {
    border: calc(0.0625rem * 1) solid transparent;
    border: calc(0.0625rem * var(--mantine-scale)) solid transparent;
  }

  :where([data-mantine-color-scheme='light']) .m_26775b0a:where([data-with-border]) {
      border-color: #dee2e6;
      border-color: var(--mantine-color-gray-3);
}

  :where([data-mantine-color-scheme='dark']) .m_26775b0a:where([data-with-border]) {
      border-color: #424242;
      border-color: var(--mantine-color-dark-4);
}

.m_5e5256ee {
  --checkbox-size-xs: calc(1rem * var(--mantine-scale));
  --checkbox-size-sm: calc(1.25rem * var(--mantine-scale));
  --checkbox-size-md: calc(1.5rem * var(--mantine-scale));
  --checkbox-size-lg: calc(1.875rem * var(--mantine-scale));
  --checkbox-size-xl: calc(2.25rem * var(--mantine-scale));

  --checkbox-size: var(--checkbox-size-sm);
  --checkbox-color: var(--mantine-primary-color-filled);
  --checkbox-icon-color: var(--mantine-color-white);

  position: relative;
  border: calc(0.0625rem * 1) solid transparent;
  border: calc(0.0625rem * var(--mantine-scale)) solid transparent;
  width: var(--checkbox-size);
  min-width: var(--checkbox-size);
  height: var(--checkbox-size);
  min-height: var(--checkbox-size);
  border-radius: calc(0.25rem * 1);
  border-radius: var(--checkbox-radius, var(--mantine-radius-default));
  transition:
    border-color 100ms ease,
    background-color 100ms ease;
  cursor: default;
  cursor: var(--mantine-cursor-type);
  -webkit-tap-highlight-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

  :where([data-mantine-color-scheme='light']) .m_5e5256ee {
    background-color: #fff;
    background-color: var(--mantine-color-white);
    border-color: #ced4da;
    border-color: var(--mantine-color-gray-4);
}

  :where([data-mantine-color-scheme='dark']) .m_5e5256ee {
    background-color: #2e2e2e;
    background-color: var(--mantine-color-dark-6);
    border-color: #424242;
    border-color: var(--mantine-color-dark-4);
}

  .m_5e5256ee[data-indeterminate],
  .m_5e5256ee[data-checked] {
    background-color: var(--checkbox-color);
    border-color: var(--checkbox-color);
  }

  .m_5e5256ee[data-indeterminate] > .m_1b1c543a, .m_5e5256ee[data-checked] > .m_1b1c543a {
      opacity: 1;
      transform: none;
      color: var(--checkbox-icon-color);
    }

  .m_5e5256ee[data-disabled] {
    cursor: not-allowed;
  }

  :where([data-mantine-color-scheme='light']) .m_5e5256ee[data-disabled] {
      background-color: #e9ecef;
      background-color: var(--mantine-color-gray-2);
      border-color: #dee2e6;
      border-color: var(--mantine-color-gray-3);
}

  :where([data-mantine-color-scheme='dark']) .m_5e5256ee[data-disabled] {
      background-color: #2e2e2e;
      background-color: var(--mantine-color-dark-6);
      border-color: #2e2e2e;
      border-color: var(--mantine-color-dark-6);
}

  [data-mantine-color-scheme='light'] .m_5e5256ee[data-disabled][data-checked] > .m_1b1c543a {
        color: #adb5bd;
        color: var(--mantine-color-gray-5);
}

  [data-mantine-color-scheme='dark'] .m_5e5256ee[data-disabled][data-checked] > .m_1b1c543a {
        color: #696969;
        color: var(--mantine-color-dark-3);
}

.m_76e20374[data-indeterminate]:not([data-disabled]),
  .m_76e20374[data-checked]:not([data-disabled]) {
    background-color: transparent;
    border-color: var(--checkbox-color);
  }

.m_76e20374[data-indeterminate]:not([data-disabled]) > .m_1b1c543a, .m_76e20374[data-checked]:not([data-disabled]) > .m_1b1c543a {
      color: var(--checkbox-color);
      opacity: 1;
      transform: none;
    }

.m_1b1c543a {
  display: block;
  width: 60%;
  color: transparent;
  pointer-events: none;
  transform: translateY(calc(0.3125rem * 1)) scale(0.5);
  transform: translateY(calc(0.3125rem * var(--mantine-scale))) scale(0.5);
  opacity: 1;
  transition:
    transform 100ms ease,
    opacity 100ms ease;
}

.m_bf2d988c {
  --checkbox-size-xs: calc(1rem * var(--mantine-scale));
  --checkbox-size-sm: calc(1.25rem * var(--mantine-scale));
  --checkbox-size-md: calc(1.5rem * var(--mantine-scale));
  --checkbox-size-lg: calc(1.875rem * var(--mantine-scale));
  --checkbox-size-xl: calc(2.25rem * var(--mantine-scale));

  --checkbox-size: var(--checkbox-size-sm);
  --checkbox-color: var(--mantine-primary-color-filled);
  --checkbox-icon-color: var(--mantine-color-white);
}

.m_26062bec {
  position: relative;
  width: var(--checkbox-size);
  height: var(--checkbox-size);
  order: 1;
}

.m_26062bec:where([data-label-position='left']) {
    order: 2;
  }

.m_26063560 {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: calc(0.0625rem * 1) solid transparent;
  border: calc(0.0625rem * var(--mantine-scale)) solid transparent;
  width: var(--checkbox-size);
  height: var(--checkbox-size);
  border-radius: calc(0.25rem * 1);
  border-radius: var(--checkbox-radius, var(--mantine-radius-default));
  padding: 0;
  display: block;
  margin: 0;
  transition:
    border-color 100ms ease,
    background-color 100ms ease;
  cursor: default;
  cursor: var(--mantine-cursor-type);
  -webkit-tap-highlight-color: transparent;
}

:where([data-mantine-color-scheme='light']) .m_26063560 {
    background-color: #fff;
    background-color: var(--mantine-color-white);
    border-color: #ced4da;
    border-color: var(--mantine-color-gray-4);
}

:where([data-mantine-color-scheme='dark']) .m_26063560 {
    background-color: #2e2e2e;
    background-color: var(--mantine-color-dark-6);
    border-color: #424242;
    border-color: var(--mantine-color-dark-4);
}

.m_26063560:where([data-error]) {
    border-color: var(--mantine-color-error);
  }

.m_26063560[data-indeterminate],
  .m_26063560:checked {
    background-color: var(--checkbox-color);
    border-color: var(--checkbox-color);
  }

.m_26063560[data-indeterminate] + .m_bf295423, .m_26063560:checked + .m_bf295423 {
      opacity: 1;
      transform: none;
    }

.m_26063560:disabled {
    cursor: not-allowed;
  }

:where([data-mantine-color-scheme='light']) .m_26063560:disabled {
      background-color: #e9ecef;
      background-color: var(--mantine-color-gray-2);
      border-color: #dee2e6;
      border-color: var(--mantine-color-gray-3);
}

:where([data-mantine-color-scheme='dark']) .m_26063560:disabled {
      background-color: #2e2e2e;
      background-color: var(--mantine-color-dark-6);
      border-color: #2e2e2e;
      border-color: var(--mantine-color-dark-6);
}

[data-mantine-color-scheme='light'] .m_26063560:disabled + .m_bf295423 {
        color: #adb5bd;
        color: var(--mantine-color-gray-5);
}

[data-mantine-color-scheme='dark'] .m_26063560:disabled + .m_bf295423 {
        color: #696969;
        color: var(--mantine-color-dark-3);
}

.m_215c4542 + .m_bf295423 {
    color: var(--checkbox-color);
  }

.m_215c4542[data-indeterminate]:not(:disabled),
  .m_215c4542:checked:not(:disabled) {
    background-color: transparent;
    border-color: var(--checkbox-color);
  }

.m_215c4542[data-indeterminate]:not(:disabled) + .m_bf295423, .m_215c4542:checked:not(:disabled) + .m_bf295423 {
      color: var(--checkbox-color);
      opacity: 1;
      transform: none;
    }

.m_bf295423 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 60%;
  margin: auto;
  color: var(--checkbox-icon-color);
  pointer-events: none;
  transform: translateY(calc(0.3125rem * 1)) scale(0.5);
  transform: translateY(calc(0.3125rem * var(--mantine-scale))) scale(0.5);
  opacity: 0;
  transition:
    transform 100ms ease,
    opacity 100ms ease;
}

/* Avatar.Group root element */
[dir="ltr"] .m_11def92b {
  padding-left: var(--ag-spacing);
}
[dir="rtl"] .m_11def92b {
  padding-right: var(--ag-spacing);
}
.m_11def92b {
  --ag-spacing: var(--mantine-spacing-sm);
  --ag-offset: calc(var(--ag-spacing) * -1);

  display: flex;
}

/* Avatar root element */
.m_f85678b6 {
  --avatar-size-xs: calc(1rem * var(--mantine-scale));
  --avatar-size-sm: calc(1.625rem * var(--mantine-scale));
  --avatar-size-md: calc(2.375rem * var(--mantine-scale));
  --avatar-size-lg: calc(3.5rem * var(--mantine-scale));
  --avatar-size-xl: calc(5.25rem * var(--mantine-scale));

  --avatar-size: var(--avatar-size-md);
  --avatar-radius: calc(62.5rem * var(--mantine-scale));
  --avatar-bg: var(--mantine-color-gray-light);
  --avatar-bd: calc(0.0625rem * var(--mantine-scale)) solid transparent;
  --avatar-color: var(--mantine-color-gray-light-color);
  --avatar-placeholder-fz: calc(var(--avatar-size) / 2.5);

  -webkit-tap-highlight-color: transparent;
  position: relative;
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  overflow: hidden;
  border-radius: var(--avatar-radius);
  text-decoration: none;
  padding: 0;
  width: var(--avatar-size);
  height: var(--avatar-size);
  min-width: var(--avatar-size);
}
[dir="ltr"] .m_f85678b6:where([data-within-group]) {
    margin-left: var(--ag-offset);
}
[dir="rtl"] .m_f85678b6:where([data-within-group]) {
    margin-right: var(--ag-offset);
}
.m_f85678b6:where([data-within-group]) {
    border: 2px solid var(--mantine-color-body);
    background: var(--mantine-color-body);
  }

.m_11f8ac07 {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.m_104cd71f {
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-radius: var(--avatar-radius);
  font-size: var(--avatar-placeholder-fz);
  background: var(--avatar-bg);
  border: var(--avatar-bd);
  color: var(--avatar-color);
}

.m_104cd71f > [data-avatar-placeholder-icon] {
    width: 70%;
    height: 70%;
  }

.m_2ce0de02 {
  background-size: cover;
  background-position: center;
  display: block;
  width: 100%;
  border: 0;
  text-decoration: none;
  border-radius: 0;
  border-radius: var(--bi-radius, 0);
}

.m_347db0ec {
  --badge-height-xs: calc(1rem * var(--mantine-scale));
  --badge-height-sm: calc(1.125rem * var(--mantine-scale));
  --badge-height-md: calc(1.25rem * var(--mantine-scale));
  --badge-height-lg: calc(1.625rem * var(--mantine-scale));
  --badge-height-xl: calc(2rem * var(--mantine-scale));

  --badge-fz-xs: calc(0.5625rem * var(--mantine-scale));
  --badge-fz-sm: calc(0.625rem * var(--mantine-scale));
  --badge-fz-md: calc(0.6875rem * var(--mantine-scale));
  --badge-fz-lg: calc(0.8125rem * var(--mantine-scale));
  --badge-fz-xl: calc(1rem * var(--mantine-scale));

  --badge-padding-x-xs: calc(0.375rem * var(--mantine-scale));
  --badge-padding-x-sm: calc(0.5rem * var(--mantine-scale));
  --badge-padding-x-md: calc(0.625rem * var(--mantine-scale));
  --badge-padding-x-lg: calc(0.75rem * var(--mantine-scale));
  --badge-padding-x-xl: calc(1rem * var(--mantine-scale));

  --badge-height: var(--badge-height-md);
  --badge-fz: var(--badge-fz-md);
  --badge-padding-x: var(--badge-padding-x-md);
  --badge-radius: calc(62.5rem * var(--mantine-scale));
  --badge-lh: calc(var(--badge-height) - calc(0.125rem * var(--mantine-scale)));
  --badge-color: var(--mantine-color-white);
  --badge-bg: var(--mantine-primary-color-filled);
  --badge-border-width: calc(0.0625rem * var(--mantine-scale));
  --badge-bd: var(--badge-border-width) solid transparent;

  -webkit-tap-highlight-color: transparent;
  font-size: var(--badge-fz);
  border-radius: var(--badge-radius);
  height: var(--badge-height);
  line-height: var(--badge-lh);
  text-decoration: none;
  padding: 0 var(--badge-padding-x);
  display: inline-grid;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: calc(0.015625rem * 1);
  letter-spacing: calc(0.015625rem * var(--mantine-scale));
  cursor: default;
  text-overflow: ellipsis;
  overflow: hidden;
  color: var(--badge-color);
  background: var(--badge-bg);
  border: var(--badge-bd);
}

  .m_347db0ec:where([data-with-left-section], [data-variant='dot']) {
    grid-template-columns: auto 1fr;
  }

  .m_347db0ec:where([data-with-right-section]) {
    grid-template-columns: 1fr auto;
  }

  .m_347db0ec:where(
      [data-with-left-section][data-with-right-section],
      [data-variant='dot'][data-with-right-section]
    ) {
    grid-template-columns: auto 1fr auto;
  }

  .m_347db0ec:where([data-block]) {
    display: flex;
    width: 100%;
  }

  .m_347db0ec:where([data-circle]) {
    padding-left: calc(0.125rem * 1);
    padding-right: calc(0.125rem * 1);
    padding-left: calc(0.125rem * var(--mantine-scale));
    padding-right: calc(0.125rem * var(--mantine-scale));
    display: flex;
    width: var(--badge-height);
  }

.m_fbd81e3d {
  --badge-dot-size: calc(var(--badge-height) / 3.4);
}

:where([data-mantine-color-scheme='light']) .m_fbd81e3d {
    background-color: #fff;
    background-color: var(--mantine-color-white);
    border-color: #ced4da;
    border-color: var(--mantine-color-gray-4);
    color: #000;
    color: var(--mantine-color-black);
}

:where([data-mantine-color-scheme='dark']) .m_fbd81e3d {
    background-color: #3b3b3b;
    background-color: var(--mantine-color-dark-5);
    border-color: #3b3b3b;
    border-color: var(--mantine-color-dark-5);
    color: #fff;
    color: var(--mantine-color-white);
}

[dir="ltr"] .m_fbd81e3d::before {
    margin-right: var(--badge-dot-size);
}

[dir="rtl"] .m_fbd81e3d::before {
    margin-left: var(--badge-dot-size);
}

.m_fbd81e3d::before {
    content: '';
    display: block;
    width: var(--badge-dot-size);
    height: var(--badge-dot-size);
    border-radius: var(--badge-dot-size);
    background-color: var(--badge-dot-color);
  }

.m_5add502a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  cursor: inherit;
}

.m_91fdda9b {
  --badge-section-margin: calc(var(--mantine-spacing-xs) / 2);

  display: inline-flex;
  justify-content: center;
  align-items: center;
  max-height: calc(var(--badge-height) - var(--badge-border-width) * 2);
}

[dir="ltr"] .m_91fdda9b:where([data-position='left']) {
    margin-right: var(--badge-section-margin);
}

[dir="rtl"] .m_91fdda9b:where([data-position='left']) {
    margin-left: var(--badge-section-margin);
}

[dir="ltr"] .m_91fdda9b:where([data-position='right']) {
    margin-left: var(--badge-section-margin);
}

[dir="rtl"] .m_91fdda9b:where([data-position='right']) {
    margin-right: var(--badge-section-margin);
}

[dir="ltr"] .m_ddec01c0 {
  border-left: var(--blockquote-border);
}

[dir="rtl"] .m_ddec01c0 {
  border-right: var(--blockquote-border);
}

[dir="ltr"] .m_ddec01c0 {
  border-top-right-radius: var(--bq-radius);
}

[dir="rtl"] .m_ddec01c0 {
  border-top-left-radius: var(--bq-radius);
}

[dir="ltr"] .m_ddec01c0 {
  border-bottom-right-radius: var(--bq-radius);
}

[dir="rtl"] .m_ddec01c0 {
  border-bottom-left-radius: var(--bq-radius);
}

.m_ddec01c0 {
  --blockquote-border: 3px solid var(--bq-bd);

  position: relative;
  margin: 0;
  padding: calc(2rem * 1) calc(2.375rem * 1);
  padding: var(--mantine-spacing-xl) calc(2.375rem * var(--mantine-scale));
}

  :where([data-mantine-color-scheme='light']) .m_ddec01c0 {
    background-color: var(--bq-bg-light);
}

  :where([data-mantine-color-scheme='dark']) .m_ddec01c0 {
    background-color: var(--bq-bg-dark);
}

[dir="ltr"] .m_dde7bd57 {
  left: var(--blockquote-icon-offset);
}

[dir="rtl"] .m_dde7bd57 {
  right: var(--blockquote-icon-offset);
}

.m_dde7bd57 {
  --blockquote-icon-offset: calc(var(--bq-icon-size) / -2);

  position: absolute;
  color: var(--bq-bd);
  background-color: var(--mantine-color-body);
  display: flex;
  align-items: center;
  justify-content: center;
  top: var(--blockquote-icon-offset);
  width: var(--bq-icon-size);
  height: var(--bq-icon-size);
  border-radius: var(--bq-icon-size);
}

.m_dde51a35 {
  display: block;
  margin-top: calc(1rem * 1);
  margin-top: var(--mantine-spacing-md);
  opacity: 0.6;
  font-size: 85%;
}

.m_8b3717df {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.m_f678d540 {
  line-height: 1;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

.m_3b8f2208 {
  margin-left: calc(0.625rem * 1);
  margin-right: calc(0.625rem * 1);
  margin-left: var(--bc-separator-margin, var(--mantine-spacing-xs));
  margin-right: var(--bc-separator-margin, var(--mantine-spacing-xs));
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

:where([data-mantine-color-scheme='light']) .m_3b8f2208 {
    color: #495057;
    color: var(--mantine-color-gray-7);
}

:where([data-mantine-color-scheme='dark']) .m_3b8f2208 {
    color: #828282;
    color: var(--mantine-color-dark-2);
}

.m_fea6bf1a {
  --burger-size-xs: calc(0.75rem * var(--mantine-scale));
  --burger-size-sm: calc(1.125rem * var(--mantine-scale));
  --burger-size-md: calc(1.5rem * var(--mantine-scale));
  --burger-size-lg: calc(2.125rem * var(--mantine-scale));
  --burger-size-xl: calc(2.625rem * var(--mantine-scale));

  --burger-size: var(--burger-size-md);
  --burger-line-size: calc(var(--burger-size) / 12);

  width: calc(var(--burger-size) + (0.625rem * 1));

  width: calc(var(--burger-size) + calc(0.625rem * 1));

  width: calc(var(--burger-size) + var(--mantine-spacing-xs));
  height: calc(var(--burger-size) + (0.625rem * 1));
  height: calc(var(--burger-size) + calc(0.625rem * 1));
  height: calc(var(--burger-size) + var(--mantine-spacing-xs));
  padding: calc((0.625rem * 1) / 2);
  padding: calc(calc(0.625rem * 1) / 2);
  padding: calc(var(--mantine-spacing-xs) / 2);
  cursor: pointer;
}

  :where([data-mantine-color-scheme='light']) .m_fea6bf1a {
    --burger-color: var(--mantine-color-black);
}

  :where([data-mantine-color-scheme='dark']) .m_fea6bf1a {
    --burger-color: var(--mantine-color-white);
}

.m_d4fb9cad {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.m_d4fb9cad,
  .m_d4fb9cad::before,
  .m_d4fb9cad::after {
    display: block;
    width: var(--burger-size);
    height: var(--burger-line-size);
    background-color: var(--burger-color);
    outline: calc(0.0625rem * 1) solid transparent;
    outline: calc(0.0625rem * var(--mantine-scale)) solid transparent;
    transition-property: background-color, transform;
    transition-duration: 300ms;
    transition-duration: var(--burger-transition-duration, 300ms);
    transition-timing-function: ease;
    transition-timing-function: var(--burger-transition-timing-function, ease);
  }

[dir="ltr"] .m_d4fb9cad::before,[dir="ltr"] 
  .m_d4fb9cad::after {
    left: 0;
}

[dir="rtl"] .m_d4fb9cad::before,[dir="rtl"] 
  .m_d4fb9cad::after {
    right: 0;
}

.m_d4fb9cad::before,
  .m_d4fb9cad::after {
    position: absolute;
    content: '';
  }

.m_d4fb9cad::before {
    top: calc(var(--burger-size) / -3);
  }

.m_d4fb9cad::after {
    top: calc(var(--burger-size) / 3);
  }

.m_d4fb9cad[data-opened] {
    background-color: transparent;
  }

.m_d4fb9cad[data-opened]::before {
      transform: translateY(calc(var(--burger-size) / 3)) rotate(45deg);
    }

.m_d4fb9cad[data-opened]::after {
      transform: translateY(calc(var(--burger-size) / -3)) rotate(-45deg);
    }

.m_77c9d27d {
  --button-height-xs: calc(1.875rem * var(--mantine-scale));
  --button-height-sm: calc(2.25rem * var(--mantine-scale));
  --button-height-md: calc(2.625rem * var(--mantine-scale));
  --button-height-lg: calc(3.125rem * var(--mantine-scale));
  --button-height-xl: calc(3.75rem * var(--mantine-scale));

  --button-height-compact-xs: calc(1.375rem * var(--mantine-scale));
  --button-height-compact-sm: calc(1.625rem * var(--mantine-scale));
  --button-height-compact-md: calc(1.875rem * var(--mantine-scale));
  --button-height-compact-lg: calc(2.125rem * var(--mantine-scale));
  --button-height-compact-xl: calc(2.5rem * var(--mantine-scale));

  --button-padding-x-xs: calc(0.875rem * var(--mantine-scale));
  --button-padding-x-sm: calc(1.125rem * var(--mantine-scale));
  --button-padding-x-md: calc(1.375rem * var(--mantine-scale));
  --button-padding-x-lg: calc(1.625rem * var(--mantine-scale));
  --button-padding-x-xl: calc(2rem * var(--mantine-scale));

  --button-padding-x-compact-xs: calc(0.4375rem * var(--mantine-scale));
  --button-padding-x-compact-sm: calc(0.5rem * var(--mantine-scale));
  --button-padding-x-compact-md: calc(0.625rem * var(--mantine-scale));
  --button-padding-x-compact-lg: calc(0.75rem * var(--mantine-scale));
  --button-padding-x-compact-xl: calc(0.875rem * var(--mantine-scale));

  --button-height: var(--button-height-sm);
  --button-padding-x: var(--button-padding-x-sm);
  --button-color: var(--mantine-color-white);

  -webkit-user-select: none;

     -moz-user-select: none;

          user-select: none;
  font-weight: 600;
  position: relative;
  line-height: 1;
  text-align: center;
  overflow: hidden;

  width: auto;
  cursor: pointer;
  display: inline-block;
  border-radius: calc(0.25rem * 1);
  border-radius: var(--button-radius, var(--mantine-radius-default));
  font-size: calc(0.875rem * 1);
  font-size: var(--button-fz, var(--mantine-font-size-sm));
  background: var(--mantine-color-blue-filled);
  background: var(--button-bg, var(--mantine-primary-color-filled));
  border: calc(0.0625rem * 1) solid transparent;
  border: var(--button-bd, calc(0.0625rem * var(--mantine-scale)) solid transparent);
  color: #fff;
  color: var(--button-color, var(--mantine-color-white));
  height: var(--button-height-sm);
  height: var(--button-height, var(--button-height-sm));
  padding-left: var(--button-padding-x-sm);
  padding-right: var(--button-padding-x-sm);
  padding-left: var(--button-padding-x, var(--button-padding-x-sm));
  padding-right: var(--button-padding-x, var(--button-padding-x-sm));
  vertical-align: middle;
}

  .m_77c9d27d:where([data-block]) {
    display: block;
    width: 100%;
  }

  [dir="ltr"] .m_77c9d27d:where([data-with-left-section]) {
    padding-left: calc(var(--button-padding-x) / 1.5);
}

  [dir="rtl"] .m_77c9d27d:where([data-with-left-section]) {
    padding-right: calc(var(--button-padding-x) / 1.5);
}

  [dir="ltr"] .m_77c9d27d:where([data-with-right-section]) {
    padding-right: calc(var(--button-padding-x) / 1.5);
}

  [dir="rtl"] .m_77c9d27d:where([data-with-right-section]) {
    padding-left: calc(var(--button-padding-x) / 1.5);
}

  .m_77c9d27d:where(:disabled:not([data-loading]), [data-disabled]:not([data-loading])) {
    cursor: not-allowed;
    border: calc(0.0625rem * 1) solid transparent;
    border: calc(0.0625rem * var(--mantine-scale)) solid transparent;
    transform: none;
  }

  :where([data-mantine-color-scheme='light']) .m_77c9d27d:where(:disabled:not([data-loading]), [data-disabled]:not([data-loading])) {
      color: #adb5bd;
      color: var(--mantine-color-gray-5);
      background: #f1f3f5;
      background: var(--mantine-color-gray-1);
}

  :where([data-mantine-color-scheme='dark']) .m_77c9d27d:where(:disabled:not([data-loading]), [data-disabled]:not([data-loading])) {
      color: #696969;
      color: var(--mantine-color-dark-3);
      background: #2e2e2e;
      background: var(--mantine-color-dark-6);
}

  .m_77c9d27d::before {
    content: '';
    pointer-events: none;
    position: absolute;
    top: calc(-0.0625rem * 1);
    right: calc(-0.0625rem * 1);
    bottom: calc(-0.0625rem * 1);
    left: calc(-0.0625rem * 1);
    top: calc(-0.0625rem * var(--mantine-scale));
    right: calc(-0.0625rem * var(--mantine-scale));
    bottom: calc(-0.0625rem * var(--mantine-scale));
    left: calc(-0.0625rem * var(--mantine-scale));
    border-radius: calc(0.25rem * 1);
    border-radius: var(--button-radius, var(--mantine-radius-default));
    transform: translateY(-100%);
    opacity: 0;
    filter: blur(12px);
    transition:
      transform 150ms ease,
      opacity 100ms ease;
  }

  :where([data-mantine-color-scheme='light']) .m_77c9d27d::before {
      background-color: rgba(255, 255, 255, 0.15);
}

  :where([data-mantine-color-scheme='dark']) .m_77c9d27d::before {
      background-color: rgba(0, 0, 0, 0.15);
}

  .m_77c9d27d:where([data-loading]) {
    cursor: not-allowed;
    transform: none;
  }

  .m_77c9d27d:where([data-loading])::before {
      transform: translateY(0);
      opacity: 1;
    }

  .m_77c9d27d:where([data-loading]) .m_80f1301b {
      opacity: 0;
      transform: translateY(100%);
    }

  @media (hover: hover) {
    .m_77c9d27d:hover:where(:not([data-loading]):not(:disabled):not([data-disabled])) {
      background-color: var(--mantine-color-blue-filled-hover);
      background-color: var(--button-hover, var(--mantine-primary-color-filled-hover));
      color: var(--button-color);
      color: var(--button-hover-color, var(--button-color));
    }
}

  @media (hover: none) {
    .m_77c9d27d:active:where(:not([data-loading]):not(:disabled):not([data-disabled])) {
      background-color: var(--mantine-color-blue-filled-hover);
      background-color: var(--button-hover, var(--mantine-primary-color-filled-hover));
      color: var(--button-color);
      color: var(--button-hover-color, var(--button-color));
    }
}

.m_80f1301b {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: var(--button-justify, center);
  height: 100%;
  overflow: visible;
  transition:
    transform 150ms ease,
    opacity 100ms ease;
}

.m_811560b9 {
  white-space: nowrap;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  opacity: 1;
}

.m_811560b9:where([data-loading]) {
    opacity: 0.2;
  }

.m_a74036a {
  display: flex;
  align-items: center;
}

[dir="ltr"] .m_a74036a:where([data-position='left']) {
    margin-right: calc(0.625rem * 1);
    margin-right: var(--mantine-spacing-xs);
}

[dir="rtl"] .m_a74036a:where([data-position='left']) {
    margin-left: calc(0.625rem * 1);
    margin-left: var(--mantine-spacing-xs);
}

[dir="ltr"] .m_a74036a:where([data-position='left']) {
    margin-right: calc(0.625rem * 1);
}

[dir="rtl"] .m_a74036a:where([data-position='left']) {
    margin-left: calc(0.625rem * 1);
}

[dir="ltr"] .m_a74036a:where([data-position='right']) {
    margin-left: calc(0.625rem * 1);
    margin-left: var(--mantine-spacing-xs);
}

[dir="rtl"] .m_a74036a:where([data-position='right']) {
    margin-right: calc(0.625rem * 1);
    margin-right: var(--mantine-spacing-xs);
}

[dir="ltr"] .m_a74036a:where([data-position='right']) {
    margin-left: calc(0.625rem * 1);
}

[dir="rtl"] .m_a74036a:where([data-position='right']) {
    margin-right: calc(0.625rem * 1);
}

.m_a25b86ee {
  position: absolute;
  left: 50%;
  top: 50%;
}

.m_80d6d844 {
  --button-border-width: calc(0.0625rem * var(--mantine-scale));
  display: flex;
}

.m_80d6d844 :where(.m_77c9d27d):focus {
      position: relative;
      z-index: 1;
    }

.m_80d6d844[data-orientation='horizontal'] {
    flex-direction: row;
  }

[dir="ltr"] .m_80d6d844[data-orientation='horizontal'] .m_77c9d27d:not(:only-child):first-child,[dir="ltr"]  .m_80d6d844[data-orientation='horizontal'] .m_70be2a01:not(:only-child):first-child {
        border-bottom-right-radius: 0;
}

[dir="rtl"] .m_80d6d844[data-orientation='horizontal'] .m_77c9d27d:not(:only-child):first-child,[dir="rtl"]  .m_80d6d844[data-orientation='horizontal'] .m_70be2a01:not(:only-child):first-child {
        border-bottom-left-radius: 0;
}

[dir="ltr"] .m_80d6d844[data-orientation='horizontal'] .m_77c9d27d:not(:only-child):first-child,[dir="ltr"]  .m_80d6d844[data-orientation='horizontal'] .m_70be2a01:not(:only-child):first-child {
        border-top-right-radius: 0;
}

[dir="rtl"] .m_80d6d844[data-orientation='horizontal'] .m_77c9d27d:not(:only-child):first-child,[dir="rtl"]  .m_80d6d844[data-orientation='horizontal'] .m_70be2a01:not(:only-child):first-child {
        border-top-left-radius: 0;
}

[dir="ltr"] .m_80d6d844[data-orientation='horizontal'] .m_77c9d27d:not(:only-child):first-child,[dir="ltr"]  .m_80d6d844[data-orientation='horizontal'] .m_70be2a01:not(:only-child):first-child {
        border-right-width: calc(var(--button-border-width) / 2);
}

[dir="rtl"] .m_80d6d844[data-orientation='horizontal'] .m_77c9d27d:not(:only-child):first-child,[dir="rtl"]  .m_80d6d844[data-orientation='horizontal'] .m_70be2a01:not(:only-child):first-child {
        border-left-width: calc(var(--button-border-width) / 2);
}

[dir="ltr"] .m_80d6d844[data-orientation='horizontal'] .m_77c9d27d:not(:only-child):last-child,[dir="ltr"]  .m_80d6d844[data-orientation='horizontal'] .m_70be2a01:not(:only-child):last-child {
        border-bottom-left-radius: 0;
}

[dir="rtl"] .m_80d6d844[data-orientation='horizontal'] .m_77c9d27d:not(:only-child):last-child,[dir="rtl"]  .m_80d6d844[data-orientation='horizontal'] .m_70be2a01:not(:only-child):last-child {
        border-bottom-right-radius: 0;
}

[dir="ltr"] .m_80d6d844[data-orientation='horizontal'] .m_77c9d27d:not(:only-child):last-child,[dir="ltr"]  .m_80d6d844[data-orientation='horizontal'] .m_70be2a01:not(:only-child):last-child {
        border-top-left-radius: 0;
}

[dir="rtl"] .m_80d6d844[data-orientation='horizontal'] .m_77c9d27d:not(:only-child):last-child,[dir="rtl"]  .m_80d6d844[data-orientation='horizontal'] .m_70be2a01:not(:only-child):last-child {
        border-top-right-radius: 0;
}

[dir="ltr"] .m_80d6d844[data-orientation='horizontal'] .m_77c9d27d:not(:only-child):last-child,[dir="ltr"]  .m_80d6d844[data-orientation='horizontal'] .m_70be2a01:not(:only-child):last-child {
        border-left-width: calc(var(--button-border-width) / 2);
}

[dir="rtl"] .m_80d6d844[data-orientation='horizontal'] .m_77c9d27d:not(:only-child):last-child,[dir="rtl"]  .m_80d6d844[data-orientation='horizontal'] .m_70be2a01:not(:only-child):last-child {
        border-right-width: calc(var(--button-border-width) / 2);
}

.m_80d6d844[data-orientation='horizontal'] .m_77c9d27d:not(:only-child):not(:first-child):not(:last-child), .m_80d6d844[data-orientation='horizontal'] .m_70be2a01:not(:only-child):not(:first-child):not(:last-child) {
        border-radius: 0;
        border-left-width: calc(var(--button-border-width) / 2);
        border-right-width: calc(var(--button-border-width) / 2);
      }

.m_80d6d844[data-orientation='vertical'] {
    flex-direction: column;
  }

[dir="ltr"] .m_80d6d844[data-orientation='vertical'] .m_77c9d27d:not(:only-child):first-child,[dir="ltr"]  .m_80d6d844[data-orientation='vertical'] .m_70be2a01:not(:only-child):first-child {
        border-bottom-left-radius: 0;
}

[dir="rtl"] .m_80d6d844[data-orientation='vertical'] .m_77c9d27d:not(:only-child):first-child,[dir="rtl"]  .m_80d6d844[data-orientation='vertical'] .m_70be2a01:not(:only-child):first-child {
        border-bottom-right-radius: 0;
}

[dir="ltr"] .m_80d6d844[data-orientation='vertical'] .m_77c9d27d:not(:only-child):first-child,[dir="ltr"]  .m_80d6d844[data-orientation='vertical'] .m_70be2a01:not(:only-child):first-child {
        border-bottom-right-radius: 0;
}

[dir="rtl"] .m_80d6d844[data-orientation='vertical'] .m_77c9d27d:not(:only-child):first-child,[dir="rtl"]  .m_80d6d844[data-orientation='vertical'] .m_70be2a01:not(:only-child):first-child {
        border-bottom-left-radius: 0;
}

.m_80d6d844[data-orientation='vertical'] .m_77c9d27d:not(:only-child):first-child, .m_80d6d844[data-orientation='vertical'] .m_70be2a01:not(:only-child):first-child {
        border-bottom-width: calc(var(--button-border-width) / 2);
      }

[dir="ltr"] .m_80d6d844[data-orientation='vertical'] .m_77c9d27d:not(:only-child):last-child,[dir="ltr"]  .m_80d6d844[data-orientation='vertical'] .m_70be2a01:not(:only-child):last-child {
        border-top-left-radius: 0;
}

[dir="rtl"] .m_80d6d844[data-orientation='vertical'] .m_77c9d27d:not(:only-child):last-child,[dir="rtl"]  .m_80d6d844[data-orientation='vertical'] .m_70be2a01:not(:only-child):last-child {
        border-top-right-radius: 0;
}

[dir="ltr"] .m_80d6d844[data-orientation='vertical'] .m_77c9d27d:not(:only-child):last-child,[dir="ltr"]  .m_80d6d844[data-orientation='vertical'] .m_70be2a01:not(:only-child):last-child {
        border-top-right-radius: 0;
}

[dir="rtl"] .m_80d6d844[data-orientation='vertical'] .m_77c9d27d:not(:only-child):last-child,[dir="rtl"]  .m_80d6d844[data-orientation='vertical'] .m_70be2a01:not(:only-child):last-child {
        border-top-left-radius: 0;
}

.m_80d6d844[data-orientation='vertical'] .m_77c9d27d:not(:only-child):last-child, .m_80d6d844[data-orientation='vertical'] .m_70be2a01:not(:only-child):last-child {
        border-top-width: calc(var(--button-border-width) / 2);
      }

.m_80d6d844[data-orientation='vertical'] .m_77c9d27d:not(:only-child):not(:first-child):not(:last-child), .m_80d6d844[data-orientation='vertical'] .m_70be2a01:not(:only-child):not(:first-child):not(:last-child) {
        border-radius: 0;
        border-bottom-width: calc(var(--button-border-width) / 2);
        border-top-width: calc(var(--button-border-width) / 2);
      }

.m_70be2a01 {
  --section-height-xs: calc(1.875rem * var(--mantine-scale));
  --section-height-sm: calc(2.25rem * var(--mantine-scale));
  --section-height-md: calc(2.625rem * var(--mantine-scale));
  --section-height-lg: calc(3.125rem * var(--mantine-scale));
  --section-height-xl: calc(3.75rem * var(--mantine-scale));

  --section-height-compact-xs: calc(1.375rem * var(--mantine-scale));
  --section-height-compact-sm: calc(1.625rem * var(--mantine-scale));
  --section-height-compact-md: calc(1.875rem * var(--mantine-scale));
  --section-height-compact-lg: calc(2.125rem * var(--mantine-scale));
  --section-height-compact-xl: calc(2.5rem * var(--mantine-scale));

  --section-padding-x-xs: calc(0.875rem * var(--mantine-scale));
  --section-padding-x-sm: calc(1.125rem * var(--mantine-scale));
  --section-padding-x-md: calc(1.375rem * var(--mantine-scale));
  --section-padding-x-lg: calc(1.625rem * var(--mantine-scale));
  --section-padding-x-xl: calc(2rem * var(--mantine-scale));

  --section-padding-x-compact-xs: calc(0.4375rem * var(--mantine-scale));
  --section-padding-x-compact-sm: calc(0.5rem * var(--mantine-scale));
  --section-padding-x-compact-md: calc(0.625rem * var(--mantine-scale));
  --section-padding-x-compact-lg: calc(0.75rem * var(--mantine-scale));
  --section-padding-x-compact-xl: calc(0.875rem * var(--mantine-scale));

  --section-height: var(--section-height-sm);
  --section-padding-x: var(--section-padding-x-sm);
  --section-color: var(--mantine-color-white);

  font-weight: 600;
  width: auto;
  border-radius: calc(0.25rem * 1);
  border-radius: var(--section-radius, var(--mantine-radius-default));
  font-size: calc(0.875rem * 1);
  font-size: var(--section-fz, var(--mantine-font-size-sm));
  background: var(--mantine-color-blue-filled);
  background: var(--section-bg, var(--mantine-primary-color-filled));
  border: calc(0.0625rem * 1) solid transparent;
  border: var(--section-bd, calc(0.0625rem * var(--mantine-scale)) solid transparent);
  color: #fff;
  color: var(--section-color, var(--mantine-color-white));
  height: var(--section-height-sm);
  height: var(--section-height, var(--section-height-sm));
  padding-left: var(--section-padding-x-sm);
  padding-right: var(--section-padding-x-sm);
  padding-left: var(--section-padding-x, var(--section-padding-x-sm));
  padding-right: var(--section-padding-x, var(--section-padding-x-sm));
  vertical-align: middle;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.m_e615b15f {
  --card-padding: var(--mantine-spacing-md);

  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: var(--card-padding);
  color: var(--mantine-color-text);
}

  :where([data-mantine-color-scheme='light']) .m_e615b15f {
    background-color: #fff;
    background-color: var(--mantine-color-white);
}

  :where([data-mantine-color-scheme='dark']) .m_e615b15f {
    background-color: #2e2e2e;
    background-color: var(--mantine-color-dark-6);
}

.m_599a2148 {
  display: block;
  margin-left: calc(var(--card-padding) * -1);
  margin-right: calc(var(--card-padding) * -1);
}

.m_599a2148:where(:first-child) {
    border-top: none !important;
  }

.m_599a2148:where(:first-child) {
    margin-top: calc(var(--card-padding) * -1);
  }

.m_599a2148:where(:last-child) {
    border-bottom: none !important;
  }

.m_599a2148:where(:last-child) {
    margin-bottom: calc(var(--card-padding) * -1);
  }

.m_599a2148:where([data-inherit-padding]) {
    padding-left: var(--card-padding);
    padding-right: var(--card-padding);
  }

.m_599a2148:where([data-with-border]) {
    border-top: calc(0.0625rem * 1) solid;
    border-top: calc(0.0625rem * var(--mantine-scale)) solid;
    border-bottom: calc(0.0625rem * 1) solid;
    border-bottom: calc(0.0625rem * var(--mantine-scale)) solid;
  }

:where([data-mantine-color-scheme='light']) .m_599a2148 {
    border-color: #dee2e6;
    border-color: var(--mantine-color-gray-3);
}

:where([data-mantine-color-scheme='dark']) .m_599a2148 {
    border-color: #424242;
    border-color: var(--mantine-color-dark-4);
}

.m_599a2148 + .m_599a2148 {
    border-top: none !important;
  }

.m_4451eb3a {
  display: flex;
  align-items: center;
  justify-content: center;
}

  .m_4451eb3a:where([data-inline]) {
    display: inline-flex;
  }

.m_f59ffda3 {
  --chip-size-xs: calc(1.4375rem * var(--mantine-scale));
  --chip-size-sm: calc(1.75rem * var(--mantine-scale));
  --chip-size-md: calc(2rem * var(--mantine-scale));
  --chip-size-lg: calc(2.25rem * var(--mantine-scale));
  --chip-size-xl: calc(2.5rem * var(--mantine-scale));

  --chip-icon-size-xs: calc(0.625rem * var(--mantine-scale));
  --chip-icon-size-sm: calc(0.75rem * var(--mantine-scale));
  --chip-icon-size-md: calc(0.875rem * var(--mantine-scale));
  --chip-icon-size-lg: calc(1rem * var(--mantine-scale));
  --chip-icon-size-xl: calc(1.125rem * var(--mantine-scale));

  --chip-padding-xs: calc(1rem * var(--mantine-scale));
  --chip-padding-sm: calc(1.25rem * var(--mantine-scale));
  --chip-padding-md: calc(1.5rem * var(--mantine-scale));
  --chip-padding-lg: calc(1.75rem * var(--mantine-scale));
  --chip-padding-xl: calc(2rem * var(--mantine-scale));

  --chip-checked-padding-xs: calc(0.46875rem * var(--mantine-scale));
  --chip-checked-padding-sm: calc(0.625rem * var(--mantine-scale));
  --chip-checked-padding-md: calc(0.73125rem * var(--mantine-scale));
  --chip-checked-padding-lg: calc(0.84375rem * var(--mantine-scale));
  --chip-checked-padding-xl: calc(0.98125rem * var(--mantine-scale));

  --chip-spacing-xs: calc(0.625rem * var(--mantine-scale));
  --chip-spacing-sm: calc(0.75rem * var(--mantine-scale));
  --chip-spacing-md: calc(1rem * var(--mantine-scale));
  --chip-spacing-lg: calc(1.25rem * var(--mantine-scale));
  --chip-spacing-xl: calc(1.375rem * var(--mantine-scale));

  --chip-size: var(--chip-size-sm);
  --chip-icon-size: var(--chip-icon-size-sm);
  --chip-padding: var(--chip-padding-sm);
  --chip-spacing: var(--chip-spacing-sm);
  --chip-checked-padding: var(--chip-checked-padding-sm);
  --chip-bg: var(--mantine-primary-color-filled);
  --chip-hover: var(--mantine-primary-color-filled-hover);
  --chip-color: var(--mantine-color-white);
  --chip-bd: calc(0.0625rem * var(--mantine-scale)) solid transparent;
}

.m_be049a53 {
  display: inline-flex;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-radius: 1000rem;
  border-radius: var(--chip-radius, 1000rem);
  height: var(--chip-size);
  font-size: calc(0.875rem * 1);
  font-size: var(--chip-fz, var(--mantine-font-size-sm));
  line-height: calc(var(--chip-size) - (0.125rem * 1));
  line-height: calc(var(--chip-size) - (0.125rem * var(--mantine-scale)));
  line-height: calc(var(--chip-size) - (0.125rem * 1));
  line-height: calc(var(--chip-size) - calc(0.125rem * 1));
  line-height: calc(var(--chip-size) - calc(0.125rem * var(--mantine-scale)));
  padding-left: var(--chip-padding);
  padding-right: var(--chip-padding);
  cursor: pointer;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  border: calc(0.0625rem * 1) solid transparent;
  border: calc(0.0625rem * var(--mantine-scale)) solid transparent;
  color: var(--mantine-color-text);
}

.m_be049a53:where([data-checked]) {
    padding: var(--chip-checked-padding);
  }

.m_be049a53:where([data-disabled]) {
    cursor: not-allowed;
  }

:where([data-mantine-color-scheme='light']) .m_be049a53:where([data-disabled]) {
      background-color: #e9ecef;
      background-color: var(--mantine-color-gray-2);
      color: #adb5bd;
      color: var(--mantine-color-gray-5);
}

:where([data-mantine-color-scheme='dark']) .m_be049a53:where([data-disabled]) {
      background-color: #2e2e2e;
      background-color: var(--mantine-color-dark-6);
      color: #696969;
      color: var(--mantine-color-dark-3);
}

:where([data-mantine-color-scheme='light']) .m_3904c1af:not([data-disabled]) {
    background-color: #fff;
    background-color: var(--mantine-color-white);
    border: 1px solid #dee2e6;
    border: 1px solid var(--mantine-color-gray-3);
}

:where([data-mantine-color-scheme='dark']) .m_3904c1af:not([data-disabled]) {
    background-color: #2e2e2e;
    background-color: var(--mantine-color-dark-6);
    border: 1px solid #424242;
    border: 1px solid var(--mantine-color-dark-4);
}

@media (hover: hover) {
    :where([data-mantine-color-scheme='light']) .m_3904c1af:not([data-disabled]):hover {
      background-color: #f8f9fa;
      background-color: var(--mantine-color-gray-0);
  }

    :where([data-mantine-color-scheme='dark']) .m_3904c1af:not([data-disabled]):hover {
      background-color: #3b3b3b;
      background-color: var(--mantine-color-dark-5);
  }
}

@media (hover: none) {
    :where([data-mantine-color-scheme='light']) .m_3904c1af:not([data-disabled]):active {
      background-color: #f8f9fa;
      background-color: var(--mantine-color-gray-0);
  }

    :where([data-mantine-color-scheme='dark']) .m_3904c1af:not([data-disabled]):active {
      background-color: #3b3b3b;
      background-color: var(--mantine-color-dark-5);
  }
}

.m_3904c1af:not([data-disabled]):where([data-checked]) {
    --chip-icon-color: var(--chip-color);
    border: var(--chip-bd);
  }

@media (hover: hover) {

  .m_3904c1af:not([data-disabled]):where([data-checked]):hover {
      background-color: var(--chip-hover);
  }
}

@media (hover: none) {

  .m_3904c1af:not([data-disabled]):where([data-checked]):active {
      background-color: var(--chip-hover);
  }
}

.m_fa109255:not([data-disabled]),
.m_f7e165c3:not([data-disabled]) {
  border: calc(0.0625rem * 1) solid transparent;
  border: calc(0.0625rem * var(--mantine-scale)) solid transparent;
  color: var(--mantine-color-text);
}

:where([data-mantine-color-scheme='light']) .m_fa109255:not([data-disabled]), :where([data-mantine-color-scheme='light']) .m_f7e165c3:not([data-disabled]) {
    background-color: #f1f3f5;
    background-color: var(--mantine-color-gray-1);
}

:where([data-mantine-color-scheme='dark']) .m_fa109255:not([data-disabled]), :where([data-mantine-color-scheme='dark']) .m_f7e165c3:not([data-disabled]) {
    background-color: #3b3b3b;
    background-color: var(--mantine-color-dark-5);
}

@media (hover: hover) {
    :where([data-mantine-color-scheme='light']) .m_fa109255:not([data-disabled]):hover, :where([data-mantine-color-scheme='light']) .m_f7e165c3:not([data-disabled]):hover {
      background-color: #e9ecef;
      background-color: var(--mantine-color-gray-2);
  }

    :where([data-mantine-color-scheme='dark']) .m_fa109255:not([data-disabled]):hover, :where([data-mantine-color-scheme='dark']) .m_f7e165c3:not([data-disabled]):hover {
      background-color: #424242;
      background-color: var(--mantine-color-dark-4);
  }
}

@media (hover: none) {
    :where([data-mantine-color-scheme='light']) .m_fa109255:not([data-disabled]):active, :where([data-mantine-color-scheme='light']) .m_f7e165c3:not([data-disabled]):active {
      background-color: #e9ecef;
      background-color: var(--mantine-color-gray-2);
  }

    :where([data-mantine-color-scheme='dark']) .m_fa109255:not([data-disabled]):active, :where([data-mantine-color-scheme='dark']) .m_f7e165c3:not([data-disabled]):active {
      background-color: #424242;
      background-color: var(--mantine-color-dark-4);
  }
}

.m_fa109255:not([data-disabled]):where([data-checked]), .m_f7e165c3:not([data-disabled]):where([data-checked]) {
    --chip-icon-color: var(--chip-color);
    color: var(--chip-color);
    background-color: var(--chip-bg);
  }

@media (hover: hover) {

  .m_fa109255:not([data-disabled]):where([data-checked]):hover, .m_f7e165c3:not([data-disabled]):where([data-checked]):hover {
      background-color: var(--chip-hover);
  }
}

@media (hover: none) {

  .m_fa109255:not([data-disabled]):where([data-checked]):active, .m_f7e165c3:not([data-disabled]):where([data-checked]):active {
      background-color: var(--chip-hover);
  }
}

.m_9ac86df9 {
  width: calc(var(--chip-icon-size) + (var(--chip-spacing) / 1.5));
  max-width: calc(var(--chip-icon-size) + (var(--chip-spacing) / 1.5));
  height: var(--chip-icon-size);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.m_d6d72580 {
  width: var(--chip-icon-size);
  height: var(--chip-icon-size);
  display: block;
  color: inherit;
  color: var(--chip-icon-color, inherit);
}

.m_bde07329 {
  width: 0;
  height: 0;
  padding: 0;
  opacity: 0;
  margin: 0;
}

.m_bde07329.focus-visible + .m_be049a53 {
    outline: 2px solid var(--mantine-color-blue-filled);
    outline: 2px solid var(--mantine-primary-color-filled);
    outline-offset: calc(0.125rem * 1);
    outline-offset: calc(0.125rem * var(--mantine-scale));
  }

.m_bde07329.focus-visible + .m_be049a53 {
    outline: 2px solid var(--mantine-color-blue-filled);
    outline: 2px solid var(--mantine-primary-color-filled);
    outline-offset: calc(0.125rem * 1);
    outline-offset: calc(0.125rem * var(--mantine-scale));
  }

.m_bde07329:focus-visible + .m_be049a53 {
    outline: 2px solid var(--mantine-color-blue-filled);
    outline: 2px solid var(--mantine-primary-color-filled);
    outline-offset: calc(0.125rem * 1);
    outline-offset: calc(0.125rem * var(--mantine-scale));
  }

.m_b183c0a2 {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    Liberation Mono, Courier New, monospace;
  font-family: var(--mantine-font-family-monospace);
  line-height: 1.55;
  line-height: var(--mantine-line-height);
  padding: 2px calc((0.625rem * 1) / 2);
  padding: 2px calc(calc(0.625rem * 1) / 2);
  padding: 2px calc(var(--mantine-spacing-xs) / 2);
  border-radius: calc(0.25rem * 1);
  border-radius: var(--mantine-radius-sm);
  font-size: calc(0.75rem * 1);
  font-size: var(--mantine-font-size-xs);
  margin: 0;
  overflow: auto;
}

  :where([data-mantine-color-scheme='light']) .m_b183c0a2 {
    background-color: #f1f3f5;
    background-color: var(--code-bg, var(--mantine-color-gray-1));
    color: #000;
    color: var(--mantine-color-black);
}

  :where([data-mantine-color-scheme='dark']) .m_b183c0a2 {
    background-color: #3b3b3b;
    background-color: var(--code-bg, var(--mantine-color-dark-5));
    color: #fff;
    color: var(--mantine-color-white);
}

  .m_b183c0a2[data-block] {
    padding: calc(0.625rem * 1);
    padding: var(--mantine-spacing-xs);
  }

.m_de3d2490 {
  --cs-size: calc(1.75rem * var(--mantine-scale));
  --cs-radius: calc(62.5rem * var(--mantine-scale));

  -webkit-tap-highlight-color: transparent;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  line-height: 1;
  position: relative;
  width: var(--cs-size);
  height: var(--cs-size);
  min-width: var(--cs-size);
  min-height: var(--cs-size);
  border-radius: var(--cs-radius);
  color: inherit;
  text-decoration: none;
}

  [data-mantine-color-scheme='light'] .m_de3d2490 {
    --alpha-overlay-color: var(--mantine-color-gray-3);
    --alpha-overlay-bg: var(--mantine-color-white);
}

  [data-mantine-color-scheme='dark'] .m_de3d2490 {
    --alpha-overlay-color: var(--mantine-color-dark-4);
    --alpha-overlay-bg: var(--mantine-color-dark-7);
}

.m_862f3d1b {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: var(--cs-radius);
}

.m_98ae7f22 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: var(--cs-radius);
  z-index: 1;
  box-shadow:
    rgba(0, 0, 0, 0.1) 0 0 0 calc(0.0625rem * 1) inset,
    rgb(0, 0, 0, 0.15) 0 0 calc(0.25rem * 1) inset;
  box-shadow:
    rgba(0, 0, 0, 0.1) 0 0 0 calc(0.0625rem * var(--mantine-scale)) inset,
    rgb(0, 0, 0, 0.15) 0 0 calc(0.25rem * var(--mantine-scale)) inset;
}

.m_95709ac0 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: var(--cs-radius);
  background-size: calc(0.5rem * 1) calc(0.5rem * 1);
  background-size: calc(0.5rem * var(--mantine-scale)) calc(0.5rem * var(--mantine-scale));
  background-position:
    0 0,
    0 calc(0.25rem * 1),
    calc(0.25rem * 1) calc(-0.25rem * 1),
    calc(-0.25rem * 1) 0;
  background-position:
    0 0,
    0 calc(0.25rem * var(--mantine-scale)),
    calc(0.25rem * var(--mantine-scale)) calc(-0.25rem * var(--mantine-scale)),
    calc(-0.25rem * var(--mantine-scale)) 0;
  background-image: linear-gradient(45deg, var(--alpha-overlay-color) 25%, transparent 25%),
    linear-gradient(-45deg, var(--alpha-overlay-color) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--alpha-overlay-color) 75%),
    linear-gradient(-45deg, var(--alpha-overlay-bg) 75%, var(--alpha-overlay-color) 75%);
}

.m_93e74e3 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: var(--cs-radius);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.m_fee9c77 {
  --cp-width-xs: calc(11.25rem * var(--mantine-scale));
  --cp-width-sm: calc(12.5rem * var(--mantine-scale));
  --cp-width-md: calc(15rem * var(--mantine-scale));
  --cp-width-lg: calc(17.5rem * var(--mantine-scale));
  --cp-width-xl: calc(20rem * var(--mantine-scale));

  --cp-preview-size-xs: calc(1.625rem * var(--mantine-scale));
  --cp-preview-size-sm: calc(2.125rem * var(--mantine-scale));
  --cp-preview-size-md: calc(2.625rem * var(--mantine-scale));
  --cp-preview-size-lg: calc(3.125rem * var(--mantine-scale));
  --cp-preview-size-xl: calc(3.375rem * var(--mantine-scale));

  --cp-thumb-size-xs: calc(0.5rem * var(--mantine-scale));
  --cp-thumb-size-sm: calc(0.75rem * var(--mantine-scale));
  --cp-thumb-size-md: calc(1rem * var(--mantine-scale));
  --cp-thumb-size-lg: calc(1.25rem * var(--mantine-scale));
  --cp-thumb-size-xl: calc(1.375rem * var(--mantine-scale));

  --cp-saturation-height-xs: calc(6.25rem * var(--mantine-scale));
  --cp-saturation-height-sm: calc(6.875rem * var(--mantine-scale));
  --cp-saturation-height-md: calc(7.5rem * var(--mantine-scale));
  --cp-saturation-height-lg: calc(8.75rem * var(--mantine-scale));
  --cp-saturation-height-xl: calc(10rem * var(--mantine-scale));

  --cp-preview-size: var(--cp-preview-size-sm);
  --cp-thumb-size: var(--cp-thumb-size-sm);
  --cp-saturation-height: var(--cp-saturation-height-sm);
  --cp-width: var(--cp-width-sm);
  --cp-body-spacing: var(--mantine-spacing-sm);

  width: var(--cp-width);
  padding: calc(0.0625rem * 1);
  padding: calc(0.0625rem * var(--mantine-scale));
}

  .m_fee9c77:where([data-full-width]) {
    width: 100%;
  }

.m_9dddfbac {
  width: var(--cp-preview-size);
  height: var(--cp-preview-size);
}

.m_bffecc3e {
  display: flex;
  padding-top: calc(var(--cp-body-spacing) / 2);
}

.m_3283bb96 {
  flex: 1;
}

[dir="ltr"] .m_3283bb96:not(:only-child) {
    margin-right: calc(0.625rem * 1);
    margin-right: var(--mantine-spacing-xs);
}

[dir="rtl"] .m_3283bb96:not(:only-child) {
    margin-left: calc(0.625rem * 1);
    margin-left: var(--mantine-spacing-xs);
}

[dir="ltr"] .m_3283bb96:not(:only-child) {
    margin-right: calc(0.625rem * 1);
}

[dir="rtl"] .m_3283bb96:not(:only-child) {
    margin-left: calc(0.625rem * 1);
}

.m_40d572ba {
  overflow: hidden;
  position: absolute;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.6);
  border: 2px solid #fff;
  border: 2px solid var(--mantine-color-white);
  width: var(--cp-thumb-size);
  height: var(--cp-thumb-size);
  border-radius: var(--cp-thumb-size);
  left: calc(var(--thumb-x-offset) - var(--cp-thumb-size) / 2);
  top: calc(var(--thumb-y-offset) - var(--cp-thumb-size) / 2);
}

.m_d8ee6fd8 {
  height: auto !important;
  height: initial !important;
  width: auto !important;
  width: initial !important;
  min-width: 0 !important;
  min-height: 0 !important;
}

.m_d8ee6fd8 {
  margin: calc(0.125rem * 1);
  margin: calc(0.125rem * var(--mantine-scale));
  cursor: pointer;
  padding-bottom: calc(var(--cp-swatch-size) - (0.25rem * 1));
  padding-bottom: calc(var(--cp-swatch-size) - (0.25rem * var(--mantine-scale)));
  padding-bottom: calc(var(--cp-swatch-size) - (0.25rem * 1));
  padding-bottom: calc(var(--cp-swatch-size) - calc(0.25rem * 1));
  padding-bottom: calc(var(--cp-swatch-size) - calc(0.25rem * var(--mantine-scale)));
  flex: 0 0 calc(var(--cp-swatch-size) - (0.25rem * 1));
  flex: 0 0 calc(var(--cp-swatch-size) - (0.25rem * var(--mantine-scale)));
  flex: 0 0 calc(var(--cp-swatch-size) - (0.25rem * 1));
  flex: 0 0 calc(var(--cp-swatch-size) - calc(0.25rem * 1));
  flex: 0 0 calc(var(--cp-swatch-size) - calc(0.25rem * var(--mantine-scale)));
}

.m_5711e686 {
  margin-top: calc(0.3125rem * 1);
  margin-top: calc(0.3125rem * var(--mantine-scale));
  margin-left: calc(-0.125rem * 1);
  margin-right: calc(-0.125rem * 1);
  margin-left: calc(-0.125rem * var(--mantine-scale));
  margin-right: calc(-0.125rem * var(--mantine-scale));
  display: flex;
  flex-wrap: wrap;
}

.m_202a296e {
  --cp-thumb-size-xs: calc(0.5rem * var(--mantine-scale));
  --cp-thumb-size-sm: calc(0.75rem * var(--mantine-scale));
  --cp-thumb-size-md: calc(1rem * var(--mantine-scale));
  --cp-thumb-size-lg: calc(1.25rem * var(--mantine-scale));
  --cp-thumb-size-xl: calc(1.375rem * var(--mantine-scale));

  -webkit-tap-highlight-color: transparent;
  position: relative;
  height: var(--cp-saturation-height);
  border-radius: calc(0.25rem * 1);
  border-radius: var(--mantine-radius-sm);
  margin: calc(var(--cp-thumb-size) / 2);
}

.m_202a296e:where([data-focus-ring='auto']):focus.focus-visible .m_40d572ba {
        outline: 2px solid var(--mantine-color-blue-filled);
      }

.m_202a296e:where([data-focus-ring='auto']):focus:focus-visible .m_40d572ba {
        outline: 2px solid var(--mantine-color-blue-filled);
      }

.m_202a296e:where([data-focus-ring='always']):focus .m_40d572ba {
        outline: 2px solid var(--mantine-color-blue-filled);
      }

.m_11b3db02 {
  position: absolute;
  border-radius: calc(0.25rem * 1);
  border-radius: var(--mantine-radius-sm);
  top: calc(var(--cp-thumb-size) * -1 / 2 - (0.0625rem * 1));
  right: calc(var(--cp-thumb-size) * -1 / 2 - (0.0625rem * 1));
  bottom: calc(var(--cp-thumb-size) * -1 / 2 - (0.0625rem * 1));
  left: calc(var(--cp-thumb-size) * -1 / 2 - (0.0625rem * 1));
  top: calc(var(--cp-thumb-size) * -1 / 2 - (0.0625rem * var(--mantine-scale)));
  right: calc(var(--cp-thumb-size) * -1 / 2 - (0.0625rem * var(--mantine-scale)));
  bottom: calc(var(--cp-thumb-size) * -1 / 2 - (0.0625rem * var(--mantine-scale)));
  left: calc(var(--cp-thumb-size) * -1 / 2 - (0.0625rem * var(--mantine-scale)));
  top: calc(var(--cp-thumb-size) * -1 / 2 - (0.0625rem * 1));
  right: calc(var(--cp-thumb-size) * -1 / 2 - (0.0625rem * 1));
  bottom: calc(var(--cp-thumb-size) * -1 / 2 - (0.0625rem * 1));
  left: calc(var(--cp-thumb-size) * -1 / 2 - (0.0625rem * 1));
  top: calc(var(--cp-thumb-size) * -1 / 2 - (0.0625rem * 1));
  top: calc(var(--cp-thumb-size) * -1 / 2 - calc(0.0625rem * 1));
  right: calc(var(--cp-thumb-size) * -1 / 2 - (0.0625rem * 1));
  right: calc(var(--cp-thumb-size) * -1 / 2 - calc(0.0625rem * 1));
  bottom: calc(var(--cp-thumb-size) * -1 / 2 - (0.0625rem * 1));
  bottom: calc(var(--cp-thumb-size) * -1 / 2 - calc(0.0625rem * 1));
  left: calc(var(--cp-thumb-size) * -1 / 2 - (0.0625rem * 1));
  left: calc(var(--cp-thumb-size) * -1 / 2 - calc(0.0625rem * 1));
  top: calc(var(--cp-thumb-size) * -1 / 2 - (0.0625rem * var(--mantine-scale)));
  top: calc(var(--cp-thumb-size) * -1 / 2 - calc(0.0625rem * var(--mantine-scale)));
  right: calc(var(--cp-thumb-size) * -1 / 2 - (0.0625rem * var(--mantine-scale)));
  right: calc(var(--cp-thumb-size) * -1 / 2 - calc(0.0625rem * var(--mantine-scale)));
  bottom: calc(var(--cp-thumb-size) * -1 / 2 - (0.0625rem * var(--mantine-scale)));
  bottom: calc(var(--cp-thumb-size) * -1 / 2 - calc(0.0625rem * var(--mantine-scale)));
  left: calc(var(--cp-thumb-size) * -1 / 2 - (0.0625rem * var(--mantine-scale)));
  left: calc(var(--cp-thumb-size) * -1 / 2 - calc(0.0625rem * var(--mantine-scale)));
}

.m_d856d47d {
  --cp-thumb-size-xs: calc(0.5rem * var(--mantine-scale));
  --cp-thumb-size-sm: calc(0.75rem * var(--mantine-scale));
  --cp-thumb-size-md: calc(1rem * var(--mantine-scale));
  --cp-thumb-size-lg: calc(1.25rem * var(--mantine-scale));
  --cp-thumb-size-xl: calc(1.375rem * var(--mantine-scale));
  --cp-thumb-size: var(--cp-thumb-size, calc(0.75rem * var(--mantine-scale)));

  position: relative;
  height: calc(var(--cp-thumb-size) + (0.125rem * 1));
  height: calc(var(--cp-thumb-size) + (0.125rem * var(--mantine-scale)));
  height: calc(var(--cp-thumb-size) + (0.125rem * 1));
  height: calc(var(--cp-thumb-size) + calc(0.125rem * 1));
  height: calc(var(--cp-thumb-size) + calc(0.125rem * var(--mantine-scale)));
  margin-left: calc(var(--cp-thumb-size) / 2);
  margin-right: calc(var(--cp-thumb-size) / 2);
  outline: none;
}

.m_d856d47d + .m_d856d47d {
    margin-top: calc(0.375rem * 1);
    margin-top: calc(0.375rem * var(--mantine-scale));
  }

.m_d856d47d:where([data-focus-ring='auto']):focus.focus-visible .m_40d572ba {
        outline: 2px solid var(--mantine-color-blue-filled);
      }

.m_d856d47d:where([data-focus-ring='auto']):focus:focus-visible .m_40d572ba {
        outline: 2px solid var(--mantine-color-blue-filled);
      }

.m_d856d47d:where([data-focus-ring='always']):focus .m_40d572ba {
        outline: 2px solid var(--mantine-color-blue-filled);
      }

:where([data-mantine-color-scheme='light']) .m_d856d47d {
    --slider-checkers: var(--mantine-color-gray-3);
}

:where([data-mantine-color-scheme='dark']) .m_d856d47d {
    --slider-checkers: var(--mantine-color-dark-4);
}

.m_8f327113 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--cp-thumb-size) * -1 / 2 - (0.0625rem * 1));
  right: calc(var(--cp-thumb-size) * -1 / 2 - (0.0625rem * 1));
  left: calc(var(--cp-thumb-size) * -1 / 2 - (0.0625rem * var(--mantine-scale)));
  right: calc(var(--cp-thumb-size) * -1 / 2 - (0.0625rem * var(--mantine-scale)));
  left: calc(var(--cp-thumb-size) * -1 / 2 - (0.0625rem * 1));
  right: calc(var(--cp-thumb-size) * -1 / 2 - (0.0625rem * 1));
  left: calc(var(--cp-thumb-size) * -1 / 2 - (0.0625rem * 1));
  left: calc(var(--cp-thumb-size) * -1 / 2 - calc(0.0625rem * 1));
  right: calc(var(--cp-thumb-size) * -1 / 2 - (0.0625rem * 1));
  right: calc(var(--cp-thumb-size) * -1 / 2 - calc(0.0625rem * 1));
  left: calc(var(--cp-thumb-size) * -1 / 2 - (0.0625rem * var(--mantine-scale)));
  left: calc(var(--cp-thumb-size) * -1 / 2 - calc(0.0625rem * var(--mantine-scale)));
  right: calc(var(--cp-thumb-size) * -1 / 2 - (0.0625rem * var(--mantine-scale)));
  right: calc(var(--cp-thumb-size) * -1 / 2 - calc(0.0625rem * var(--mantine-scale)));
  border-radius: 10000rem;
}

.m_b077c2bc {
  --ci-eye-dropper-icon-size-xs: calc(0.875rem * var(--mantine-scale));
  --ci-eye-dropper-icon-size-sm: calc(1rem * var(--mantine-scale));
  --ci-eye-dropper-icon-size-md: calc(1.125rem * var(--mantine-scale));
  --ci-eye-dropper-icon-size-lg: calc(1.25rem * var(--mantine-scale));
  --ci-eye-dropper-icon-size-xl: calc(1.375rem * var(--mantine-scale));
  --ci-eye-dropper-icon-size: var(--ci-eye-dropper-icon-size-sm);
}

.m_c5ccdcab {
  --ci-preview-size-xs: calc(1rem * var(--mantine-scale));
  --ci-preview-size-sm: calc(1.125rem * var(--mantine-scale));
  --ci-preview-size-md: calc(1.375rem * var(--mantine-scale));
  --ci-preview-size-lg: calc(1.75rem * var(--mantine-scale));
  --ci-preview-size-xl: calc(2.25rem * var(--mantine-scale));
  --ci-preview-size: var(--ci-preview-size-sm);
}

.m_5ece2cd7 {
  padding: calc(0.5rem * 1);
  padding: calc(0.5rem * var(--mantine-scale));
}

.m_7485cace {
  --container-size-xs: calc(33.75rem * var(--mantine-scale));
  --container-size-sm: calc(45rem * var(--mantine-scale));
  --container-size-md: calc(60rem * var(--mantine-scale));
  --container-size-lg: calc(71.25rem * var(--mantine-scale));
  --container-size-xl: calc(82.5rem * var(--mantine-scale));
  --container-size: var(--container-size-md);

  max-width: var(--container-size);
  padding-left: calc(1rem * 1);
  padding-right: calc(1rem * 1);
  padding-left: var(--mantine-spacing-md);
  padding-right: var(--mantine-spacing-md);
  margin-left: auto;
  margin-right: auto;
}

  .m_7485cace:where([data-fluid]) {
    max-width: 100%;
  }

.m_e2125a27 {
  --dialog-size-xs: calc(10rem * var(--mantine-scale));
  --dialog-size-sm: calc(12.5rem * var(--mantine-scale));
  --dialog-size-md: calc(21.25rem * var(--mantine-scale));
  --dialog-size-lg: calc(25rem * var(--mantine-scale));
  --dialog-size-xl: calc(31.25rem * var(--mantine-scale));
  --dialog-size: var(--dialog-size-md);

  position: relative;
  width: var(--dialog-size);
  max-width: calc(100vw - (2rem * 1) * 2);
  max-width: calc(100vw - calc(2rem * 1) * 2);
  max-width: calc(100vw - var(--mantine-spacing-xl) * 2);
  min-height: calc(3.125rem * 1);
  min-height: calc(3.125rem * var(--mantine-scale));
}

[dir="ltr"] .m_5abab665 {
  right: calc((1rem * 1) / 2);
  right: calc(calc(1rem * 1) / 2);
  right: calc(var(--mantine-spacing-md) / 2);
}

[dir="rtl"] .m_5abab665 {
  left: calc((1rem * 1) / 2);
  left: calc(calc(1rem * 1) / 2);
  left: calc(var(--mantine-spacing-md) / 2);
}

[dir="ltr"] .m_5abab665 {
  right: calc((1rem * 1) / 2);
  right: calc(calc(1rem * 1) / 2);
}

[dir="rtl"] .m_5abab665 {
  left: calc((1rem * 1) / 2);
  left: calc(calc(1rem * 1) / 2);
}

[dir="ltr"] .m_5abab665 {
  right: calc((1rem * 1) / 2);
}

[dir="rtl"] .m_5abab665 {
  left: calc((1rem * 1) / 2);
}

.m_5abab665 {
  position: absolute;
  top: calc((1rem * 1) / 2);
  top: calc(calc(1rem * 1) / 2);
  top: calc(var(--mantine-spacing-md) / 2);
}

.m_3eebeb36 {
  --divider-size-xs: calc(0.0625rem * var(--mantine-scale));
  --divider-size-sm: calc(0.125rem * var(--mantine-scale));
  --divider-size-md: calc(0.1875rem * var(--mantine-scale));
  --divider-size-lg: calc(0.25rem * var(--mantine-scale));
  --divider-size-xl: calc(0.3125rem * var(--mantine-scale));
  --divider-size: var(--divider-size-xs);
}

  :where([data-mantine-color-scheme='light']) .m_3eebeb36 {
    --divider-color: var(--mantine-color-gray-3);
}

  :where([data-mantine-color-scheme='dark']) .m_3eebeb36 {
    --divider-color: var(--mantine-color-dark-4);
}

  .m_3eebeb36:where([data-orientation='horizontal']) {
    border-top: var(--divider-size) solid var(--divider-color);
    border-top: var(--divider-size) var(--divider-border-style, solid) var(--divider-color);
  }

  [dir="ltr"] .m_3eebeb36:where([data-orientation='vertical']) {
    border-left: var(--divider-size) solid var(--divider-color);
    border-left: var(--divider-size) var(--divider-border-style, solid) var(--divider-color);
}

  [dir="rtl"] .m_3eebeb36:where([data-orientation='vertical']) {
    border-right: var(--divider-size) solid var(--divider-color);
    border-right: var(--divider-size) var(--divider-border-style, solid) var(--divider-color);
}

  [dir="ltr"] .m_3eebeb36:where([data-orientation='vertical']) {
    border-left: var(--divider-size) solid var(--divider-color);
}

  [dir="rtl"] .m_3eebeb36:where([data-orientation='vertical']) {
    border-right: var(--divider-size) solid var(--divider-color);
}

  .m_3eebeb36:where([data-orientation='vertical']) {
    height: auto;
    align-self: stretch;
  }

  .m_3eebeb36:where([data-with-label]) {
    border: 0;
  }

.m_9e365f20 {
  display: flex;
  align-items: center;
  font-size: calc(0.75rem * 1);
  font-size: var(--mantine-font-size-xs);
  color: var(--mantine-color-dimmed);
  white-space: nowrap;
}

.m_9e365f20:where([data-position='left'])::before {
    display: none;
  }

.m_9e365f20:where([data-position='right'])::after {
    display: none;
  }

[dir="ltr"] .m_9e365f20::before {
    margin-right: calc(0.625rem * 1);
    margin-right: var(--mantine-spacing-xs);
}

[dir="rtl"] .m_9e365f20::before {
    margin-left: calc(0.625rem * 1);
    margin-left: var(--mantine-spacing-xs);
}

[dir="ltr"] .m_9e365f20::before {
    margin-right: calc(0.625rem * 1);
}

[dir="rtl"] .m_9e365f20::before {
    margin-left: calc(0.625rem * 1);
}

.m_9e365f20::before {
    content: '';
    flex: 1;
    height: calc(0.0625rem * 1);
    height: calc(0.0625rem * var(--mantine-scale));
    border-top: var(--divider-size) solid var(--divider-color);
    border-top: var(--divider-size) var(--divider-border-style, solid) var(--divider-color);
  }

[dir="ltr"] .m_9e365f20::after {
    margin-left: calc(0.625rem * 1);
    margin-left: var(--mantine-spacing-xs);
}

[dir="rtl"] .m_9e365f20::after {
    margin-right: calc(0.625rem * 1);
    margin-right: var(--mantine-spacing-xs);
}

[dir="ltr"] .m_9e365f20::after {
    margin-left: calc(0.625rem * 1);
}

[dir="rtl"] .m_9e365f20::after {
    margin-right: calc(0.625rem * 1);
}

.m_9e365f20::after {
    content: '';
    flex: 1;
    height: calc(0.0625rem * 1);
    height: calc(0.0625rem * var(--mantine-scale));
    border-top: var(--divider-size) solid var(--divider-color);
    border-top: var(--divider-size) var(--divider-border-style, solid) var(--divider-color);
  }

.m_f11b401e {
  --drawer-size-xs: calc(20rem * var(--mantine-scale));
  --drawer-size-sm: calc(23.75rem * var(--mantine-scale));
  --drawer-size-md: calc(27.5rem * var(--mantine-scale));
  --drawer-size-lg: calc(38.75rem * var(--mantine-scale));
  --drawer-size-xl: calc(48.75rem * var(--mantine-scale));
  --drawer-size: var(--drawer-size-md);
  --drawer-offset: 0rem;
}

.m_5a7c2c9 {
  z-index: 1000;
}

.m_b8a05bbd {
  flex: 0 0 var(--drawer-size);
  flex: var(--drawer-flex, 0 0 var(--drawer-size));
  height: calc(100% - var(--drawer-offset) * 2);
  height: var(--drawer-height, calc(100% - var(--drawer-offset) * 2));
  margin: var(--drawer-offset);
  max-width: calc(100% - var(--drawer-offset) * 2);
  max-height: calc(100% - var(--drawer-offset) * 2);
  overflow-y: auto;
}

.m_b8a05bbd[data-hidden] {
    opacity: 0 !important;
  }

.m_b8a05bbd[data-hidden] {
    pointer-events: none;
  }

.m_31cd769a {
  display: flex;
  justify-content: flex-start;
  justify-content: var(--drawer-justify, flex-start);
  align-items: flex-start;
  align-items: var(--drawer-align, flex-start);
}

.m_e9408a47 {
  padding: calc(1.25rem * 1);
  padding: var(--mantine-spacing-lg);
  padding-top: calc(0.625rem * 1);
  padding-top: var(--mantine-spacing-xs);
  border-radius: calc(0.25rem * 1);
  border-radius: var(--fieldset-radius, var(--mantine-radius-default));
  min-width: auto;
}

.m_84c9523a {
  border: calc(0.0625rem * 1) solid;
  border: calc(0.0625rem * var(--mantine-scale)) solid;
}

:where([data-mantine-color-scheme='light']) .m_84c9523a {
    border-color: #dee2e6;
    border-color: var(--mantine-color-gray-3);
    background-color: #fff;
    background-color: var(--mantine-color-white);
}

:where([data-mantine-color-scheme='dark']) .m_84c9523a {
    border-color: #424242;
    border-color: var(--mantine-color-dark-4);
    background-color: #242424;
    background-color: var(--mantine-color-dark-7);
}

.m_ef274e49 {
  border: calc(0.0625rem * 1) solid;
  border: calc(0.0625rem * var(--mantine-scale)) solid;
}

:where([data-mantine-color-scheme='light']) .m_ef274e49 {
    border-color: #dee2e6;
    border-color: var(--mantine-color-gray-3);
    background-color: #f8f9fa;
    background-color: var(--mantine-color-gray-0);
}

:where([data-mantine-color-scheme='dark']) .m_ef274e49 {
    border-color: #424242;
    border-color: var(--mantine-color-dark-4);
    background-color: #2e2e2e;
    background-color: var(--mantine-color-dark-6);
}

.m_eda993d3 {
  padding: 0;
  border: 0;
  border-radius: 0;
}

.m_90794832 {
  font-size: calc(0.875rem * 1);
  font-size: var(--mantine-font-size-sm);
}

.m_74ca27fe {
  padding: 0;
  margin-bottom: calc(0.75rem * 1);
  margin-bottom: var(--mantine-spacing-sm);
}

.m_8478a6da {
  container: mantine-grid / inline-size;
}

.m_410352e9 {
  --grid-overflow: visible;
  --grid-margin: calc(var(--grid-gutter) / -2);
  --grid-col-padding: calc(var(--grid-gutter) / 2);

  overflow: var(--grid-overflow);
}

.m_dee7bd2f {
  width: calc(100% + var(--grid-gutter));
  display: flex;
  flex-wrap: wrap;
  justify-content: var(--grid-justify);
  align-items: var(--grid-align);
  margin: var(--grid-margin);
}

[dir="ltr"] .m_96bdd299 {
  margin-left: var(--col-offset);
}

[dir="rtl"] .m_96bdd299 {
  margin-right: var(--col-offset);
}

.m_96bdd299 {
  --col-flex-grow: 0;
  --col-offset: 0rem;

  flex-shrink: 0;
  order: var(--col-order);
  flex-basis: var(--col-flex-basis);
  width: var(--col-width);
  max-width: var(--col-max-width);
  flex-grow: var(--col-flex-grow);
  padding: var(--grid-col-padding);
}

.m_bcb3f3c2 {
  color: #000;
  color: var(--mantine-color-black);
}

  :where([data-mantine-color-scheme='light']) .m_bcb3f3c2 {
    background-color: var(--mark-bg-light);
}

  :where([data-mantine-color-scheme='dark']) .m_bcb3f3c2 {
    background-color: var(--mark-bg-dark);
}

.m_9e117634 {
  display: block;
  flex: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-fit: var(--image-object-fit, cover);
     object-fit: var(--image-object-fit, cover);
  width: 100%;
  border-radius: 0;
  border-radius: var(--image-radius, 0);
}

@keyframes m_885901b1 {
  0% {
    opacity: 0.6;
    transform: scale(0);
  }

  100% {
    opacity: 0;
    transform: scale(2.8);
  }
}

.m_e5262200 {
  --indicator-size: calc(0.625rem * var(--mantine-scale));
  --indicator-color: var(--mantine-primary-color-filled);

  position: relative;
  display: block;
}

.m_e5262200:where([data-inline]) {
    display: inline-block;
  }

.m_760d1fb1 {
  position: absolute;
  top: var(--indicator-top);
  left: var(--indicator-left);
  right: var(--indicator-right);
  bottom: var(--indicator-bottom);
  transform: translate(var(--indicator-translate-x), var(--indicator-translate-y));
  min-width: var(--indicator-size);
  height: var(--indicator-size);
  border-radius: 1000rem;
  border-radius: var(--indicator-radius, 1000rem);
  z-index: 200;
  z-index: var(--indicator-z-index, 200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(0.75rem * 1);
  font-size: var(--mantine-font-size-xs);
  background-color: var(--indicator-color);
  color: #fff;
  color: var(--indicator-text-color, var(--mantine-color-white));
  white-space: nowrap;
}

.m_760d1fb1::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--indicator-color);
    border-radius: 1000rem;
    border-radius: var(--indicator-radius, 1000rem);
    z-index: -1;
  }

.m_760d1fb1:where([data-with-label]) {
    padding-left: calc((0.625rem * 1) / 2);
    padding-right: calc((0.625rem * 1) / 2);
    padding-left: calc((0.625rem * 1) / 2);
    padding-left: calc(calc(0.625rem * 1) / 2);
    padding-right: calc((0.625rem * 1) / 2);
    padding-right: calc(calc(0.625rem * 1) / 2);
    padding-left: calc(var(--mantine-spacing-xs) / 2);
    padding-right: calc(var(--mantine-spacing-xs) / 2);
  }

.m_760d1fb1:where([data-with-border]) {
    border: 2px solid var(--mantine-color-body);
  }

.m_760d1fb1[data-processing]::before {
      animation: m_885901b1 1000ms linear infinite;
    }

.m_dc6f14e2 {
  --kbd-fz-xs: calc(0.625rem * var(--mantine-scale));
  --kbd-fz-sm: calc(0.75rem * var(--mantine-scale));
  --kbd-fz-md: calc(0.875rem * var(--mantine-scale));
  --kbd-fz-lg: calc(1rem * var(--mantine-scale));
  --kbd-fz-xl: calc(1.25rem * var(--mantine-scale));
  --kbd-fz: var(--kbd-fz-sm);

  --kbd-padding-xs: calc(0.125rem * var(--mantine-scale)) calc(0.25rem * var(--mantine-scale));
  --kbd-padding-sm: calc(0.1875rem * var(--mantine-scale)) calc(0.3125rem * var(--mantine-scale));
  --kbd-padding-md: calc(0.25rem * var(--mantine-scale)) calc(0.4375rem * var(--mantine-scale));
  --kbd-padding-lg: calc(0.3125rem * var(--mantine-scale)) calc(0.5625rem * var(--mantine-scale));
  --kbd-padding-xl: calc(0.5rem * var(--mantine-scale)) calc(0.875rem * var(--mantine-scale));
  --kbd-padding: var(--kbd-padding-sm);

  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    Liberation Mono, Courier New, monospace;

  font-family: var(--mantine-font-family-monospace);
  line-height: 1.55;
  line-height: var(--mantine-line-height);
  font-weight: 700;
  padding: var(--kbd-padding);
  font-size: var(--kbd-fz);
  border-radius: calc(0.25rem * 1);
  border-radius: var(--mantine-radius-sm);
  border: calc(0.0625rem * 1) solid;
  border: calc(0.0625rem * var(--mantine-scale)) solid;
  border-bottom-width: calc(0.1875rem * 1);
  border-bottom-width: calc(0.1875rem * var(--mantine-scale));
  unicode-bidi: embed;
}

  :where([data-mantine-color-scheme='light']) .m_dc6f14e2 {
    border-color: #dee2e6;
    border-color: var(--mantine-color-gray-3);
    color: #495057;
    color: var(--mantine-color-gray-7);
    background-color: #f8f9fa;
    background-color: var(--mantine-color-gray-0);
}

  :where([data-mantine-color-scheme='dark']) .m_dc6f14e2 {
    border-color: #424242;
    border-color: var(--mantine-color-dark-4);
    color: #c9c9c9;
    color: var(--mantine-color-dark-0);
    background-color: #2e2e2e;
    background-color: var(--mantine-color-dark-6);
}

.m_abbac491 {
  --list-fz: var(--mantine-font-size-md);
  --list-lh: var(--mantine-line-height-md);

  list-style-position: inside;
  font-size: var(--list-fz);
  line-height: var(--list-lh);
  margin: 0;
  padding: 0;
}

  [dir="ltr"] .m_abbac491:where([data-with-padding]) {
    padding-left: calc(1rem * 1);
    padding-left: var(--mantine-spacing-md);
}

  [dir="rtl"] .m_abbac491:where([data-with-padding]) {
    padding-right: calc(1rem * 1);
    padding-right: var(--mantine-spacing-md);
}

  [dir="ltr"] .m_abbac491:where([data-with-padding]) {
    padding-left: calc(1rem * 1);
}

  [dir="rtl"] .m_abbac491:where([data-with-padding]) {
    padding-right: calc(1rem * 1);
}

.m_abb6bec2 {
  white-space: nowrap;
  line-height: var(--list-lh);
}

.m_abb6bec2:where([data-with-icon]) {
    list-style: none;
  }

.m_abb6bec2:where([data-with-icon]) .m_75cd9f71 {
      --li-direction: row;
      --li-align: center;
    }

.m_abb6bec2:where(:not(:first-of-type)) {
    margin-top: 0;
    margin-top: var(--list-spacing, 0);
  }

.m_abb6bec2:where([data-centered]) {
    line-height: 1;
  }

.m_75cd9f71 {
  display: inline-flex;
  flex-direction: column;
  flex-direction: var(--li-direction, column);
  align-items: flex-start;
  align-items: var(--li-align, flex-start);
  white-space: normal;
}

[dir="ltr"] .m_60f83e5b {
  margin-right: calc(0.75rem * 1);
  margin-right: var(--mantine-spacing-sm);
}

[dir="rtl"] .m_60f83e5b {
  margin-left: calc(0.75rem * 1);
  margin-left: var(--mantine-spacing-sm);
}

[dir="ltr"] .m_60f83e5b {
  margin-right: calc(0.75rem * 1);
}

[dir="rtl"] .m_60f83e5b {
  margin-left: calc(0.75rem * 1);
}

.m_60f83e5b {
  display: inline-block;
  vertical-align: middle;
}

.m_6e45937b {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: var(--lo-z-index);
}

.m_e8eb006c {
  position: relative;
  z-index: calc(var(--lo-z-index) + 1);
}

.m_df587f17 {
  z-index: var(--lo-z-index);
}

.m_dc9b7c9f {
  padding: calc(0.25rem * 1);
  padding: calc(0.25rem * var(--mantine-scale));
}

.m_9bfac126 {
  color: var(--mantine-color-dimmed);
  font-weight: 500;
  font-size: calc(0.75rem * 1);
  font-size: var(--mantine-font-size-xs);
  padding: calc((0.625rem * 1) / 2) calc(0.75rem * 1);
  padding: calc(calc(0.625rem * 1) / 2) calc(0.75rem * 1);
  padding: calc(var(--mantine-spacing-xs) / 2) var(--mantine-spacing-sm);
  cursor: default;
}

.m_efdf90cb {
  margin-top: calc(0.25rem * 1);
  margin-top: calc(0.25rem * var(--mantine-scale));
  margin-bottom: calc(0.25rem * 1);
  margin-bottom: calc(0.25rem * var(--mantine-scale));
  border-top: calc(0.0625rem * 1) solid;
  border-top: calc(0.0625rem * var(--mantine-scale)) solid;
}

:where([data-mantine-color-scheme='light']) .m_efdf90cb {
    border-color: #e9ecef;
    border-color: var(--mantine-color-gray-2);
}

:where([data-mantine-color-scheme='dark']) .m_efdf90cb {
    border-color: #424242;
    border-color: var(--mantine-color-dark-4);
}

.m_99ac2aa1 {
  font-size: calc(0.875rem * 1);
  font-size: var(--mantine-font-size-sm);
  width: 100%;
  padding: calc((0.625rem * 1) / 1.5) calc(0.75rem * 1);
  padding: calc(calc(0.625rem * 1) / 1.5) calc(0.75rem * 1);
  padding: calc(var(--mantine-spacing-xs) / 1.5) var(--mantine-spacing-sm);
  border-radius: calc(0.25rem * 1);
  border-radius: var(--popover-radius, var(--mantine-radius-default));
  color: var(--mantine-color-text);
  color: var(--menu-item-color, var(--mantine-color-text));
  display: flex;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.m_99ac2aa1:where([data-disabled], :disabled) {
    color: var(--mantine-color-dimmed);
    opacity: 0.6;
    cursor: not-allowed;
  }

:where([data-mantine-color-scheme='light']) .m_99ac2aa1:where([data-hovered]):where(:not(:disabled):not([data-disabled])) {
        background-color: #f1f3f5;
        background-color: var(--menu-item-hover, var(--mantine-color-gray-1));
}

:where([data-mantine-color-scheme='dark']) .m_99ac2aa1:where([data-hovered]):where(:not(:disabled):not([data-disabled])) {
        background-color: #424242;
        background-color: var(--menu-item-hover, var(--mantine-color-dark-4));
}

.m_5476e0d3 {
  flex: 1;
}

.m_8b75e504 {
  display: flex;
  justify-content: center;
  align-items: center;
}

[dir="ltr"] .m_8b75e504:where([data-position='left']) {
    margin-right: calc(0.625rem * 1);
    margin-right: var(--mantine-spacing-xs);
}

[dir="rtl"] .m_8b75e504:where([data-position='left']) {
    margin-left: calc(0.625rem * 1);
    margin-left: var(--mantine-spacing-xs);
}

[dir="ltr"] .m_8b75e504:where([data-position='left']) {
    margin-right: calc(0.625rem * 1);
}

[dir="rtl"] .m_8b75e504:where([data-position='left']) {
    margin-left: calc(0.625rem * 1);
}

[dir="ltr"] .m_8b75e504:where([data-position='right']) {
    margin-left: calc(0.625rem * 1);
    margin-left: var(--mantine-spacing-xs);
}

[dir="rtl"] .m_8b75e504:where([data-position='right']) {
    margin-right: calc(0.625rem * 1);
    margin-right: var(--mantine-spacing-xs);
}

[dir="ltr"] .m_8b75e504:where([data-position='right']) {
    margin-left: calc(0.625rem * 1);
}

[dir="rtl"] .m_8b75e504:where([data-position='right']) {
    margin-right: calc(0.625rem * 1);
}

.m_9df02822 {
  --modal-size-xs: calc(20rem * var(--mantine-scale));
  --modal-size-sm: calc(23.75rem * var(--mantine-scale));
  --modal-size-md: calc(27.5rem * var(--mantine-scale));
  --modal-size-lg: calc(38.75rem * var(--mantine-scale));
  --modal-size-xl: calc(48.75rem * var(--mantine-scale));
  --modal-size: var(--modal-size-md);

  --modal-y-offset: 5dvh;
  --modal-x-offset: 5vw;
}

  .m_9df02822[data-full-screen] {
    --modal-border-radius: 0 !important;
  }

  .m_9df02822[data-full-screen] .m_54c44539 {
      --modal-content-flex: 0 0 100%;
      --modal-content-max-height: auto;
      --modal-content-height: 100dvh;
    }

  .m_9df02822[data-full-screen] .m_1f958f16 {
      --modal-inner-y-offset: 0;
      --modal-inner-x-offset: 0;
    }

  .m_9df02822[data-centered] .m_1f958f16 {
      --modal-inner-align: center;
    }

[dir="ltr"] .m_d0e2b9cd {
  border-top-left-radius: calc(0.25rem * 1);
  border-top-left-radius: var(--modal-radius, var(--mantine-radius-default));
}

[dir="rtl"] .m_d0e2b9cd {
  border-top-right-radius: calc(0.25rem * 1);
  border-top-right-radius: var(--modal-radius, var(--mantine-radius-default));
}

[dir="ltr"] .m_d0e2b9cd {
  border-top-right-radius: calc(0.25rem * 1);
  border-top-right-radius: var(--modal-radius, var(--mantine-radius-default));
}

[dir="rtl"] .m_d0e2b9cd {
  border-top-left-radius: calc(0.25rem * 1);
  border-top-left-radius: var(--modal-radius, var(--mantine-radius-default));
}

[dir="ltr"] .m_d0e2b9cd {
  border-top-left-radius: calc(0.25rem * 1);
}

[dir="rtl"] .m_d0e2b9cd {
  border-top-right-radius: calc(0.25rem * 1);
}

[dir="ltr"] .m_d0e2b9cd {
  border-top-right-radius: calc(0.25rem * 1);
}

[dir="rtl"] .m_d0e2b9cd {
  border-top-left-radius: calc(0.25rem * 1);
}

.m_54c44539 {
  flex: 0 0 var(--modal-size);
  flex: var(--modal-content-flex, 0 0 var(--modal-size));
  max-width: 100%;
  max-height: calc(100dvh - var(--modal-y-offset) * 2);
  max-height: var(--modal-content-max-height, calc(100dvh - var(--modal-y-offset) * 2));
  height: auto;
  height: var(--modal-content-height, auto);
  overflow-y: auto;
}

.m_54c44539[data-full-screen] {
    border-radius: 0;
  }

.m_54c44539[data-hidden] {
    opacity: 0 !important;
  }

.m_54c44539[data-hidden] {
    pointer-events: none;
  }

.m_1f958f16 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-items: var(--modal-inner-align, flex-start);
  padding-top: var(--modal-y-offset);
  padding-top: var(--modal-inner-y-offset, var(--modal-y-offset));
  padding-bottom: var(--modal-y-offset);
  padding-bottom: var(--modal-inner-y-offset, var(--modal-y-offset));
  padding-left: var(--modal-x-offset);
  padding-right: var(--modal-x-offset);
  padding-left: var(--modal-inner-x-offset, var(--modal-x-offset));
  padding-right: var(--modal-inner-x-offset, var(--modal-x-offset));
}

.m_7cda1cd6 {
  --pill-fz-xs: calc(0.625rem * var(--mantine-scale));
  --pill-fz-sm: calc(0.75rem * var(--mantine-scale));
  --pill-fz-md: calc(0.875rem * var(--mantine-scale));
  --pill-fz-lg: calc(1rem * var(--mantine-scale));
  --pill-fz-xl: calc(1.125rem * var(--mantine-scale));

  --pill-height-xs: calc(1.125rem * var(--mantine-scale));
  --pill-height-sm: calc(1.375rem * var(--mantine-scale));
  --pill-height-md: calc(1.5625rem * var(--mantine-scale));
  --pill-height-lg: calc(1.75rem * var(--mantine-scale));
  --pill-height-xl: calc(2rem * var(--mantine-scale));

  --pill-fz: var(--pill-fz-sm);
  --pill-height: var(--pill-height-sm);

  font-size: var(--pill-fz);
  flex: 0;
  height: var(--pill-height);
  padding-left: 0.8em;
  padding-right: 0.8em;
  display: inline-flex;
  align-items: center;
  border-radius: 1000rem;
  border-radius: var(--pill-radius, 1000rem);
  line-height: 1;
  white-space: nowrap;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  max-width: 100%;
}

  :where([data-mantine-color-scheme='dark']) .m_7cda1cd6 {
    background-color: #242424;
    background-color: var(--mantine-color-dark-7);
    color: #c9c9c9;
    color: var(--mantine-color-dark-0);
}

  :where([data-mantine-color-scheme='light']) .m_7cda1cd6 {
    color: #000;
    color: var(--mantine-color-black);
}

  [dir="ltr"] .m_7cda1cd6:where([data-with-remove][\:not-has\(button\:disabled\)]) {
    padding-right: 0;
}

  [dir="rtl"] .m_7cda1cd6:where([data-with-remove][\:not-has\(button\:disabled\)]) {
    padding-left: 0;
}

  [dir="ltr"] .m_7cda1cd6:where([data-with-remove][\:not-has\(button\:disabled\)]) {
    padding-right: 0;
}

  [dir="ltr"] .m_7cda1cd6:where([data-with-remove]:not(:has(button:disabled))) {
    padding-right: 0;
}

  [dir="rtl"] .m_7cda1cd6:where([data-with-remove][\:not-has\(button\:disabled\)]) {
    padding-left: 0;
}

  [dir="rtl"] .m_7cda1cd6:where([data-with-remove]:not(:has(button:disabled))) {
    padding-left: 0;
}

  .m_7cda1cd6:where([data-disabled],[\%20\:has\(button\:disabled\)]) {
    cursor: not-allowed;
  }

  .m_7cda1cd6:where([data-disabled], :has(button:disabled)) {
    cursor: not-allowed;
  }

:where([data-mantine-color-scheme='light']) .m_44da308b {
    background-color: #f1f3f5;
    background-color: var(--mantine-color-gray-1);
}

:where([data-mantine-color-scheme='light']) .m_44da308b:where([data-disabled],[\%20\:has\(button\:disabled\)]) {
      background-color: #dee2e6;
      background-color: var(--mantine-color-gray-3);
    }

:where([data-mantine-color-scheme='light']) .m_44da308b:where([data-disabled],[\%20\:has\(button\:disabled\)]) {
      background-color: #dee2e6;
      background-color: var(--mantine-color-gray-3);
    }

:where([data-mantine-color-scheme='light']) .m_44da308b:where([data-disabled], :has(button:disabled)) {
      background-color: #dee2e6;
      background-color: var(--mantine-color-gray-3);
    }

:where([data-mantine-color-scheme='light']) .m_e3a01f8 {
    background-color: #fff;
    background-color: var(--mantine-color-white);
}

:where([data-mantine-color-scheme='light']) .m_e3a01f8:where([data-disabled],[\%20\:has\(button\:disabled\)]) {
      background-color: #dee2e6;
      background-color: var(--mantine-color-gray-3);
    }

:where([data-mantine-color-scheme='light']) .m_e3a01f8:where([data-disabled],[\%20\:has\(button\:disabled\)]) {
      background-color: #dee2e6;
      background-color: var(--mantine-color-gray-3);
    }

:where([data-mantine-color-scheme='light']) .m_e3a01f8:where([data-disabled], :has(button:disabled)) {
      background-color: #dee2e6;
      background-color: var(--mantine-color-gray-3);
    }

.m_1e0e6180 {
  cursor: inherit;
  overflow: hidden;
  height: 100%;
  line-height: var(--pill-height);
  text-overflow: ellipsis;
}

[dir="ltr"] .m_ae386778 {
  padding-left: 0.1em;
}

[dir="rtl"] .m_ae386778 {
  padding-right: 0.1em;
}

[dir="ltr"] .m_ae386778 {
  padding-right: 0.3em;
}

[dir="rtl"] .m_ae386778 {
  padding-left: 0.3em;
}

[dir="ltr"] .m_ae386778 {
  border-bottom-right-radius: 50%;
  border-bottom-right-radius: var(--pill-radius, 50%);
}

[dir="rtl"] .m_ae386778 {
  border-bottom-left-radius: 50%;
  border-bottom-left-radius: var(--pill-radius, 50%);
}

[dir="ltr"] .m_ae386778 {
  border-top-right-radius: 50%;
  border-top-right-radius: var(--pill-radius, 50%);
}

[dir="rtl"] .m_ae386778 {
  border-top-left-radius: 50%;
  border-top-left-radius: var(--pill-radius, 50%);
}

[dir="ltr"] .m_ae386778 {
  border-bottom-right-radius: 50%;
}

[dir="rtl"] .m_ae386778 {
  border-bottom-left-radius: 50%;
}

[dir="ltr"] .m_ae386778 {
  border-top-right-radius: 50%;
}

[dir="rtl"] .m_ae386778 {
  border-top-left-radius: 50%;
}

.m_ae386778 {
  color: inherit;
  font-size: inherit;
  height: 100%;
  min-height: 0;
  min-height: initial;
  min-width: 2em;
  width: auto;
  width: initial;
  border-radius: 0;
  flex: 0;
}

.m_7cda1cd6[data-disabled] > .m_ae386778,
  .m_ae386778:disabled {
    display: none;
    background-color: transparent;
    width: 0.8em;
    min-width: 0.8em;
    padding: 0;
    cursor: not-allowed;
  }

.m_7cda1cd6[data-disabled] > .m_ae386778 > svg, .m_ae386778:disabled > svg {
      display: none;
    }

.m_ae386778 > svg {
    pointer-events: none;
  }

.m_1dcfd90b {
  --pg-gap-xs: calc(0.375rem * var(--mantine-scale));
  --pg-gap-sm: calc(0.5rem * var(--mantine-scale));
  --pg-gap-md: calc(0.625rem * var(--mantine-scale));
  --pg-gap-lg: calc(0.75rem * var(--mantine-scale));
  --pg-gap-xl: calc(0.75rem * var(--mantine-scale));
  --pg-gap: var(--pg-gap-sm);

  display: flex;
  align-items: center;
  gap: var(--pg-gap);
  flex-wrap: wrap;
}

.m_45c4369d {
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  min-width: calc(6.25rem * 1);
  min-width: calc(6.25rem * var(--mantine-scale));
  flex: 1;
  border: 0;
  font-size: inherit;
  height: 1.6em;
  color: inherit;
  padding: 0;
}

  .m_45c4369d::-moz-placeholder {
    color: var(--input-placeholder-color);
    opacity: 1;
  }

  .m_45c4369d::placeholder {
    color: var(--input-placeholder-color);
    opacity: 1;
  }

  .m_45c4369d:where([data-type='hidden'], [data-type='auto']) {
    height: calc(0.0625rem * 1);
    height: calc(0.0625rem * var(--mantine-scale));
    width: calc(0.0625rem * 1);
    width: calc(0.0625rem * var(--mantine-scale));
    top: 0;
    left: 0;
    pointer-events: none;
    position: absolute;
    opacity: 0;
  }

  .m_45c4369d:focus {
    outline: none;
  }

  .m_45c4369d:where([data-type='auto']:focus) {
    height: 1.6em;
    visibility: visible;
    opacity: 1;
    position: static;
  }

  .m_45c4369d:where([data-pointer]:not([data-disabled]):not(:disabled)) {
    cursor: pointer;
  }

  .m_45c4369d:where([data-disabled], :disabled) {
    cursor: not-allowed;
  }

.m_f0824112 {
  --nl-bg: var(--mantine-primary-color-light);
  --nl-hover: var(--mantine-primary-color-light-hover);
  --nl-color: var(--mantine-primary-color-light-color);

  display: flex;
  align-items: center;
  width: 100%;
  padding: 8px calc(0.75rem * 1);
  padding: 8px var(--mantine-spacing-sm);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

  @media (hover: hover) {
    :where([data-mantine-color-scheme='light']) .m_f0824112:hover {
      background-color: #f8f9fa;
      background-color: var(--mantine-color-gray-0);
  }

    :where([data-mantine-color-scheme='dark']) .m_f0824112:hover {
      background-color: #2e2e2e;
      background-color: var(--mantine-color-dark-6);
  }
}

  @media (hover: none) {
    :where([data-mantine-color-scheme='light']) .m_f0824112:active {
      background-color: #f8f9fa;
      background-color: var(--mantine-color-gray-0);
  }

    :where([data-mantine-color-scheme='dark']) .m_f0824112:active {
      background-color: #2e2e2e;
      background-color: var(--mantine-color-dark-6);
  }
}

  .m_f0824112:where([data-disabled]) {
    opacity: 0.4;
    pointer-events: none;
  }

  .m_f0824112:where([data-active], [aria-current='page']) {
    background-color: var(--nl-bg);
    color: var(--nl-color);
  }

  @media (hover: hover) {

  .m_f0824112:where([data-active], [aria-current='page']):hover {
      background-color: var(--nl-hover);
  }
}

  @media (hover: none) {

  .m_f0824112:where([data-active], [aria-current='page']):active {
      background-color: var(--nl-hover);
  }
}

  .m_f0824112:where([data-active], [aria-current='page']) .m_57492dcc {
      --description-opacity: 0.9;
      --description-color: var(--nl-color);
    }

.m_690090b5 {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 150ms ease;
}

.m_690090b5 > svg {
    display: block;
  }

[dir="ltr"] .m_690090b5:where([data-position='left']) {
    margin-right: calc(0.75rem * 1);
    margin-right: var(--mantine-spacing-sm);
}

[dir="rtl"] .m_690090b5:where([data-position='left']) {
    margin-left: calc(0.75rem * 1);
    margin-left: var(--mantine-spacing-sm);
}

[dir="ltr"] .m_690090b5:where([data-position='left']) {
    margin-right: calc(0.75rem * 1);
}

[dir="rtl"] .m_690090b5:where([data-position='left']) {
    margin-left: calc(0.75rem * 1);
}

[dir="ltr"] .m_690090b5:where([data-position='right']) {
    margin-left: calc(0.75rem * 1);
    margin-left: var(--mantine-spacing-sm);
}

[dir="rtl"] .m_690090b5:where([data-position='right']) {
    margin-right: calc(0.75rem * 1);
    margin-right: var(--mantine-spacing-sm);
}

[dir="ltr"] .m_690090b5:where([data-position='right']) {
    margin-left: calc(0.75rem * 1);
}

[dir="rtl"] .m_690090b5:where([data-position='right']) {
    margin-right: calc(0.75rem * 1);
}

.m_690090b5:where([data-rotate]) {
    transform: rotate(90deg);
  }

.m_1f6ac4c4 {
  font-size: calc(0.875rem * 1);
  font-size: var(--mantine-font-size-sm);
}

.m_f07af9d2 {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.m_f07af9d2:where([data-no-wrap]) {
    white-space: nowrap;
  }

.m_57492dcc {
  display: block;
  font-size: calc(0.75rem * 1);
  font-size: var(--mantine-font-size-xs);
  opacity: 1;
  opacity: var(--description-opacity, 1);
  color: var(--mantine-color-dimmed);
  color: var(--description-color, var(--mantine-color-dimmed));
  overflow: hidden;
  text-overflow: ellipsis;
}

:where([data-no-wrap]) .m_57492dcc {
    white-space: nowrap;
  }

[dir="ltr"] .m_e17b862f {
  padding-left: calc(1.25rem * 1);
  padding-left: var(--nl-offset, var(--mantine-spacing-lg));
}

[dir="rtl"] .m_e17b862f {
  padding-right: calc(1.25rem * 1);
  padding-right: var(--nl-offset, var(--mantine-spacing-lg));
}

[dir="ltr"] .m_e17b862f {
  padding-left: calc(1.25rem * 1);
}

[dir="rtl"] .m_e17b862f {
  padding-right: calc(1.25rem * 1);
}

.m_1fd8a00b {
  transform: rotate(-90deg);
}

[dir="ltr"] .m_a513464 {
  padding-left: calc(1.375rem * 1);
  padding-left: calc(1.375rem * var(--mantine-scale));
}

[dir="rtl"] .m_a513464 {
  padding-right: calc(1.375rem * 1);
  padding-right: calc(1.375rem * var(--mantine-scale));
}

[dir="ltr"] .m_a513464 {
  padding-right: calc(0.625rem * 1);
  padding-right: var(--mantine-spacing-xs);
}

[dir="rtl"] .m_a513464 {
  padding-left: calc(0.625rem * 1);
  padding-left: var(--mantine-spacing-xs);
}

[dir="ltr"] .m_a513464 {
  padding-left: calc(1.375rem * 1);
}

[dir="rtl"] .m_a513464 {
  padding-right: calc(1.375rem * 1);
}

[dir="ltr"] .m_a513464 {
  padding-right: calc(0.625rem * 1);
}

[dir="rtl"] .m_a513464 {
  padding-left: calc(0.625rem * 1);
}

.m_a513464 {
  --notification-radius: var(--mantine-radius-default);
  --notification-color: var(--mantine-primary-color-filled);

  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: calc(0.625rem * 1);
  padding-top: var(--mantine-spacing-xs);
  padding-bottom: calc(0.625rem * 1);
  padding-bottom: var(--mantine-spacing-xs);
  border-radius: var(--notification-radius);
  box-shadow: 0 calc(0.0625rem * 1)
      calc(0.1875rem * 1) rgba(0, 0, 0, 0.05),
    rgba(0, 0, 0, 0.05) 0 calc(1.75rem * 1)
      calc(1.4375rem * 1) calc(-0.4375rem * 1),
    rgba(0, 0, 0, 0.04) 0 calc(0.75rem * 1) calc(0.75rem * 1)
      calc(-0.4375rem * 1);
  box-shadow: var(--mantine-shadow-lg);
}

  [dir="ltr"] .m_a513464::before {
    left: calc(0.25rem * 1);
    left: calc(0.25rem * var(--mantine-scale));
}

  [dir="rtl"] .m_a513464::before {
    right: calc(0.25rem * 1);
    right: calc(0.25rem * var(--mantine-scale));
}

  [dir="ltr"] .m_a513464::before {
    left: calc(0.25rem * 1);
}

  [dir="rtl"] .m_a513464::before {
    right: calc(0.25rem * 1);
}

  .m_a513464::before {
    content: '';
    display: block;
    position: absolute;
    width: calc(0.375rem * 1);
    width: calc(0.375rem * var(--mantine-scale));
    top: var(--notification-radius);
    bottom: var(--notification-radius);
    border-radius: var(--notification-radius);
    background-color: var(--notification-color);
  }

  :where([data-mantine-color-scheme='light']) .m_a513464 {
    background-color: #fff;
    background-color: var(--mantine-color-white);
}

  :where([data-mantine-color-scheme='dark']) .m_a513464 {
    background-color: #2e2e2e;
    background-color: var(--mantine-color-dark-6);
}

  [dir="ltr"] .m_a513464:where([data-with-icon]) {
    padding-left: calc(0.625rem * 1);
    padding-left: var(--mantine-spacing-xs);
}

  [dir="rtl"] .m_a513464:where([data-with-icon]) {
    padding-right: calc(0.625rem * 1);
    padding-right: var(--mantine-spacing-xs);
}

  [dir="ltr"] .m_a513464:where([data-with-icon]) {
    padding-left: calc(0.625rem * 1);
}

  [dir="rtl"] .m_a513464:where([data-with-icon]) {
    padding-right: calc(0.625rem * 1);
}

  .m_a513464:where([data-with-icon])::before {
      display: none;
    }

  :where([data-mantine-color-scheme='light']) .m_a513464:where([data-with-border]) {
      border: 1px solid #dee2e6;
      border: 1px solid var(--mantine-color-gray-3);
}

  :where([data-mantine-color-scheme='dark']) .m_a513464:where([data-with-border]) {
      border: 1px solid #424242;
      border: 1px solid var(--mantine-color-dark-4);
}

[dir="ltr"] .m_a4ceffb {
  margin-right: calc(1rem * 1);
  margin-right: var(--mantine-spacing-md);
}

[dir="rtl"] .m_a4ceffb {
  margin-left: calc(1rem * 1);
  margin-left: var(--mantine-spacing-md);
}

[dir="ltr"] .m_a4ceffb {
  margin-right: calc(1rem * 1);
}

[dir="rtl"] .m_a4ceffb {
  margin-left: calc(1rem * 1);
}

.m_a4ceffb {
  box-sizing: border-box;
  width: calc(1.75rem * 1);
  width: calc(1.75rem * var(--mantine-scale));
  height: calc(1.75rem * 1);
  height: calc(1.75rem * var(--mantine-scale));
  border-radius: calc(1.75rem * 1);
  border-radius: calc(1.75rem * var(--mantine-scale));
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--notification-color);
  color: #fff;
  color: var(--mantine-color-white);
}

[dir="ltr"] .m_b0920b15 {
  margin-right: calc(1rem * 1);
  margin-right: var(--mantine-spacing-md);
}

[dir="rtl"] .m_b0920b15 {
  margin-left: calc(1rem * 1);
  margin-left: var(--mantine-spacing-md);
}

[dir="ltr"] .m_b0920b15 {
  margin-right: calc(1rem * 1);
}

[dir="rtl"] .m_b0920b15 {
  margin-left: calc(1rem * 1);
}

[dir="ltr"] .m_a49ed24 {
  margin-right: calc(0.625rem * 1);
  margin-right: var(--mantine-spacing-xs);
}

[dir="rtl"] .m_a49ed24 {
  margin-left: calc(0.625rem * 1);
  margin-left: var(--mantine-spacing-xs);
}

[dir="ltr"] .m_a49ed24 {
  margin-right: calc(0.625rem * 1);
}

[dir="rtl"] .m_a49ed24 {
  margin-left: calc(0.625rem * 1);
}

.m_a49ed24 {
  flex: 1;
  overflow: hidden;
}

.m_3feedf16 {
  margin-bottom: calc(0.125rem * 1);
  margin-bottom: calc(0.125rem * var(--mantine-scale));
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: calc(0.875rem * 1);
  font-size: var(--mantine-font-size-sm);
  line-height: 1.45;
  line-height: var(--mantine-line-height-sm);
  font-weight: 500;
}

:where([data-mantine-color-scheme='light']) .m_3feedf16 {
    color: #212529;
    color: var(--mantine-color-gray-9);
}

:where([data-mantine-color-scheme='dark']) .m_3feedf16 {
    color: #fff;
    color: var(--mantine-color-white);
}

.m_3d733a3a {
  font-size: calc(0.875rem * 1);
  font-size: var(--mantine-font-size-sm);
  line-height: 1.45;
  line-height: var(--mantine-line-height-sm);
  overflow: hidden;
  text-overflow: ellipsis;
}

:where([data-mantine-color-scheme='light']) .m_3d733a3a {
    color: #000;
    color: var(--mantine-color-black);
}

:where([data-mantine-color-scheme='dark']) .m_3d733a3a {
    color: #c9c9c9;
    color: var(--mantine-color-dark-0);
}

:where([data-mantine-color-scheme='light']) .m_3d733a3a:where([data-with-title]) {
      color: #868e96;
      color: var(--mantine-color-gray-6);
}

:where([data-mantine-color-scheme='dark']) .m_3d733a3a:where([data-with-title]) {
      color: #828282;
      color: var(--mantine-color-dark-2);
}

@media (hover: hover) {
    :where([data-mantine-color-scheme='light']) .m_919a4d88:hover {
      background-color: #f8f9fa;
      background-color: var(--mantine-color-gray-0);
  }

    :where([data-mantine-color-scheme='dark']) .m_919a4d88:hover {
      background-color: #1f1f1f;
      background-color: var(--mantine-color-dark-8);
  }
}

@media (hover: none) {
    :where([data-mantine-color-scheme='light']) .m_919a4d88:active {
      background-color: #f8f9fa;
      background-color: var(--mantine-color-gray-0);
  }

    :where([data-mantine-color-scheme='dark']) .m_919a4d88:active {
      background-color: #1f1f1f;
      background-color: var(--mantine-color-dark-8);
  }
}

.m_e2f5cd4e {
  --ni-right-section-width-xs: calc(1.0625rem * var(--mantine-scale));
  --ni-right-section-width-sm: calc(1.5rem * var(--mantine-scale));
  --ni-right-section-width-md: calc(1.6875rem * var(--mantine-scale));
  --ni-right-section-width-lg: calc(1.9375rem * var(--mantine-scale));
  --ni-right-section-width-xl: calc(2.125rem * var(--mantine-scale));
}

[dir="ltr"] .m_95e17d22 {
  margin-left: auto;
}

[dir="rtl"] .m_95e17d22 {
  margin-right: auto;
}

.m_95e17d22 {
  --ni-chevron-size-xs: calc(0.625rem * var(--mantine-scale));
  --ni-chevron-size-sm: calc(0.875rem * var(--mantine-scale));
  --ni-chevron-size-md: calc(1rem * var(--mantine-scale));
  --ni-chevron-size-lg: calc(1.125rem * var(--mantine-scale));
  --ni-chevron-size-xl: calc(1.25rem * var(--mantine-scale));
  --ni-chevron-size: var(--ni-chevron-size-sm);

  display: flex;
  flex-direction: column;
  width: 100%;
  height: calc(var(--input-height) - (0.125rem * 1));
  height: calc(var(--input-height) - (0.125rem * var(--mantine-scale)));
  height: calc(var(--input-height) - (0.125rem * 1));
  height: calc(var(--input-height) - calc(0.125rem * 1));
  height: calc(var(--input-height) - calc(0.125rem * var(--mantine-scale)));
  max-width: calc(var(--ni-chevron-size) * 1.7);
}

[dir="ltr"] .m_80b4b171 {
  border-left: var(--control-border);
}

[dir="rtl"] .m_80b4b171 {
  border-right: var(--control-border);
}

.m_80b4b171 {
  --control-border: 1px solid var(--input-bd);
  --control-radius: calc(var(--input-radius) - calc(0.0625rem * var(--mantine-scale)));

  flex: 0 0 50%;
  width: 100%;
  padding: 0;
  height: calc(var(--input-height) / 2 - (0.0625rem * 1));
  height: calc(var(--input-height) / 2 - (0.0625rem * var(--mantine-scale)));
  height: calc(var(--input-height) / 2 - (0.0625rem * 1));
  height: calc(var(--input-height) / 2 - calc(0.0625rem * 1));
  height: calc(var(--input-height) / 2 - calc(0.0625rem * var(--mantine-scale)));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mantine-color-text);
  background-color: transparent;
  cursor: pointer;
}

.m_80b4b171:where(:disabled) {
    background-color: transparent;
    cursor: not-allowed;
    opacity: 0.6;
  }

:where([data-mantine-color-scheme='light']) .m_80b4b171:where(:disabled) {
      color: #ced4da;
      color: var(--mantine-color-gray-4);
}

:where([data-mantine-color-scheme='dark']) .m_80b4b171:where(:disabled) {
      color: #696969;
      color: var(--mantine-color-dark-3);
}

.m_e2f5cd4e[data-error] :where(.m_80b4b171) {
    color: var(--mantine-color-error);
  }

@media (hover: hover) {
    :where([data-mantine-color-scheme='light']) .m_80b4b171:hover {
      background-color: #f8f9fa;
      background-color: var(--mantine-color-gray-0);
  }

    :where([data-mantine-color-scheme='dark']) .m_80b4b171:hover {
      background-color: #424242;
      background-color: var(--mantine-color-dark-4);
  }
}

@media (hover: none) {
    :where([data-mantine-color-scheme='light']) .m_80b4b171:active {
      background-color: #f8f9fa;
      background-color: var(--mantine-color-gray-0);
  }

    :where([data-mantine-color-scheme='dark']) .m_80b4b171:active {
      background-color: #424242;
      background-color: var(--mantine-color-dark-4);
  }
}

[dir="ltr"] .m_80b4b171:where(:first-of-type) {
    border-top-right-radius: var(--control-radius);
}

[dir="rtl"] .m_80b4b171:where(:first-of-type) {
    border-top-left-radius: var(--control-radius);
}

.m_80b4b171:where(:first-of-type) {
    border-radius: 0;
  }

[dir="ltr"] .m_80b4b171:last-of-type {
    border-bottom-right-radius: var(--control-radius);
}

[dir="rtl"] .m_80b4b171:last-of-type {
    border-bottom-left-radius: var(--control-radius);
}

.m_80b4b171:last-of-type {
    border-radius: 0;
  }

.m_4addd315 {
  --pagination-control-size-xs: calc(1.375rem * var(--mantine-scale));
  --pagination-control-size-sm: calc(1.625rem * var(--mantine-scale));
  --pagination-control-size-md: calc(2rem * var(--mantine-scale));
  --pagination-control-size-lg: calc(2.375rem * var(--mantine-scale));
  --pagination-control-size-xl: calc(2.75rem * var(--mantine-scale));
  --pagination-control-size: var(--pagination-control-size-md);
  --pagination-control-fz: var(--mantine-font-size-md);
  --pagination-active-bg: var(--mantine-primary-color-filled);
}

.m_326d024a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: calc(0.0625rem * 1) solid;
  border: calc(0.0625rem * var(--mantine-scale)) solid;
  cursor: pointer;
  color: var(--mantine-color-text);
  height: var(--pagination-control-size);
  min-width: var(--pagination-control-size);
  font-size: var(--pagination-control-fz);
  line-height: 1;
  border-radius: calc(0.25rem * 1);
  border-radius: var(--pagination-control-radius, var(--mantine-radius-default));
}

.m_326d024a:where([data-with-padding]) {
    padding: calc(var(--pagination-control-size) / 4);
  }

.m_326d024a:where(:disabled, [data-disabled]) {
    cursor: not-allowed;
    opacity: 0.4;
  }

:where([data-mantine-color-scheme='light']) .m_326d024a {
    border-color: #ced4da;
    border-color: var(--mantine-color-gray-4);
    background-color: #fff;
    background-color: var(--mantine-color-white);
}

@media (hover: hover) {
      :where([data-mantine-color-scheme='light']) .m_326d024a:hover:where(:not(:disabled):not([data-disabled])) {
        background-color: #f8f9fa;
        background-color: var(--mantine-color-gray-0);
      }
}

@media (hover: none) {
      :where([data-mantine-color-scheme='light']) .m_326d024a:active:where(:not(:disabled):not([data-disabled])) {
        background-color: #f8f9fa;
        background-color: var(--mantine-color-gray-0);
      }
}

:where([data-mantine-color-scheme='dark']) .m_326d024a {
    border-color: #424242;
    border-color: var(--mantine-color-dark-4);
    background-color: #2e2e2e;
    background-color: var(--mantine-color-dark-6);
}

@media (hover: hover) {
      :where([data-mantine-color-scheme='dark']) .m_326d024a:hover:where(:not(:disabled):not([data-disabled])) {
        background-color: #3b3b3b;
        background-color: var(--mantine-color-dark-5);
      }
}

@media (hover: none) {
      :where([data-mantine-color-scheme='dark']) .m_326d024a:active:where(:not(:disabled):not([data-disabled])) {
        background-color: #3b3b3b;
        background-color: var(--mantine-color-dark-5);
      }
}

.m_326d024a:where([data-active]) {
    background-color: var(--pagination-active-bg);
    border-color: var(--pagination-active-bg);
    color: #fff;
    color: var(--pagination-active-color, var(--mantine-color-white));
  }

@media (hover: hover) {

  .m_326d024a:where([data-active]):hover {
      background-color: var(--pagination-active-bg);
  }
}

@media (hover: none) {

  .m_326d024a:where([data-active]):active {
      background-color: var(--pagination-active-bg);
  }
}

.m_4ad7767d {
  height: var(--pagination-control-size);
  min-width: var(--pagination-control-size);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.m_f61ca620 {
  --psi-button-size-xs: calc(1.375rem * var(--mantine-scale));
  --psi-button-size-sm: calc(1.625rem * var(--mantine-scale));
  --psi-button-size-md: calc(1.75rem * var(--mantine-scale));
  --psi-button-size-lg: calc(2rem * var(--mantine-scale));
  --psi-button-size-xl: calc(2.5rem * var(--mantine-scale));

  --psi-icon-size-xs: calc(0.75rem * var(--mantine-scale));
  --psi-icon-size-sm: calc(0.9375rem * var(--mantine-scale));
  --psi-icon-size-md: calc(1.0625rem * var(--mantine-scale));
  --psi-icon-size-lg: calc(1.1875rem * var(--mantine-scale));
  --psi-icon-size-xl: calc(1.3125rem * var(--mantine-scale));

  --psi-button-size: var(--psi-button-size-sm);
  --psi-icon-size: var(--psi-icon-size-sm);
}

.m_ccf8da4c {
  position: relative;
  overflow: hidden;
}

[dir="ltr"] .m_f2d85dd2 {
  padding-right: var(--input-padding-inline-end);
}

[dir="rtl"] .m_f2d85dd2 {
  padding-left: var(--input-padding-inline-end);
}

[dir="ltr"] .m_f2d85dd2 {
  padding-left: var(--input-padding-inline-start);
}

[dir="rtl"] .m_f2d85dd2 {
  padding-right: var(--input-padding-inline-start);
}

.m_f2d85dd2 {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial,
    sans-serif, Apple Color Emoji, Segoe UI Emoji;
  font-family: var(--mantine-font-family);
  background-color: transparent;
  border: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  outline: 0;
  font-size: inherit;
  line-height: 1.55;
  line-height: var(--mantine-line-height);
  height: 100%;
  width: 100%;
  color: inherit;
}

.m_ccf8da4c[data-disabled] .m_f2d85dd2,
  .m_f2d85dd2:disabled {
    cursor: not-allowed;
  }

.m_f2d85dd2::-moz-placeholder {
    color: var(--input-placeholder-color);
    opacity: 1;
  }

.m_f2d85dd2::placeholder {
    color: var(--input-placeholder-color);
    opacity: 1;
  }

.m_f2d85dd2::-ms-reveal {
    display: none;
  }

.m_b1072d44 {
  width: var(--psi-button-size);
  height: var(--psi-button-size);
  min-width: var(--psi-button-size);
  min-height: var(--psi-button-size);
}

.m_b1072d44:disabled {
    display: none;
  }

.m_f1cb205a {
  --pin-input-size-xs: calc(1.875rem * var(--mantine-scale));
  --pin-input-size-sm: calc(2.25rem * var(--mantine-scale));
  --pin-input-size-md: calc(2.625rem * var(--mantine-scale));
  --pin-input-size-lg: calc(3.125rem * var(--mantine-scale));
  --pin-input-size-xl: calc(3.75rem * var(--mantine-scale));
  --pin-input-size: var(--pin-input-size-sm);
}

.m_cb288ead {
  width: var(--pin-input-size);
  height: var(--pin-input-size);
}

@keyframes m_81a374bd {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: calc(2.5rem * 1) 0;
    background-position: calc(2.5rem * var(--mantine-scale)) 0;
  }
}

.m_db6d6462 {
  --progress-radius: var(--mantine-radius-default);
  --progress-size: var(--progress-size-md);

  --progress-size-xs: calc(0.1875rem * var(--mantine-scale));
  --progress-size-sm: calc(0.3125rem * var(--mantine-scale));
  --progress-size-md: calc(0.5rem * var(--mantine-scale));
  --progress-size-lg: calc(0.75rem * var(--mantine-scale));
  --progress-size-xl: calc(1rem * var(--mantine-scale));

  position: relative;
  height: var(--progress-size);
  border-radius: var(--progress-radius);
  overflow: hidden;
  display: flex;
}

:where([data-mantine-color-scheme='light']) .m_db6d6462 {
    background-color: #e9ecef;
    background-color: var(--mantine-color-gray-2);
}

:where([data-mantine-color-scheme='dark']) .m_db6d6462 {
    background-color: #424242;
    background-color: var(--mantine-color-dark-4);
}

.m_2242eb65 {
  background-color: var(--progress-section-color);
  height: 100%;
  width: var(--progress-section-width);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: calc(1.25rem * 1) calc(1.25rem * 1);
  background-size: calc(1.25rem * var(--mantine-scale)) calc(1.25rem * var(--mantine-scale));
  transition: width 100ms ease;
  transition: width var(--progress-transition-duration, 100ms) ease;
}

.m_2242eb65:where([data-striped]) {
    background-image: linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.15) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.15) 50%,
      rgba(255, 255, 255, 0.15) 75%,
      transparent 75%,
      transparent
    );
  }

.m_2242eb65:where([data-animated]) {
    animation: m_81a374bd 1s linear infinite;
  }

[dir="ltr"] .m_2242eb65:where(:last-of-type) {
    border-top-right-radius: var(--progress-radius);
}

[dir="rtl"] .m_2242eb65:where(:last-of-type) {
    border-top-left-radius: var(--progress-radius);
}

[dir="ltr"] .m_2242eb65:where(:last-of-type) {
    border-bottom-right-radius: var(--progress-radius);
}

[dir="rtl"] .m_2242eb65:where(:last-of-type) {
    border-bottom-left-radius: var(--progress-radius);
}

.m_2242eb65:where(:last-of-type) {
    border-radius: 0;
  }

[dir="ltr"] .m_2242eb65:where(:first-of-type) {
    border-top-left-radius: var(--progress-radius);
}

[dir="rtl"] .m_2242eb65:where(:first-of-type) {
    border-top-right-radius: var(--progress-radius);
}

[dir="ltr"] .m_2242eb65:where(:first-of-type) {
    border-bottom-left-radius: var(--progress-radius);
}

[dir="rtl"] .m_2242eb65:where(:first-of-type) {
    border-bottom-right-radius: var(--progress-radius);
}

.m_2242eb65:where(:first-of-type) {
    border-radius: 0;
  }

.m_91e40b74 {
  color: #fff;
  color: var(--progress-label-color, var(--mantine-color-white));
  font-weight: bold;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: min(calc(var(--progress-size) * 0.65), calc(1.125rem * 1));
  font-size: min(calc(var(--progress-size) * 0.65), calc(1.125rem * var(--mantine-scale)));
  line-height: 1;
  padding-left: calc(0.25rem * 1);
  padding-right: calc(0.25rem * 1);
  padding-left: calc(0.25rem * var(--mantine-scale));
  padding-right: calc(0.25rem * var(--mantine-scale));
}

.m_9dc8ae12 {
  --card-radius: var(--mantine-radius-default);

  display: block;
  width: 100%;
  border-radius: var(--card-radius);
  cursor: pointer;
}

  .m_9dc8ae12 :where(*) {
    cursor: inherit;
  }

  .m_9dc8ae12:where([data-with-border]) {
    border: calc(0.0625rem * 1) solid transparent;
    border: calc(0.0625rem * var(--mantine-scale)) solid transparent;
  }

  :where([data-mantine-color-scheme='light']) .m_9dc8ae12:where([data-with-border]) {
      border-color: #dee2e6;
      border-color: var(--mantine-color-gray-3);
}

  :where([data-mantine-color-scheme='dark']) .m_9dc8ae12:where([data-with-border]) {
      border-color: #424242;
      border-color: var(--mantine-color-dark-4);
}

.m_717d7ff6 {
  --radio-size-xs: calc(1rem * var(--mantine-scale));
  --radio-size-sm: calc(1.25rem * var(--mantine-scale));
  --radio-size-md: calc(1.5rem * var(--mantine-scale));
  --radio-size-lg: calc(1.875rem * var(--mantine-scale));
  --radio-size-xl: calc(2.25rem * var(--mantine-scale));

  --radio-icon-size-xs: calc(0.375rem * var(--mantine-scale));
  --radio-icon-size-sm: calc(0.5rem * var(--mantine-scale));
  --radio-icon-size-md: calc(0.625rem * var(--mantine-scale));
  --radio-icon-size-lg: calc(0.875rem * var(--mantine-scale));
  --radio-icon-size-xl: calc(1rem * var(--mantine-scale));

  --radio-icon-size: var(--radio-icon-size-sm);
  --radio-size: var(--radio-size-sm);
  --radio-color: var(--mantine-primary-color-filled);
  --radio-icon-color: var(--mantine-color-white);

  position: relative;
  border: calc(0.0625rem * 1) solid transparent;
  border: calc(0.0625rem * var(--mantine-scale)) solid transparent;
  width: var(--radio-size);
  min-width: var(--radio-size);
  height: var(--radio-size);
  min-height: var(--radio-size);
  border-radius: 10000px;
  border-radius: var(--radio-radius, 10000px);
  transition:
    border-color 100ms ease,
    background-color 100ms ease;
  cursor: default;
  cursor: var(--mantine-cursor-type);
  -webkit-tap-highlight-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

  :where([data-mantine-color-scheme='light']) .m_717d7ff6 {
    background-color: #fff;
    background-color: var(--mantine-color-white);
    border-color: #ced4da;
    border-color: var(--mantine-color-gray-4);
}

  :where([data-mantine-color-scheme='dark']) .m_717d7ff6 {
    background-color: #2e2e2e;
    background-color: var(--mantine-color-dark-6);
    border-color: #424242;
    border-color: var(--mantine-color-dark-4);
}

  .m_717d7ff6[data-indeterminate],
  .m_717d7ff6[data-checked] {
    background-color: var(--radio-color);
    border-color: var(--radio-color);
  }

  .m_717d7ff6[data-indeterminate] > .m_3e4da632, .m_717d7ff6[data-checked] > .m_3e4da632 {
      opacity: 1;
      transform: none;
      color: var(--radio-icon-color);
    }

  .m_717d7ff6[data-disabled] {
    cursor: not-allowed;
  }

  :where([data-mantine-color-scheme='light']) .m_717d7ff6[data-disabled] {
      background-color: #e9ecef;
      background-color: var(--mantine-color-gray-2);
      border-color: #dee2e6;
      border-color: var(--mantine-color-gray-3);
}

  :where([data-mantine-color-scheme='dark']) .m_717d7ff6[data-disabled] {
      background-color: #2e2e2e;
      background-color: var(--mantine-color-dark-6);
      border-color: #2e2e2e;
      border-color: var(--mantine-color-dark-6);
}

  [data-mantine-color-scheme='light'] .m_717d7ff6[data-disabled][data-checked] > .m_3e4da632 {
        color: #adb5bd;
        color: var(--mantine-color-gray-5);
}

  [data-mantine-color-scheme='dark'] .m_717d7ff6[data-disabled][data-checked] > .m_3e4da632 {
        color: #696969;
        color: var(--mantine-color-dark-3);
}

.m_2980836c[data-indeterminate]:not([data-disabled]),
  .m_2980836c[data-checked]:not([data-disabled]) {
    background-color: transparent;
    border-color: var(--radio-color);
  }

.m_2980836c[data-indeterminate]:not([data-disabled]) > .m_3e4da632, .m_2980836c[data-checked]:not([data-disabled]) > .m_3e4da632 {
      color: var(--radio-color);
      opacity: 1;
      transform: none;
    }

.m_3e4da632 {
  display: block;
  width: var(--radio-icon-size);
  height: var(--radio-icon-size);
  color: transparent;
  pointer-events: none;
  transform: translateY(calc(0.3125rem * 1)) scale(0.5);
  transform: translateY(calc(0.3125rem * var(--mantine-scale))) scale(0.5);
  opacity: 1;
  transition:
    transform 100ms ease,
    opacity 100ms ease;
}

.m_f3f1af94 {
  --radio-size-xs: calc(1rem * var(--mantine-scale));
  --radio-size-sm: calc(1.25rem * var(--mantine-scale));
  --radio-size-md: calc(1.5rem * var(--mantine-scale));
  --radio-size-lg: calc(1.875rem * var(--mantine-scale));
  --radio-size-xl: calc(2.25rem * var(--mantine-scale));
  --radio-size: var(--radio-size-sm);

  --radio-icon-size-xs: calc(0.375rem * var(--mantine-scale));
  --radio-icon-size-sm: calc(0.5rem * var(--mantine-scale));
  --radio-icon-size-md: calc(0.625rem * var(--mantine-scale));
  --radio-icon-size-lg: calc(0.875rem * var(--mantine-scale));
  --radio-icon-size-xl: calc(1rem * var(--mantine-scale));
  --radio-icon-size: var(--radio-icon-size-sm);
  --radio-icon-color: var(--mantine-color-white);
}

.m_89c4f5e4 {
  position: relative;
  width: var(--radio-size);
  height: var(--radio-size);
  order: 1;
}

.m_89c4f5e4:where([data-label-position='left']) {
    order: 2;
  }

.m_f3ed6b2b {
  color: var(--radio-icon-color);
  opacity: 0;
  opacity: var(--radio-icon-opacity, 0);
  transform: scale(0.2) translateY(calc(0.625rem * 1));
  transform: var(--radio-icon-transform, scale(0.2) translateY(calc(0.625rem * var(--mantine-scale))));
  transition:
    opacity 100ms ease,
    transform 200ms ease;
  pointer-events: none;
  width: var(--radio-icon-size);
  height: var(--radio-icon-size);
  position: absolute;
  top: calc(50% - var(--radio-icon-size) / 2);
  left: calc(50% - var(--radio-icon-size) / 2);
}

.m_8a3dbb89 {
  border: calc(0.0625rem * 1) solid;
  border: calc(0.0625rem * var(--mantine-scale)) solid;
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: var(--radio-size);
  height: var(--radio-size);
  border-radius: var(--radio-size);
  border-radius: var(--radio-radius, var(--radio-size));
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-property: background-color, border-color;
  transition-timing-function: ease;
  transition-duration: 100ms;
  cursor: default;
  cursor: var(--mantine-cursor-type);
  -webkit-tap-highlight-color: transparent;
}

:where([data-mantine-color-scheme='light']) .m_8a3dbb89 {
    background-color: #fff;
    background-color: var(--mantine-color-white);
    border-color: #ced4da;
    border-color: var(--mantine-color-gray-4);
}

:where([data-mantine-color-scheme='dark']) .m_8a3dbb89 {
    background-color: #2e2e2e;
    background-color: var(--mantine-color-dark-6);
    border-color: #424242;
    border-color: var(--mantine-color-dark-4);
}

.m_8a3dbb89:checked {
    background-color: var(--mantine-color-blue-filled);
    background-color: var(--radio-color, var(--mantine-primary-color-filled));
    border-color: var(--mantine-color-blue-filled);
    border-color: var(--radio-color, var(--mantine-primary-color-filled));
  }

.m_8a3dbb89:checked + .m_f3ed6b2b {
      --radio-icon-opacity: 1;
      --radio-icon-transform: scale(1);
    }

.m_8a3dbb89:disabled {
    cursor: not-allowed;
  }

:where([data-mantine-color-scheme='light']) .m_8a3dbb89:disabled {
      background-color: #f1f3f5;
      background-color: var(--mantine-color-gray-1);
      border-color: #e9ecef;
      border-color: var(--mantine-color-gray-2);
}

:where([data-mantine-color-scheme='light']) .m_8a3dbb89:disabled + .m_f3ed6b2b {
        --radio-icon-color: var(--mantine-color-gray-3);
      }

:where([data-mantine-color-scheme='dark']) .m_8a3dbb89:disabled {
      background-color: #3b3b3b;
      background-color: var(--mantine-color-dark-5);
      border-color: #424242;
      border-color: var(--mantine-color-dark-4);
}

:where([data-mantine-color-scheme='dark']) .m_8a3dbb89:disabled + .m_f3ed6b2b {
        --radio-icon-color: var(--mantine-color-dark-7);
      }

.m_8a3dbb89:where([data-error]) {
    border-color: var(--mantine-color-error);
  }

.m_1bfe9d39 + .m_f3ed6b2b {
    --radio-icon-color: var(--radio-color);
  }

.m_1bfe9d39:checked:not(:disabled) {
    background-color: transparent;
    border-color: var(--radio-color);
  }

.m_1bfe9d39:checked:not(:disabled) + .m_f3ed6b2b {
      --radio-icon-color: var(--radio-color);
      --radio-icon-opacity: 1;
      --radio-icon-transform: none;
    }

.m_f8d312f2 {
  --rating-size-xs: calc(0.875rem * var(--mantine-scale));
  --rating-size-sm: calc(1.125rem * var(--mantine-scale));
  --rating-size-md: calc(1.25rem * var(--mantine-scale));
  --rating-size-lg: calc(1.75rem * var(--mantine-scale));
  --rating-size-xl: calc(2rem * var(--mantine-scale));

  display: flex;
  width: -moz-max-content;
  width: max-content;
}

  .m_f8d312f2:where([\:has\(input\:disabled\)]) {
    pointer-events: none;
  }

  .m_f8d312f2:where(:has(input:disabled)) {
    pointer-events: none;
  }

.m_61734bb7 {
  position: relative;
  transition: transform 100ms ease;
}

.m_61734bb7:where([data-active]) {
    z-index: 1;
    transform: scale(1.1);
  }

.m_5662a89a {
  width: var(--rating-size);
  height: var(--rating-size);
  display: block;
}

:where([data-mantine-color-scheme='light']) .m_5662a89a {
    fill: #dee2e6;
    fill: var(--mantine-color-gray-3);
    stroke: #dee2e6;
    stroke: var(--mantine-color-gray-3);
}

:where([data-mantine-color-scheme='dark']) .m_5662a89a {
    fill: #696969;
    fill: var(--mantine-color-dark-3);
    stroke: #696969;
    stroke: var(--mantine-color-dark-3);
}

.m_5662a89a:where([data-filled]) {
    fill: var(--rating-color);
    stroke: var(--rating-color);
  }

.m_211007ba {
  height: 0;
  width: 0;
  position: absolute;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  -webkit-tap-highlight-color: transparent;
}

.m_211007ba.focus-visible + label {
    outline: 2px solid var(--mantine-color-blue-filled);
    outline: 2px solid var(--mantine-primary-color-filled);
    outline-offset: calc(0.125rem * 1);
    outline-offset: calc(0.125rem * var(--mantine-scale));
  }

.m_211007ba.focus-visible + label {
    outline: 2px solid var(--mantine-color-blue-filled);
    outline: 2px solid var(--mantine-primary-color-filled);
    outline-offset: calc(0.125rem * 1);
    outline-offset: calc(0.125rem * var(--mantine-scale));
  }

.m_211007ba:focus-visible + label {
    outline: 2px solid var(--mantine-color-blue-filled);
    outline: 2px solid var(--mantine-primary-color-filled);
    outline-offset: calc(0.125rem * 1);
    outline-offset: calc(0.125rem * var(--mantine-scale));
  }

.m_21342ee4 {
  display: block;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  z-index: var(--rating-item-z-index, 0);
  -webkit-tap-highlight-color: transparent;
}

.m_21342ee4:where([data-read-only]) {
    cursor: default;
  }

.m_21342ee4:where(:last-of-type) {
    position: relative;
  }

.m_fae05d6a {
  clip-path: var(--rating-symbol-clip-path);
}

.m_1b3c8819 {
  --tooltip-radius: var(--mantine-radius-default);

  position: absolute;
  padding: calc((0.625rem * 1) / 2) calc(0.625rem * 1);
  padding: calc(calc(0.625rem * 1) / 2) calc(0.625rem * 1);
  padding: calc(var(--mantine-spacing-xs) / 2) var(--mantine-spacing-xs);
  pointer-events: none;
  font-size: calc(0.875rem * 1);
  font-size: var(--mantine-font-size-sm);
  white-space: nowrap;
  border-radius: var(--tooltip-radius);
}

  :where([data-mantine-color-scheme='light']) .m_1b3c8819 {
    background-color: #212529;
    background-color: var(--tooltip-bg, var(--mantine-color-gray-9));
    color: #fff;
    color: var(--tooltip-color, var(--mantine-color-white));
}

  :where([data-mantine-color-scheme='dark']) .m_1b3c8819 {
    background-color: #e9ecef;
    background-color: var(--tooltip-bg, var(--mantine-color-gray-2));
    color: #000;
    color: var(--tooltip-color, var(--mantine-color-black));
}

  .m_1b3c8819:where([data-multiline]) {
    white-space: normal;
  }

  .m_1b3c8819:where([data-fixed]) {
    position: fixed;
  }

.m_f898399f {
  background-color: inherit;
  border: 0;
  z-index: 1;
}

.m_b32e4812 {
  position: relative;
  width: var(--rp-size);
  height: var(--rp-size);
  min-width: var(--rp-size);
  min-height: var(--rp-size);
  --rp-transition-duration: 0ms;
}

.m_d43b5134 {
  width: var(--rp-size);
  height: var(--rp-size);
  min-width: var(--rp-size);
  min-height: var(--rp-size);
  transform: rotate(-90deg);
}

.m_b1ca1fbf {
  stroke: var(--rp-curve-root-color);
  stroke: var(--curve-color, var(--rp-curve-root-color));
  transition:
    stroke-dashoffset var(--rp-transition-duration) ease,
    stroke-dasharray var(--rp-transition-duration) ease,
    stroke var(--rp-transition-duration);
}

[data-mantine-color-scheme='light'] .m_b1ca1fbf {
    --rp-curve-root-color: var(--mantine-color-gray-2);
}

[data-mantine-color-scheme='dark'] .m_b1ca1fbf {
    --rp-curve-root-color: var(--mantine-color-dark-4);
}

.m_b23f9dc4 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: var(--rp-label-offset);
  right: var(--rp-label-offset);
}

.m_cf365364 {
  --sc-padding-xs: calc(0.1875rem * var(--mantine-scale)) calc(0.375rem * var(--mantine-scale));
  --sc-padding-sm: calc(0.3125rem * var(--mantine-scale)) calc(0.625rem * var(--mantine-scale));
  --sc-padding-md: calc(0.4375rem * var(--mantine-scale)) calc(0.875rem * var(--mantine-scale));
  --sc-padding-lg: calc(0.5625rem * var(--mantine-scale)) calc(1rem * var(--mantine-scale));
  --sc-padding-xl: calc(0.75rem * var(--mantine-scale)) calc(1.25rem * var(--mantine-scale));

  --sc-transition-duration: 200ms;
  --sc-padding: var(--sc-padding-sm);
  --sc-transition-timing-function: ease;
  --sc-font-size: var(--mantine-font-size-sm);

  position: relative;
  display: inline-flex;
  flex-direction: row;
  width: auto;
  border-radius: calc(0.25rem * 1);
  border-radius: var(--sc-radius, var(--mantine-radius-default));
  overflow: hidden;
  padding: calc(0.25rem * 1);
  padding: calc(0.25rem * var(--mantine-scale));
}

  .m_cf365364:where([data-full-width]) {
    display: flex;
  }

  .m_cf365364:where([data-orientation='vertical']) {
    display: flex;
    flex-direction: column;
    width: -moz-max-content;
    width: max-content;
  }

  .m_cf365364:where([data-orientation='vertical']):where([data-full-width]) {
      width: auto;
    }

  :where([data-mantine-color-scheme='light']) .m_cf365364 {
    background-color: #f1f3f5;
    background-color: var(--mantine-color-gray-1);
}

  :where([data-mantine-color-scheme='dark']) .m_cf365364 {
    background-color: #1f1f1f;
    background-color: var(--mantine-color-dark-8);
}

.m_9e182ccd {
  position: absolute;
  display: block;
  z-index: 1;
  border-radius: calc(0.25rem * 1);
  border-radius: var(--sc-radius, var(--mantine-radius-default));
}

:where([data-mantine-color-scheme='light']) .m_9e182ccd {
    box-shadow: none;
    box-shadow: var(--sc-shadow, none);
    background-color: #fff;
    background-color: var(--sc-color, var(--mantine-color-white));
}

:where([data-mantine-color-scheme='dark']) .m_9e182ccd {
    box-shadow: none;
    background-color: #3b3b3b;
    background-color: var(--sc-color, var(--mantine-color-dark-5));
}

.m_1738fcb2 {
  -webkit-tap-highlight-color: transparent;
  font-weight: 500;
  display: block;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-radius: calc(0.25rem * 1);
  border-radius: var(--sc-radius, var(--mantine-radius-default));
  font-size: var(--sc-font-size);
  padding: var(--sc-padding);
  transition: color var(--sc-transition-duration) var(--sc-transition-timing-function);
  cursor: pointer;

  /* outline is controlled by .input */
  outline: none;
  outline: var(--segmented-control-outline, none);
}

:where([data-mantine-color-scheme='light']) .m_1738fcb2 {
    color: #495057;
    color: var(--mantine-color-gray-7);
}

:where([data-mantine-color-scheme='dark']) .m_1738fcb2 {
    color: #b8b8b8;
    color: var(--mantine-color-dark-1);
}

.m_1738fcb2:where([data-read-only]) {
    cursor: default;
  }

fieldset:disabled .m_1738fcb2,
  .m_1738fcb2:where([data-disabled]) {
    cursor: not-allowed;
  }

:where([data-mantine-color-scheme='light']) fieldset:disabled .m_1738fcb2, :where([data-mantine-color-scheme='light']) .m_1738fcb2:where([data-disabled]) {
      color: #adb5bd;
      color: var(--mantine-color-gray-5);
}

:where([data-mantine-color-scheme='dark']) fieldset:disabled .m_1738fcb2, :where([data-mantine-color-scheme='dark']) .m_1738fcb2:where([data-disabled]) {
      color: #696969;
      color: var(--mantine-color-dark-3);
}

:where([data-mantine-color-scheme='light']) .m_1738fcb2:where([data-active]) {
      color: #000;
      color: var(--sc-label-color, var(--mantine-color-black));
}

:where([data-mantine-color-scheme='dark']) .m_1738fcb2:where([data-active]) {
      color: #fff;
      color: var(--sc-label-color, var(--mantine-color-white));
}

.m_cf365364:where([data-initialized]) .m_1738fcb2:where([data-active])::before {
        display: none;
      }

.m_1738fcb2:where([data-active])::before {
      content: '';
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: 0;
      position: absolute;
      border-radius: calc(0.25rem * 1);
      border-radius: var(--sc-radius, var(--mantine-radius-default));
}

:where([data-mantine-color-scheme='light']) .m_1738fcb2:where([data-active])::before {
        box-shadow: none;
        box-shadow: var(--sc-shadow, none);
        background-color: #fff;
        background-color: var(--sc-color, var(--mantine-color-white));
}

:where([data-mantine-color-scheme='dark']) .m_1738fcb2:where([data-active])::before {
        box-shadow: none;
        background-color: #3b3b3b;
        background-color: var(--sc-color, var(--mantine-color-dark-5));
}

@media (hover: hover) {
      :where([data-mantine-color-scheme='light']) .m_1738fcb2:where(:not([data-disabled]):not([data-active]):not([data-read-only])):hover {
        color: #000;
        color: var(--mantine-color-black);
  }

      :where([data-mantine-color-scheme='dark']) .m_1738fcb2:where(:not([data-disabled]):not([data-active]):not([data-read-only])):hover {
        color: #fff;
        color: var(--mantine-color-white);
  }
}

@media (hover: none) {
      :where([data-mantine-color-scheme='light']) .m_1738fcb2:where(:not([data-disabled]):not([data-active]):not([data-read-only])):active {
        color: #000;
        color: var(--mantine-color-black);
  }

      :where([data-mantine-color-scheme='dark']) .m_1738fcb2:where(:not([data-disabled]):not([data-active]):not([data-read-only])):active {
        color: #fff;
        color: var(--mantine-color-white);
  }
}

@media (hover: hover) {
      :where([data-mantine-color-scheme='light']) fieldset:disabled .m_1738fcb2:hover {
        color: #adb5bd !important;
        color: var(--mantine-color-gray-5) !important;
  }

      :where([data-mantine-color-scheme='dark']) fieldset:disabled .m_1738fcb2:hover {
        color: #696969 !important;
        color: var(--mantine-color-dark-3) !important;
  }
}

@media (hover: none) {
      :where([data-mantine-color-scheme='light']) fieldset:disabled .m_1738fcb2:active {
        color: #adb5bd !important;
        color: var(--mantine-color-gray-5) !important;
  }

      :where([data-mantine-color-scheme='dark']) fieldset:disabled .m_1738fcb2:active {
        color: #696969 !important;
        color: var(--mantine-color-dark-3) !important;
  }
}

.m_1714d588 {
  height: 0;
  width: 0;
  position: absolute;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
}

.m_1714d588[data-focus-ring='auto']:focus.focus-visible + .m_1738fcb2 {
        --segmented-control-outline: 2px solid var(--mantine-primary-color-filled);
      }

.m_1714d588[data-focus-ring='auto']:focus:focus-visible + .m_1738fcb2 {
        --segmented-control-outline: 2px solid var(--mantine-primary-color-filled);
      }

.m_1714d588[data-focus-ring='always']:focus + .m_1738fcb2 {
        --segmented-control-outline: 2px solid var(--mantine-primary-color-filled);
      }

.m_69686b9b {
  position: relative;
  flex: 1;
  z-index: 2;
  transition: border-color var(--sc-transition-duration) var(--sc-transition-timing-function);
}

[dir="ltr"] .m_cf365364[data-with-items-borders] :where(.m_69686b9b)::before {
    left: 0;
}

[dir="rtl"] .m_cf365364[data-with-items-borders] :where(.m_69686b9b)::before {
    right: 0;
}

.m_cf365364[data-with-items-borders] :where(.m_69686b9b)::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    background-color: var(--separator-color);
    width: calc(0.0625rem * 1);
    width: calc(0.0625rem * var(--mantine-scale));
    transition: background-color var(--sc-transition-duration) var(--sc-transition-timing-function);
  }

.m_69686b9b[data-orientation='vertical']::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: auto;
      height: calc(0.0625rem * 1);
      height: calc(0.0625rem * var(--mantine-scale));
      width: auto;
    }

:where([data-mantine-color-scheme='light']) .m_69686b9b {
    --separator-color: var(--mantine-color-gray-3);
}

:where([data-mantine-color-scheme='dark']) .m_69686b9b {
    --separator-color: var(--mantine-color-dark-4);
}

.m_69686b9b:first-of-type::before {
      --separator-color: transparent;
    }

[data-mantine-color-scheme] .m_69686b9b[data-active]::before, [data-mantine-color-scheme] .m_69686b9b[data-active] + .m_69686b9b::before {
          --separator-color: transparent;
        }

.m_78882f40 {
  position: relative;
  z-index: 2;
}

.m_fa528724 {
  --scp-filled-segment-color: var(--mantine-primary-color-filled);
  --scp-transition-duration: 0ms;
  --scp-thickness: calc(0.625rem * var(--mantine-scale));
}

  :where([data-mantine-color-scheme='light']) .m_fa528724 {
    --scp-empty-segment-color: var(--mantine-color-gray-2);
}

  :where([data-mantine-color-scheme='dark']) .m_fa528724 {
    --scp-empty-segment-color: var(--mantine-color-dark-4);
}

  .m_fa528724 {

  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}

.m_62e9e7e2 {
  display: block;
  transform: var(--scp-rotation);
  overflow: hidden;
}

.m_c573fb6f {
  transition:
    stroke-dashoffset var(--scp-transition-duration) ease,
    stroke-dasharray var(--scp-transition-duration) ease,
    stroke var(--scp-transition-duration);
}

.m_4fa340f2 {
  position: absolute;
  margin: 0;
  padding: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 1;
}

.m_4fa340f2:where([data-position='bottom']) {
    bottom: 0;
    padding-left: calc(var(--scp-thickness) * 2);
    padding-right: calc(var(--scp-thickness) * 2);
  }

.m_4fa340f2:where([data-position='bottom']):where([data-orientation='down']) {
      bottom: auto;
      top: 0;
    }

.m_4fa340f2:where([data-position='center']) {
    top: 50%;
    padding-left: calc(var(--scp-thickness) * 3);
    padding-right: calc(var(--scp-thickness) * 3);
  }

.m_925c2d2c {
  container: simple-grid / inline-size;
}

.m_2415a157 {
  display: grid;
  grid-template-columns: repeat(var(--sg-cols), minmax(0, 1fr));
  grid-gap: var(--sg-spacing-y) var(--sg-spacing-x);
  gap: var(--sg-spacing-y) var(--sg-spacing-x);
}

@keyframes m_299c329c {
  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

.m_18320242 {
  height: auto;
  height: var(--skeleton-height, auto);
  width: 100%;
  width: var(--skeleton-width, 100%);
  border-radius: calc(0.25rem * 1);
  border-radius: var(--skeleton-radius, var(--mantine-radius-default));
  position: relative;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.m_18320242:where([data-animate])::after {
    animation: m_299c329c 1500ms linear infinite;
  }

.m_18320242:where([data-visible]) {
    overflow: hidden;
  }

.m_18320242:where([data-visible])::before {
      position: absolute;
      content: '';
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: 10;
      background-color: var(--mantine-color-body);
    }

.m_18320242:where([data-visible])::after {
      position: absolute;
      content: '';
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: 11;
    }

:where([data-mantine-color-scheme='light']) .m_18320242:where([data-visible])::after {
        background-color: #dee2e6;
        background-color: var(--mantine-color-gray-3);
}

:where([data-mantine-color-scheme='dark']) .m_18320242:where([data-visible])::after {
        background-color: #424242;
        background-color: var(--mantine-color-dark-4);
}

.m_dd36362e {
  --slider-size-xs: calc(0.25rem * var(--mantine-scale));
  --slider-size-sm: calc(0.375rem * var(--mantine-scale));
  --slider-size-md: calc(0.5rem * var(--mantine-scale));
  --slider-size-lg: calc(0.625rem * var(--mantine-scale));
  --slider-size-xl: calc(0.75rem * var(--mantine-scale));

  --slider-size: var(--slider-size-md);
  --slider-radius: calc(62.5rem * var(--mantine-scale));
  --slider-color: var(--mantine-primary-color-filled);

  -webkit-tap-highlight-color: transparent;
  outline: none;
  height: calc(var(--slider-size) * 2);
  padding-left: var(--slider-size);
  padding-right: var(--slider-size);
  display: flex;
  flex-direction: column;
  align-items: center;
  touch-action: none;
  position: relative;
}

  [data-mantine-color-scheme='light'] .m_dd36362e {
    --slider-track-bg: var(--mantine-color-gray-2);
    --slider-track-disabled-bg: var(--mantine-color-gray-4);
}

  [data-mantine-color-scheme='dark'] .m_dd36362e {
    --slider-track-bg: var(--mantine-color-dark-4);
    --slider-track-disabled-bg: var(--mantine-color-dark-3);
}

.m_c9357328 {
  position: absolute;
  top: calc(-2.25rem * 1);
  top: calc(-2.25rem * var(--mantine-scale));
  font-size: calc(0.75rem * 1);
  font-size: var(--mantine-font-size-xs);
  color: #fff;
  color: var(--mantine-color-white);
  padding: calc((0.625rem * 1) / 2);
  padding: calc(calc(0.625rem * 1) / 2);
  padding: calc(var(--mantine-spacing-xs) / 2);
  border-radius: calc(0.25rem * 1);
  border-radius: var(--mantine-radius-sm);
  white-space: nowrap;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  touch-action: none;
}

:where([data-mantine-color-scheme='light']) .m_c9357328 {
    background-color: #212529;
    background-color: var(--mantine-color-gray-9);
}

:where([data-mantine-color-scheme='dark']) .m_c9357328 {
    background-color: #424242;
    background-color: var(--mantine-color-dark-4);
}

.m_c9a9a60a {
  position: absolute;
  display: flex;
  height: var(--slider-thumb-size);
  width: var(--slider-thumb-size);
  border: calc(0.25rem * 1) solid;
  border: calc(0.25rem * var(--mantine-scale)) solid;
  transform: translate(-50%, -50%);
  top: 50%;
  cursor: pointer;
  border-radius: var(--slider-radius);
  align-items: center;
  justify-content: center;
  transition:
    box-shadow 100ms ease,
    transform 100ms ease;
  z-index: 3;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  touch-action: none;
  outline-offset: calc(0.125rem * 1);
  outline-offset: calc(0.125rem * var(--mantine-scale));
  left: var(--slider-thumb-offset);
}

:where([dir="rtl"]) .m_c9a9a60a {
    left: auto;
    right: calc(var(--slider-thumb-offset) - var(--slider-thumb-size));
}

fieldset:disabled .m_c9a9a60a,
  .m_c9a9a60a:where([data-disabled]) {
    display: none;
  }

.m_c9a9a60a:where([data-dragging]) {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 calc(0.0625rem * 1)
      calc(0.1875rem * 1) rgba(0, 0, 0, 0.05),
    rgba(0, 0, 0, 0.05) 0 calc(0.625rem * 1)
      calc(0.9375rem * 1) calc(-0.3125rem * 1),
    rgba(0, 0, 0, 0.04) 0 calc(0.4375rem * 1)
      calc(0.4375rem * 1) calc(-0.3125rem * 1);
    box-shadow: var(--mantine-shadow-sm);
  }

:where([data-mantine-color-scheme='light']) .m_c9a9a60a {
    color: var(--slider-color);
    border-color: var(--slider-color);
    background-color: #fff;
    background-color: var(--mantine-color-white);
}

:where([data-mantine-color-scheme='dark']) .m_c9a9a60a {
    color: #fff;
    color: var(--mantine-color-white);
    border-color: #fff;
    border-color: var(--mantine-color-white);
    background-color: var(--slider-color);
}

.m_a8645c2 {
  display: flex;
  align-items: center;
  width: 100%;
  height: calc(var(--slider-size) * 2);
  cursor: pointer;
}

fieldset:disabled .m_a8645c2,
  .m_a8645c2:where([data-disabled]) {
    cursor: not-allowed;
  }

.m_c9ade57f {
  position: relative;
  width: 100%;
  height: var(--slider-size);
}

.m_c9ade57f:where([data-inverted]:not([data-disabled])) {
    --track-bg: var(--slider-color);
  }

fieldset:disabled .m_c9ade57f:where([data-inverted]),
  .m_c9ade57f:where([data-inverted][data-disabled]) {
    --track-bg: var(--slider-track-disabled-bg);
  }

.m_c9ade57f::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    border-radius: var(--slider-radius);
    left: calc(var(--slider-size) * -1);
    right: calc(var(--slider-size) * -1);
    background-color: var(--slider-track-bg);
    background-color: var(--track-bg, var(--slider-track-bg));
    z-index: 0;
  }

[dir="ltr"] .m_38aeed47 {
  left: var(--slider-bar-offset);
}

[dir="rtl"] .m_38aeed47 {
  right: var(--slider-bar-offset);
}

.m_38aeed47 {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  background-color: var(--slider-color);
  border-radius: var(--slider-radius);
  width: var(--slider-bar-width);
}

.m_38aeed47:where([data-inverted]) {
    background-color: var(--slider-track-bg);
  }

:where([data-mantine-color-scheme='light']) fieldset:disabled .m_38aeed47:where(:not([data-inverted])), :where([data-mantine-color-scheme='light']) .m_38aeed47:where([data-disabled]:not([data-inverted])) {
      background-color: #ced4da;
      background-color: var(--mantine-color-gray-4);
}

:where([data-mantine-color-scheme='dark']) fieldset:disabled .m_38aeed47:where(:not([data-inverted])), :where([data-mantine-color-scheme='dark']) .m_38aeed47:where([data-disabled]:not([data-inverted])) {
      background-color: #696969;
      background-color: var(--mantine-color-dark-3);
}

[dir="ltr"] .m_b7b0423a {
  left: calc(var(--mark-offset) - var(--slider-size) / 2);
}

[dir="rtl"] .m_b7b0423a {
  right: calc(var(--mark-offset) - var(--slider-size) / 2);
}

.m_b7b0423a {
  position: absolute;
  top: 0;
  z-index: 2;
  height: 0;
  pointer-events: none;
}

.m_dd33bc19 {
  border: calc(0.125rem * 1) solid;
  border: calc(0.125rem * var(--mantine-scale)) solid;
  height: var(--slider-size);
  width: var(--slider-size);
  border-radius: calc(62.5rem * 1);
  border-radius: calc(62.5rem * var(--mantine-scale));
  background-color: #fff;
  background-color: var(--mantine-color-white);
  pointer-events: none;
}

:where([data-mantine-color-scheme='light']) .m_dd33bc19 {
    border-color: #e9ecef;
    border-color: var(--mantine-color-gray-2);
}

:where([data-mantine-color-scheme='dark']) .m_dd33bc19 {
    border-color: #424242;
    border-color: var(--mantine-color-dark-4);
}

.m_dd33bc19:where([data-filled]) {
    border-color: var(--slider-color);
  }

:where([data-mantine-color-scheme='light']) .m_dd33bc19:where([data-filled]):where([data-disabled]) {
        border-color: #ced4da;
        border-color: var(--mantine-color-gray-4);
}

:where([data-mantine-color-scheme='dark']) .m_dd33bc19:where([data-filled]):where([data-disabled]) {
        border-color: #696969;
        border-color: var(--mantine-color-dark-3);
}

.m_68c77a5b {
  transform: translate(calc(-50% + var(--slider-size) / 2), calc((0.625rem * 1) / 2));
  transform: translate(calc(-50% + var(--slider-size) / 2), calc(calc(0.625rem * 1) / 2));
  transform: translate(calc(-50% + var(--slider-size) / 2), calc(var(--mantine-spacing-xs) / 2));
  font-size: calc(0.875rem * 1);
  font-size: var(--mantine-font-size-sm);
  white-space: nowrap;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

:where([data-mantine-color-scheme='light']) .m_68c77a5b {
    color: #868e96;
    color: var(--mantine-color-gray-6);
}

:where([data-mantine-color-scheme='dark']) .m_68c77a5b {
    color: #828282;
    color: var(--mantine-color-dark-2);
}

.m_559cce2d {
  position: relative;
}

  .m_559cce2d:where([data-has-spoiler]) {
    margin-bottom: calc(1.5rem * 1);
    margin-bottom: calc(1.5rem * var(--mantine-scale));
  }

.m_b912df4e {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: max-height 200ms ease;
  transition: max-height var(--spoiler-transition-duration, 200ms) ease;
}

[dir="ltr"] .m_b9131032 {
  left: 0;
}

[dir="rtl"] .m_b9131032 {
  right: 0;
}

.m_b9131032 {
  position: absolute;
  top: 100%;
  height: calc(1.5rem * 1);
  height: calc(1.5rem * var(--mantine-scale));
}

.m_6d731127 {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  align-items: var(--stack-align, stretch);
  justify-content: flex-start;
  justify-content: var(--stack-justify, flex-start);
  gap: calc(1rem * 1);
  gap: var(--stack-gap, var(--mantine-spacing-md));
}

.m_cbb4ea7e {
  --stepper-icon-size-xs: calc(2.125rem * var(--mantine-scale));
  --stepper-icon-size-sm: calc(2.25rem * var(--mantine-scale));
  --stepper-icon-size-md: calc(2.625rem * var(--mantine-scale));
  --stepper-icon-size-lg: calc(3rem * var(--mantine-scale));
  --stepper-icon-size-xl: calc(3.25rem * var(--mantine-scale));

  --stepper-icon-size: var(--stepper-icon-size-md);
  --stepper-color: var(--mantine-primary-color-filled);
  --stepper-content-padding: var(--mantine-spacing-md);
  --stepper-spacing: var(--mantine-spacing-md);
  --stepper-radius: calc(62.5rem * var(--mantine-scale));
  --stepper-fz: var(--mantine-font-size-md);
  --stepper-outline-thickness: calc(0.125rem * var(--mantine-scale));
}

  [data-mantine-color-scheme='light'] .m_cbb4ea7e {
    --stepper-outline-color: var(--mantine-color-gray-2);
}

  [data-mantine-color-scheme='dark'] .m_cbb4ea7e {
    --stepper-outline-color: var(--mantine-color-dark-5);
}

.m_aaf89d0b {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.m_aaf89d0b:where([data-wrap]) {
    flex-wrap: wrap;
    gap: calc(1rem * 1) 0;
    gap: var(--mantine-spacing-md) 0;
  }

.m_aaf89d0b:where([data-orientation='vertical']) {
    flex-direction: column;
  }

.m_aaf89d0b:where([data-orientation='vertical']):where([data-icon-position='left']) {
      align-items: flex-start;
    }

.m_aaf89d0b:where([data-orientation='vertical']):where([data-icon-position='right']) {
      align-items: flex-end;
    }

.m_aaf89d0b:where([data-orientation='horizontal']) {
    flex-direction: row;
  }

.m_2a371ac9 {
  transition: background-color 150ms ease;
  flex: 1;
  height: var(--stepper-outline-thickness);
  margin-left: calc(1rem * 1);
  margin-right: calc(1rem * 1);
  margin-left: var(--mantine-spacing-md);
  margin-right: var(--mantine-spacing-md);
  background-color: var(--stepper-outline-color);
}

.m_2a371ac9:where([data-active]) {
    background-color: var(--stepper-color);
  }

.m_78da155d {
  padding-top: var(--stepper-content-padding);
}

.m_cbb57068 {
  --step-color: var(--stepper-color);

  display: flex;
  cursor: default;
}

.m_cbb57068:where([data-allow-click]) {
    cursor: pointer;
  }

.m_cbb57068:where([data-icon-position='left']) {
    flex-direction: row;
  }

.m_cbb57068:where([data-icon-position='right']) {
    flex-direction: row-reverse;
  }

.m_f56b1e2c {
  align-items: center;
}

.m_833edb7e {
  --separator-spacing: calc(var(--mantine-spacing-xs) / 2);

  justify-content: flex-start;
  min-height: calc(var(--stepper-icon-size) + (2rem * 1) + var(--separator-spacing));
  min-height: calc(var(--stepper-icon-size) + calc(2rem * 1) + var(--separator-spacing));
  min-height: calc(var(--stepper-icon-size) + var(--mantine-spacing-xl) + var(--separator-spacing));
  margin-top: var(--separator-spacing);
  overflow: hidden;
}

.m_833edb7e:where(:first-of-type) {
    margin-top: 0;
  }

.m_833edb7e:where(:last-of-type) {
    min-height: auto;
  }

.m_833edb7e:where(:last-of-type) .m_6496b3f3 {
      display: none;
    }

.m_818e70b {
  position: relative;
}

[dir="ltr"] .m_6496b3f3 {
  left: calc(var(--stepper-icon-size) / 2);
}

[dir="rtl"] .m_6496b3f3 {
  right: calc(var(--stepper-icon-size) / 2);
}

[dir="ltr"] .m_6496b3f3 {
  border-left: var(--stepper-outline-thickness) solid var(--stepper-outline-color);
}

[dir="rtl"] .m_6496b3f3 {
  border-right: var(--stepper-outline-thickness) solid var(--stepper-outline-color);
}

.m_6496b3f3 {
  top: calc(var(--stepper-icon-size) + var(--separator-spacing));
  height: 100vh;
  position: absolute;
}

.m_6496b3f3:where([data-active]) {
    border-color: var(--stepper-color);
  }

.m_1959ad01 {
  height: var(--stepper-icon-size);
  width: var(--stepper-icon-size);
  min-height: var(--stepper-icon-size);
  min-width: var(--stepper-icon-size);
  border-radius: var(--stepper-radius);
  font-size: var(--stepper-fz);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-weight: bold;
  transition:
    background-color 150ms ease,
    border-color 150ms ease;
  border: var(--stepper-outline-thickness) solid var(--stepper-outline-color);
  background-color: var(--stepper-outline-color);
}

:where([data-mantine-color-scheme='light']) .m_1959ad01 {
    color: #495057;
    color: var(--mantine-color-gray-7);
}

:where([data-mantine-color-scheme='dark']) .m_1959ad01 {
    color: #b8b8b8;
    color: var(--mantine-color-dark-1);
}

.m_1959ad01:where([data-progress]) {
    border-color: var(--step-color);
  }

.m_1959ad01:where([data-completed]) {
    color: #fff;
    color: var(--stepper-icon-color, var(--mantine-color-white));
    background-color: var(--step-color);
    border-color: var(--step-color);
  }

.m_a79331dc {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  color: var(--stepper-icon-color, var(--mantine-color-white));
}

.m_1956aa2a {
  display: flex;
  flex-direction: column;
}

[dir="ltr"] .m_1956aa2a:where([data-icon-position='left']) {
    margin-left: calc(0.75rem * 1);
    margin-left: var(--mantine-spacing-sm);
}

[dir="rtl"] .m_1956aa2a:where([data-icon-position='left']) {
    margin-right: calc(0.75rem * 1);
    margin-right: var(--mantine-spacing-sm);
}

[dir="ltr"] .m_1956aa2a:where([data-icon-position='left']) {
    margin-left: calc(0.75rem * 1);
}

[dir="rtl"] .m_1956aa2a:where([data-icon-position='left']) {
    margin-right: calc(0.75rem * 1);
}

[dir="ltr"] .m_1956aa2a:where([data-icon-position='right']) {
    margin-right: calc(0.75rem * 1);
    margin-right: var(--mantine-spacing-sm);
}

[dir="rtl"] .m_1956aa2a:where([data-icon-position='right']) {
    margin-left: calc(0.75rem * 1);
    margin-left: var(--mantine-spacing-sm);
}

[dir="ltr"] .m_1956aa2a:where([data-icon-position='right']) {
    margin-right: calc(0.75rem * 1);
}

[dir="rtl"] .m_1956aa2a:where([data-icon-position='right']) {
    margin-left: calc(0.75rem * 1);
}

.m_1956aa2a:where([data-icon-position='right']) {
    text-align: right;
  }

:where([dir="rtl"]) .m_1956aa2a:where([data-icon-position='right']) {
      text-align: left;
}

.m_12051f6c {
  font-weight: 500;
  font-size: var(--stepper-fz);
  line-height: 1;
}

.m_164eea74 {
  margin-top: calc(var(--stepper-spacing) / 3);
  margin-bottom: calc(var(--stepper-spacing) / 3);
  font-size: calc(var(--stepper-fz) - (0.125rem * 1));
  font-size: calc(var(--stepper-fz) - (0.125rem * var(--mantine-scale)));
  font-size: calc(var(--stepper-fz) - (0.125rem * 1));
  font-size: calc(var(--stepper-fz) - calc(0.125rem * 1));
  font-size: calc(var(--stepper-fz) - calc(0.125rem * var(--mantine-scale)));
  line-height: 1;
  color: var(--mantine-color-dimmed);
}

.m_5f93f3bb {
  --switch-height-xs: calc(1rem * var(--mantine-scale));
  --switch-height-sm: calc(1.25rem * var(--mantine-scale));
  --switch-height-md: calc(1.5rem * var(--mantine-scale));
  --switch-height-lg: calc(1.875rem * var(--mantine-scale));
  --switch-height-xl: calc(2.25rem * var(--mantine-scale));

  --switch-width-xs: calc(2rem * var(--mantine-scale));
  --switch-width-sm: calc(2.375rem * var(--mantine-scale));
  --switch-width-md: calc(2.875rem * var(--mantine-scale));
  --switch-width-lg: calc(3.5rem * var(--mantine-scale));
  --switch-width-xl: calc(4.5rem * var(--mantine-scale));

  --switch-thumb-size-xs: calc(0.75rem * var(--mantine-scale));
  --switch-thumb-size-sm: calc(0.875rem * var(--mantine-scale));
  --switch-thumb-size-md: calc(1.125rem * var(--mantine-scale));
  --switch-thumb-size-lg: calc(1.375rem * var(--mantine-scale));
  --switch-thumb-size-xl: calc(1.75rem * var(--mantine-scale));

  --switch-label-font-size-xs: calc(0.3125rem * var(--mantine-scale));
  --switch-label-font-size-sm: calc(0.375rem * var(--mantine-scale));
  --switch-label-font-size-md: calc(0.4375rem * var(--mantine-scale));
  --switch-label-font-size-lg: calc(0.5625rem * var(--mantine-scale));
  --switch-label-font-size-xl: calc(0.6875rem * var(--mantine-scale));

  --switch-track-label-padding-xs: calc(0.0625rem * var(--mantine-scale));
  --switch-track-label-padding-sm: calc(0.125rem * var(--mantine-scale));
  --switch-track-label-padding-md: calc(0.125rem * var(--mantine-scale));
  --switch-track-label-padding-lg: calc(0.1875rem * var(--mantine-scale));
  --switch-track-label-padding-xl: calc(0.1875rem * var(--mantine-scale));

  --switch-height: var(--switch-height-sm);
  --switch-width: var(--switch-width-sm);
  --switch-thumb-size: var(--switch-thumb-size-sm);
  --switch-label-font-size: var(--switch-label-font-size-sm);
  --switch-track-label-padding: var(--switch-track-label-padding-sm);
  --switch-radius: calc(62.5rem * var(--mantine-scale));
  --switch-color: var(--mantine-primary-color-filled);

  position: relative;
}

.m_926b4011 {
  height: 0;
  width: 0;
  opacity: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  overflow: hidden;
  white-space: nowrap;
}

.m_9307d992 {
  -webkit-tap-highlight-color: transparent;
  cursor: default;
  cursor: var(--switch-cursor, var(--mantine-cursor-type));
  overflow: hidden;
  position: relative;
  border-radius: var(--switch-radius);
  background-color: var(--switch-bg);
  border: 1px solid var(--switch-bd);
  height: var(--switch-height);
  min-width: var(--switch-width);
  margin: 0;
  transition:
    background-color 150ms ease,
    border-color 150ms ease;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: flex;
  align-items: center;
  font-size: var(--switch-label-font-size);
  font-weight: 600;
  order: 1;
  order: var(--switch-order, 1);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 0;
  line-height: 0;
  color: var(--switch-text-color);
}

.m_9307d992:where([data-without-labels]) {
    width: var(--switch-width);
  }

.m_926b4011.focus-visible + .m_9307d992 {
    outline: 2px solid var(--mantine-color-blue-filled);
    outline: 2px solid var(--mantine-primary-color-filled);
    outline-offset: calc(0.125rem * 1);
    outline-offset: calc(0.125rem * var(--mantine-scale));
  }

.m_926b4011.focus-visible + .m_9307d992 {
    outline: 2px solid var(--mantine-color-blue-filled);
    outline: 2px solid var(--mantine-primary-color-filled);
    outline-offset: calc(0.125rem * 1);
    outline-offset: calc(0.125rem * var(--mantine-scale));
  }

.m_926b4011:focus-visible + .m_9307d992 {
    outline: 2px solid var(--mantine-color-blue-filled);
    outline: 2px solid var(--mantine-primary-color-filled);
    outline-offset: calc(0.125rem * 1);
    outline-offset: calc(0.125rem * var(--mantine-scale));
  }

.m_926b4011:checked + .m_9307d992 {
    --switch-bg: var(--switch-color);
    --switch-bd: var(--switch-color);
    --switch-text-color: var(--mantine-color-white);
  }

.m_926b4011:disabled + .m_9307d992,
  .m_926b4011[data-disabled] + .m_9307d992 {
    --switch-bg: var(--switch-disabled-color);
    --switch-bd: var(--switch-disabled-color);
    --switch-cursor: not-allowed;
  }

[data-mantine-color-scheme='light'] .m_9307d992 {
    --switch-bg: var(--mantine-color-gray-2);
    --switch-bd: var(--mantine-color-gray-3);
    --switch-text-color: var(--mantine-color-gray-6);
    --switch-disabled-color: var(--mantine-color-gray-2);
}

[data-mantine-color-scheme='dark'] .m_9307d992 {
    --switch-bg: var(--mantine-color-dark-6);
    --switch-bd: var(--mantine-color-dark-4);
    --switch-text-color: var(--mantine-color-dark-1);
    --switch-disabled-color: var(--mantine-color-dark-4);
}

.m_9307d992[data-error] {
    --switch-bd: var(--mantine-color-error);
  }

.m_9307d992[data-label-position='left'] {
    --switch-order: 2;
  }

[dir="ltr"] .m_93039a1d {
  left: var(--switch-track-label-padding);
  left: var(--switch-thumb-start, var(--switch-track-label-padding));
}

[dir="rtl"] .m_93039a1d {
  right: var(--switch-track-label-padding);
  right: var(--switch-thumb-start, var(--switch-track-label-padding));
}

[dir="ltr"] .m_93039a1d {
  transition: left 150ms ease;
}

[dir="rtl"] .m_93039a1d {
  transition: right 150ms ease;
}

[dir="ltr"] .m_93039a1d {
  left: var(--switch-track-label-padding);
}

[dir="rtl"] .m_93039a1d {
  right: var(--switch-track-label-padding);
}

.m_93039a1d {
  position: absolute;
  z-index: 1;
  border-radius: var(--switch-radius);
  display: flex;
  background-color: #fff;
  background-color: var(--switch-thumb-bg, var(--mantine-color-white));
  height: var(--switch-thumb-size);
  width: var(--switch-thumb-size);
  border: 1px solid var(--switch-thumb-bd);
}

.m_93039a1d > * {
    margin: auto;
  }

.m_926b4011:checked + * > .m_93039a1d {
    --switch-thumb-start: calc(100% - var(--switch-thumb-size) - var(--switch-track-label-padding));
    --switch-thumb-bd: var(--mantine-color-white);
  }

.m_926b4011:disabled + * > .m_93039a1d,
  .m_926b4011[data-disabled] + * > .m_93039a1d {
    --switch-thumb-bd: var(--switch-thumb-bg-disabled);
    --switch-thumb-bg: var(--switch-thumb-bg-disabled);
  }

[data-mantine-color-scheme='light'] .m_93039a1d {
    --switch-thumb-bd: var(--mantine-color-gray-3);
    --switch-thumb-bg-disabled: var(--mantine-color-gray-0);
}

[data-mantine-color-scheme='dark'] .m_93039a1d {
    --switch-thumb-bd: var(--mantine-color-white);
    --switch-thumb-bg-disabled: var(--mantine-color-dark-3);
}

[dir="ltr"] .m_8277e082 {
  margin-left: calc(var(--switch-thumb-size) + var(--switch-track-label-padding));
}

[dir="rtl"] .m_8277e082 {
  margin-right: calc(var(--switch-thumb-size) + var(--switch-track-label-padding));
}

.m_8277e082 {
  height: 100%;
  display: grid;
  align-content: center;
  justify-content: center;
  place-content: center;
  min-width: calc(var(--switch-width) - var(--switch-thumb-size));
  padding-left: var(--switch-track-label-padding);
  padding-right: var(--switch-track-label-padding);
  transition: margin 150ms ease;
}

[dir="ltr"] .m_926b4011:checked + * > .m_8277e082 {
    margin-right: calc(var(--switch-thumb-size) + var(--switch-track-label-padding));
}

[dir="rtl"] .m_926b4011:checked + * > .m_8277e082 {
    margin-left: calc(var(--switch-thumb-size) + var(--switch-track-label-padding));
}

[dir="ltr"] .m_926b4011:checked + * > .m_8277e082 {
    margin-left: 0;
}

[dir="rtl"] .m_926b4011:checked + * > .m_8277e082 {
    margin-right: 0;
}

.m_b23fa0ef {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.55;
  line-height: var(--mantine-line-height);
  font-size: calc(0.875rem * 1);
  font-size: var(--mantine-font-size-sm);
  table-layout: auto;
  table-layout: var(--table-layout, auto);
  caption-side: bottom;
  caption-side: var(--table-caption-side, bottom);
  border: none;
}

  :where([data-mantine-color-scheme='light']) .m_b23fa0ef {
    --table-hover-color: var(--mantine-color-gray-1);
    --table-striped-color: var(--mantine-color-gray-0);
    --table-border-color: var(--mantine-color-gray-3);
}

  :where([data-mantine-color-scheme='dark']) .m_b23fa0ef {
    --table-hover-color: var(--mantine-color-dark-5);
    --table-striped-color: var(--mantine-color-dark-6);
    --table-border-color: var(--mantine-color-dark-4);
}

  .m_b23fa0ef:where([data-with-table-border]) {
    border: calc(0.0625rem * 1) solid var(--table-border-color);
    border: calc(0.0625rem * var(--mantine-scale)) solid var(--table-border-color);
  }

  .m_b23fa0ef:where([data-tabular-nums]) {
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
  }

  .m_b23fa0ef:where([data-variant='vertical']) :where(.m_4e7aa4f3) {
    font-weight: 500;
  }

  :where([data-mantine-color-scheme='light']) .m_b23fa0ef:where([data-variant='vertical']) :where(.m_4e7aa4f3) {
      background-color: #f8f9fa;
      background-color: var(--mantine-color-gray-0);
}

  :where([data-mantine-color-scheme='dark']) .m_b23fa0ef:where([data-variant='vertical']) :where(.m_4e7aa4f3) {
      background-color: #2e2e2e;
      background-color: var(--mantine-color-dark-6);
}

.m_4e7aa4f3 {
  text-align: left;
}

:where([dir="rtl"]) .m_4e7aa4f3 {
    text-align: right;
}

.m_4e7aa4fd {
  border-bottom: none;
  background-color: transparent;
}

@media (hover: hover) {
    .m_4e7aa4fd:hover:where([data-hover]) {
      background-color: var(--tr-hover-bg);
    }
}

@media (hover: none) {
    .m_4e7aa4fd:active:where([data-hover]) {
      background-color: var(--tr-hover-bg);
    }
}

.m_4e7aa4fd:where([data-with-row-border]) {
    border-bottom: calc(0.0625rem * 1) solid var(--table-border-color);
    border-bottom: calc(0.0625rem * var(--mantine-scale)) solid var(--table-border-color);
  }

.m_4e7aa4ef,
.m_4e7aa4f3 {
  padding: var(--table-vertical-spacing) calc(0.625rem * 1);
  padding: var(--table-vertical-spacing) var(--table-horizontal-spacing, var(--mantine-spacing-xs));
}

[dir="ltr"] .m_4e7aa4ef:where([data-with-column-border]:not(:last-child)),[dir="ltr"]  .m_4e7aa4f3:where([data-with-column-border]:not(:last-child)) {
    border-right: calc(0.0625rem * 1) solid var(--table-border-color);
    border-right: calc(0.0625rem * var(--mantine-scale)) solid var(--table-border-color);
}

[dir="rtl"] .m_4e7aa4ef:where([data-with-column-border]:not(:last-child)),[dir="rtl"]  .m_4e7aa4f3:where([data-with-column-border]:not(:last-child)) {
    border-left: calc(0.0625rem * 1) solid var(--table-border-color);
    border-left: calc(0.0625rem * var(--mantine-scale)) solid var(--table-border-color);
}

[dir="ltr"] .m_4e7aa4ef:where([data-with-column-border]:not(:last-child)),[dir="ltr"]  .m_4e7aa4f3:where([data-with-column-border]:not(:last-child)) {
    border-right: calc(0.0625rem * 1) solid var(--table-border-color);
}

[dir="rtl"] .m_4e7aa4ef:where([data-with-column-border]:not(:last-child)),[dir="rtl"]  .m_4e7aa4f3:where([data-with-column-border]:not(:last-child)) {
    border-left: calc(0.0625rem * 1) solid var(--table-border-color);
}

.m_b2404537 > :where(tr):where([data-with-row-border]:last-of-type) {
      border-bottom: none;
    }

.m_b2404537 > :where(tr):where([data-striped='odd']:nth-of-type(odd)) {
      background-color: var(--table-striped-color);
    }

.m_b2404537 > :where(tr):where([data-striped='even']:nth-of-type(even)) {
      background-color: var(--table-striped-color);
    }

.m_b2404537 > :where(tr)[data-hover] {
      --tr-hover-bg: var(--table-highlight-on-hover-color, var(--table-hover-color));
    }

.m_b242d975 {
  top: 0;
  top: var(--table-sticky-header-offset, 0);
  z-index: 3;
}

.m_b242d975:where([data-sticky]) {
    position: sticky;
  }

.m_b242d975:where([data-sticky]) :where(.m_4e7aa4f3) {
      position: sticky;
      top: 0;
      top: var(--table-sticky-header-offset, 0);
      background-color: var(--mantine-color-body);
    }

:where([data-with-table-border]) .m_b242d975[data-sticky] .m_4e7aa4f3 {
  top: auto;
  top: initial;
}

.m_9e5a3ac7 {
  color: var(--mantine-color-dimmed);
}

.m_9e5a3ac7:where([data-side='top']) {
    margin-bottom: calc(0.625rem * 1);
    margin-bottom: var(--mantine-spacing-xs);
  }

.m_9e5a3ac7:where([data-side='bottom']) {
    margin-top: calc(0.625rem * 1);
    margin-top: var(--mantine-spacing-xs);
  }

.m_a100c15 {
  overflow-x: var(--table-overflow);
}

.m_62259741 {
  min-width: var(--table-min-width);
  max-height: var(--table-max-height);
}

.m_bcaa9990 {
  display: flex;
  flex-direction: column;
  --toc-depth-offset: 0.8em;
}

.m_375a65ef {
  display: block;
  padding: 0.3em 0.8em;
  font-size: calc(1rem * 1);
  font-size: var(--toc-size, var(--mantine-font-size-md));
  border-radius: calc(0.25rem * 1);
  border-radius: var(--toc-radius, var(--mantine-radius-default));
  padding-left: max(calc(var(--depth-offset) * var(--toc-depth-offset)), 0.8em);
}

@media (hover: hover) {
      :where([data-mantine-color-scheme='light']) .m_375a65ef:where(:hover):where(:not([data-variant='none'])) {
        background-color: #f1f3f5;
        background-color: var(--mantine-color-gray-1);
  }

      :where([data-mantine-color-scheme='dark']) .m_375a65ef:where(:hover):where(:not([data-variant='none'])) {
        background-color: #3b3b3b;
        background-color: var(--mantine-color-dark-5);
  }
}

@media (hover: none) {
      :where([data-mantine-color-scheme='light']) .m_375a65ef:where(:active):where(:not([data-variant='none'])) {
        background-color: #f1f3f5;
        background-color: var(--mantine-color-gray-1);
  }

      :where([data-mantine-color-scheme='dark']) .m_375a65ef:where(:active):where(:not([data-variant='none'])) {
        background-color: #3b3b3b;
        background-color: var(--mantine-color-dark-5);
  }
}

.m_375a65ef:where([data-active]) {
    background-color: var(--toc-bg);
    color: var(--toc-color);
  }

.m_89d60db1 {
  display: var(--tabs-display);
  flex-direction: var(--tabs-flex-direction);

  --tab-justify: flex-start;
  --tabs-list-direction: row;
  --tabs-panel-grow: unset;
  --tabs-display: block;
  --tabs-flex-direction: row;
  --tabs-list-border-width: 0;
  --tabs-list-border-size: 0 0 var(--tabs-list-border-width) 0;
  --tabs-list-gap: unset;

  --tabs-list-line-bottom: 0;
  --tabs-list-line-top: unset;
  --tabs-list-line-start: 0;
  --tabs-list-line-end: 0;

  --tab-radius: var(--tabs-radius) var(--tabs-radius) 0 0;
  --tab-border-width: 0 0 var(--tabs-list-border-width) 0;
}

  .m_89d60db1[data-inverted] {
    --tabs-list-line-bottom: unset;
    --tabs-list-line-top: 0;
    --tab-radius: 0 0 var(--tabs-radius) var(--tabs-radius);
    --tab-border-width: var(--tabs-list-border-width) 0 0 0;
  }

  .m_89d60db1[data-inverted] .m_576c9d4::before {
      top: 0;
      bottom: auto;
      bottom: initial;
    }

  .m_89d60db1[data-orientation='vertical'] {
    --tabs-list-line-start: unset;
    --tabs-list-line-end: 0;
    --tabs-list-line-top: 0;
    --tabs-list-line-bottom: 0;
    --tabs-list-border-size: 0 var(--tabs-list-border-width) 0 0;
    --tab-border-width: 0 var(--tabs-list-border-width) 0 0;
    --tab-radius: var(--tabs-radius) 0 0 var(--tabs-radius);
    --tabs-list-direction: column;
    --tabs-panel-grow: 1;
    --tabs-display: flex;
  }

  [dir="rtl"] .m_89d60db1[data-orientation='vertical'] {
      --tabs-list-border-size: 0 0 0 var(--tabs-list-border-width);
      --tab-border-width: 0 0 0 var(--tabs-list-border-width);
      --tab-radius: 0 var(--tabs-radius) var(--tabs-radius) 0;
}

  .m_89d60db1[data-orientation='vertical'][data-placement='right'] {
      --tabs-flex-direction: row-reverse;
      --tabs-list-line-start: 0;
      --tabs-list-line-end: unset;
      --tabs-list-border-size: 0 0 0 var(--tabs-list-border-width);
      --tab-border-width: 0 0 0 var(--tabs-list-border-width);
      --tab-radius: 0 var(--tabs-radius) var(--tabs-radius) 0;
    }

  [dir="rtl"] .m_89d60db1[data-orientation='vertical'][data-placement='right'] {
        --tabs-list-border-size: 0 var(--tabs-list-border-width) 0 0;
        --tab-border-width: 0 var(--tabs-list-border-width) 0 0;
        --tab-radius: var(--tabs-radius) 0 0 var(--tabs-radius);
}

  [data-mantine-color-scheme='light'] .m_89d60db1 {
    --tab-border-color: var(--mantine-color-gray-3);
}

  [data-mantine-color-scheme='dark'] .m_89d60db1 {
    --tab-border-color: var(--mantine-color-dark-4);
}

  .m_89d60db1[data-orientation='horizontal'] {
    --tab-justify: center;
  }

  .m_89d60db1[data-variant='default'] {
    --tabs-list-border-width: calc(0.125rem * var(--mantine-scale));
  }

  [data-mantine-color-scheme='light'] .m_89d60db1[data-variant='default'] {
      --tab-hover-color: var(--mantine-color-gray-0);
}

  [data-mantine-color-scheme='dark'] .m_89d60db1[data-variant='default'] {
      --tab-hover-color: var(--mantine-color-dark-6);
}

  .m_89d60db1[data-variant='outline'] {
    --tabs-list-border-width: calc(0.0625rem * var(--mantine-scale));
  }

  .m_89d60db1[data-variant='pills'] {
    --tabs-list-gap: calc(var(--mantine-spacing-sm) / 2);
  }

  [data-mantine-color-scheme='light'] .m_89d60db1[data-variant='pills'] {
      --tab-hover-color: var(--mantine-color-gray-0);
}

  [data-mantine-color-scheme='dark'] .m_89d60db1[data-variant='pills'] {
      --tab-hover-color: var(--mantine-color-dark-6);
}

.m_89d33d6d {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  justify-content: var(--tabs-justify, flex-start);
  flex-direction: var(--tabs-list-direction);
  gap: var(--tabs-list-gap);

  --tab-grow: unset;
}

.m_89d33d6d[data-grow] {
    --tab-grow: 1;
  }

.m_b0c91715 {
  flex-grow: var(--tabs-panel-grow);
}

.m_4ec4dce6 {
  position: relative;
  padding: calc(0.625rem * 1) calc(1rem * 1);
  padding: var(--mantine-spacing-xs) var(--mantine-spacing-md);
  font-size: calc(0.875rem * 1);
  font-size: var(--mantine-font-size-sm);
  white-space: nowrap;
  z-index: 0;
  display: flex;
  align-items: center;
  line-height: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-grow: var(--tab-grow);
  justify-content: var(--tab-justify);
}

.m_4ec4dce6:disabled,
  .m_4ec4dce6[data-disabled] {
    opacity: 0.5;
    cursor: not-allowed;
  }

.m_4ec4dce6:focus {
    z-index: 1;
  }

.m_fc420b1f {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  margin-left: var(--tab-section-margin-left, 0);
  margin-right: 0;
  margin-right: var(--tab-section-margin-right, 0);
}

.m_fc420b1f[data-position='left']:not(:only-child) {
      --tab-section-margin-right: var(--mantine-spacing-xs);
    }

[dir="rtl"] .m_fc420b1f[data-position='left']:not(:only-child) {
        --tab-section-margin-right: 0rem;
        --tab-section-margin-left: var(--mantine-spacing-xs);
}

.m_fc420b1f[data-position='right']:not(:only-child) {
      --tab-section-margin-left: var(--mantine-spacing-xs);
    }

[dir="rtl"] .m_fc420b1f[data-position='right']:not(:only-child) {
        --tab-section-margin-left: 0rem;
        --tab-section-margin-right: var(--mantine-spacing-xs);
}

/*************************************** default variant ***************************************/
.m_576c9d4 {
  position: relative;
}
[dir="ltr"] .m_576c9d4::before {
    left: var(--tabs-list-line-start);
}
[dir="rtl"] .m_576c9d4::before {
    right: var(--tabs-list-line-start);
}
[dir="ltr"] .m_576c9d4::before {
    right: var(--tabs-list-line-end);
}
[dir="rtl"] .m_576c9d4::before {
    left: var(--tabs-list-line-end);
}
.m_576c9d4::before {
    content: '';
    position: absolute;
    border-color: var(--tab-border-color);
    border-width: var(--tabs-list-border-size);
    border-style: solid;
    bottom: var(--tabs-list-line-bottom);
    top: var(--tabs-list-line-top);
  }

.m_539e827b {
  border-radius: var(--tab-radius);
  border-width: var(--tab-border-width);
  border-style: solid;
  border-color: transparent;
  background-color: var(--tab-bg);

  --tab-bg: transparent;
}

.m_539e827b:where([data-active]) {
    border-color: var(--tabs-color);
  }

@media (hover: hover) {

  .m_539e827b:hover {
    --tab-bg: var(--tab-hover-color);
  }

    .m_539e827b:hover:where(:not([data-active])) {
      border-color: var(--tab-border-color);
    }
}

@media (hover: none) {

  .m_539e827b:active {
    --tab-bg: var(--tab-hover-color);
  }

    .m_539e827b:active:where(:not([data-active])) {
      border-color: var(--tab-border-color);
    }
}

@media (hover: hover) {

  .m_539e827b:disabled:hover, .m_539e827b[data-disabled]:hover {
      --tab-bg: transparent;
  }
}

@media (hover: none) {

  .m_539e827b:disabled:active, .m_539e827b[data-disabled]:active {
      --tab-bg: transparent;
  }
}

/*************************************** outline variant ***************************************/
.m_6772fbd5 {
  position: relative;
}
[dir="ltr"] .m_6772fbd5::before {
    left: var(--tabs-list-line-start);
}
[dir="rtl"] .m_6772fbd5::before {
    right: var(--tabs-list-line-start);
}
[dir="ltr"] .m_6772fbd5::before {
    right: var(--tabs-list-line-end);
}
[dir="rtl"] .m_6772fbd5::before {
    left: var(--tabs-list-line-end);
}
.m_6772fbd5::before {
    content: '';
    position: absolute;
    border-color: var(--tab-border-color);
    border-width: var(--tabs-list-border-size);
    border-style: solid;
    bottom: var(--tabs-list-line-bottom);
    top: var(--tabs-list-line-top);
  }

.m_b59ab47c {
  border-top: calc(0.0625rem * 1) solid transparent;
  border-top: calc(0.0625rem * var(--mantine-scale)) solid transparent;
  border-bottom: calc(0.0625rem * 1) solid transparent;
  border-bottom: calc(0.0625rem * var(--mantine-scale)) solid transparent;
  border-right: calc(0.0625rem * 1) solid transparent;
  border-right: calc(0.0625rem * var(--mantine-scale)) solid transparent;
  border-left: calc(0.0625rem * 1) solid transparent;
  border-left: calc(0.0625rem * var(--mantine-scale)) solid transparent;
  border-top-color: var(--tab-border-top-color);
  border-bottom-color: var(--tab-border-bottom-color);
  border-radius: var(--tab-radius);
  position: relative;

  --tab-border-bottom-color: transparent;
  --tab-border-top-color: transparent;
  --tab-border-inline-end-color: transparent;
  --tab-border-inline-start-color: transparent;
}

.m_b59ab47c:where([data-active])::before {
      content: '';
      position: absolute;
      background-color: var(--tab-border-color);
      bottom: calc(-0.0625rem * 1);
      bottom: var(--tab-before-bottom, calc(-0.0625rem * var(--mantine-scale)));
      left: calc(-0.0625rem * 1);
      left: var(--tab-before-left, calc(-0.0625rem * var(--mantine-scale)));
      right: auto;
      right: var(--tab-before-right, auto);
      top: auto;
      top: var(--tab-before-top, auto);
      width: calc(0.0625rem * 1);
      width: calc(0.0625rem * var(--mantine-scale));
      height: calc(0.0625rem * 1);
      height: calc(0.0625rem * var(--mantine-scale));
    }

.m_b59ab47c:where([data-active])::after {
      content: '';
      position: absolute;
      background-color: var(--tab-border-color);
      bottom: calc(-0.0625rem * 1);
      bottom: var(--tab-after-bottom, calc(-0.0625rem * var(--mantine-scale)));
      right: calc(-0.0625rem * 1);
      right: var(--tab-after-right, calc(-0.0625rem * var(--mantine-scale)));
      left: auto;
      left: var(--tab-after-left, auto);
      top: auto;
      top: var(--tab-after-top, auto);
      width: calc(0.0625rem * 1);
      width: calc(0.0625rem * var(--mantine-scale));
      height: calc(0.0625rem * 1);
      height: calc(0.0625rem * var(--mantine-scale));
    }

[dir="ltr"] .m_b59ab47c:where([data-active]) {
    border-left-color: var(--tab-border-inline-start-color);
}

[dir="rtl"] .m_b59ab47c:where([data-active]) {
    border-right-color: var(--tab-border-inline-start-color);
}

[dir="ltr"] .m_b59ab47c:where([data-active]) {
    border-right-color: var(--tab-border-inline-end-color);
}

[dir="rtl"] .m_b59ab47c:where([data-active]) {
    border-left-color: var(--tab-border-inline-end-color);
}

.m_b59ab47c:where([data-active]) {

    border-top-color: var(--tab-border-top-color);
    border-bottom-color: var(--tab-border-bottom-color);

    --tab-border-top-color: var(--tab-border-color);
    --tab-border-inline-start-color: var(--tab-border-color);
    --tab-border-inline-end-color: var(--tab-border-color);
    --tab-border-bottom-color: var(--mantine-color-body);
}

.m_b59ab47c:where([data-active])[data-inverted] {
      --tab-border-bottom-color: var(--tab-border-color);
      --tab-border-top-color: var(--mantine-color-body);

      --tab-before-bottom: auto;
      --tab-before-top: calc(-0.0625rem * var(--mantine-scale));
      --tab-after-bottom: auto;
      --tab-after-top: calc(-0.0625rem * var(--mantine-scale));
    }

.m_b59ab47c:where([data-active])[data-orientation='vertical'][data-placement='left'] {
        --tab-border-inline-end-color: var(--mantine-color-body);
        --tab-border-inline-start-color: var(--tab-border-color);
        --tab-border-bottom-color: var(--tab-border-color);

        --tab-before-right: calc(-0.0625rem * var(--mantine-scale));
        --tab-before-left: auto;
        --tab-before-bottom: auto;
        --tab-before-top: calc(-0.0625rem * var(--mantine-scale));
        --tab-after-left: auto;
        --tab-after-right: calc(-0.0625rem * var(--mantine-scale));
      }

[dir="rtl"] .m_b59ab47c:where([data-active])[data-orientation='vertical'][data-placement='left'] {
          --tab-before-right: auto;
          --tab-before-left: calc(-0.0625rem * var(--mantine-scale));
          --tab-after-left: calc(-0.0625rem * var(--mantine-scale));
          --tab-after-right: auto;
}

.m_b59ab47c:where([data-active])[data-orientation='vertical'][data-placement='right'] {
        --tab-border-inline-start-color: var(--mantine-color-body);
        --tab-border-inline-end-color: var(--tab-border-color);
        --tab-border-bottom-color: var(--tab-border-color);

        --tab-before-left: calc(-0.0625rem * var(--mantine-scale));
        --tab-before-right: auto;
        --tab-before-bottom: auto;
        --tab-before-top: calc(-0.0625rem * var(--mantine-scale));
        --tab-after-right: auto;
        --tab-after-left: calc(-0.0625rem * var(--mantine-scale));
      }

[dir="rtl"] .m_b59ab47c:where([data-active])[data-orientation='vertical'][data-placement='right'] {
          --tab-before-left: auto;
          --tab-before-right: calc(-0.0625rem * var(--mantine-scale));
          --tab-after-right: calc(-0.0625rem * var(--mantine-scale));
          --tab-after-left: auto;
}

/*************************************** pills variant ***************************************/
.m_c3381914 {
  border-radius: var(--tabs-radius);
  background-color: var(--tab-bg);
  color: var(--tab-color);

  --tab-bg: transparent;
  --tab-color: inherit;
}
@media (hover: hover) {

  .m_c3381914:not([data-disabled]):hover {
      --tab-bg: var(--tab-hover-color);
  }
}
@media (hover: none) {

  .m_c3381914:not([data-disabled]):active {
      --tab-bg: var(--tab-hover-color);
  }
}
.m_c3381914[data-active][data-active] {
    --tab-bg: var(--tabs-color);
    --tab-color: var(--tabs-text-color, var(--mantine-color-white));
  }
@media (hover: hover) {

  .m_c3381914[data-active][data-active]:hover {
      --tab-bg: var(--tabs-color);
  }
}
@media (hover: none) {

  .m_c3381914[data-active][data-active]:active {
      --tab-bg: var(--tabs-color);
  }
}

.m_7341320d {
  --ti-size-xs: calc(1.125rem * var(--mantine-scale));
  --ti-size-sm: calc(1.375rem * var(--mantine-scale));
  --ti-size-md: calc(1.75rem * var(--mantine-scale));
  --ti-size-lg: calc(2.125rem * var(--mantine-scale));
  --ti-size-xl: calc(2.75rem * var(--mantine-scale));
  --ti-size: var(--ti-size-md);

  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;

  width: var(--ti-size);
  height: var(--ti-size);
  min-width: var(--ti-size);
  min-height: var(--ti-size);
  border-radius: calc(0.25rem * 1);
  border-radius: var(--ti-radius, var(--mantine-radius-default));
  background: var(--mantine-color-blue-filled);
  background: var(--ti-bg, var(--mantine-primary-color-filled));
  color: #fff;
  color: var(--ti-color, var(--mantine-color-white));
  border: 1px solid transparent;
  border: var(--ti-bd, 1px solid transparent);
}

.m_43657ece {
  --offset: calc(var(--tl-bullet-size) / 2 + var(--tl-line-width) / 2);
  --tl-bullet-size: calc(1.25rem * var(--mantine-scale));
  --tl-line-width: calc(0.25rem * var(--mantine-scale));
  --tl-radius: calc(62.5rem * var(--mantine-scale));
  --tl-color: var(--mantine-primary-color-filled);
}

  [dir="ltr"] .m_43657ece:where([data-align='left']) {
    padding-left: var(--offset);
}

  [dir="rtl"] .m_43657ece:where([data-align='left']) {
    padding-right: var(--offset);
}

  [dir="ltr"] .m_43657ece:where([data-align='right']) {
    padding-right: var(--offset);
}

  [dir="rtl"] .m_43657ece:where([data-align='right']) {
    padding-left: var(--offset);
}

.m_2ebe8099 {
  font-weight: 500;
  line-height: 1;
  margin-bottom: calc((0.625rem * 1) / 2);
  margin-bottom: calc(calc(0.625rem * 1) / 2);
  margin-bottom: calc(var(--mantine-spacing-xs) / 2);
}

.m_436178ff {
  --item-border: var(--tl-line-width) var(--tli-border-style, solid) var(--item-border-color);

  position: relative;
  color: var(--mantine-color-text);
}

[dir="ltr"] .m_436178ff::before {
    border-left: var(--item-border);
}

[dir="rtl"] .m_436178ff::before {
    border-right: var(--item-border);
}

.m_436178ff::before {
    content: '';
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    left: var(--timeline-line-left, 0);
    right: 0;
    right: var(--timeline-line-right, 0);
    bottom: calc((2rem * 1) * -1);
    bottom: calc(calc(2rem * 1) * -1);
    bottom: calc(var(--mantine-spacing-xl) * -1);
    display: none;
    display: var(--timeline-line-display, none);
  }

.m_43657ece[data-align='left'] .m_436178ff::before {
      --timeline-line-left: calc(var(--tl-line-width) * -1);
      --timeline-line-right: auto;
    }

[dir="rtl"] .m_43657ece[data-align='left'] .m_436178ff::before {
        --timeline-line-left: auto;
        --timeline-line-right: calc(var(--tl-line-width) * -1);
}

.m_43657ece[data-align='right'] .m_436178ff::before {
      --timeline-line-left: auto;
      --timeline-line-right: calc(var(--tl-line-width) * -1);
    }

[dir="rtl"] .m_43657ece[data-align='right'] .m_436178ff::before {
        --timeline-line-left: calc(var(--tl-line-width) * -1);
        --timeline-line-right: auto;
}

[dir="ltr"] .m_43657ece:where([data-align='left']) .m_436178ff {
    padding-left: var(--offset);
}

[dir="rtl"] .m_43657ece:where([data-align='left']) .m_436178ff {
    padding-right: var(--offset);
}

.m_43657ece:where([data-align='left']) .m_436178ff {
    text-align: left;
  }

[dir="ltr"] .m_43657ece:where([data-align='right']) .m_436178ff {
    padding-right: var(--offset);
}

[dir="rtl"] .m_43657ece:where([data-align='right']) .m_436178ff {
    padding-left: var(--offset);
}

.m_43657ece:where([data-align='right']) .m_436178ff {
    text-align: right;
  }

:where([data-mantine-color-scheme='light']) .m_436178ff {
    --item-border-color: var(--mantine-color-gray-3);
}

:where([data-mantine-color-scheme='dark']) .m_436178ff {
    --item-border-color: var(--mantine-color-dark-4);
}

.m_436178ff:where([data-line-active])::before {
      border-color: var(--tl-color);
      border-color: var(--tli-color, var(--tl-color));
    }

.m_436178ff:where(:not(:last-of-type)) {
    --timeline-line-display: block;
  }

.m_436178ff:where(:not(:first-of-type)) {
    margin-top: calc(2rem * 1);
    margin-top: var(--mantine-spacing-xl);
  }

.m_8affcee1 {
  width: var(--tl-bullet-size);
  height: var(--tl-bullet-size);
  border-radius: var(--tl-radius);
  border-radius: var(--tli-radius, var(--tl-radius));
  border: var(--tl-line-width) solid;
  background-color: var(--mantine-color-body);
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mantine-color-text);
}

:where([data-mantine-color-scheme='light']) .m_8affcee1 {
    border-color: #dee2e6;
    border-color: var(--mantine-color-gray-3);
}

:where([data-mantine-color-scheme='dark']) .m_8affcee1 {
    border-color: #424242;
    border-color: var(--mantine-color-dark-4);
}

.m_43657ece:where([data-align='left']) .m_8affcee1 {
    left: calc((var(--tl-bullet-size) / 2 + var(--tl-line-width) / 2) * -1);
    right: auto;
  }

:where([dir="rtl"]) .m_43657ece:where([data-align='left']) .m_8affcee1 {
      left: auto;
      right: calc((var(--tl-bullet-size) / 2 + var(--tl-line-width) / 2) * -1);
}

.m_43657ece:where([data-align='right']) .m_8affcee1 {
    left: auto;
    right: calc((var(--tl-bullet-size) / 2 + var(--tl-line-width) / 2) * -1);
  }

:where([dir="rtl"]) .m_43657ece:where([data-align='right']) .m_8affcee1 {
      left: calc((var(--tl-bullet-size) / 2 + var(--tl-line-width) / 2) * -1);
      right: auto;
}

.m_8affcee1:where([data-with-child]) {
    border-width: var(--tl-line-width);
  }

:where([data-mantine-color-scheme='light']) .m_8affcee1:where([data-with-child]) {
      background-color: #dee2e6;
      background-color: var(--mantine-color-gray-3);
}

:where([data-mantine-color-scheme='dark']) .m_8affcee1:where([data-with-child]) {
      background-color: #424242;
      background-color: var(--mantine-color-dark-4);
}

.m_8affcee1:where([data-active]) {
    border-color: var(--tl-color);
    border-color: var(--tli-color, var(--tl-color));
    background-color: #fff;
    background-color: var(--mantine-color-white);
    color: #fff;
    color: var(--tl-icon-color, var(--mantine-color-white));
  }

.m_8affcee1:where([data-active]):where([data-with-child]) {
      background-color: var(--tl-color);
      background-color: var(--tli-color, var(--tl-color));
      color: #fff;
      color: var(--tl-icon-color, var(--mantine-color-white));
    }

[dir="ltr"] .m_43657ece:where([data-align='left']) .m_540e8f41 {
    padding-left: var(--offset);
}

[dir="rtl"] .m_43657ece:where([data-align='left']) .m_540e8f41 {
    padding-right: var(--offset);
}

.m_43657ece:where([data-align='left']) .m_540e8f41 {
    text-align: left;
  }

:where([dir="rtl"]) .m_43657ece:where([data-align='left']) .m_540e8f41 {
      text-align: right;
}

[dir="ltr"] .m_43657ece:where([data-align='right']) .m_540e8f41 {
    padding-right: var(--offset);
}

[dir="rtl"] .m_43657ece:where([data-align='right']) .m_540e8f41 {
    padding-left: var(--offset);
}

.m_43657ece:where([data-align='right']) .m_540e8f41 {
    text-align: right;
  }

:where([dir="rtl"]) .m_43657ece:where([data-align='right']) .m_540e8f41 {
      text-align: left;
}

.m_8a5d1357 {
  margin: 0;
  font-weight: var(--title-fw);
  font-size: var(--title-fz);
  line-height: var(--title-lh);
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica,
    Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji;
  font-family: var(--mantine-font-family-headings);
  text-wrap: var(--mantine-heading-text-wrap);
  text-wrap: var(--title-text-wrap, var(--mantine-heading-text-wrap));
}

  .m_8a5d1357:where([data-line-clamp]) {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: var(--title-line-clamp);
    -webkit-box-orient: vertical;
  }

.m_f698e191 {
  --level-offset: var(--mantine-spacing-lg);
  margin: 0;
  padding: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.m_75f3ecf {
  margin: 0;
  padding: 0;
}

.m_f6970eb1 {
  cursor: pointer;
  list-style: none;
  margin: 0;
  padding: 0;
  outline: 0;
}

.m_f6970eb1.focus-visible > .m_dc283425 {
      outline: 2px solid var(--mantine-color-blue-filled);
      outline: 2px solid var(--mantine-primary-color-filled);
      outline-offset: calc(0.125rem * 1);
      outline-offset: calc(0.125rem * var(--mantine-scale));
    }

.m_f6970eb1.focus-visible > .m_dc283425 {
      outline: 2px solid var(--mantine-color-blue-filled);
      outline: 2px solid var(--mantine-primary-color-filled);
      outline-offset: calc(0.125rem * 1);
      outline-offset: calc(0.125rem * var(--mantine-scale));
    }

.m_f6970eb1:focus-visible > .m_dc283425 {
      outline: 2px solid var(--mantine-color-blue-filled);
      outline: 2px solid var(--mantine-primary-color-filled);
      outline-offset: calc(0.125rem * 1);
      outline-offset: calc(0.125rem * var(--mantine-scale));
    }

[dir="ltr"] .m_dc283425 {
  padding-left: var(--label-offset);
}

[dir="rtl"] .m_dc283425 {
  padding-right: var(--label-offset);
}

:where([data-mantine-color-scheme='light']) .m_dc283425:where([data-selected]) {
      background-color: #f1f3f5;
      background-color: var(--mantine-color-gray-1);
}

:where([data-mantine-color-scheme='dark']) .m_dc283425:where([data-selected]) {
      background-color: #3b3b3b;
      background-color: var(--mantine-color-dark-5);
}

.m_d6493fad :first-child {
    margin-top: 0;
  }
  .m_d6493fad :last-child {
    margin-bottom: 0;
  }
  .m_d6493fad :where(h1, h2, h3, h4, h5, h6) {
    margin-bottom: calc(0.625rem * 1);
    margin-bottom: var(--mantine-spacing-xs);
    text-wrap: var(--mantine-heading-text-wrap);
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica,
    Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji;
    font-family: var(--mantine-font-family-headings);
  }
  .m_d6493fad :where(h1) {
    margin-top: calc(1.5 * (2rem * 1));
    margin-top: calc(1.5 * calc(2rem * 1));
    margin-top: calc(1.5 * var(--mantine-spacing-xl));
    font-size: calc(2.125rem * 1);
    font-size: var(--mantine-h1-font-size);
    line-height: 1.3;
    line-height: var(--mantine-h1-line-height);
    font-weight: 700;
    font-weight: var(--mantine-h1-font-weight);
  }
  .m_d6493fad :where(h2) {
    margin-top: calc(2rem * 1);
    margin-top: var(--mantine-spacing-xl);
    font-size: calc(1.625rem * 1);
    font-size: var(--mantine-h2-font-size);
    line-height: 1.35;
    line-height: var(--mantine-h2-line-height);
    font-weight: 700;
    font-weight: var(--mantine-h2-font-weight);
  }
  .m_d6493fad :where(h3) {
    margin-top: calc(0.8 * (2rem * 1));
    margin-top: calc(0.8 * calc(2rem * 1));
    margin-top: calc(0.8 * var(--mantine-spacing-xl));
    font-size: calc(1.375rem * 1);
    font-size: var(--mantine-h3-font-size);
    line-height: 1.4;
    line-height: var(--mantine-h3-line-height);
    font-weight: 700;
    font-weight: var(--mantine-h3-font-weight);
  }
  .m_d6493fad :where(h4) {
    margin-top: calc(0.8 * (2rem * 1));
    margin-top: calc(0.8 * calc(2rem * 1));
    margin-top: calc(0.8 * var(--mantine-spacing-xl));
    font-size: calc(1.125rem * 1);
    font-size: var(--mantine-h4-font-size);
    line-height: 1.45;
    line-height: var(--mantine-h4-line-height);
    font-weight: 700;
    font-weight: var(--mantine-h4-font-weight);
  }
  .m_d6493fad :where(h5) {
    margin-top: calc(0.5 * (2rem * 1));
    margin-top: calc(0.5 * calc(2rem * 1));
    margin-top: calc(0.5 * var(--mantine-spacing-xl));
    font-size: calc(1rem * 1);
    font-size: var(--mantine-h5-font-size);
    line-height: 1.5;
    line-height: var(--mantine-h5-line-height);
    font-weight: 700;
    font-weight: var(--mantine-h5-font-weight);
  }
  .m_d6493fad :where(h6) {
    margin-top: calc(0.5 * (2rem * 1));
    margin-top: calc(0.5 * calc(2rem * 1));
    margin-top: calc(0.5 * var(--mantine-spacing-xl));
    font-size: calc(0.875rem * 1);
    font-size: var(--mantine-h6-font-size);
    line-height: 1.5;
    line-height: var(--mantine-h6-line-height);
    font-weight: 700;
    font-weight: var(--mantine-h6-font-weight);
  }
  .m_d6493fad :where(img) {
    max-width: 100%;
    margin-bottom: calc(0.625rem * 1);
    margin-bottom: var(--mantine-spacing-xs);
  }
  .m_d6493fad :where(p) {
    margin-top: 0;
    margin-bottom: calc(1.25rem * 1);
    margin-bottom: var(--mantine-spacing-lg);
  }
  :where([data-mantine-color-scheme='light']) .m_d6493fad :where(mark) {
      background-color: #ffec99;
      background-color: var(--mantine-color-yellow-2);
      color: inherit;
}
  :where([data-mantine-color-scheme='dark']) .m_d6493fad :where(mark) {
      background-color: #fcc419;
      background-color: var(--mantine-color-yellow-5);
      color: #000;
      color: var(--mantine-color-black);
}
  .m_d6493fad :where(a) {
    color: var(--mantine-color-anchor);
    text-decoration: none;
  }
  @media (hover: hover) {
    .m_d6493fad :where(a):hover {
      text-decoration: underline;
    }
}
  @media (hover: none) {
    .m_d6493fad :where(a):active {
      text-decoration: underline;
    }
}
  .m_d6493fad :where(hr) {
    margin-top: calc(1rem * 1);
    margin-top: var(--mantine-spacing-md);
    margin-bottom: calc(1rem * 1);
    margin-bottom: var(--mantine-spacing-md);
    border: 0;
    border-top: calc(0.0625rem * 1) solid;
    border-top: calc(0.0625rem * var(--mantine-scale)) solid;
  }
  :where([data-mantine-color-scheme='light']) .m_d6493fad :where(hr) {
      border-color: #dee2e6;
      border-color: var(--mantine-color-gray-3);
}
  :where([data-mantine-color-scheme='dark']) .m_d6493fad :where(hr) {
      border-color: #696969;
      border-color: var(--mantine-color-dark-3);
}
  .m_d6493fad :where(pre) {
    padding: calc(0.625rem * 1);
    padding: var(--mantine-spacing-xs);
    line-height: 1.55;
    line-height: var(--mantine-line-height);
    margin: 0;
    margin-top: calc(1rem * 1);
    margin-top: var(--mantine-spacing-md);
    margin-bottom: calc(1rem * 1);
    margin-bottom: var(--mantine-spacing-md);
    overflow-x: auto;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    Liberation Mono, Courier New, monospace;
    font-family: var(--mantine-font-family-monospace);
    font-size: calc(0.75rem * 1);
    font-size: var(--mantine-font-size-xs);
    border-radius: calc(0.25rem * 1);
    border-radius: var(--mantine-radius-sm);
  }
  :where([data-mantine-color-scheme='light']) .m_d6493fad :where(pre) {
      background-color: #f8f9fa;
      background-color: var(--mantine-color-gray-0);
}
  :where([data-mantine-color-scheme='dark']) .m_d6493fad :where(pre) {
      background-color: #1f1f1f;
      background-color: var(--mantine-color-dark-8);
}
  .m_d6493fad :where(pre) :where(code) {
      background-color: transparent;
      padding: 0;
      border-radius: 0;
      color: inherit;
      border: 0;
    }
  .m_d6493fad :where(kbd) {
    --kbd-fz: calc(0.75rem * var(--mantine-scale));
    --kbd-padding: calc(0.1875rem * var(--mantine-scale)) calc(0.3125rem * var(--mantine-scale));

    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    Liberation Mono, Courier New, monospace;

    font-family: var(--mantine-font-family-monospace);
    line-height: 1.55;
    line-height: var(--mantine-line-height);
    font-weight: 700;
    padding: var(--kbd-padding);
    font-size: var(--kbd-fz);
    border-radius: calc(0.25rem * 1);
    border-radius: var(--mantine-radius-sm);
    border: calc(0.0625rem * 1) solid;
    border: calc(0.0625rem * var(--mantine-scale)) solid;
    border-bottom-width: calc(0.1875rem * 1);
    border-bottom-width: calc(0.1875rem * var(--mantine-scale));
  }
  :where([data-mantine-color-scheme='light']) .m_d6493fad :where(kbd) {
      border-color: #dee2e6;
      border-color: var(--mantine-color-gray-3);
      color: #495057;
      color: var(--mantine-color-gray-7);
      background-color: #f8f9fa;
      background-color: var(--mantine-color-gray-0);
}
  :where([data-mantine-color-scheme='dark']) .m_d6493fad :where(kbd) {
      border-color: #696969;
      border-color: var(--mantine-color-dark-3);
      color: #c9c9c9;
      color: var(--mantine-color-dark-0);
      background-color: #3b3b3b;
      background-color: var(--mantine-color-dark-5);
}
  .m_d6493fad :where(code) {
    line-height: 1.55;
    line-height: var(--mantine-line-height);
    padding: calc(0.0625rem * 1) calc(0.3125rem * 1);
    padding: calc(0.0625rem * var(--mantine-scale)) calc(0.3125rem * var(--mantine-scale));
    border-radius: calc(0.25rem * 1);
    border-radius: var(--mantine-radius-sm);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    Liberation Mono, Courier New, monospace;
    font-family: var(--mantine-font-family-monospace);
    font-size: calc(0.75rem * 1);
    font-size: var(--mantine-font-size-xs);
  }
  :where([data-mantine-color-scheme='light']) .m_d6493fad :where(code) {
      background-color: #f8f9fa;
      background-color: var(--mantine-color-gray-0);
      color: #000;
      color: var(--mantine-color-black);
}
  :where([data-mantine-color-scheme='dark']) .m_d6493fad :where(code) {
      background-color: #3b3b3b;
      background-color: var(--mantine-color-dark-5);
      color: #fff;
      color: var(--mantine-color-white);
}
  [dir="ltr"] .m_d6493fad :where(ul, ol):not([data-type='taskList']) {
    padding-left: calc(2rem * 1);
    padding-left: var(--mantine-spacing-xl);
}
  [dir="rtl"] .m_d6493fad :where(ul, ol):not([data-type='taskList']) {
    padding-right: calc(2rem * 1);
    padding-right: var(--mantine-spacing-xl);
}
  [dir="ltr"] .m_d6493fad :where(ul, ol):not([data-type='taskList']) {
    padding-left: calc(2rem * 1);
}
  [dir="rtl"] .m_d6493fad :where(ul, ol):not([data-type='taskList']) {
    padding-right: calc(2rem * 1);
}
  .m_d6493fad :where(ul, ol):not([data-type='taskList']) {
    margin-bottom: calc(1rem * 1);
    margin-bottom: var(--mantine-spacing-md);
    list-style-position: outside;
  }
  .m_d6493fad :where(table) {
    width: 100%;
    border-collapse: collapse;
    caption-side: bottom;
    margin-bottom: calc(1rem * 1);
    margin-bottom: var(--mantine-spacing-md);
  }
  :where([data-mantine-color-scheme='light']) .m_d6493fad :where(table) {
      --table-border-color: var(--mantine-color-gray-3);
}
  :where([data-mantine-color-scheme='dark']) .m_d6493fad :where(table) {
      --table-border-color: var(--mantine-color-dark-4);
}
  .m_d6493fad :where(table) :where(caption) {
      margin-top: calc(0.625rem * 1);
      margin-top: var(--mantine-spacing-xs);
      font-size: calc(0.875rem * 1);
      font-size: var(--mantine-font-size-sm);
      color: var(--mantine-color-dimmed);
    }
  .m_d6493fad :where(table) :where(th) {
      text-align: left;
      font-weight: bold;
      font-size: calc(0.875rem * 1);
      font-size: var(--mantine-font-size-sm);
      padding: calc(0.625rem * 1) calc(0.75rem * 1);
      padding: var(--mantine-spacing-xs) var(--mantine-spacing-sm);
    }
  .m_d6493fad :where(table) :where(thead th) {
      border-bottom: calc(0.0625rem * 1) solid;
      border-bottom: calc(0.0625rem * var(--mantine-scale)) solid;
      border-color: var(--table-border-color);
    }
  .m_d6493fad :where(table) :where(tfoot th) {
      border-top: calc(0.0625rem * 1) solid;
      border-top: calc(0.0625rem * var(--mantine-scale)) solid;
      border-color: var(--table-border-color);
    }
  .m_d6493fad :where(table) :where(td) {
      padding: calc(0.625rem * 1) calc(0.75rem * 1);
      padding: var(--mantine-spacing-xs) var(--mantine-spacing-sm);
      border-bottom: calc(0.0625rem * 1) solid;
      border-bottom: calc(0.0625rem * var(--mantine-scale)) solid;
      border-color: var(--table-border-color);
      font-size: calc(0.875rem * 1);
      font-size: var(--mantine-font-size-sm);
    }
  .m_d6493fad :where(table) :where(tr:last-of-type td) {
      border-bottom: 0;
    }
  .m_d6493fad :where(blockquote) {
    font-size: calc(1.125rem * 1);
    font-size: var(--mantine-font-size-lg);
    line-height: 1.55;
    line-height: var(--mantine-line-height);
    margin: calc(1rem * 1) 0;
    margin: var(--mantine-spacing-md) 0;
    border-radius: calc(0.25rem * 1);
    border-radius: var(--mantine-radius-sm);
    padding: calc(1rem * 1) calc(1.25rem * 1);
    padding: var(--mantine-spacing-md) var(--mantine-spacing-lg);
  }
  :where([data-mantine-color-scheme='light']) .m_d6493fad :where(blockquote) {
      background-color: #f8f9fa;
      background-color: var(--mantine-color-gray-0);
}
  :where([data-mantine-color-scheme='dark']) .m_d6493fad :where(blockquote) {
      background-color: #1f1f1f;
      background-color: var(--mantine-color-dark-8);
}
