.js-modal-content{
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.js-modal-content.is-active{
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.js-modal-open,.js-modal-close{
  cursor: pointer;
}