@media only screen and (max-width: 768px) {
  #popup {
    width: 80vw !important;
    max-height: 90vh;
    top: 65% !important;
  }
}
#popup {
  width: 645px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 20px 10px 20px 10px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  z-index: 9999;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#popup #first-image {
  border-radius: 12px 12px 12px 12px;
  height: 230px;
  object-fit: contain;
  margin-top: 10px;
}
#second-image {
  object-fit: contain;
  height: 100px;
}
.pop-up-button {
  background-color: #fff;
  border-radius: 8px;
  padding: 4px 12px;
  color: red;
  border: 1px solid #ddd;
  position: absolute;
  top: 10px;
  right: 10px;
}

.pop-up-h3 {
  font-size: 26px;
  font-weight: 600;
  padding-bottom: 6px;
  line-height: 1.3;
  border-bottom: 1px solid;
  border-color: #ddd;
  margin-top: 10px;
  margin-bottom: 10px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.pop-up-text-parent {
  padding: 10px 30px 10px 30px;
}
.pop-up-text-parent p {
  text-align: center;
  font-size: 14px;
}