.emp-popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex; align-items: center; justify-content: center;
    z-index: 1999;
}

.emp-popup-content {
    background: #fff;
    padding: 20px 0;
    border-radius: 10px;
    width: 80%;
	max-width: 800px;
    position: relative;
	height: fit-content;
	max-height: 90vh;
	overflow-y: auto;
 	scroll-behavior: smooth;
}

/* Scrollbar Track */
.emp-popup-content::-webkit-scrollbar {
    width: 8px;
}

/* Scrollbar Thumb */
.emp-popup-content::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: content-box;
}

/* On Hover */
.emp-popup-content::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

/* Scrollbar Track Background */
.emp-popup-content::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    border-radius: 10px;
}

.emp-popup-close {
    position: absolute;
    top: -2px; 
    right: 8px;
    font-size: 28px;
    cursor: pointer;
	z-index: 29;
}

.snp-popup-trigger {
  background: white;
  color: black;
  padding: 0;
  border: none;
  cursor: pointer;
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.snp-popup-trigger_lg {
  display: inline-block;
  padding: 12px 28px;
  position: relative;
  z-index: 2;
}

.snp-popup-trigger_text {
  position: relative;
  z-index: 3;
  transition: color 0.4s ease;
}

.snp-popup-trigger_sl {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: black;
  z-index: 1;
  transition: width 0.4s ease;
}

.snp-popup-trigger:hover .snp-popup-trigger_sl {
  width: 100%;
}

.snp-popup-trigger:hover .snp-popup-trigger_text {
  color: white;
}

.snp-popup-trigger:active {
	background-color: transparent;
}

.snp-popup-trigger:focus {
	background-color: transparent;
}



