.print-header {
  display: none;
}
@media print {
  body {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    zoom: 100%;
    scale: auto;
  }

  /* Show print header and logo only in print mode */

  .print-header {
    display: block !important;
    text-align: right;
    position: relative;
    padding: 20px;
  }

  .print-logo {
    display: block !important;
    width: 50px; /* Adjust size */
    height: 50px;
    position: absolute;
    top: 15px;
    left: 10px;
    margin: 0 auto;
  }

  /* Ensure print content starts below the header */

  .print-area {
    margin-top: 10px;
    width: auto;
  }

  #no-print {
    display: none !important;
  }
  #tooltip {
    display: none !important;
  }
  .MuiDataGrid-footerContainer {
    display: none !important;
  }
  .MuiDataGrid-row {
    margin-bottom: -2px;
  }
}
: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: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
  position: fixed;
  padding: 4px;
  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: initial;
  }
}
.Toastify__toast {
  position: relative;
  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: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  max-height: var(--toastify-toast-max-height);
  overflow: hidden;
  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;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  padding: 6px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.Toastify__toast-body > div:last-child {
  word-break: break-word;
  -ms-flex: 1;
      flex: 1;
}
.Toastify__toast-icon {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  width: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -ms-flexbox;
  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: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}
.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}
.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}
.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}
.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}
.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}
.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}
.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}
.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}
.Toastify__progress-bar--error {
  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: 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;
  -ms-flex-item-align: start;
      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: 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: initial;
  transform-origin: right;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  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 */.error{
    color: #d32f2f;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: 400;
    font-size: 0.75rem;
    line-height: 1.66;
    letter-spacing: 0.03333em;
    text-align: left;
    margin-top: 4px;
    margin-right: 14px;
    margin-bottom: 0;
    margin-left: 14px;
}.introjs-overlay{position:absolute;box-sizing:content-box;z-index:999999;opacity:0;transition:all .3s ease-out}.introjs-showElement{z-index:9999999!important}tr.introjs-showElement>td{z-index:9999999!important;position:relative}tr.introjs-showElement>th{z-index:9999999!important;position:relative}.introjs-disableInteraction{z-index:99999999!important;position:absolute;background-color:#fff;opacity:0}.introjs-relativePosition{position:relative}.introjs-helperLayer{box-sizing:content-box;position:absolute;z-index:9999998;border-radius:4px;transition:all .3s ease-out}.introjs-helperLayer *{box-sizing:content-box}.introjs-helperLayer :before{box-sizing:content-box}.introjs-helperLayer :after{box-sizing:content-box}.introjs-tooltipReferenceLayer{font-family:"Helvetica Neue",Inter,ui-sans-serif,"Apple Color Emoji",Helvetica,Arial,sans-serif;box-sizing:content-box;position:absolute;visibility:hidden;z-index:100000000;background-color:transparent;transition:all .3s ease-out}.introjs-tooltipReferenceLayer *{font-family:"Helvetica Neue",Inter,ui-sans-serif,"Apple Color Emoji",Helvetica,Arial,sans-serif}.introjs-helperNumberLayer{font-family:"Helvetica Neue",Inter,ui-sans-serif,"Apple Color Emoji",Helvetica,Arial,sans-serif;color:#9e9e9e;text-align:center;padding-top:10px;padding-bottom:10px}.introjs-arrow{border:5px solid transparent;content:"";position:absolute}.introjs-arrow.top{top:-10px;left:10px;border-bottom-color:#fff}.introjs-arrow.top-right{top:-10px;right:10px;border-bottom-color:#fff}.introjs-arrow.top-middle{top:-10px;left:50%;margin-left:-5px;border-bottom-color:#fff}.introjs-arrow.right{right:-10px;top:10px;border-left-color:#fff}.introjs-arrow.right-bottom{bottom:10px;right:-10px;border-left-color:#fff}.introjs-arrow.bottom{bottom:-10px;left:10px;border-top-color:#fff}.introjs-arrow.bottom-right{bottom:-10px;right:10px;border-top-color:#fff}.introjs-arrow.bottom-middle{bottom:-10px;left:50%;margin-left:-5px;border-top-color:#fff}.introjs-arrow.left{left:-10px;top:10px;border-right-color:#fff}.introjs-arrow.left-bottom{left:-10px;bottom:10px;border-right-color:#fff}.introjs-tooltip{box-sizing:content-box;position:absolute;visibility:visible;background-color:#fff;min-width:250px;max-width:300px;border-radius:5px;box-shadow:0 3px 30px rgba(33,33,33,.3);transition:opacity .1s ease-out}.introjs-tooltiptext{padding:20px}.introjs-dontShowAgain{padding-left:20px;padding-right:20px}.introjs-dontShowAgain input{padding:0;margin:0;margin-bottom:2px;display:inline;width:10px;height:10px}.introjs-dontShowAgain label{font-size:14px;display:inline-block;font-weight:400;margin:0 0 0 5px;padding:0;background-color:#fff;color:#616161;-webkit-user-select:none;user-select:none}.introjs-tooltip-title{font-size:18px;width:90%;min-height:1.5em;margin:0;padding:0;font-weight:700;line-height:1.5}.introjs-tooltip-header{position:relative;padding-left:20px;padding-right:20px;padding-top:10px;min-height:1.5em}.introjs-tooltipbuttons{border-top:1px solid #e0e0e0;padding:10px;text-align:right;white-space:nowrap}.introjs-tooltipbuttons:after{content:"";visibility:hidden;display:block;height:0;clear:both}.introjs-button{box-sizing:content-box;position:relative;overflow:visible;padding:.5rem 1rem;border:1px solid #bdbdbd;text-decoration:none;text-shadow:1px 1px 0 #fff;font-size:14px;color:#424242;white-space:nowrap;cursor:pointer;outline:0;background-color:#f4f4f4;border-radius:.2em;zoom:1;display:inline}.introjs-button:hover{outline:0;text-decoration:none;border-color:#9e9e9e;background-color:#e0e0e0;color:#212121}.introjs-button:focus{outline:0;text-decoration:none;background-color:#eee;box-shadow:0 0 0 .2rem rgba(158,158,158,.5);border:1px solid #616161;color:#212121}.introjs-button:active{outline:0;text-decoration:none;background-color:#e0e0e0;border-color:#9e9e9e;color:#212121}.introjs-button::-moz-focus-inner{padding:0;border:0}.introjs-skipbutton{position:absolute;top:0;right:0;display:inline-block;width:45px;height:45px;line-height:45px;color:#616161;font-size:22px;cursor:pointer;font-weight:700;text-align:center;text-decoration:none}.introjs-skipbutton:focus,.introjs-skipbutton:hover{color:#212121;outline:0;text-decoration:none}.introjs-prevbutton{float:left}.introjs-nextbutton{float:right}.introjs-disabled{color:#9e9e9e;border-color:#bdbdbd;box-shadow:none;cursor:default;background-color:#f4f4f4;background-image:none;text-decoration:none}.introjs-disabled:focus,.introjs-disabled:hover{color:#9e9e9e;border-color:#bdbdbd;box-shadow:none;cursor:default;background-color:#f4f4f4;background-image:none;text-decoration:none}.introjs-hidden{display:none}.introjs-bullets{text-align:center;padding-top:10px;padding-bottom:10px}.introjs-bullets ul{box-sizing:content-box;clear:both;margin:0 auto 0;padding:0;display:inline-block}.introjs-bullets ul li{box-sizing:content-box;list-style:none;float:left;margin:0 2px}.introjs-bullets ul li a{transition:width .1s ease-in;box-sizing:content-box;display:block;width:6px;height:6px;background:#ccc;border-radius:10px;text-decoration:none;cursor:pointer}.introjs-bullets ul li a:focus,.introjs-bullets ul li a:hover{width:15px;background:#999;text-decoration:none;outline:0}.introjs-bullets ul li a.active{width:15px;background:#999}.introjs-progress{box-sizing:content-box;overflow:hidden;height:10px;margin:10px;border-radius:4px;background-color:#e0e0e0}.introjs-progressbar{box-sizing:content-box;float:left;width:0%;height:100%;font-size:10px;line-height:10px;text-align:center;background-color:#08c}.introjsFloatingElement{position:absolute;height:0;width:0;left:50%;top:50%}.introjs-fixedTooltip{position:fixed}.introjs-hint{box-sizing:content-box;position:absolute;background:0 0;width:20px;height:15px;cursor:pointer}.introjs-hint:focus{border:0;outline:0}.introjs-hint:hover>.introjs-hint-pulse{background-color:rgba(60,60,60,.57)}.introjs-hidehint{display:none}.introjs-fixedhint{position:fixed}@keyframes introjspulse{0%{transform:scale(.95);box-shadow:0 0 0 0 rgba(0,0,0,.7)}70%{transform:scale(1);box-shadow:0 0 0 10px transparent}100%{transform:scale(.95);box-shadow:0 0 0 0 transparent}}.introjs-hint-pulse{box-sizing:content-box;width:15px;height:15px;border-radius:30px;background-color:rgba(136,136,136,.24);z-index:10;position:absolute;transition:all .2s ease-out;animation:introjspulse 2s infinite}.introjs-hint-no-anim .introjs-hint-pulse{animation:none}.introjs-hint-dot{box-sizing:content-box;background:0 0;border-radius:60px;height:50px;width:50px;position:absolute;top:-18px;left:-18px;z-index:1;opacity:0}
/*# sourceMappingURL=introjs.css.map */.introjs-tooltip {
  background-color: rgba(000, 0, 0, 0.5);
  color: #fff;
}

.introjs-button,
.introjs-button:hover, .introjs-button:focus, .introjs-button:active,
.introjs-disabled, .introjs-disabled:focus, .introjs-disabled:hover {
  outline: none;
  background-image: none;
  background-color: transparent;
  color: #fff;
  border: 1px solid transparent;
  border-radius: 50px;
  box-shadow: none;
  border-shadow: none;
  text-shadow: none;
}

.introjs-button:hover, .introjs-button:focus, .introjs-button:active {
  border: 1px solid #fff
}
.introjs-disabled, .introjs-disabled:focus, .introjs-disabled:hover {
  color: #ccc;
  border: 1px solid transparent;
}

.introjs-arrow {
  border: 10px solid #fff;
}
.introjs-arrow.top, .introjs-arrow.top-middle, .introjs-arrow.top-right {
  border-color: transparent transparent rgba(000, 0, 0, 0.5);
  top: -20px;
  left: 20px;
}
.introjs-arrow.bottom, .introjs-arrow.bottom-middle, .introjs-arrow.bottom-right {
  border-color: rgba(000, 0, 0, 0.5) transparent transparent;
  bottom: -20px;
  left: 20px;
}
.introjs-arrow.left, .introjs-arrow.right {
    top: 20px;
}
.introjs-arrow.left-bottom, .introjs-arrow.right-bottom {
    bottom: 20px;
}

.introjs-arrow.left, .introjs-arrow.left-bottom {
  left: -20px;
  border-color: transparent rgba(000, 0, 0, 0.5) transparent transparent;
}
.introjs-arrow.right, .introjs-arrow.right-bottom {
  right: -20px;
  border-color: transparent transparent transparent rgba(000, 0, 0, 0.5);
}
.introjs-tooltip {
  background-color: var(--background-layout);
  color: var(--form-color);
}

.introjs-tooltip .introjs-tooltiptext {
  color: var(--form-color);
}

.introjs-tooltip .introjs-tooltipbuttons .introjs-button {
  background-color:  #a07244;
  color: #fff;
}
.introjs-skipbutton {
  color: var(--hover-color);
}

.introjs-skipbutton:hover {
  color: var(--form-color);
}
.chatPage {
    height: 80vh;
    /* width: 200%; */
}.container {
    display: flex;
}

.leftBox{
    margin-top: 0px;
    /* z-index: 0; */
    flex: 0 0 auto;
    width: 320px;
    }
    
    .firstdiv{
    height: 100%;
    width: 320px;
    box-sizing: border-box;
    position: relative;
    border: none;background-color: rgb(255, 255, 255);
    color: rgb(38, 38, 38);
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    box-shadow: none;
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
    /* z-index: 1200; */
    top: 0px;
    outline: 0px;
    left: 0px;
}

.secondiv{
    color: rgb(38, 38, 38);
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgb(230, 235, 241);
    border-bottom: 1px solid rgb(230, 235, 241);
    border-left: 1px solid rgb(230, 235, 241);
    border-image: initial;
    border-radius: 4px 0px 0px 4px;
    box-shadow: inherit;
    background-color: white;
    border-right: none;
}

.rightmainheader {
    padding: 24px 24px 8px;
}

.innerheader {
    display: flex;
    flex-direction: column;
}

.message {
        margin: 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.h5message{
        margin: 0px;
        font-weight: 600;
            font-size: 1rem;
            line-height: 1.5;
            font-family: "Public Sans", sans-serif;
            color: inherit;
                display: block;
                    margin-block-start: 1.67em;
                    margin-block-end: 1.67em;
                    margin-inline-start: 0px;
                    margin-inline-end: 0px;
                    
                    unicode-bidi: isolate;
}

.newmessagecount{
    margin-left: 4px;
    margin: 0px;
    max-width: 100%;
        font-family: "Public Sans", sans-serif;
        font-size: 0.8125rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: rgb(255, 255, 255);
        white-space: nowrap;
        transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
        cursor: unset;
        outline: 0px;
        text-decoration: none;
        border: 0px;
        padding: 0px;
        vertical-align: middle;
        box-sizing: border-box;
        width: 20px;
        height: 20px;
        border-radius: 50%;
}

.messagecount{
    padding-left: 4px;
        padding-right: 4px;
            overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
}
.search {
    font-size: 0.875rem;
    line-height: 1.4375em;
    font-family: "Public Sans", sans-serif;
    font-weight: 400;
    color: rgb(38, 38, 38);
    box-sizing: border-box;
    cursor: text;
    display: inline-flex;
    align-items: center;
    width: 100%;
    position: relative;
    border-radius: 4px;
    padding-left: 14px;
}

.userlist{
    flex-grow: 1;
    height: 100%;
    overflow: hidden;
}

.inneruserlist{
    max-height: 100%;
    overflow-x: hidden;
    height: calc(-402px + 100vh);
    min-height: 555px;
    position: relative;
    align-content: flex-start;
}

.userslist{
    overflow: hidden;
    width: inherit;
    height: inherit;
    max-width: inherit;
    max-height: inherit;
}

.userempty{
    box-sizing: inherit !important;
    height: 100%;
    width: 100%;
    max-width: 1px;
    position: relative;
    float: left;
    max-height: 1px;
    overflow: hidden;
    /* z-index: -1; */
    padding: 0;
    margin: 0;
    pointer-events: none;
}

.emptydot{
    box-sizing: inherit;
    display: block;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 1000%;
    width: 1000%;
    min-height: 1px;
    min-width: 1px;
    overflow: hidden;
    pointer-events: none;
    /* z-index: -1; */
}

.users{
    direction: inherit;
    position: absolute;
    overflow: hidden;
    padding: 0;
    margin: 0;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: auto !important;
    height: auto !important;
}

.usersBox{
    direction: inherit !important;
    box-sizing: inherit !important;
    resize: none !important;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 0;
    margin: 0;
    -webkit-overflow-scrolling: touch;
}

.usersdiv{
    direction: inherit;
    box-sizing: border-box !important;
    position: relative;
    display: block;
    height: 100%;
    width: auto;
    max-width: 100%;
    max-height: 100%;
    overflow: auto;
    scrollbar-width: none;
}

.usersparent{
    direction: inherit;
}
.usersmain{
    padding: 0px 24px 24px;
}

.allusers{
    list-style: none;
    margin: 0px;
    padding: 8px 0px;
    position: relative;
}

.singleuser{
    -webkit-tap-highlight-color: transparent;
    background-color: transparent;
    outline: 0px;
    border-width: 0px 0px 1px;
    border-top-style: initial;
    border-right-style: initial;
    border-left-style: initial;
    border-top-color: initial;
    border-right-color: initial;
    border-left-color: initial;
    border-image: initial;
    margin: 0px;
    border-radius: 0px;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    color: inherit;
    display: flex;
    flex-grow: 1;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    text-decoration: none;
    min-width: 0px;
    box-sizing: border-box;
    text-align: left;
    padding: 8px 16px 8px 8px;
    transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border-bottom-style: solid;
    border-bottom-color: rgb(240, 240, 240);
    background-clip: padding-box;
}

.avatar{
    min-width: 56px;
    flex-shrink: 0;
}

.avatarspan{
    position: relative;
    display: inline-flex;
    vertical-align: middle;
    flex-shrink: 0;
    padding: 0px;
    min-width: 12px;
}

.usericon {
    position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-family: "Public Sans", sans-serif;
        line-height: 1;
        border-radius: 50%;
        overflow: hidden;
        user-select: none;
        font-size: 1rem;
        width: 40px;
        height: 40px;
        color: rgb(22, 119, 255);
        background: rgb(230, 244, 255);
}

.username{
    flex: 1 1 auto;
    min-width: 0px;
    margin-top: 6px;
    margin-bottom: 6px;
}

.nameanddate{
    margin: 0px;
    font-size: 0.875rem;
    line-height: 1.57;
    font-family: "Public Sans", sans-serif;
    font-weight: 400;
    display: block;
}

.nameanddatediv{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.namestyle{
    font-weight: 600;
        font-size: 1rem;
        line-height: 1.5;
        font-family: "Public Sans", sans-serif;
        color: rgb(38, 38, 38);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
}

.datestyle{
        margin: 0px;
            font-weight: 400;
            font-size: 0.75rem;
            line-height: 1.66;
            font-family: "Public Sans", sans-serif;
            color: rgb(140, 140, 14)
}

.lastmessage{
        margin: 0px;
            font-weight: 400;
            font-size: 0.75rem;
            line-height: 1.66;
            font-family: "Public Sans", sans-serif;
            color: rgb(140, 140, 140);
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            display: flex;
            justify-content: space-between;
            align-items: center;
}

.sendlastmessage{
            height: 15px;
}

.spacebelowlist{
        /* z-index: 1; */
            position: absolute;
            right: 0;
            bottom: 0;
            pointer-events: none;
            overflow: hidden;
            left: 0;
                height: 11px;
}

.innerspace{
        right: auto;
            left: 0;
            top: 0;
            bottom: 0;
            min-height: 0;
            min-width: 10px;
            height: 6px;
}

.spaceforscroll{
        /* z-index: 1; */
            position: absolute;
            right: 0;
            bottom: 0;
            pointer-events: none;
            overflow: hidden;
            width: 10px;
}

.scrollbar{
    position: absolute;
    left: 0;
    right: 0;
    min-height: 10px;
    height: 945px;
    display: block;
    transform: translate3d(0px, 20px, 0px);
}

.logout{
        padding-left: 24px;
            padding-right: 24px;
}

.innerlogout{
        list-style: none;
            margin: 0px;
            padding: 8px 0px;
            position: relative;
}

.mainlogout{
    -webkit-tap-highlight-color: transparent;
        background-color: transparent;
        outline: 0px;
        border-width: 0px 0px 1px;
        border-top-style: initial;
        border-right-style: initial;
        border-left-style: initial;
        border-top-color: initial;
        border-right-color: initial;
        border-left-color: initial;
        border-image: initial;
        margin: 0px;
        border-radius: 0px;
        cursor: pointer;
        user-select: none;
        vertical-align: middle;
        appearance: none;
        color: inherit;
        display: flex;
        flex-grow: 1;
        justify-content: flex-start;
        align-items: center;
        position: relative;
        text-decoration: none;
        min-width: 0px;
        box-sizing: border-box;
        text-align: left;
        padding: 8px 16px;
        transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
        border-bottom-style: solid;
        border-bottom-color: rgb(240, 240, 240);
        background-clip: padding-box;
}

.logouticon{
        flex-shrink: 0;
            display: inline-flex;
            min-width: 24px;
            color: rgb(38, 38, 38);
}

.icon{
        display: inline-flex;
            align-items: center;
            color: inherit;
            font-style: normal;
            line-height: 0;
            text-align: center;
            text-transform: none;
            vertical-align: -0.125em;
            text-rendering: optimizeLegibility;
            -webkit-font-smoothing: antialiased;
}

.logouttext{
    flex: 1 1 auto;
        min-width: 0px;
        margin-top: 4px;
        margin-bottom: 4px;
}

.logoutmessage{
        margin: 0px;
            font-size: 0.875rem;
            line-height: 1.57;
            font-family: "Public Sans", sans-serif;
            font-weight: 400;
            display: block;
}

.profile{
    padding: 8px 24px 24px 40px;
}

.mainprofile{
    box-sizing: border-box;
        display: flex;
        flex-flow: wrap;
        width: 100%;
}

.profilecontent{
    flex-basis: 100%;
        flex-grow: 0;
        max-width: 100%
}

.profiledata{
        box-sizing: border-box;
            display: flex;
            flex-flow: row;
            margin-top: -8px;
            width: calc(100% + 8px);
            margin-left: -8px;
            align-items: center;
}

.profileicon{
    box-sizing: border-box;
        margin: 0px;
        padding-top: 8px;
        padding-left: 8px;
}

.profileicons{
        position: relative;
            display: inline-flex;
            vertical-align: middle;
            flex-shrink: 0;
            padding: 0px;
            min-width: 12px;
}

.innerprofile{
        position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-family: "Public Sans", sans-serif;
            line-height: 1;
            border-radius: 50%;
            overflow: hidden;
            user-select: none;
            font-size: 1rem;
            width: 40px;
            height: 40px;
            color: rgb(22, 119, 255);
            background: rgb(230, 244, 255);
        
}

.profileimage{
    width: 100%;
        height: 100%;
        text-align: center;
        object-fit: cover;
        color: transparent;
        text-indent: 10000px;
}

.profiletext{
    flex-basis: 0px;
        flex-grow: 1;
        max-width: 100%;padding-top: 8px;padding-left: 8px;
}

.profilelink{
    display: flex;
        flex-direction: column;
        cursor: pointer;
        text-decoration: none;
}

.profilemessage{
        margin: 0px;
            font-weight: 600;
            font-size: 1rem;
            line-height: 1.5;
            font-family: "Public Sans", sans-serif;
            color: rgb(38, 38, 38);
}

.profilespace{
        margin: 0px;
            font-weight: 400;
            font-size: 0.75rem;
            line-height: 1.66;
            font-family: "Public Sans", sans-serif;
            color: rgb(140, 140, 140);
}

.rightbox{
    flex-grow: 1;
        transition: margin 200ms cubic-bezier(0, 0, 0.2, 1) 0ms;
        margin-left: 0px;
        width: calc(100% - 320px);
}

.innerright{
    box-sizing: border-box;
        display: flex;
        flex-flow: wrap;
        width: 100%;
}

.right{
    flex-basis: 100%;
        flex-grow: 0;
        max-width: 100%;
        box-sizing: border-box;
            margin: 0px;
            flex-direction: row;
            transition: width 400ms cubic-bezier(0, 0, 0.2, 1) 0ms;
}

.secondright{
    flex-basis: 33.3333%;
        flex-grow: 0;
        max-width: 33.3333%;
        box-sizing: border-box;
            margin: 0px;
            flex-direction: row;
            overflow: hidden;
            display: none;
}

.rightdiv{
    color: rgb(38, 38, 38);
        overflow: hidden;
        position: relative;
        /* border: 1px solid rgb(230, 235, 241); */
        border-radius: 0px 4px 4px 0px;
        box-shadow: inherit;
        background-color: rgb(250, 250, 250);
        padding-top: 16px;
        padding-left: 16px;
        transition: width 400ms cubic-bezier(0, 0, 0.2, 1) 0ms;
}

.secondrightdiv{
        box-sizing: border-box;
            display: flex;
            flex-flow: wrap;
            margin-top: -24px;
            width: calc(100% + 24px);
            margin-left: -24px;
}

.rightheader{
    padding-left: 24px;
    padding-top: 24px;
    flex-basis: 100%;
        flex-grow: 0;
        max-width: 100%;
    box-sizing: border-box;
        margin: 0px;
        flex-direction: row;
        flex-basis: 100%;
        flex-grow: 0;
        max-width: 100%;
        background-color: rgb(255, 255, 255);
        padding-right: 16px;
        padding-bottom: 16px;
}

.header{
        box-sizing: border-box;
            display: flex;
            flex-flow: wrap;
            margin-top: -12px;
            width: calc(100% + 12px);
            margin-left: -12px;
            justify-content: space-between;
}

.userinfoslider{
    padding-left: 12px;
        padding-top: 12px;
        box-sizing: border-box;
            margin: 0px;
}

.firstheaderitems{
        display: flex;
            flex-direction: row;
            align-items: center
}

.slidericon{
    margin: 0px;
    display: inline-flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        -webkit-tap-highlight-color: transparent;
        background-color: transparent;
        outline: 0px;
        border: 0px;
        margin: 0px;
        user-select: none;
        vertical-align: middle;
        appearance: none;
        text-decoration: none;
        text-align: center;
        flex: 0 0 auto;
        overflow: visible;
        transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
        color: rgb(140, 140, 140);
        padding: 12px;
        border-radius: 4px;
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
        position: relative;
}

.sliderspan{
    display: inline-flex;
        align-items: center;
        color: inherit;
        font-style: normal;
        line-height: 0;
        text-align: center;
        text-transform: none;
        vertical-align: -0.125em;
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
}

.slide{
    display: inline-block;
        line-height: 1;
}

.usericon{
        margin-left: 8px;
        margin: 0px;
        position: relative;
            display: inline-flex;
            vertical-align: middle;
            flex-shrink: 0;
            padding: 0px;
            min-width: 12px;
}

.avatarname{
    position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-family: "Public Sans", sans-serif;
        line-height: 1;
        border-radius: 50%;
        overflow: hidden;
        user-select: none;
        font-size: 1rem;
        width: 40px;
        height: 40px;
        color: rgb(22, 119, 255);
        background: rgb(230, 244, 255);
}

.mainusericon{
        width: 100%;
            height: 100%;
            text-align: center;
            object-fit: cover;
            color: transparent;
            text-indent: 10000px;
}

.username{
    margin-left: 8px;
        margin: 0px;
        display: flex;
            flex-direction: column
}

.usernametext{
        margin: 0px;
            font-size: 0.875rem;
            font-weight: 600;
        text-transform: capitalize;
            line-height: 1.57;
            font-family: "Public Sans", sans-serif;
                display: block;
                    margin-block-start: 2.33em;
                    margin-block-end: 2.33em;
                    margin-inline-start: 0px;
                    margin-inline-end: 0px;
                    unicode-bidi: isolate;
}

.callshareicons{
        padding-left: 12px;
            padding-top: 12px;
                box-sizing: border-box;
                    margin: 0px;
}

.maincallicons{
    display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
}

.callicon{
    margin: 0px;
    display: inline-flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        -webkit-tap-highlight-color: transparent;
        background-color: transparent;
        outline: 0px;
        border: 0px;
        margin: 0px;
        cursor: pointer;
        user-select: none;
        vertical-align: middle;
        appearance: none;
        text-decoration: none;
        text-align: center;
        flex: 0 0 auto;
        overflow: visible;
        transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
        color: rgb(140, 140, 140);
        padding: 12px;
        border-radius: 4px;
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
        position: relative;
}

.maincallicon{
        display: inline-flex;
            align-items: center;
            color: inherit;
            font-style: normal;
            line-height: 0;
            text-align: center;
            text-transform: none;
            vertical-align: -0.125em;
            text-rendering: optimizeLegibility;
            -webkit-font-smoothing: antialiased;
}

.callmainicon{
        display: inline-block;
        line-height: 1;
}

.videocallicon{
        margin-left: 8px;
            margin: 0px;
            display: inline-flex;
                align-items: center;
                justify-content: center;
                box-sizing: border-box;
                -webkit-tap-highlight-color: transparent;
                background-color: transparent;
                outline: 0px;
                border: 0px;
                margin: 0px;
                cursor: pointer;
                user-select: none;
                vertical-align: middle;
                appearance: none;
                text-decoration: none;
                text-align: center;
                flex: 0 0 auto;
                overflow: visible;
                transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
                color: rgb(140, 140, 140);
                padding: 12px;
                border-radius: 4px;
                width: 44px;
                height: 44px;
                font-size: 1.25rem;
                position: relative;
}

.mainvideoicon{
        display: inline-flex;
            align-items: center;
            color: inherit;
            font-style: normal;
            line-height: 0;
            text-align: center;
            text-transform: none;
            vertical-align: -0.125em;
            text-rendering: optimizeLegibility;
            -webkit-font-smoothing: antialiased;
}

.videoicon{
    display: inline-block;
        line-height: 1;
}

.screenshareicon{
    margin-left: 8px;
        margin: 0px;
        display: inline-flex;
            align-items: center;
            justify-content: center;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
            background-color: transparent;
            outline: 0px;
            border: 0px;
            margin: 0px;
            cursor: pointer;
            user-select: none;
            vertical-align: middle;
            appearance: none;
            text-decoration: none;
            text-align: center;
            flex: 0 0 auto;
            overflow: visible;
            transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
            color: rgb(140, 140, 140);
            padding: 12px;
            border-radius: 4px;
            width: 44px;
            height: 44px;
            font-size: 1.25rem;
            position: relative;
}

.mainscreenshareicon{   
    display: inline-flex;
        align-items: center;
        color: inherit;
        font-style: normal;
        line-height: 0;
        text-align: center;
        text-transform: none;
        vertical-align: -0.125em;
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
}

.screenshare{
        display: inline-block;
            line-height: 1;
}

.chathistory{
    padding-left: 24px;
        padding-top: 45px;
        flex-basis: 100%;
            flex-grow: 0;
            max-width: 100%;
}

.mainchat{
    height: 100%;
        overflow: hidden;
}

.innermainchat{
        position: relative;
        align-content: flex-start;
            max-height: 100%;
                overflow-x: hidden;
                height: calc(-410px + 100vh);
                min-height: 420px;
}

.userchat{
        margin: 0px;
        overflow: hidden;
            width: inherit;
            height: inherit;
            max-width: inherit;
            max-height: inherit;
}

.chatspacedot{
        box-sizing: inherit !important;
            height: 100%;
            width: 100%;
            max-width: 1px;
            position: relative;
            float: left;
            max-height: 1px;
            overflow: hidden;
            /* z-index: -1; */
            padding: 0;
            margin: 0;
            pointer-events: none;
}

.spacedot{
        box-sizing: inherit;
            display: block;
            opacity: 0;
            position: absolute;
            top: 0;
            left: 0;
            height: 1000%;
            width: 1000%;
            min-height: 1px;
            min-width: 1px;
            overflow: hidden;
            pointer-events: none;
            /* z-index: -1; */
}

.inneruserchat{
        /* z-index: inherit; */
        direction: inherit;
            position: absolute;
            overflow: hidden;
            padding: 0;
            margin: 0;
            left: 0;
            top: 0;
            bottom: 0;
            right: 0;
            width: auto !important;
            height: auto !important;
}

.secondinnerchat{
        right: 0px;
            bottom: 0px;
            direction: inherit !important;
                box-sizing: inherit !important;
                resize: none !important;
                position: absolute;
                top: 0;
                left: 0;
                bottom: 0;
                right: 0;
                padding: 0;
                margin: 0;
                -webkit-overflow-scrolling: touch;
}

.mainchathistory{
        height: 100%;
            overflow: auto;
            direction: inherit;
                box-sizing: border-box !important;
                position: relative;
                display: block;
                height: 100%;
                width: auto;
                max-width: 100%;
                max-height: 100%;
                scrollbar-width: none;
}

.innermainchathistory{
    padding: 0px;
        height: 100%;
}

.firstmainchathistory{
        padding-left: 8px;
            padding-right: 24px;
            height: 100%;
}

.usercontent{
    box-sizing: border-box;
        display: flex;
        flex-flow: wrap;
        margin-top: -20px;
        width: calc(100% + 20px);
        margin-left: -20px;
}

.textinsert{
        padding-left: 24px;
            padding-top: 37px;
            flex-basis: 100%;
                flex-grow: 0;
                max-width: 100%;
}

.inputtextfield{
    display: flex;
        flex-direction: column;
}

.maintextfield{
        display: inline-flex;
            flex-direction: column;
            position: relative;
            min-width: 0px;
            padding: 0px 16px 0px 0px;
            margin: 0px;
            border: 0px;
            vertical-align: top;
            width: 100%;
}

.innertextfield{
    font-size: 0.875rem;
        line-height: 1.4375em;
        font-family: "Public Sans", sans-serif;
        font-weight: 400;
        color: rgb(38, 38, 38);
        box-sizing: border-box;
        cursor: text;
        display: inline-flex;
        align-items: center;
        padding: 4px 0px 5px;
        width: 100%;
        position: relative;
}

.muitextfield{
        font: inherit;
            letter-spacing: inherit;
            color: currentcolor;
            padding: 0px;
            border: 0px;
            box-sizing: content-box;
            background: none;
            height: auto;
            margin: 0px;
            -webkit-tap-highlight-color: transparent;
            display: block;
            min-width: 0px;
            width: 100%;
            animation-name: mui-auto-fill-cancel;
            animation-duration: 10ms;
            resize: none;
}

.sendermessage{
    padding-left: 20px;
        padding-top: 30px;
        flex-basis: 100%;
            flex-grow: 0;
            max-width: 100%;
            box-sizing: border-box;
                margin: 0px;
}

.mainsendmessage{
    display: flex;
        flex-direction: row;
        align-items: flex-start;
}

.usermessage{
    margin: 0px;
        box-sizing: border-box;
            display: flex;
            flex-flow: wrap;
            width: 100%;
            justify-content: flex-end;
}

.usersenderspace{
            flex-basis: 25%;
                flex-grow: 0;
                max-width: 25%;
                    box-sizing: border-box;
                        margin: 0px;
}

.senderoriginalmessage{
    flex-basis: 75%;
        flex-grow: 0;
        max-width: 75%;
            box-sizing: border-box;
                margin: 0px;
}

.messagelayout{
    display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: flex-start;
}

.usersendermessage{
        color: rgb(38, 38, 38);
            transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
            border-radius: 4px;
            overflow: hidden;
            display: inline-block;
            
            background-color: rgb(22, 119, 255);
            box-shadow: none;
            margin-left: 8px;
}

.sendmessage{
        padding-top: 8px;
            padding-right: 8px;
            padding-left: 8px;
            width: fit-content;
            margin-left: auto;
            padding-bottom: 8px !important;
}

.innersendmessage{
        box-sizing: border-box;
            display: flex;
            flex-flow: wrap;
            margin-top: -8px;
            width: calc(100% + 8px);
            margin-left: -8px;
}

.firstinnersendmessage{
    padding-left: 8px;
        padding-top: 8px;
                flex-basis: 100%;
                    flex-grow: 0;
                    max-width: 100%;
                    box-sizing: border-box;
                        margin: 0px;
}

.sendertypography{
        margin: 0px;
            font-weight: 400;
            font-size: 0.875rem;
            line-height: 1.57;
            font-family: "Public Sans", sans-serif;
            color: rgb(255, 255, 255);
            overflow-wrap: anywhere;
}

.recievermessage{
    padding-left: 20px;
        padding-top: 30px;
                flex-basis: 100%;
                    flex-grow: 0;
                    max-width: 100%;
                        box-sizing: border-box;
                            margin: 0px;
}

.innerreceivermessage{
    display: flex;
        flex-direction: row;
        align-items: flex-start;
}

.recievermessagelayout{
    margin-left: 10px;
    margin: 0px;
        box-sizing: border-box;
            display: flex;
            flex-flow: wrap;
            width: 100%
}

.mainreceivermessage{
            flex-basis: 58.3333%;
                flex-grow: 0;
                max-width: 58.3333%;
                    box-sizing: border-box;
                        margin: 0px
}

.innermainrecievermessage{
        color: rgb(38, 38, 38);
            transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
            border-radius: 4px;
            overflow: hidden;
            display: inline-block;
            
            background-color: rgb(255, 255, 255);
            box-shadow: none;
}

.recievemessagelayout{
    padding-top: 8px;
        padding-right: 8px;
        padding-left: 8px;
        padding-bottom: 8px !important;
}

.receivermainmessage{
        box-sizing: border-box;
            display: flex;
            flex-flow: wrap;
            margin-top: -8px;
            width: calc(100% + 8px);
            margin-left: -8px;
}

.recievemessage{
        padding-left: 8px;
        padding-top: 8px;
        flex-basis: 100%;
            flex-grow: 0;
            max-width: 100%;
            box-sizing: border-box;
                margin: 0px;
}

.recievetypography{
        margin: 0px;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.57;
    font-family: "Public Sans", sans-serif;
    color: rgb(38, 38, 38);
    overflow-wrap: anywhere;
}


button{
        text-rendering: auto;
        letter-spacing: normal;
        word-spacing: normal;
        line-height: normal;
        text-transform: none;
        text-indent: 0px;
        text-shadow: none;
        padding-block: 1px;
        padding-inline: 6px;
}.css-k008qste {
  display: flex;
}

@media (min-width: 1266px) {
  .css-14yzvxgte {
    margin-top: 0px;
    display: block;
    z-index: 0;
  }
}

.css-14yzvxgte {
  flex: 0 0 auto;
  width: 320px;
  height: 80vh;
}

div {
  display: block;
  unicode-bidi: isolate;
}

.css-14yzvxgte .MuiDrawer-paperte {
  /* height: 100%; */
  width: 320px;
  box-sizing: border-box;
  position: relative;
  border: none;
  transform: none;
  transition: transform 225ms cubic-bezier(0, 0, 0.2, 1);
}

.css-rugynrte {
  background-color: rgb(255, 255, 255);
  color: rgb(38, 38, 38);
  box-shadow: none;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  height: 100%;
  /* z-index: 1200; */
  position: fixed;
  top: 0px;
  left: 0px;
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
  flex: 1 0 auto;
  outline: 0px;
  border-right: 1px solid rgb(240, 240, 240);
}

.css-yagv29te {
  color: rgb(38, 38, 38);
  position: relative;
  box-shadow: inherit;
  background-color: var(--background-layout);
  height: 80vh;
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  border-width: 1px 1px 1px;
  border-style: solid none solid solid;
  border-image: initial;
  /* border-radius: 4px 0px 0px 4px; */
  border-color: var(--chat-border);
  border-right: none;
}

.css-1j30m50te {
  height: 13vh;
  padding: 24px 24px 8px;
}

.css-1ov46kgte {
  display: flex;
  flex-direction: column;
}

.css-1ov46kgte > :not(style):not(style) {
  margin: 0px;
}

.css-lmzl00te {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.css-lmzl00te > :not(style):not(style) {
  margin: 0px;
}

.css-fri3p6te {
  margin: 0px;
  font-weight: 600;
  /* font-size: 1rem; */
  line-height: 1.5;
  font-family: 'Public Sans', sans-serif;
  color: var(--text-all);
}

.css-lmzl00te > :not(style) ~ :not(style) {
  margin-left: 4px;
}

.css-lmzl00te > :not(style):not(style) {
  margin: 0px;
}

.css-ck2a3fte {
  max-width: 100%;
  font-family: 'Public Sans', sans-serif;
  font-size: 0.8125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgb(255, 255, 255);
  background-color: rgb(140, 140, 140);
  cursor: unset;
  vertical-align: middle;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  white-space: nowrap;
  transition:
    background-color 300ms cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
  outline: 0px;
  text-decoration: none;
  border-width: 0px;
  border-style: initial;
  border-color: initial;
  border-image: initial;
  padding: 0px;
  border-radius: 50%;
}

.css-ck2a3fte .MuiChip-labelte {
  padding-left: 4px;
  padding-right: 4px;
}

.css-14vsv3wte {
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 12px;
  padding-right: 12px;
  white-space: nowrap;
}

/* .css-yagv29 div:nth-of-type(2) {
  height: auto;
} */

.css-1ov46kgte > :not(style) ~ :not(style) {
  margin-top: 16px;
}

.css-1ov46kgte > :not(style):not(style) {
  margin: 0px;
}

.css-8i8628te {
  font-size: 0.875rem;
  line-height: 1.4375em;
  font-family: 'Public Sans', sans-serif;
  font-weight: 400;
  color: rgb(38, 38, 38);
  box-sizing: border-box;
  cursor: text;
  display: inline-flex;
  align-items: center;
  width: 100%;
  position: relative;
  border-radius: 4px;
  /* padding-left: 14px; */
}

.css-1a6giaute {
  display: flex;
  height: 0.01em;
  max-height: 2em;
  align-items: center;
  white-space: nowrap;
  color: rgba(0, 0, 0, 0.54);
  margin-right: 8px;
  padding: 2px 0px 0px 10px;
}

.anticonte {
  font-size: small;
  display: inline-flex;
  align-items: center;
  color: inherit;
  font-style: normal;
  line-height: 0;
  text-align: center;
  text-transform: none;
  vertical-align: -0.125em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.css-8i8628te .MuiOutlinedInput-inputte {
  padding: 10.5px 0px 12px;
}

/* .css-1ij3jgw {
  font: inherit;
  letter-spacing: inherit;
  color: currentcolor;
  border: 0px;
  box-sizing: content-box;
  background: none;
  height: 1.4375em;
  margin: 0px;
  -webkit-tap-highlight-color: transparent;
  display: block;
  min-width: 0px;
  width: 100%;
  animation-name: mui-auto-fill-cancel;
  animation-duration: 10ms;
  padding: 10px 14px 10.5px 12px;
}

.css-1yi3i18 {
  text-align: left;
  position: absolute;
  inset: 5px 0px 0px;
  margin: 0px;
  padding: 0px 8px;
  pointer-events: none;
  border-radius: inherit;
  border-style: solid;
  border-width: 1px;
  overflow: hidden;
  min-width: 0%;
  border-color: rgb(217, 217, 217);
} */

/* Set the same height for the input and fieldset */
.css-1ij3jgwte {
  font: inherit;
  letter-spacing: inherit;
  color: var(--text-all);
  border: none;
  box-sizing: content-box;
  background: none;
  height: 1em; /* Adjust as needed */
  margin: 0px;
  display: block;
  min-width: 0px;
  width: 100%;
  padding: 10px 14px; /* Adjust padding */
}

.css-1ij3jgwte:focus {
  border: none;
  outline: none;
}

.css-1yi3i18te {
  text-align: left;
  position: absolute;
  inset: 0px; /* Adjust to align */
  margin: 0px;
  padding: 0px 8px;
  pointer-events: none;
  border-radius: inherit;
  border-style: solid;
  border-width: 1px;
  min-width: 0%;
  height: 2.5em; /* Same height as input */
  border-color: rgb(217, 217, 217);
}

.css-ihdtdmte {
  float: unset;
  width: auto;
  line-height: 11px;
  overflow: hidden;
  padding: 0px;
  transition: width 150ms cubic-bezier(0, 0, 0.2, 1);
}

legend {
  display: block;
  padding-inline-start: 2px;
  padding-inline-end: 2px;
  unicode-bidi: isolate;
  border-width: initial;
  border-style: none;
  border-color: initial;
  border-image: initial;
}

/* .css-yagv29 div:nth-of-type(2) {
  height: auto;
} */

.css-jjtu05ate {
  flex-grow: 1;
  height: 67vh;
  overflow: hidden;
}

[data-simplebar] {
  position: relative;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.css-pgsdoiate {
  max-height: 100%;
  overflow-x: hidden;
  /* height: calc(-402px + 100vh); */
  min-height: 420px;
}

.simplebar-wrapperte {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
  margin: 0px;
}

.simplebar-height-auto-observer-wrapperte {
  box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  flex-grow: inherit;
  flex-shrink: 0;
  flex-basis: 0;
}

.simplebar-height-auto-observerte {
  box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

/* .css-yagv29 div:nth-of-type(2) {
  height: auto;
} */

.css-pgsdoite .simplebar-maskte {
  z-index: inherit;
}

.simplebar-maskate {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 100px;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}

.simplebar-offset1te {
  direction: inherit !important;
  box-sizing: inherit !important;
  /* resize: none !important; */
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  right: 0px;
  bottom: 0px;
  height: 58vh;
  overflow: hidden;
  width: inherit;
  height: 90%;
  max-width: inherit;
  margin: 0px;
  max-height: inherit;
}

.simplebar-content-wrapperte {
  direction: inherit;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  overflow: auto;
  height: 100%;
  overflow: hidden scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.simplebar-contentte {
  padding: 0px;
}

.simplebar-content1te {
  padding: 0px;
  height: 100%;
}
.css-1cifd50te {
  padding: 0px 24px 24px;
  width: 100%;
}

.css-1ontqvhte {
  list-style: none;
  margin: 0px;
  padding: 8px 0px;
  position: relative;
}

.css-uq7wtrte.Mui-selectedte {
  color: rgb(22, 119, 255);
}

/* .css-uq7wtr.Mui-selected {
  background-color: rgba(22, 119, 255, 0.08);
} */

.css-uq7wtrte {
  -webkit-tap-highlight-color: transparent;
  background-color: transparent;
  border-top-style: initial;
  border-right-style: initial;
  border-left-style: initial;
  border-top-color: initial;
  border-right-color: initial;
  border-left-color: initial;
  cursor: pointer;
  user-select: none;
  vertical-align: middle;
  appearance: none;
  color: inherit;
  display: flex;
  flex-grow: 1;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  min-width: 0px;
  box-sizing: border-box;
  text-align: left;
  padding-top: 8px;
  padding-bottom: 8px;
  background-clip: padding-box;
  padding-right: 16px;
  padding-left: 8px;
  outline: 0px;
  border-width: 0px 0px 1px;
  border-image: initial;
  margin: 0px;
  border-radius: 0px;
  text-decoration: none;
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid var(--chat-border);
}

.css-uq7wtrte:hover {
  background-color: var(--user-hover);
}
.css-a5kqs7te {
  min-width: 56px;
  flex-shrink: 0;
}

.css-wnlbf9te {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
  flex-shrink: 0;
  padding: 0px;
  min-width: 12px;
}

.css-8rfpacte {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Public Sans', sans-serif;
  line-height: 1;
  border-radius: 50%;
  overflow: hidden;
  user-select: none;
  font-size: 1rem;
  width: 40px;
  height: 40px;
  color: rgb(22, 119, 255);
  background: rgb(230, 244, 255);
}

.css-1hy9t21te {
  width: 100%;
  height: 100%;
  text-align: center;
  object-fit: cover;
  color: transparent;
  text-indent: 10000px;
}

.css-1xaem8ete {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: absolute;
  box-sizing: border-box;
  font-family: 'Public Sans', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1;
  z-index: 1;
  top: 14%;
  right: 14%;
  transform: scale(1) translate(50%, -50%);
  transform-origin: 100% 0%;
  min-width: 16px;
  height: 16px;
  border-radius: 10px;
  transition: transform 225ms cubic-bezier(0.4, 0, 0.2, 1);
  padding: 4px;
}

/* .css-yagv29 div:nth-of-type(2) {
  height: auto;
} */

.css-1xar93xte {
  flex: 1 1 auto;
  min-width: 0px;
  margin-top: 6px;
  margin-bottom: 6px;
}

.css-1xfbr39te {
  margin: 0px;
  font-size: 0.875rem;
  line-height: 1.57;
  font-family: 'Public Sans', sans-serif;
  font-weight: 400;
  display: block;
}

.css-1p717dgte {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.css-1p717dgte > :not(style):not(style) {
  margin: 0px;
}

.css-lwxkvxte {
  margin: 0px;
  font-weight: 600;
  /* font-size: 1rem; */
  line-height: 1.5;
  font-family: 'Public Sans', sans-serif;
  color: var(--text-all);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-transform: capitalize;
}

h5 {
  display: block;
  font-size: 0.83em;
  margin-block-start: 1.67em;
  margin-block-end: 1.67em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
}

.css-1p717dgte > :not(style) ~ :not(style) {
  margin-left: 8px;
}

.css-1p717dgte > :not(style):not(style) {
  margin: 0px;
}

.css-o7j01mte {
  margin: 0px;
  font-weight: 400;
  /* font-size: 0.75rem; */
  line-height: 1.66;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-family: 'Public Sans', sans-serif;
  color: rgb(140, 140, 140);
}

.css-dbhbjzte {
  margin: 0px;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.66;
  font-family: 'Public Sans', sans-serif;
  color: rgb(140, 140, 140);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.css-zro42lte {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.css-lwxkvx1te {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 90%;
}

.simplebar-placeholderate {
  width: 319px;
  height: 0px;
  max-height: 100%;
  max-width: 100%;
  pointer-events: none;
}

/* .css-yagv29 div:nth-of-type(2) {
  height: auto;
} */

.simplebar-trackte.simplebar-horizontalte {
  left: 0;
  height: 11px;
}
.simplebar-trackte {
  z-index: 1;
  visibility: hidden;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.css-pgsdoite .simplebar-trackte.simplebar-horizontalte .simplebar-scrollbarte {
  height: 6px;
}
.simplebar-trackte.simplebar-horizontalte .simplebar-scrollbarte {
  right: auto;
  left: 0;
  top: 0;
  bottom: 0;
  min-height: 0;
  min-width: 10px;
  width: auto;
}
.simplebar-scrollbarte {
  position: absolute;
  width: 0px;
  display: none;
  left: 0;
  right: 0;
  min-height: 10px;
}

.css-pgsdoite .simplebar-trackte.simplebar-verticalte {
  width: 10px;
}
.simplebar-trackte.simplebar-verticalte {
  top: 0;
  width: 11px;
}
.simplebar-trackte {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  visibility: visible;
  pointer-events: none;
  overflow: hidden;
}

.simplebar-scrollbarte {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px;
  height: 329px;
  display: block;
  transform: translate3d(0px, 0px, 0px);
}
 
.css-hitq4ute {
  flex-grow: 1;
  margin-left: 0px;
  min-width: 350px;
  transition: margin 200ms cubic-bezier(0, 0, 0.2, 1);
  height: 80vh;
}

.css-1d3bbyete {
  box-sizing: border-box;
  display: flex;
  flex-flow: wrap;
  width: 100%;
  height: 80vh;
}

@media (min-width: 1266px) {
  .css-rlsmstte {
    flex-basis: 100%;
    flex-grow: 0;
    max-width: 100%;
  }
}

.css-rlsmstte {
  box-sizing: border-box;
  flex-direction: row;
  flex-basis: 100%;
  flex-grow: 0;
  max-width: 100%;
  margin: 0px;
  transition: width 400ms cubic-bezier(0, 0, 0.2, 1);
}

.css-1uxjfdate {
  color: rgb(38, 38, 38);
  position: relative;
  box-shadow: inherit;
  background-color: var(--background-layout);
  /* padding-left: 16px; */
  overflow: hidden;
  border-width: 1px;
  border-style: solid;
  border-image: initial;
  border-radius: 0px 4px 4px 0px;
  border-color: var(--chat-border);
  transition: width 400ms cubic-bezier(0, 0, 0.2, 1);
  height: 80vh;
}

.css-1h77wgbte {
  box-sizing: border-box;
  /* display: flex; */
  flex-flow: wrap;
  /* width: calc(100% + 24px); */
  height: 100%;
  /* margin-left: -24px; */
}

.css-1h77wgbte > .MuiGrid-itemte {
  padding-left: 24px;
}

.css-1h77wgbte > .MuiGrid-itemte {
  padding-top: 24px;
}

@media (min-width: 350px) {
  .css-95iqhvte {
    flex-basis: 100%;
    flex-grow: 0;
    max-width: 100%;
  }
}

.css-95iqhvte {
  box-sizing: border-box;
  margin: 0px;
  flex-direction: row;
  flex-basis: 100%;
  flex-grow: 0;
  max-width: 100%;
  /* background-color: rgb(255, 255, 255); */
  padding-right: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--chat-border);
  height: 16%;
}

.css-a8c5pjte {
  box-sizing: border-box;
  display: flex;
  /* flex-flow: wrap; */
  margin-top: -12px;
  width: calc(100% + 12px);
  margin-left: -12px;
  justify-content: space-between;
}

.css-a8c5pjte > .MuiGrid-itemte {
  padding-left: 12px;
}

.css-a8c5pjte > .MuiGrid-itemte {
  padding-top: 12px;
}

.css-1wxaqejte {
  box-sizing: border-box;
  margin: 0px;
  flex-direction: row;
}

.css-csffzdte {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.css-csffzdte > :not(style):not(style) {
  margin: 0px;
}

.css-9xgg9zte {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  background-color: transparent;
  cursor: pointer;
  user-select: none;
  vertical-align: middle;
  appearance: none;
  text-align: center;
  color: rgb(140, 140, 140);
  width: 44px;
  height: 44px;
  font-size: 1.25rem;
  position: relative;
  outline: 0px;
  border-width: 0px;
  border-style: initial;
  border-color: initial;
  border-image: initial;
  margin: 0px;
  text-decoration: none;
  flex: 0 0 auto;
  overflow: visible;
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
  padding: 12px;
  border-radius: 4px;
}

.css-csffzdte > :not(style) ~ :not(style) {
  margin-left: 8px;
}

.css-csffzdte > :not(style):not(style) {
  margin: 0px;
}

.css-wnlbf9te {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
  flex-shrink: 0;
  padding: 0px;
  min-width: 12px;
}

.css-8rfpacte {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Public Sans', sans-serif;
  line-height: 1;
  border-radius: 50%;
  overflow: hidden;
  user-select: none;
  font-size: 1rem;
  width: 40px;
  height: 40px;
  color: rgb(22, 119, 255);
  background: rgb(230, 244, 255);
}

.css-1hy9t21te {
  width: 100%;
  height: 100%;
  text-align: center;
  object-fit: cover;
  color: transparent;
  text-indent: 10000px;
}

.css-1xaem8ete {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: absolute;
  box-sizing: border-box;
  font-family: 'Public Sans', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1;
  z-index: 1;
  top: 14%;
  right: 14%;
  transform: scale(1) translate(50%, -50%);
  transform-origin: 100% 0%;
  min-width: 16px;
  height: 16px;
  border-radius: 10px;
  transition: transform 225ms cubic-bezier(0.4, 0, 0.2, 1);
  padding: 4px;
}

.css-csffzdte > :not(style) ~ :not(style) {
  margin-left: 8px;
}

.css-csffzdte > :not(style):not(style) {
  margin: 0px;
}

.css-j7qwjste {
  display: flex;
  flex-direction: column;
}

.css-wg1kk8te {
  margin: 0px;
  /* font-size: 0.875rem; */
  font-weight: 600;
  line-height: 1.57;
  font-family: 'Public Sans', sans-serif;
  text-transform: capitalize;
  color: var(--text-all);
}

h6 {
  display: block;
  font-size: 0.67em;
  margin-block-start: 2.33em;
  margin-block-end: 2.33em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
}

.css-o7j01m2te {
  margin: 0px;
  font-weight: 400;
  /* font-size: 0.75rem; */
  line-height: 1.66;
  font-family: 'Public Sans', sans-serif;
  color: rgb(140, 140, 140);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.css-a8c5pjte > .MuiGrid-itemte {
  padding-left: 12px;
}

.css-a8c5pjte > .MuiGrid-itemte {
  padding-top: 12px;
}

.css-1wxaqejte {
  box-sizing: border-box;
  margin: 0px;
  flex-direction: row;
}

.css-1rpqaugte {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}

.css-1rpqaugte > :not(style):not(style) {
  margin: 0px;
}

.css-9xgg9zte {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  background-color: transparent;
  cursor: pointer;
  user-select: none;
  vertical-align: middle;
  appearance: none;
  text-align: center;
  color: rgb(140, 140, 140);
  width: 44px;
  height: 44px;
  font-size: 1.25rem;
  position: relative;
  outline: 0px;
  border-width: 0px;
  border-style: initial;
  border-color: initial;
  border-image: initial;
  margin: 0px;
  text-decoration: none;
  flex: 0 0 auto;
  overflow: visible;
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
  padding: 12px;
  border-radius: 4px;
}

.css-1rpqaugte > :not(style) ~ :not(style) {
  margin-left: 8px;
}

.css-1rpqaugte > :not(style):not(style) {
  margin: 0px;
}

.css-9xgg9zte {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  background-color: transparent;
  cursor: pointer;
  user-select: none;
  vertical-align: middle;
  appearance: none;
  text-align: center;
  color: rgb(140, 140, 140);
  width: 44px;
  height: 44px;
  font-size: 1.25rem;
  position: relative;
  outline: 0px;
  border-width: 0px;
  border-style: initial;
  border-color: initial;
  border-image: initial;
  margin: 0px;
  text-decoration: none;
  flex: 0 0 auto;
  overflow: visible;
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
  padding: 12px;
  border-radius: 4px;
}

.css-1rpqaugte > :not(style) ~ :not(style) {
  margin-left: 8px;
}

.css-1rpqaugte > :not(style):not(style) {
  margin: 0px;
}

.css-mwevgte {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  background-color: transparent;
  cursor: pointer;
  user-select: none;
  vertical-align: middle;
  appearance: none;
  text-align: center;
  color: rgb(140, 140, 140);
  width: 44px;
  height: 44px;
  font-size: 1.25rem;
  position: relative;
  outline: 0px;
  border-width: 0px;
  border-style: initial;
  border-color: initial;
  border-image: initial;
  margin: 0px;
  text-decoration: none;
  flex: 0 0 auto;
  overflow: visible;
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
  padding: 12px;
  border-radius: 4px;
}

button {
  appearance: auto;

  text-rendering: auto;
  letter-spacing: normal;
  word-spacing: normal;
  line-height: normal;
  text-transform: none;
  text-indent: 0px;
  text-shadow: none;
  display: inline-block;
  text-align: center;
  align-items: flex-start;
  cursor: default;
  box-sizing: border-box;
  margin: 0em;
  padding-block: 1px;
  padding-inline: 6px;
  border-width: 2px;
  border-style: outset;
  border-color: buttonborder;
  border-image: initial;
}

.css-1h77wgbte > .MuiGrid-itemte {
  padding-left: 24px;
}

.css-1h77wgbte > .MuiGrid-itemte {
  padding-top: 24px;
}

@media (min-width: 1266px) {
  .css-1osx3qj0te {
    flex-basis: 100%;
    flex-grow: 0;
    max-width: 100%;
  }
}

.css-1osx3qj0te {
  box-sizing: border-box;
  margin: 0px;
  flex-direction: row;
  flex-basis: 100%;
  flex-grow: 0;
  max-width: 100%;
  height: 66%;
}

.css-jjtu05bte {
  flex-grow: 1;
  height: 100%;
  overflow: hidden;
}

.css-19m3c4cte {
  height: 100%;
  overflow: auto;
  /* height: 58vh; */
  /* height: calc(-410px + 100vh); */
  /* min-height: 420px; */
}

.simplebar-wrapperbte {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  margin: 0px;
  max-height: inherit;
}

.simplebar-height-auto-observer-wrapperte {
  box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  flex-grow: inherit;
  flex-shrink: 0;
  flex-basis: 0;
}

.simplebar-height-auto-observerte {
  box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.css-19m3c4cte .simplebar-maskte {
  z-index: inherit;
}

.simplebar-mask1te {
  direction: inherit;
  position: absolute;
  /* overflow: auto; */
  padding: 0;
  margin: 0;
  left: 0;
  right: 0;
  width: auto !important;
  z-index: 0;
  height: 66%;
  overflow: hidden;
  width: inherit;
  /* height: inherit; */
  max-width: inherit;
  /* margin: 0px; */
  /* max-height: inherit; */
}

.simplebar-offsette {
  right: 0px;
  bottom: 0px;
  direction: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper1te {
  height: 100%;
  overflow: hidden;
  direction: inherit;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.css-19m3c4cte .simplebar-contentte {
  padding: 0px;
  height: 90%;
}

.css-oqwk2ybte {
  padding-left: 8px;
  padding-right: 24px;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.css-es6biete {
  box-sizing: border-box;
  display: flex;
  flex-flow: wrap;
  margin-top: -20px;
  margin-bottom: 10px;
  width: calc(100% + 20px);
  margin-left: -20px;
  /* overflow: auto; */
  scrollbar-width: none;
  scroll-behavior: smooth;
  /* height: 58vh; */
}

.css-es6biete > .MuiGrid-itemte {
  padding-left: 20px;
}

.css-es6biete > .MuiGrid-itemte {
  padding-top: 20px;
}

@media (min-width: 1266px) {
  .css-1osx3qj1te {
    flex-basis: 100%;
    flex-grow: 0;
    max-width: 100%;
  }
}

.css-1osx3qj1te {
  box-sizing: border-box;
  margin: 0px;
  flex-direction: row;
  flex-basis: 100%;
  flex-grow: 0;
  max-width: 100%;
}

.css-1uwor98te {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin-top: 4px;
}

.css-1uwor98te > :not(style):not(style) {
  margin: 0px;
}

.css-kyse2mte {
  box-sizing: border-box;
  display: flex;
  flex-flow: wrap;
  width: 100%;
  justify-content: flex-end;
}

@media (min-width: 1266px) {
  .css-ob8nt7te {
    flex-basis: 25%;
    flex-grow: 0;
    max-width: 25%;
  }
}

.css-ob8nt7te {
  box-sizing: border-box;
  margin: 0px;
  flex-direction: row;
  flex-basis: 16.6667%;
  flex-grow: 0;
  max-width: 16.6667%;
}

@media (min-width: 1266px) {
  .css-kjb1srte {
    flex-basis: 75%;
    flex-grow: 0;
    max-width: 75%;
  }
}

.css-kjb1srte {
  box-sizing: border-box;
  margin: 0px;
  flex-direction: row;
  flex-basis: 83.3333%;
  flex-grow: 0;
  max-width: 83.3333%;
}

.css-1w1vxr3te {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
}

.css-hsk180te {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  background-color: transparent;
  cursor: pointer;
  user-select: none;
  vertical-align: middle;
  appearance: none;
  text-align: center;
  color: rgb(140, 140, 140);
  width: 30px;
  height: 30px;
  font-size: 0.75rem;
  position: relative;
  outline: 0px;
  border-width: 0px;
  border-style: initial;
  border-color: initial;
  border-image: initial;
  margin: 0px;
  text-decoration: none;
  flex: 0 0 auto;
  overflow: visible;
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
  padding: 5px;
  border-radius: 4px;
}

.css-8cla0hte {
  color: rgb(38, 38, 38);
  display: inline-block;
  background-color: rgb(22, 119, 255);
  box-shadow: none;
  margin-left: 8px;
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 4px;
  overflow: hidden;
  /* height: 5vh; */
}

.css-iu701jte:last-child {
  padding-bottom: 20px;
}

.css-iu701jte:last-child {
  padding-bottom: 24px;
}

.css-iu701jte {
  padding-top: 8px;
  padding-right: 8px;
  padding-left: 8px;
  width: fit-content;
  margin-left: auto;
  padding-bottom: 8px !important;
}

.css-tuxzvute {
  box-sizing: border-box;
  display: flex;
  flex-flow: wrap;
  margin-top: -20px;
  width: calc(100% + 8px);
  margin-left: -8px;
}

.css-tuxzvute > .MuiGrid-itemte {
  padding-left: 8px;
}

.css-tuxzvute > .MuiGrid-itemte {
  padding-top: 1px;
}

@media (min-width: 1266px) {
  .css-1osx3qjte {
    flex-basis: 100%;
    flex-grow: 0;
    max-width: 100%;
  }
}

.css-1osx3qjte {
  box-sizing: border-box;
  margin-top: 50px;
  flex-direction: row;
  flex-basis: 100%;
  flex-grow: 0;
  max-width: 100%;
}

.css-1gvfmhhte {
  margin: 0px;
  font-weight: 400;
  /* font-size: 0.875rem; */
  line-height: 1.57;
  font-family: 'Public Sans', sans-serif;
  color: rgb(255, 255, 255);
  overflow-wrap: anywhere;
}

@media (min-width: 1266px) {
  .css-1osx3qjte {
    flex-basis: 100%;
    flex-grow: 0;
    max-width: 100%;
  }
}

.css-1osx3qjte {
  box-sizing: border-box;
  margin: 0px;
  flex-direction: row;
  flex-basis: 100%;
  flex-grow: 0;
  max-width: 100%;
}

.css-h19xwte {
  margin: 0px;
  /* font-size: 0.75rem; */
  font-weight: 500;
  line-height: 1.66;
  font-family: 'Public Sans', sans-serif;
  text-align: right;
  color: rgb(140, 140, 140);
}

.css-1uwor98te > :not(style) ~ :not(style) {
  margin-left: 10px;
}

.css-1uwor98te > :not(style):not(style) {
  margin: 0px;
}

.css-wnlbf9te {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
  flex-shrink: 0;
  padding: 0px;
  min-width: 12px;
}

.css-8rfpacte {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Public Sans', sans-serif;
  line-height: 1;
  border-radius: 50%;
  overflow: hidden;
  user-select: none;
  font-size: 1rem;
  width: 40px;
  height: 40px;
  color: rgb(22, 119, 255);
  background: rgb(230, 244, 255);
}

.css-1hy9t21te {
  width: 100%;
  height: 100%;
  text-align: center;
  object-fit: cover;
  color: transparent;
  text-indent: 10000px;
}

.css-1xaem8ete {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: absolute;
  box-sizing: border-box;
  font-family: 'Public Sans', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1;
  z-index: 1;
  top: 14%;
  right: 14%;
  transform: scale(1) translate(50%, -50%);
  transform-origin: 100% 0%;
  min-width: 16px;
  height: 16px;
  border-radius: 10px;
  transition: transform 225ms cubic-bezier(0.4, 0, 0.2, 1);
  padding: 4px;
}

.simplebar-placeholderte {
  width: 890px;
  height: 563px;
  max-height: 100%;
  max-width: 100%;
  pointer-events: none;
}

.simplebar-trackte.simplebar-horizontalte {
  left: 0;
  height: 11px;
}
.simplebar-trackte {
  visibility: hidden;
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.css-19m3c4cte .simplebar-trackte.simplebar-horizontalte .simplebar-scrollbarte {
  height: 6px;
}
.simplebar-trackte.simplebar-horizontalte .simplebar-scrollbarte {
  right: auto;
  left: 0;
  top: 0;
  bottom: 0;
  min-height: 0;
  min-width: 10px;
  width: auto;
}
.simplebar-scrollbarte {
  width: 0px;
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px;
}

.css-19m3c4cte .simplebar-trackte.simplebar-verticalte {
  width: 10px;
}
.simplebar-trackte.simplebar-verticalte {
  top: 0;
  width: 11px;
}
.simplebar-trackte {
  visibility: hidden;
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.simplebar-scrollbarte {
  height: 0px;
  display: none;
  position: absolute;
  left: 0;
  right: 0;
}

.css-1h77wgbte > .MuiGrid-itemte {
  padding-left: 24px;
}

.css-1h77wgbte > .MuiGrid-itemte {
  padding-top: 24px;
}

@media (min-width: 1266px) {
  .css-40b97fte {
    flex-basis: 100%;
    flex-grow: 0;
    max-width: 100%;
  }
}

.css-40b97fte {
  box-sizing: border-box;
  flex-direction: row;
  flex-basis: 100%;
  flex-grow: 0;
  max-width: 100%;
  /* background-color: rgb(255, 255, 255); */
  border-top: 1px solid var(--chat-border);
  height: 18%;
  top: '0px';
  left: '0px';
}

.css-j7qwjsate {
  display: flex;
  flex-direction: column;
  height: 11vh;
}

.css-etx89ote {
  /* display: inline-flex;
  flex-direction: column; */
  position: absolute;
  min-width: 0px;
  /* padding: 0px 16px 0px 0px; */
  margin: 0px;
  border: 0px;
  vertical-align: top;
  height: 11vh;
  width: 100%;
  left: 0px;
}

.css-1cah9u4te {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  line-height: 1.4375em;
  font-family: 'Public Sans', sans-serif;
  font-weight: 400;
  color: rgb(38, 38, 38);
  box-sizing: border-box;
  cursor: text;
  display: inline-flex;
  align-items: center;
  padding: 4px 0px 5px;
  height: 11vh;
  width: 100%;
  position: relative;
}

.css-gzicb7te {
  height: 9vh;
  font: inherit;
  letter-spacing: inherit;
  color: var(--text-all);
  /* padding: 0px 8px; */
  border: 0px;
  box-sizing: content-box;
  background: none;
  margin: -40px 0px 0px 0px;
  -webkit-tap-highlight-color: transparent;
  display: block;
  min-width: 0px;
  width: inherit;
  animation-name: mui-auto-fill-cancel;
  animation-duration: 10ms;
  resize: none;
  scrollbar-width: none;
}
.css-gzicb7te:hover {
  border-bottom: 1px solid ;
}
.css-gzicb7te:focus {
  border: none;
  border-bottom: 1px solid rgb(22, 119, 255);
  outline: none;
}

.css-95g4ukte {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.css-sme2x1te {
  display: flex;
  flex-direction: row;
  padding-top: 16px;
  padding-bottom: 16px;
  margin-left: -8px;
}

.css-16peycbte {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  background-color: transparent;
  cursor: pointer;
  user-select: none;
  vertical-align: middle;
  appearance: none;
  text-align: center;
  color: rgb(140, 140, 140);
  width: 36px;
  height: 36px;
  font-size: 1rem;
  position: relative;
  opacity: 0.5;
  outline: 0px;
  border-width: 0px;
  border-style: initial;
  border-color: initial;
  border-image: initial;
  margin: 0px;
  text-decoration: none;
  flex: 0 0 auto;
  padding: 8px;
  overflow: visible;
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 4px;
}

.css-10t0o0ate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  background-color: transparent;
  cursor: pointer;
  user-select: none;
  vertical-align: middle;
  appearance: none;
  text-align: center;
  color: rgb(22, 119, 255);
  width: 44px;
  height: 44px;
  font-size: 1.25rem;
  position: relative;
  outline: 0px;
  border-width: 0px;
  border-style: initial;
  border-color: initial;
  border-image: initial;
  margin: 0px 12px 0px 0px;
  text-decoration: none;
  flex: 0 0 auto;
  overflow: visible;
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
  padding: 12px;
  border-radius: 4px;
}

.css-shext4te {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.css-shext4te > :not(style):not(style) {
  margin: 0px;
}

.css-wnlbf9te {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
  flex-shrink: 0;
  padding: 0px;
  min-width: 12px;
}

.css-8rfpacte {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Public Sans', sans-serif;
  line-height: 1;
  border-radius: 50%;
  overflow: hidden;
  user-select: none;
  font-size: 1rem;
  width: 40px;
  height: 40px;
  color: rgb(22, 119, 255);
  background: rgb(230, 244, 255);
}

.css-1hy9t21te {
  width: 100%;
  height: 100%;
  text-align: center;
  object-fit: cover;
  color: transparent;
  text-indent: 10000px;
}

.css-1xaem8ete {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: absolute;
  box-sizing: border-box;
  font-family: 'Public Sans', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1;
  z-index: 1;
  top: 14%;
  right: 14%;
  transform: scale(1) translate(50%, -50%);
  transform-origin: 100% 0%;
  min-width: 16px;
  height: 16px;
  border-radius: 10px;
  transition: transform 225ms cubic-bezier(0.4, 0, 0.2, 1);
  padding: 4px;
}

.css-shext4te > :not(style) ~ :not(style) {
  margin-left: 10px;
}

.css-shext4te > :not(style):not(style) {
  margin: 0px;
}

.css-1d3bbyebte {
  /* box-sizing: border-box;
  display: flex;
  flex-flow: wrap;
  width: 100%; */
  box-sizing: border-box;
  display: flex;
  flex-flow: wrap;
  width: 100%;
  /* justify-content: flex-end; */
}

@media (min-width: 1266px) {
  .css-d9i4jste {
    flex-basis: 58.3333%;
    flex-grow: 0;
    max-width: 58.3333%;
  }
}

.css-d9i4jste {
  box-sizing: border-box;
  margin: 0px;
  flex-direction: row;
  flex-basis: 100%;
  flex-grow: 0;
  max-width: 80%;
}

.css-x32pmbte {
  color: rgb(38, 38, 38);
  display: inline-block;
  /* float: left; */
  /* background-color: rgb(218, 15, 15); */
  background-color: rgb(234, 231, 231);
  box-shadow: none;
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 4px;
  overflow: hidden;
}

.css-89k47fte {
  padding-top: 15px;
  padding-right: 8px;
  padding-left: 15px;
  padding-bottom: 8px !important;
}

.css-tuxzvute {
  box-sizing: border-box;
  display: flex;
  flex-flow: wrap;
  margin-top: -8px;
  width: calc(100% + 8px);
  margin-left: -8px;
}

.css-tuxzvute > .MuiGrid-itemte {
  padding-left: 8px;
}

.css-tuxzvute > .MuiGrid-itemte {
  padding-top: 8px;
}

@media (min-width: 1266px) {
  .css-1osx3qjte {
    flex-basis: 100%;
    flex-grow: 0;
    max-width: 100%;
  }
}

.css-1osx3qjte {
  box-sizing: border-box;
  margin: 0px;
  flex-direction: row;
  flex-basis: 100%;
  flex-grow: 0;
  max-width: 100%;
}

.css-bodtbite {
  margin: 0px;
  font-weight: 400;
  /* font-size: 0.875rem; */
  line-height: 1.57;
  font-family: 'Public Sans', sans-serif;
  color: rgb(38, 38, 38);
  overflow-wrap: anywhere;
}

@media (min-width: 1266px) {
  .css-18n0g6qte {
    flex-basis: 100%;
    flex-grow: 0;
    max-width: 100%;
  }
}

.css-18n0g6qte {
  box-sizing: border-box;
  margin: 8px 0px 0px;
  flex-direction: row;
  flex-basis: 100%;
  flex-grow: 0;
  max-width: 100%;
}

.css-jn4qe1te {
  margin: 0px;
  /* font-size: 0.75rem; */
  font-weight: 500;
  line-height: 1.66;
  font-family: 'Public Sans', sans-serif;
  color: rgb(140, 140, 140);
}

.css-1gvfmhhte {
  margin: 0px;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.57;
  font-family: 'Public Sans', sans-serif;
  color: rgb(255, 255, 255);
  overflow-wrap: anywhere;
}

.form-divte{
  display: flex;
  width: 90%;
}/*!
 * Quill Editor v1.3.7
 * https://quilljs.com/
 * Copyright (c) 2014, Jason Chen
 * Copyright (c) 2013, salesforce.com
 */
.ql-container {
  box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  height: 100%;
  margin: 0px;
  position: relative;
}
.ql-container.ql-disabled .ql-tooltip {
  visibility: hidden;
}
.ql-container.ql-disabled .ql-editor ul[data-checked] > li::before {
  pointer-events: none;
}
.ql-clipboard {
  left: -100000px;
  height: 1px;
  overflow-y: hidden;
  position: absolute;
  top: 50%;
}
.ql-clipboard p {
  margin: 0;
  padding: 0;
}
.ql-editor {
  box-sizing: border-box;
  line-height: 1.42;
  height: 100%;
  outline: none;
  overflow-y: auto;
  padding: 12px 15px;
  tab-size: 4;
  -moz-tab-size: 4;
  text-align: left;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.ql-editor > * {
  cursor: text;
}
.ql-editor p,
.ql-editor ol,
.ql-editor ul,
.ql-editor pre,
.ql-editor blockquote,
.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6 {
  margin: 0;
  padding: 0;
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol,
.ql-editor ul {
  padding-left: 1.5em;
}
.ql-editor ol > li,
.ql-editor ul > li {
  list-style-type: none;
}
.ql-editor ul > li::before {
  content: '\2022';
}
.ql-editor ul[data-checked=true],
.ql-editor ul[data-checked=false] {
  pointer-events: none;
}
.ql-editor ul[data-checked=true] > li *,
.ql-editor ul[data-checked=false] > li * {
  pointer-events: all;
}
.ql-editor ul[data-checked=true] > li::before,
.ql-editor ul[data-checked=false] > li::before {
  color: #777;
  cursor: pointer;
  pointer-events: all;
}
.ql-editor ul[data-checked=true] > li::before {
  content: '\2611';
}
.ql-editor ul[data-checked=false] > li::before {
  content: '\2610';
}
.ql-editor li::before {
  display: inline-block;
  white-space: nowrap;
  width: 1.2em;
}
.ql-editor li:not(.ql-direction-rtl)::before {
  margin-left: -1.5em;
  margin-right: 0.3em;
  text-align: right;
}
.ql-editor li.ql-direction-rtl::before {
  margin-left: 0.3em;
  margin-right: -1.5em;
}
.ql-editor ol li:not(.ql-direction-rtl),
.ql-editor ul li:not(.ql-direction-rtl) {
  padding-left: 1.5em;
}
.ql-editor ol li.ql-direction-rtl,
.ql-editor ul li.ql-direction-rtl {
  padding-right: 1.5em;
}
.ql-editor ol li {
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  counter-increment: list-0;
}
.ql-editor ol li:before {
  content: counter(list-0, decimal) '. ';
}
.ql-editor ol li.ql-indent-1 {
  counter-increment: list-1;
}
.ql-editor ol li.ql-indent-1:before {
  content: counter(list-1, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-1 {
  counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-2 {
  counter-increment: list-2;
}
.ql-editor ol li.ql-indent-2:before {
  content: counter(list-2, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-2 {
  counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-3 {
  counter-increment: list-3;
}
.ql-editor ol li.ql-indent-3:before {
  content: counter(list-3, decimal) '. ';
}
.ql-editor ol li.ql-indent-3 {
  counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-4 {
  counter-increment: list-4;
}
.ql-editor ol li.ql-indent-4:before {
  content: counter(list-4, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-4 {
  counter-reset: list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-5 {
  counter-increment: list-5;
}
.ql-editor ol li.ql-indent-5:before {
  content: counter(list-5, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-5 {
  counter-reset: list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-6 {
  counter-increment: list-6;
}
.ql-editor ol li.ql-indent-6:before {
  content: counter(list-6, decimal) '. ';
}
.ql-editor ol li.ql-indent-6 {
  counter-reset: list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-7 {
  counter-increment: list-7;
}
.ql-editor ol li.ql-indent-7:before {
  content: counter(list-7, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-7 {
  counter-reset: list-8 list-9;
}
.ql-editor ol li.ql-indent-8 {
  counter-increment: list-8;
}
.ql-editor ol li.ql-indent-8:before {
  content: counter(list-8, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-8 {
  counter-reset: list-9;
}
.ql-editor ol li.ql-indent-9 {
  counter-increment: list-9;
}
.ql-editor ol li.ql-indent-9:before {
  content: counter(list-9, decimal) '. ';
}
.ql-editor .ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 3em;
}
.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 4.5em;
}
.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 3em;
}
.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 4.5em;
}
.ql-editor .ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 6em;
}
.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 7.5em;
}
.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 6em;
}
.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 7.5em;
}
.ql-editor .ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 9em;
}
.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 10.5em;
}
.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 9em;
}
.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 10.5em;
}
.ql-editor .ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 12em;
}
.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 13.5em;
}
.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 12em;
}
.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 13.5em;
}
.ql-editor .ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 15em;
}
.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 16.5em;
}
.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 15em;
}
.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 16.5em;
}
.ql-editor .ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 18em;
}
.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 19.5em;
}
.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 18em;
}
.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 19.5em;
}
.ql-editor .ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 21em;
}
.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 22.5em;
}
.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 21em;
}
.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 22.5em;
}
.ql-editor .ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 24em;
}
.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 25.5em;
}
.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 24em;
}
.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 25.5em;
}
.ql-editor .ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 27em;
}
.ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 28.5em;
}
.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 27em;
}
.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 28.5em;
}
.ql-editor .ql-video {
  display: block;
  max-width: 100%;
}
.ql-editor .ql-video.ql-align-center {
  margin: 0 auto;
}
.ql-editor .ql-video.ql-align-right {
  margin: 0 0 0 auto;
}
.ql-editor .ql-bg-black {
  background-color: #000;
}
.ql-editor .ql-bg-red {
  background-color: #e60000;
}
.ql-editor .ql-bg-orange {
  background-color: #f90;
}
.ql-editor .ql-bg-yellow {
  background-color: #ff0;
}
.ql-editor .ql-bg-green {
  background-color: #008a00;
}
.ql-editor .ql-bg-blue {
  background-color: #06c;
}
.ql-editor .ql-bg-purple {
  background-color: #93f;
}
.ql-editor .ql-color-white {
  color: #fff;
}
.ql-editor .ql-color-red {
  color: #e60000;
}
.ql-editor .ql-color-orange {
  color: #f90;
}
.ql-editor .ql-color-yellow {
  color: #ff0;
}
.ql-editor .ql-color-green {
  color: #008a00;
}
.ql-editor .ql-color-blue {
  color: #06c;
}
.ql-editor .ql-color-purple {
  color: #93f;
}
.ql-editor .ql-font-serif {
  font-family: Georgia, Times New Roman, serif;
}
.ql-editor .ql-font-monospace {
  font-family: Monaco, Courier New, monospace;
}
.ql-editor .ql-size-small {
  font-size: 0.75em;
}
.ql-editor .ql-size-large {
  font-size: 1.5em;
}
.ql-editor .ql-size-huge {
  font-size: 2.5em;
}
.ql-editor .ql-direction-rtl {
  direction: rtl;
  text-align: inherit;
}
.ql-editor .ql-align-center {
  text-align: center;
}
.ql-editor .ql-align-justify {
  text-align: justify;
}
.ql-editor .ql-align-right {
  text-align: right;
}
.ql-editor.ql-blank::before {
  color: rgba(0,0,0,0.6);
  content: attr(data-placeholder);
  font-style: italic;
  left: 15px;
  pointer-events: none;
  position: absolute;
  right: 15px;
}
.ql-snow.ql-toolbar:after,
.ql-snow .ql-toolbar:after {
  clear: both;
  content: '';
  display: table;
}
.ql-snow.ql-toolbar button,
.ql-snow .ql-toolbar button {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  float: left;
  height: 24px;
  padding: 3px 5px;
  width: 28px;
}
.ql-snow.ql-toolbar button svg,
.ql-snow .ql-toolbar button svg {
  float: left;
  height: 100%;
}
.ql-snow.ql-toolbar button:active:hover,
.ql-snow .ql-toolbar button:active:hover {
  outline: none;
}
.ql-snow.ql-toolbar input.ql-image[type=file],
.ql-snow .ql-toolbar input.ql-image[type=file] {
  display: none;
}
.ql-snow.ql-toolbar button:hover,
.ql-snow .ql-toolbar button:hover,
.ql-snow.ql-toolbar button:focus,
.ql-snow .ql-toolbar button:focus,
.ql-snow.ql-toolbar button.ql-active,
.ql-snow .ql-toolbar button.ql-active,
.ql-snow.ql-toolbar .ql-picker-label:hover,
.ql-snow .ql-toolbar .ql-picker-label:hover,
.ql-snow.ql-toolbar .ql-picker-label.ql-active,
.ql-snow .ql-toolbar .ql-picker-label.ql-active,
.ql-snow.ql-toolbar .ql-picker-item:hover,
.ql-snow .ql-toolbar .ql-picker-item:hover,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected {
  color: #06c;
}
.ql-snow.ql-toolbar button:hover .ql-fill,
.ql-snow .ql-toolbar button:hover .ql-fill,
.ql-snow.ql-toolbar button:focus .ql-fill,
.ql-snow .ql-toolbar button:focus .ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill {
  fill: #06c;
}
.ql-snow.ql-toolbar button:hover .ql-stroke,
.ql-snow .ql-toolbar button:hover .ql-stroke,
.ql-snow.ql-toolbar button:focus .ql-stroke,
.ql-snow .ql-toolbar button:focus .ql-stroke,
.ql-snow.ql-toolbar button.ql-active .ql-stroke,
.ql-snow .ql-toolbar button.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow.ql-toolbar button:hover .ql-stroke-miter,
.ql-snow .ql-toolbar button:hover .ql-stroke-miter,
.ql-snow.ql-toolbar button:focus .ql-stroke-miter,
.ql-snow .ql-toolbar button:focus .ql-stroke-miter,
.ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,
.ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter {
  stroke: #06c;
}
@media (pointer: coarse) {
  .ql-snow.ql-toolbar button:hover:not(.ql-active),
  .ql-snow .ql-toolbar button:hover:not(.ql-active) {
    color: #444;
  }
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill {
    fill: #444;
  }
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter {
    stroke: #444;
  }
}
.ql-snow {
  box-sizing: border-box;
}
.ql-snow * {
  box-sizing: border-box;
}
.ql-snow .ql-hidden {
  display: none;
}
.ql-snow .ql-out-bottom,
.ql-snow .ql-out-top {
  visibility: hidden;
}
.ql-snow .ql-tooltip {
  position: absolute;
  transform: translateY(10px);
}
.ql-snow .ql-tooltip a {
  cursor: pointer;
  text-decoration: none;
}
.ql-snow .ql-tooltip.ql-flip {
  transform: translateY(-10px);
}
.ql-snow .ql-formats {
  display: inline-block;
  vertical-align: middle;
}
.ql-snow .ql-formats:after {
  clear: both;
  content: '';
  display: table;
}
.ql-snow .ql-stroke {
  fill: none;
  stroke: #444;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
.ql-snow .ql-stroke-miter {
  fill: none;
  stroke: #444;
  stroke-miterlimit: 10;
  stroke-width: 2;
}
.ql-snow .ql-fill,
.ql-snow .ql-stroke.ql-fill {
  fill: #444;
}
.ql-snow .ql-empty {
  fill: none;
}
.ql-snow .ql-even {
  fill-rule: evenodd;
}
.ql-snow .ql-thin,
.ql-snow .ql-stroke.ql-thin {
  stroke-width: 1;
}
.ql-snow .ql-transparent {
  opacity: 0.4;
}
.ql-snow .ql-direction svg:last-child {
  display: none;
}
.ql-snow .ql-direction.ql-active svg:last-child {
  display: inline;
}
.ql-snow .ql-direction.ql-active svg:first-child {
  display: none;
}
.ql-snow .ql-editor h1 {
  font-size: 2em;
}
.ql-snow .ql-editor h2 {
  font-size: 1.5em;
}
.ql-snow .ql-editor h3 {
  font-size: 1.17em;
}
.ql-snow .ql-editor h4 {
  font-size: 1em;
}
.ql-snow .ql-editor h5 {
  font-size: 0.83em;
}
.ql-snow .ql-editor h6 {
  font-size: 0.67em;
}
.ql-snow .ql-editor a {
  text-decoration: underline;
}
.ql-snow .ql-editor blockquote {
  border-left: 4px solid #ccc;
  margin-bottom: 5px;
  margin-top: 5px;
  padding-left: 16px;
}
.ql-snow .ql-editor code,
.ql-snow .ql-editor pre {
  background-color: #f0f0f0;
  border-radius: 3px;
}
.ql-snow .ql-editor pre {
  white-space: pre-wrap;
  margin-bottom: 5px;
  margin-top: 5px;
  padding: 5px 10px;
}
.ql-snow .ql-editor code {
  font-size: 85%;
  padding: 2px 4px;
}
.ql-snow .ql-editor pre.ql-syntax {
  background-color: #23241f;
  color: #f8f8f2;
  overflow: visible;
}
.ql-snow .ql-editor img {
  max-width: 100%;
}
.ql-snow .ql-picker {
  color: #444;
  display: inline-block;
  float: left;
  font-size: 14px;
  font-weight: 500;
  height: 24px;
  position: relative;
  vertical-align: middle;
}
.ql-snow .ql-picker-label {
  cursor: pointer;
  display: inline-block;
  height: 100%;
  padding-left: 8px;
  padding-right: 2px;
  position: relative;
  width: 100%;
}
.ql-snow .ql-picker-label::before {
  display: inline-block;
  line-height: 22px;
}
.ql-snow .ql-picker-options {
  background-color: #fff;
  display: none;
  min-width: 100%;
  padding: 4px 8px;
  position: absolute;
  white-space: nowrap;
}
.ql-snow .ql-picker-options .ql-picker-item {
  cursor: pointer;
  display: block;
  padding-bottom: 5px;
  padding-top: 5px;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label {
  color: #ccc;
  z-index: 2;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill {
  fill: #ccc;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke {
  stroke: #ccc;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  display: block;
  margin-top: -1px;
  top: 100%;
  z-index: 1;
}
.ql-snow .ql-color-picker,
.ql-snow .ql-icon-picker {
  width: 28px;
}
.ql-snow .ql-color-picker .ql-picker-label,
.ql-snow .ql-icon-picker .ql-picker-label {
  padding: 2px 4px;
}
.ql-snow .ql-color-picker .ql-picker-label svg,
.ql-snow .ql-icon-picker .ql-picker-label svg {
  right: 4px;
}
.ql-snow .ql-icon-picker .ql-picker-options {
  padding: 4px 0px;
}
.ql-snow .ql-icon-picker .ql-picker-item {
  height: 24px;
  width: 24px;
  padding: 2px 4px;
}
.ql-snow .ql-color-picker .ql-picker-options {
  padding: 3px 5px;
  width: 152px;
}
.ql-snow .ql-color-picker .ql-picker-item {
  border: 1px solid transparent;
  float: left;
  height: 16px;
  margin: 2px;
  padding: 0px;
  width: 16px;
}
.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg {
  position: absolute;
  margin-top: -9px;
  right: 0;
  top: 50%;
  width: 18px;
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=''])::before {
  content: attr(data-label);
}
.ql-snow .ql-picker.ql-header {
  width: 98px;
}
.ql-snow .ql-picker.ql-header .ql-picker-label::before,
.ql-snow .ql-picker.ql-header .ql-picker-item::before {
  content: 'Normal';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  content: 'Heading 1';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  content: 'Heading 2';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  content: 'Heading 3';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  content: 'Heading 4';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  content: 'Heading 5';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  content: 'Heading 6';
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  font-size: 2em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  font-size: 1.5em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  font-size: 1.17em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  font-size: 1em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  font-size: 0.83em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  font-size: 0.67em;
}
.ql-snow .ql-picker.ql-font {
  width: 108px;
}
.ql-snow .ql-picker.ql-font .ql-picker-label::before,
.ql-snow .ql-picker.ql-font .ql-picker-item::before {
  content: 'Sans Serif';
}
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=serif]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  content: 'Serif';
}
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=monospace]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  content: 'Monospace';
}
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  font-family: Georgia, Times New Roman, serif;
}
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  font-family: Monaco, Courier New, monospace;
}
.ql-snow .ql-picker.ql-size {
  width: 98px;
}
.ql-snow .ql-picker.ql-size .ql-picker-label::before,
.ql-snow .ql-picker.ql-size .ql-picker-item::before {
  content: 'Normal';
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=small]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  content: 'Small';
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=large]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  content: 'Large';
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=huge]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  content: 'Huge';
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  font-size: 10px;
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  font-size: 18px;
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  font-size: 32px;
}
.ql-snow .ql-color-picker.ql-background .ql-picker-item {
  background-color: #fff;
}
.ql-snow .ql-color-picker.ql-color .ql-picker-item {
  background-color: #000;
}
.ql-toolbar.ql-snow {
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  padding: 8px;
}
.ql-toolbar.ql-snow .ql-formats {
  margin-right: 15px;
}
.ql-toolbar.ql-snow .ql-picker-label {
  border: 1px solid transparent;
}
.ql-toolbar.ql-snow .ql-picker-options {
  border: 1px solid transparent;
  box-shadow: rgba(0,0,0,0.2) 0 2px 8px;
}
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label {
  border-color: #ccc;
}
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  border-color: #ccc;
}
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover {
  border-color: #000;
}
.ql-toolbar.ql-snow + .ql-container.ql-snow {
  border-top: 0px;
}
.ql-snow .ql-tooltip {
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 5px #ddd;
  color: #444;
  padding: 5px 12px;
  white-space: nowrap;
}
.ql-snow .ql-tooltip::before {
  content: "Visit URL:";
  line-height: 26px;
  margin-right: 8px;
}
.ql-snow .ql-tooltip input[type=text] {
  display: none;
  border: 1px solid #ccc;
  font-size: 13px;
  height: 26px;
  margin: 0px;
  padding: 3px 5px;
  width: 170px;
}
.ql-snow .ql-tooltip a.ql-preview {
  display: inline-block;
  max-width: 200px;
  overflow-x: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}
