.dialog-aRAWUDhF {
  background-color: var(--themed-color-bg-primary, #fff);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-width: 280px;
  text-align: left;
}
html.theme-dark .dialog-aRAWUDhF {
  background-color: var(--themed-color-bg-primary, #262626);
}
.dialog-aRAWUDhF.rounded-aRAWUDhF {
  border-radius: 6px;
}
.dialog-aRAWUDhF.shadowed-aRAWUDhF {
  box-shadow: 0 2px 4px
    var(--themed-color-shadow-primary-neutral-extra-heavy, #0003);
}
html.theme-dark .dialog-aRAWUDhF.shadowed-aRAWUDhF {
  box-shadow: 0 2px 4px
    var(--themed-color-shadow-primary-neutral-extra-heavy, #0006);
}
.dialog-aRAWUDhF.fullscreen-aRAWUDhF {
  bottom: 0;
  height: 100%;
  left: 0;
  max-height: 100%;
  max-width: 100%;
  min-height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
}
.dialog-aRAWUDhF.darker-aRAWUDhF {
  background-color: var(--themed-color-primary-popup, #fff);
}
html.theme-dark .dialog-aRAWUDhF.darker-aRAWUDhF {
  background-color: var(--themed-color-primary-popup, #1a1a1a);
}
.backdrop-aRAWUDhF {
  background-color: var(--themed-color-modal-backdrop, #9c9c9c);
  bottom: 0;
  left: 0;
  opacity: 0.5;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateZ(0);
  z-index: -1;
}
html.theme-dark .backdrop-aRAWUDhF {
  background-color: var(--themed-color-modal-backdrop, #0f0f0f);
}
.dialog-qyCw0PaN {
  max-width: 380px;
  min-width: 280px;
  position: fixed;
  width: 100%;
}
.dialog-qyCw0PaN [data-dragg-area="true"] {
  cursor: grab;
}
.dialog-qyCw0PaN [data-dragg-area="true"].dragging-qyCw0PaN {
  cursor: grabbing;
}
html.theme-dark .dialog-qyCw0PaN.mobile-qyCw0PaN {
  background-color: #000;
}
html.theme-dark .dialog-qyCw0PaN.mobile-qyCw0PaN:not(.fullscreen-qyCw0PaN) {
  box-shadow: 0 4px 16px 0 #3d3d3d, 0 0 2px 0 #3d3d3d;
}
.dialogAnimatedAppearance-qyCw0PaN {
  animation-duration: 0.3s;
  animation-name: dialogAnimation-qyCw0PaN;
  transform-origin: 0 0;
}
@keyframes dialogAnimation-qyCw0PaN {
  0% {
    opacity: 0;
    transform: translate(
        var(--animationTranslateStartX),
        var(--animationTranslateStartY)
      )
      scale(0);
  }
  to {
    opacity: 1;
    transform: translate(
        var(--animationTranslateEndX),
        var(--animationTranslateEndY)
      )
      scale(1);
  }
}
.dialogTooltip-qyCw0PaN {
  color: #fff;
  font-size: 14px;
  left: 50%;
  line-height: 21px;
  max-width: 540px;
  position: absolute;
  top: -20px;
  transform: translateX(-50%);
  width: max-content;
}
@media (max-width: 768px) {
  .dialogTooltip-qyCw0PaN {
    max-width: 240px;
  }
}
