.privacy-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  background-color: var(--creme);
  z-index: 3000;
}

.privacy-popup.show {
  opacity: 1;
  pointer-events: all;
}

.privacy-popup-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 75%;
  text-align: center;
  border-radius: 1.2rem;
  background-color: var(--white);
  box-shadow: 0 0 0.6rem 0 var(--shadow-light);
  padding: 2.4rem;
}

@media (min-width: 768px) {
  .privacy-popup-content {
    width: auto;
    min-width: 57.6rem;
  }
}

.privacy-popup-logo {
  height: auto;
  width: 20rem;
}

.privacy-popup-title {
  font-family: seasons-bold, sans-serif;
  font-size: 2.4rem;
}

.privacy-popup-text {
  max-width: 57.6rem;
  margin-bottom: 2.4rem;
}

.privacy-popup-button-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
}

@media (min-width: 768px) {
  .privacy-popup-button-container {
    flex-direction: row;
  }
}

.policy-link:link,
.policy-link:visited,
.policy-link:hover,
.policy-link:active {
  font-weight: 700;
  color: var(--black);
}
