.pop-up-banner {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #00000062;
	pointer-events: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
  backdrop-filter: blur(3px);
  padding: 15px;
	transition:
		opacity 0.7s,
		backdrop-filter 0.7s;
	z-index: 1001;
}

.pop-up-banner.active {
	opacity: 1;
	visibility: visible;
}

.pop-up-banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: clamp(15px, 4vw, 20px);
	border-radius: 20px;
  background: #131822;
	border: 2px solid #ffd700;
	max-width: 860px;
	width: 100%;
	min-height: 150px;
  overflow: hidden;
}

.slider {
  display: flex;
  align-items: center;
  /* justify-content: flex-start; */
  position: relative;
  width: 100%;
  overflow: hidden;
  user-select: none;
}

/* .slider-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 100%;
} */

.slider-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.6s ease-in-out, z-index 0.6s ease-in-out;
}

.slider-item.active-fade {
  position: relative;
  opacity: 1;
  z-index: 2;
}

.slider-img {
  max-width: 200px;
  height: auto;
}

.pop-up-banner-slider-text {
  text-align: center;
}

.slider-paginattion {
  display: flex;
  justify-content: center;
  gap: 2px;
  width: 65%;
}

.bullet {
  width: 100%;
  height: 3px;
  /* border-radius: 50%; */
  /* background-color: rgba(255, 215, 0, 0.4); */
  /* border: 1px solid #ffd700; */
  background: rgba(128, 128, 128, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.bullet.active {
  background-color: #ffd700;
}