#popupOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  display: none;
  background: rgba(0, 0, 0, 0.4);
}

#popupBox {
  /* background:rgba(250, 170, 170, 0.2); */
  width: 100%;
  height: 100%;
  max-width: 420px;
  border-radius: 16px 16px 0 0;
  padding: 15px;
  text-align: center;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
  animation: slideUp .7s ease;
  touch-action: pan-y;
  background-color: #f6f4f4;
}
.overlay {
  position: absolute;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background-color: #fce9e9;
  /* opacity: 0.3; */
}
#dragHandle {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  margin: 0 auto 10px;
}

#popupBox img {
  width: 100%;
  border-radius: 10px;
}

#popupBox h3 {
  font-size: 1.2rem;
  margin: 10px 0;
  color: rgb(0, 0, 0);
}

.popup-btn {
  display: block;
  width: fit-content;
  margin: 12px auto 5px;
  background: #ff5722;
  color: white;
  padding: 12px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}
.popup-btn:hover {
  color: red;
  background-color: black;
}

#closePopup {
  position: absolute;
  right: 30px;
  bottom: 0;
  font-size: 50px;
  cursor: pointer;
  color: rgb(0, 0, 0);
}
@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.noscroll {
  overflow: hidden;
}

