div.nrv-popups.nrv-popups-container.nrv-popups-shortcode{
  display:none;
}

div.nrv-popups.nrv-popups-container{
  position: fixed;
  min-width: 100VW;
  height: 100vh;
  z-index: 999;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0;
}

div.nrv-popups.nrv-popups-container .nrv-popups-outarea{
  position: absolute;
  background-color: #f0f0f0;
  opacity: 0.7;
  top:0;
  bottom:0;
  right:0;
  left:0;
  content:"";
}

div.nrv-popups.nrv-popups-container .nrv-popups-inner-container{
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%);
  max-height:90vh;
  min-height:300px;
  max-width:1000px;
  width: 90vw;
  min-width:300px;
  background-color:#fcfcfc;
}


div.nrv-popups.nrv-popups-container .nrv-popups-inner-container .nrv-popups-cross-close{
  position: absolute;
  top:0;
  right:0;
  width:30px;
  height:30px;
  cursor: pointer;
  z-index: 1000;
}

div.nrv-popups.nrv-popups-container .nrv-popups-inner-container .nrv-popups-cross-close::before{
  content: "x";
  font-size: 25px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 25px;
  color: black;
  position: absolute;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
}


div.nrv-popups.nrv-popups-container .nrv-popups-inner-container .nrv-popups-template{
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  height: fit-content;
  max-height:90vh;
}

.nrv-popups-template img{
  width:100%;
  height:auto;
}


div.nrv-popups.nrv-popups-container > button,
div.nrv-popups.nrv-popups-container > a{
  cursor:pointer;
}
