.privacy-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  transition: all 0.3s ease;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.privacy-popup.is-active {
  visibility: visible;
  opacity: 1;
  transition: all 0.3s ease;
}

.privacy-popup .inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  width: 90%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.privacy-popup .inner .content {
  position: relative;
  padding: 64px 32px;
  overflow-y: auto;
  height: calc(100vh - 80px);
  background-color: #fff;
  text-align: left;
}

.privacy-popup .inner .content .cross {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.privacy-popup .inner .content .cross span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
}

.privacy-popup .inner .content .cross span:first-of-type {
  transform: rotate(45deg);
}

.privacy-popup .inner .content .cross span:last-of-type {
  transform: rotate(-45deg);
}

.privacy-popup .inner .content .privacy-policy h2 {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  margin-top: 24px;
  margin-bottom: 16px;
}

.privacy-popup .inner .content .privacy-policy h2.top {
  font-size: 20px;
  border-bottom: solid 2px #ccc;
  padding-bottom: 8.9px;
  margin-bottom: 8px;
}

.privacy-popup .inner .content .privacy-policy p {
  font-size: 12px;
  color: #000;
  line-height: 1.7;
  margin-bottom: 24px;
}

.privacy-popup .inner .content .privacy-policy ul li {
  font-size: 12px;
  color: #000;
  line-height: 1.7;
}/*# sourceMappingURL=privacy.css.map */