dialog {
  background: transparent;
  }
  .dialog-sheet {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  opacity: 0;
  z-index: 9999999;
  pointer-events: none;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
  transition: 0.1s linear;
  }
  .dialog-sheet.show {
  opacity: 1;
  pointer-events: auto;
  }
  .dialog-sheet.hidden {
  display: none;
  }
  .dialog-sheet .dialog-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  /* -webkit-backdrop-filter: var(--global-backdrop-filter); */
  /* backdrop-filter: var(--global-backdrop-filter); */
  background-color: var(--global-backdrop-background);
  }
  .dialog-sheet .dialog-wrapper {
  background: var(--dialog-bg-color);
  padding: 0;
  transform: translateY(100%);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
  transition: 0.3s ease;
  }
  .dialog-sheet.fullscreen .dialog-wrapper {
  border-radius: 0;
  overflow-y: hidden;
  }
  .dialog-sheet.bottom .dialog-wrapper {
  width: 100%;
  position: relative;
  border-radius: 22px 22px 0 0;
  }
  .dialog-sheet.center .dialog-wrapper {
  width: calc(100% - 24px);
  position: fixed;
  top: 0;
  bottom: 0;
  margin: auto 12px;
  }
  .dialog-sheet.center .dialog-wrapper,
  .dialog-sheet.center .dialog-wrapper * {
  border-radius: 12px;
  }
  .dialog-sheet.show .dialog-wrapper {
  transform: translateY(0%);
  }
  .dialog-sheet.dragging .dialog-wrapper {
  transition: none;
  }
  .dialog-sheet .handle {
  width: 100%;
  height: 52px;
  display: flex;
  padding: 10px 0;
  align-items: center;
  border-bottom-width: 1px;
  justify-content: space-between;
  flex-direction: column;
  cursor: grab;
  user-select: none;
  }
  .dialog-sheet .handle .diss-action {
  position: absolute;
  right: 30px;
  top: 19px;
  cursor: pointer;
  }
  .dialog-sheet .handle .full-action {
  position: absolute;
  left: 30px;
  top: 19px;
  cursor: pointer;
  }
  .dialog-sheet .Res-full_screen_minimize_regular {
  display: none;
  }
  .dialog-sheet.fullscreen .Res-full_screen_minimize_regular {
  display: block;
  }
  .dialog-sheet.center .full-action,
  .dialog-sheet.fullscreen .Res-full_screen_maximize_regular {
  display: none;
  }
  .handle .bubble {
  cursor: grab;
  user-select: none;
  height: 4px;
  width: 40px;
  display: block;
  background: #C7D0E1;
  border-radius: 50px;
  }
  .handle span.title {
  font-size: 0.75rem;
  font-weight: 900;
  }
  .dialog-sheet .dialog-body {
  height: calc(100% - 52px);
  -webkit-overflow-scrolling: touch;
  position: relative;
  overflow-x: auto; 
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.dialog-sheet .dialog-body::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}
  .dialog-sheet.handle-off .dialog-body {
  height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  }
  .dialog-sheet.center .dialog-body {
  border-radius: 0 0 12px 12px;
  }
  .dialog-sheet .dialog-body::-webkit-scrollbar {
  width: 0;
  }