

.npopup_wrap {
  position: absolute;
  width: 100%;
  max-width: 480px;
  /* aspect-ratio: 48 / 72; */
  height: 65%;
  top: 7%;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  min-height: 100px;
  z-index: 99999;
  padding: 10px;
  border-radius: 16px;
}

.npopup_contents_wrap {
  width: 100%;
  height: calc(100% - 38px);
  background: white;
  border-radius: 10px;
  display: block;
  padding: 8px;
  overflow: auto;
}

.npopup_close_wrap {
  position: absolute;
  bottom: 10px;
  width: calc(100% - 20px);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.npopup_left .input_flex {
  align-items: center;
  margin-top: 0;
  color: var(--text-color_deepdark) !important;
  font-size: 14px;
}

.npopup_close img {
  filter: brightness(200%);
}

@media (max-width:480px){
    .npopup_wrap{
        scale: 0.98;
    }
}
