#popup_container {
  min-width: 420px;
  max-width: 800px;
  position: fixed !important;
  /* background: #000; */
  top: 50% !important;
  left: 50% !important;
  -webkit-transform: translate(-50%, -50%) !important;
  transform: translate(-50%, -50%) !important;
  border-radius: 6px;
  padding: 12px 6px !important;
}
#popup_overlay {
  position: fixed !important;
  opacity: 0.8!important;
}
#popup_title {
  font-size: 20px;
  color: #fff;
  padding: 0 8px;
  margin: 0;
  pointer-events: none;
}
#popup_title::before {
  content: "✕";
  position: absolute;
  right: 7px;
  top: 6px;
  font-size: 12px;
  cursor: pointer;
  padding: 2px 5px;
  pointer-events: auto;
}
#popup_overlay.no-close + #popup_container #popup_title::before {
  display: none;
}
#popup_content {
  padding: 8px;
}
#popup_message {
  padding-bottom: 8px;
  color: #fff;
  max-height: 90vh;
  overflow: auto;
  text-align: center;
}
#popup_message::-webkit-scrollbar {
  width: 5px;
}
#popup_message::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
#popup_message::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}
#popup_message::-webkit-scrollbar-thumb:hover {
  background: #555;
}
#popup_message img {
  width: 100%;
  height: auto;
  filter: grayscale(1);
}
#popup_panel {
  text-align: center;
}
#popup_panel input#popup_ok {
  font-size: 14px;
  border: 0;
  padding: 8px 30px;
  cursor: pointer;
  background-color: #06a351;
  font-weight: 700;
  border-radius: 3px;
  outline: 0;
  color: #fff;
}
#popup_panel input#popup_cancel {
  font-size: 14px;
  border: 0;
  padding: 8px 30px;
  cursor: pointer;
  background-color: #fff;
  font-weight: 700;
  border-radius: 3px;
  outline: 0;
  color: #333;
}
@media (max-width: 767px) {
  #popup_container {
    min-width: 90%;
    max-width: 90%;
  }
}
