/* 팝업 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

p {
  margin-top: 10px;
}

/* 개인정보 동의 영역 */
.privacy_box {
  width: 100%;
  margin-top: 10px;
}

.privacy_box .modal-btn-box {
  margin-bottom: 15px;
}

.privacy_box .modal-btn-box:last-child {
  margin-bottom: 0;
}

.privacy_box p {
  font-size: 13px;
  line-height: 1.6;
  color: #666;
  margin-top: 8px;
  padding: 0;
}

.container {
  width: 100%;
}

.modal-btn-box {
  width: 100%;
  text-align: center;
}

.modal-btn-box button {
  display: inline-block;
  width: auto;
  height: auto;
  background-color: #ffffff;
  border: none;
  cursor: pointer;
}

.popup-wrap {
  background-color: rgba(0, 0, 0, .3);
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  padding: 15px;
}

.popup {
  width: 100%;
  max-width: 400px;
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  background-color: #264db5;
  box-shadow: 5px 10px 10px 1px rgba(0, 0, 0, .3);
}

.popup-head {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.head-title {
  font-size: 38px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: -3px;
  text-align: center;
}

.popup-body {
  width: 100%;
  background-color: #ffffff;
}

.body-content {
  width: 100%;
  padding: 30px;
}

.body-titlebox {
  text-align: center;
  width: 100%;
  height: 40px;
  margin-bottom: 10px;
}

.body-titlebox h1 {
  font-size: 20px;
}

.body-contentbox {
  word-break: break-word;
  overflow-y: auto;
  min-height: 100px;
  max-height: 200px;
}

.popup-foot {
  width: 100%;
  height: 50px;
}

.pop-btn {
  display: inline-flex;
  width: 100%;
  height: 100%;
  float: left;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  cursor: pointer;
}

.pop-btn.confirm {
  border-right: 1px solid #3b5fbf;
}