#pop {
	display:none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  background: rgba(0, 0, 0, 0.6);
}
#pop.hide {
	display:none;
}
#pop .cont {
  padding: 20px;
  position: absolute;
  z-index: 101;
  top: 50%;
  left: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  max-width: 450px;
  width: 90%;
  border-radius: 10px;
}
#pop.privacy .cont, #pop.legal .cont {
  max-width: 600px;
  padding: 50px 20px 20px;
}

#pop.is-ready {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#popCloseBtn {
	position: absolute;
	width: 20px;
	height: 20px;
	overflow: hidden;
	top: 15px;
	right: 20px;
}
#popCloseBtn::after, #popCloseBtn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  transition: all 0.3s ease;
}
#popCloseBtn::after {
  transform: translateY(-50%) rotate(-45deg);
}
#popCloseBtn::before {
  transform: translateY(-50%) rotate(45deg);
}
#popCloseBtn:hover::after {
  transform: translateY(-50%) rotate(45deg);
}
#popCloseBtn:hover::before {
  transform: translateY(-50%) rotate(135deg);
}


#popupSwiper {
  overflow: hidden;
}
#popupSwiper .swiper-slide {
  padding: 0 1px;
}

.privacy_wrapper {
  height: 80vh;
  overflow-y: auto;
  color: #333;
}
.privacy_wrapper .close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  overflow: hidden;
}
.privacy_wrapper .close::after, .privacy_wrapper .close::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  transition: all 0.3s ease;
}
.privacy_wrapper .close::after {
  transform: translateY(-50%) rotate(-45deg);
}
.privacy_wrapper .close::before {
  transform: translateY(-50%) rotate(45deg);
}
.privacy_wrapper .close:hover::after {
  transform: translateY(-50%) rotate(45deg);
}
.privacy_wrapper .close:hover::before {
  transform: translateY(-50%) rotate(135deg);
}
.privacy_wrapper .privacy-tit1 {
  font-size: 15px;
  color: #17365d;
  font-weight: bold;
  margin-bottom: 15px;
  margin-top: 40px;
  line-height: 1.5;
}
.privacy_wrapper .privacy-tit2 {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 15px;
  line-height: 1.5;
  color: #555555;
}
.privacy_wrapper .privacy-txt1 {
  font-size: 13px;
  margin-bottom: 15px;
  margin-top: 15px;
  line-height: 1.5;
}
.privacy_wrapper .privacy-txt2 {
  font-size: 13px;
  margin-bottom: 15px;
  margin-top: 15px;
  padding: 0;
  margin-left: 0;
  line-height: 1.5;
}
.privacy_wrapper .privacy-txt2 li {
  text-indent: -14px;
  padding-left: 14px;
  list-style: none;
  margin-top: 5px;
}
.privacy_wrapper .privacy-txt2 li:first-child {
  margin-top: 0;
}
.privacy_wrapper .user-tbl1 {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}
.privacy_wrapper .user-tbl1 th {
  background-color: #eee;
  text-align: left;
  font-weight: normal;
  color: #17365d;
  padding: 10px;
  font-size: 13px;
  border: 1px solid #eee;
}
.privacy_wrapper .user-tbl1 td {
  color: #17365d;
  padding: 10px;
  font-size: 13px;
  color: #666;
  border: 1px solid #eee;
}

/* ----------------------------- */
/* --------------RWD------------ */
/* ----------------------------- */
@media (max-width: 500px) {
  #pop .cont {
    padding: 4vw;
  }
}