#webrom-popup {
  display: flex;
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* width: calc(100% - 40px); */
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 700px;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 15px;
  flex-direction: column;
  justify-content: center;
  z-index: 50;

  @media screen and (max-width: 768px) {
    width: calc(100% - 40px);
    border-radius: 5px;
  }

  *:has(img) {
    font-size: 0;
  }
}

#webrom-popup img {
  margin: 0 auto;
  width: 100%;
  border-radius: 15px;

  @media screen and (max-width: 768px) {
    border-radius: 5px;
  }
}

#webrom-popup button {
  position: absolute;
  top: 5px;
  right: 5px;
  background: #ffffff;
  border: none;
  font-size: 20px;
  cursor: pointer;
  border-radius: 50%;
  line-height: 20px;
  padding: 0 4px;
  @media screen and (max-width: 768px) {
    top: 0;
    right: 0;
  }
}

#popup-dimming {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 49;
}

#popup-time {
  display: none;
}
