@charset "utf-8";

.modalArea {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
}

.modalBg {
  width: 100%;
  height: 100vh;
  background-color: rgba(30,30,30,0.9);
}

.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  width: 70%;
  max-width: 600px;
  padding: 10px;
  background-color: #fff;
}

.modalWrapper img {
  width: 100%;
}

.closeModal {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  cursor: pointer;
  text-shadow: 0 0 3px #fff;
}

.closeModal img {
  width: 17px;
}

.closeModal img:hover {
  opacity: 0.5;
  text-shadow: 0 0 5px #fff;
}