
.custom-popup {
  position: fixed;
  z-index: 9999;
  background: #fff;
  border: 1px solid #222;
  box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
  overflow: hidden;
  border-radius: 8px;
}
.popup-header {
  height: 45px;
  display: flex;
  align-items: center;
  background: #222;
  color: #fff;
  padding: 8px 12px;
  font-weight: bold;
  cursor: move;
  justify-content: space-between;
}
.popup-body {
  height: calc(100% + 40px)!important;
}
.popup-body img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.popup-footer {
  background: #f9f9f9;
  padding: 0px 12px;
  height: 40px;
  text-align: right;
  font-size: 0.9em;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  display: flex;
  align-items: center;
}
.close-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 25px;
  cursor: pointer;
}
.custom-popup.mobile-slide {
  left: 0 !important;
  right: 0 !important;
  bottom: -100%;
  width: 100% !important;
  height: auto !important;
  border-radius: 12px 12px 0 0;
  animation: slideUp 0.5s forwards;
}
.custom-popup.mobile-slide.hide {
  animation: slideDown 0.5s forwards;
}
@keyframes slideUp {
  from { bottom: -100%; }
  to   { bottom: 0; }
}
@keyframes slideDown {
  from { bottom: 0; }
  to   { bottom: -100%; }
}
.popup-img { display: none; }
@media screen and (min-width: 769px) {
  .popup-img-pc { display: block; }
}
@media screen and (max-width: 768px) {

  .popup-img-mo { display: block; }
}

  .popup-body {
    height: 100%;
    padding-bottom: 40px;
  }