#vux-withdraw-native-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3333;
  display: none;
  width: 100vw;
  height: 100dvh;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  font-family: inherit;
}

#vux-withdraw-native-overlay.vux-withdraw-native-show {
  display: flex;
}

#vux-withdraw-native-overlay,
#vux-withdraw-native-overlay * {
  box-sizing: border-box;
}

.vux-withdraw-native-stack {
  display: flex;
  width: 80%;
  min-width: 260px;
  max-width: 360px;
  flex-direction: column;
  align-items: center;
  animation: vux-withdraw-native-enter 220ms ease-out both;
}

.vux-withdraw-native-dialog {
  width: 100%;
  overflow: hidden;
  color: #fff;
  background: color-mix(
    in srgb,
    var(--vux-theme-background, var(--vux-withdraw-bg, #101020)) 88%,
    #fff 12%
  );
  border: 1px solid color-mix(
    in srgb,
    var(--vux-theme-primary, var(--vux-withdraw-primary, #0c913f)) 55%,
    transparent
  );
  border-radius: 9px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.vux-withdraw-native-header {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 8px 14px 6px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
  background: color-mix(
    in srgb,
    var(--vux-theme-primary, var(--vux-withdraw-primary, #0c913f)) 14%,
    transparent
  );
  border-bottom: 1px solid color-mix(
    in srgb,
    var(--vux-theme-primary, var(--vux-withdraw-primary, #0c913f)) 28%,
    transparent
  );
}

.vux-withdraw-native-content {
  max-height: 50vh;
  overflow: auto;
  padding: 0 14px 26px;
  scrollbar-width: none;
}

.vux-withdraw-native-content::-webkit-scrollbar {
  display: none;
}

.vux-withdraw-native-status-icon {
  display: block;
  width: 41px;
  height: 41px;
  padding: 0;
  margin: 0 auto 6px;
  background: #04be02;
  border-radius: 50%;
  object-fit: contain;
}

.vux-withdraw-native-status-text {
  color: #04be02;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.vux-withdraw-native-list {
  display: block;
  padding: 0;
  margin: 13px 0 0;
  list-style: none;
}

.vux-withdraw-native-row {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  align-items: start;
  justify-content: start;
  min-height: 20px;
  margin: 0 0 9px;
}

.vux-withdraw-native-row:last-child {
  margin-bottom: 0;
}

.vux-withdraw-native-label {
  color: var(--vux-withdraw-muted, rgba(255, 255, 255, 0.72));
  font-size: 10px;
  font-weight: 400;
  line-height: 20px;
  overflow-wrap: anywhere;
  text-align: left;
}

.vux-withdraw-native-value {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  justify-content: flex-start;
  padding-left: 9px;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
  text-align: left;
}

.vux-withdraw-native-currency {
  position: relative;
  top: 1px;
  margin-left: 3px;
  color: var(--vux-withdraw-muted, rgba(255, 255, 255, 0.72));
  font-size: 9px;
  line-height: 20px;
}

.vux-withdraw-native-account {
  align-items: center;
  gap: 7px;
}

.vux-withdraw-native-pix {
  display: block;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  object-fit: contain;
}

.vux-withdraw-native-account-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  color: var(--vux-withdraw-muted, rgba(255, 255, 255, 0.72));
  font-size: 10px;
  line-height: 1.25;
}

.vux-withdraw-native-account-copy strong {
  color: var(--vux-withdraw-muted, rgba(255, 255, 255, 0.72));
  font-size: 10px;
  font-weight: 400;
}

.vux-withdraw-native-account-copy span {
  overflow: hidden;
  max-width: 140px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vux-withdraw-native-footer {
  padding: 7px 14px 14px;
}

.vux-withdraw-native-confirm {
  display: flex;
  width: 100%;
  height: 32px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: #fff;
  background: var(--vux-theme-primary, var(--vux-withdraw-primary, #0c913f));
  border: 1px solid var(--vux-theme-primary, var(--vux-withdraw-primary, #0c913f));
  border-radius: 6px;
  font: inherit;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.5;
  cursor: pointer;
  appearance: none;
}

.vux-withdraw-native-confirm:active {
  filter: brightness(0.92);
}

.vux-withdraw-native-close {
  position: relative;
  display: block;
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  padding: 0;
  margin-top: 14px;
  color: var(--vux-theme-primary, var(--vux-withdraw-primary, #0c913f));
  background: transparent;
  border: 2px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
  appearance: none;
}

.vux-withdraw-native-close::before,
.vux-withdraw-native-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  content: "";
  background: currentColor;
  border-radius: 1px;
}

.vux-withdraw-native-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.vux-withdraw-native-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@keyframes vux-withdraw-native-enter {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 330px) {
  .vux-withdraw-native-stack {
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vux-withdraw-native-stack {
    animation: none;
  }
}
