.popup-layer{
  display: block;
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,.3);
}

.popup-layer.off{
  display: none;
}

.layerpopup-wrapper{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  height: 100%;
  overflow: auto;
  justify-content: center;
  align-items: center;
}

.layerpopup-wrapper .popup-contents{
  position: relative;
  /* margin: auto; */
}

.layerpopup-wrapper.off{
  display: none;
}