.popup-wrapper.show .popup {
  top: unset !important;
  bottom: 0 !important;
  opacity: 1;
}
.popup-wrapper.show .overlay {
  top: 0 !important;
  opacity: 1;
}
.popup-wrapper.ov-vs .popup {
  overflow: visible;
}
.popup-wrapper.ov-vs .popup .popup-body {
  overflow: visible;
}
.popup-wrapper.ov-vs .popup .popup-body .body-data {
  overflow: visible;
}
.popup-wrapper .popup-header h6 {
  line-height: 1 !important;
  height: 16px;
}
.popup-wrapper .overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 99999;
  background-color: rgba(0, 0, 0, 0.4);
  top: 100%;
  transition: 0.2s ease;
  opacity: 0;
}
.popup-wrapper .popup-body .body-data {
  max-height: 90vh;
  overflow: auto;
}
.popup-wrapper .popup-body .body-data.short {
  max-height: 100px;
  overflow: hidden;
}
.popup-wrapper .popup {
  width: 100vw;
  overflow: hidden;
  position: fixed;
  bottom: 0;
  left: 0;
  transition: 0.2s;
  z-index: 999999;
  justify-content: center;
  display: flex;
  top: 100%;
  transition: 0.2s ease;
  opacity: 0;
}
.popup-wrapper .popup .popup-main {
  background-color: var(--white);
  max-width: 420px;
  border-top-left-radius: 12px !important;
  border-top-right-radius: 12px !important;
  width: 100%;
}
@media screen and (min-width: 420px) {
  .popup-wrapper .popup .popup-main {
    max-width: 800px;
  }
}
.popup-wrapper .popup-top-header {
  padding-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup-wrapper .popup-top-header span {
  width: 42px;
  height: 6px;
  background-color: var(--dark-gray);
  border-radius: 40px;
  display: block;
}