/* Modal overlay */

.evg-modal{
  display:none;
  position:fixed;
  z-index:9999;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.65);
  backdrop-filter:blur(4px);
}

/* Modal window */

.evg-modal-content{
  background:#fff;
  margin:5% auto;
  padding:40px;
  width:90%;
  max-width:800px;
  max-height:80vh;
  overflow-y:auto;
  border-radius:8px;
  position:relative;
  box-shadow:0 25px 60px rgba(0,0,0,0.3);
}

/* Close button */

.evg-close{
  position:absolute;
  top:15px;
  right:20px;
  font-size:28px;
  cursor:pointer;
}

/* Lock background scroll */

body.modal-open{
  overflow:hidden;
}