.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: calc(100% - 40px);
  height: 100%;
  margin: 20px;
  justify-content: center;
  align-items: center;
}
.popup .p_bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.popup .popup_bg .inner {
  height: 100%;
  overflow-y: scroll;
}
.popup .popup_bg {
  background: #fff;
  width: 1080px;
  height: 720px;
  padding: 30px 13px 30px 40px;
  box-sizing: border-box;
  position: relative;
}
.popup .popup_bg h3 {
  font-family: NBG;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  color: #000;
  text-align: center;
  margin-bottom: 32px;
}
.popup .popup_bg .p_t_wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.popup .popup_bg .p_t_wrap p {
  color: #000;
  font-family: NBG;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 171.429% */
  letter-spacing: -0.42px;
}
.popup .popup_bg .p_t_wrap .p_txt p {
  color: #000;
  font-family: NBG;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 171.429% */
  letter-spacing: -0.42px;
}
.popup .popup_bg .pop_close {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

@media screen and (min-width: 769px) and (max-width: 1300px) {
  .popup .popup_bg {
    width: 100%;
    height: 70vh;
    padding: 30px 20px 30px 20px;
  }
  .popup .popup_bg .p_t_wrap {
    overflow-y: auto;
    height: calc(100% - 60px);
  }
  .popup .popup_bg .pop_close {
    top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .popup .popup_bg {
    width: 100%;
    height: 70vh;
    padding: 30px 20px 30px 20px;
  }
  .popup .popup_bg .p_t_wrap {
    overflow-y: auto;
    height: calc(100% - 60px);
  }
  .popup .popup_bg .pop_close {
    top: 20px;
  }
}/*# sourceMappingURL=popup.css.map */