/* ALL POPUPS */
.popup-trigger {
  cursor: pointer;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.close-popup {
  cursor: pointer;
}

/* SPECIFIC STYLES */

.popup1__content {
  background-color: var(--clr-bg-light);
  padding: var(--space-l);
  border-radius: var(--radius-site);
  max-width: 600px;
  width: 100%;
}

@media (max-width: 767px) {
  .popup1__content {
    border-radius: 0;
  }
}

.popup1__img img {
  margin-top: 1rem;
  aspect-ratio: 1;
  border-radius: var(--radius-full);
  height: min(30vh, 20rem);
  width: auto;
  outline-offset: 4px;
  object-fit: cover;
}

.popup1__img1 img {
  outline: 3px solid var(--clr-bg-secondary);
}

.popup1__img2 img {
  outline: 3px solid var(--clr-bg-accent);
}

.popup1__img3 img {
  outline: 3px solid var(--clr-bg-primary);
}

.popup1__name {
  padding-top: 1rem;
  font-size: var(--text-l);
  text-align: center;
  font-weight: 600;
}

.popup1__pole {
  text-align: center;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-full);
  align-self: center;
}

.popup1__close {
  position: absolute;
  top: 20px;
  right: 20px;
}

.popup1__close svg {
  width: 2.6rem;
  height: 2.6rem;
}
