/* popup/progress only */
#pop-up,#notice{
  display: none;
}
.overlay,.overlayNotcie{
  display: none;
}
#pop-up:checked+.overlay {
  display: block;
  z-index: 9998;
  background-color: #000000bb;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
#notice:checked+.overlayNotcie {
  display: block;
  z-index: 9999;
  background-color: #000000bb;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
.window {
  max-width: 80%;
  min-width: 100px;
  overflow-y: scroll;
  min-height: 100px;
  max-height: 70%;
  background-color: #ffffff;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: fixed;
  top: 50%;
  left: 50%;
  padding: 20px;
  transform: translate(-50%, -50%);
  z-index: 10000;
}
.windowNotice {
  max-width:80%;
  width: 350px;
  min-height: 100px;
  max-height: 70%;
  background-color: #ffffff;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: fixed;
  top: 50%;
  left: 50%;
  padding: 20px;
  transform: translate(-50%, -50%);
  z-index: 10000;
}
#pop-up_progress {
  display: none;
}
.overlay_progress {
  display: none;
}
#pop-up_progress:checked+.overlay_progress {
  display: block;
  z-index: 9999;
  background-color: #00000070;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
.window_progress {
  overflow-y: hidden;
  overflow-x: hidden;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#pop-up_image {
  display: none;
}
.overlay_image {
  display: none;
}
#pop-up_image:checked+.overlay_image {
  display: block;
  z-index: 9999;
  background-color: #000000bb;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
.window_image {
  max-width: 80%;
  width: 750px;
  overflow-y: scroll;
  min-height: 250px;
  max-height: 90%;
  background-color: #ffffff;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: fixed;
  top: 50%;
  left: 50%;
  padding: 20px;
  transform: translate(-50%, -50%);
  z-index: 10000;
}
.window::-webkit-scrollbar {
  display: none;
}
.close{
  cursor: pointer;
  position: absolute;
  top: 10px;
  border-radius: 50vh;
  right: 10px;
  font-size: 24px;
  color: rgb(105, 105, 105);
  z-index: 1000;
}