#dw-app-overlay {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: none;
  flex-direction: column;
  background: #ffffff;
}
#dw-app-overlay.is-open { display: flex; }
.dw-app-overlay__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  background: #12121a;
  color: #fff;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  flex: 0 0 auto;
}
.dw-app-overlay__close {
  appearance: none;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.dw-app-overlay__close:hover { background: rgba(255, 255, 255, 0.24); }
.dw-app-overlay__frame {
  flex: 1 1 auto;
  width: 100%;
  border: 0;
  display: block;
}
