:root {
  --ep-bg: rgba(0, 0, 0, .4);
  --ep-padding: clamp(20px, 2vw, 40px);
  --ep-max-width: 915px;
  --ep-radius: 10px;
  --ep-close-width: 40px;
  --ep-close-color: #fff;
  --ep-close-color-hover: #ef1616;
  --ep-corner-offset: 20px;

  --ep-popup-bg: #fff;
}

/* master */
html:not(.easy-popup-open) .easy-popup-master {
  opacity: 0;
  visibility: hidden;
}

.easy-popup-master {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: var(--ep-bg);
  backdrop-filter: blur(2px);
  transition: opacity .4s ease, visibility .4s ease;
}