.ql-snow .ql-tooltip a.ql-action::after {
  border-right: 1px solid #ccc;
  content: 'Edit';
  margin-left: 16px;
  padding-right: 8px;
}
.ql-snow .ql-tooltip a.ql-remove::before {
  content: 'Remove';
  margin-left: 8px;
}
.ql-snow .ql-tooltip a {
  line-height: 26px;
}
.ql-snow .ql-tooltip.ql-editing a.ql-preview,
.ql-snow .ql-tooltip.ql-editing a.ql-remove {
  display: none;
}
.ql-snow .ql-tooltip.ql-editing input[type=text] {
  display: inline-block;
}
.ql-snow .ql-tooltip.ql-editing a.ql-action::after {
  border-right: 0px;
  content: 'Save';
  padding-right: 0px;
}
.ql-snow .ql-tooltip[data-mode=link]::before {
  content: "Enter link:";
}
.ql-snow .ql-tooltip[data-mode=formula]::before {
  content: "Enter formula:";
}
.ql-snow .ql-tooltip[data-mode=video]::before {
  content: "Enter video:";
}
.ql-snow a {
  color: #06c;
}
.ql-container.ql-snow {
  border: 1px solid #ccc;
}
/* :root {
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;

  color-scheme: light dark;
  color: rgba(255, 255, 255, 0.87);
  background-color: #242424;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  font-weight: 500;
  color: #646cff;
  text-decoration: inherit;
}
a:hover {
  color: #535bf2;
}

body {
  margin: 0;
  display: flex;
  place-items: center;
  min-width: 320px;
  min-height: 100vh;
}

h1 {
  font-size: 3.2em;
  line-height: 1.1;
}

button {
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0.6em 1.2em;
  font-size: 1em;
  font-weight: 500;
  font-family: inherit;
  background-color: #1a1a1a;
  cursor: pointer;
  transition: border-color 0.25s;
}
button:hover {
  border-color: #646cff;
}
button:focus,
button:focus-visible {
  outline: 4px auto -webkit-focus-ring-color;
}

@media (prefers-color-scheme: light) {
  :root {
    color: #213547;
    background-color: #ffffff;
  }
  a:hover {
    color: #747bff;
  }
  button {
    background-color: #f9f9f9;
  }
} */
/* body { */
/* overflow: hidden; */
/* display: block;
  margin: inherit; */
/* height: 100%; */
/* } */

* {
  margin: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow: auto;
  min-height: 100vh;
  font-family: '"Public Sans", sans-serif',
}
:root {
  --background-content: rgb(250,250,251);
  --background-layout:rgb(250,250,251);
  --text: rgb(38,38,38);
  --hover-background:#f0f8ff;
}

body {
  background-color: var(--background-layout);
  color: var(--text);
}
