@charset "utf-8";
/* CSS Document */
.modal-wrap{
  visibility: hidden;
  height: 0;
  position: fixed;
  left: 0;
  top: 0;
  margin: auto !important;
  z-index: 10000;
  width: 100%;
  overflow: scroll;
}
.modal-wrap.show{
  visibility: visible;
  height: 100%;
}
.modal-wrap .modal-bg{
  position: fixed;
  left: 0;
  right: 0;
  z-index: 10000;
  top: -100px;
  bottom: -100px;
  background-color: rgba(0,0,0,0.5);
}
.modal-wrap .modal{
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  right: 0;
  margin: auto;
  z-index: 10001;
  width: 90%;
  max-width: 750px;
  height: 90%;
}
.modal-wrap .modal .modal-close-btn{
  top: 10px;
  right: 10px;
  font-size: 35px;
  width: 40px;
  height: 40px;
  line-height: 35px;
  position: absolute;
  z-index: 1;
  color: #fff;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.3);
  text-align: center;
}
.modal-wrap .modal .modal-inner{
  background-color: #fff;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}
@media screen and (min-width: 750px){
  .modal-wrap .modal .modal-close-btn{
    top: 15px;
    right: 35px;
    font-size: 40px;
    width: 50px;
    height: 50px;
    line-height: 40px;
  }
}