/* pdModalJS */

.pdModalJS {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  bottom: 0px;
  right: 0px;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.pdModalContentJS {
  position: fixed;
  z-index: 6;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
  max-height: 90%;
  overflow-y: auto;
  min-width: 320px;
  max-width: 800px;
  background: #fff;
  border-radius: 5px;
}
.pdModalContentJS-0 {
  padding: 50px;
}

.pdModalContentCloseJS {
  z-index: 7;
  position: fixed;
  top: 10px;
  right: 10px;
  padding: 15px 20px;
  cursor: pointer;
  background: green;
  font-size: 25px;
  line-height: 25px;
  transition: transform 0.5s;
  border-radius: 50%;
  color: #fff;
}
.pdModalContentCloseJS:hover {
  background: green;
  transform: scale(1.2);
}

@media screen and (max-width: 1000px) {
  .pdModalContentJS-0 {
    padding: 20px;
  }
}
