/* POPUP */
.popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    padding: 15px;
    border-radius: 20px;
    z-index: 99;
    text-align: center;
	color: #ffffff;
	box-shadow:
  0 8px 20px rgba(0, 0, 0, 0.08),
  0 20px 50px rgba(0, 0, 0, 0.06),
  0 40px 100px rgba(0, 0, 0, 0.04);
}

.hidden {
  display: none;
}

/* OVERLAY (default hidden!) */
.overlay_wish {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-bg-hero);
  color: white;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 2000;
	cursor: url("https://cdn.prod.website-files.com/6708f85ff3d3cba6aff436fb/671251b239d7aeb290a31ac5_cursor-default%402x.svg")
      2 0,
    auto;
}

.overlay_wish.active {
  display: flex;
}

.wish {
  margin-top: 20px;
  display: none;
}

.wish.show {
  display: block;
}
/* CLOSE */
.close {
  position: absolute;
  top: 20px;
  right: 20px;
	cursor: url("https://cdn.prod.website-files.com/6708f85ff3d3cba6aff436fb/671251b212e6b71494aa67ff_cursor-pointer%402x.svg")
      12 0,
    pointer;
}
