.btn {
  width: 200px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eee;
  border: 1px solid #fff;
  cursor: pointer;
}

.popwrap {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
}

.popup {
  display: none;
  width: 500px;
  height: 85%;
  box-sizing: border-box;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -53%);
}
.popup * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.popup input {
  outline: none;
  border: 0;
}
.popup textarea {
  outline: none;
  border: 0;
  resize: none;
}
.popup .closebtn {
  width: 30px;
  height: 30px;
  float: right;
  background: url(/_asset/img_v2/project/ottogi/close.png) no-repeat center center;
  background-size: cover;
  margin-bottom: 10px;
  cursor: pointer;
}
.popup .gr_bBox {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  background: linear-gradient(278deg, #a37f32, #d6a624, #f1df49, #d6a624, #a37f32);
  border-radius: 5px;
}
.popup .content {
  clear: both;
  width: 100%;
  height: 100%;
  padding: 50px 0;
  background: #271717;
  overflow-y: scroll;
}
.popup .content::-webkit-scrollbar {
  width: 5px;
}
.popup .content::-webkit-scrollbar-thumb {
  background: rgb(255, 255, 255);
  border-radius: 5px;
}
.popup .content .hd {
  width: 100%;
  text-align: center;
  padding: 0 30px;
}
.popup .content .hd .logo {
  width: 20%;
  margin: 0 auto;
}
.popup .content .hd .logo img {
  width: 100%;
}
.popup .content .hd h1 {
  width: 100%;
  margin: 30px auto 0;
}
.popup .content .hd h1 img {
  width: 100%;
}
.popup .content .hd p {
  width: 100%;
}
.popup .content .hd p img {
  width: 100%;
}
.popup .content .in_wrap {
  width: 100%;
  padding: 40px;
}
.popup .content .in_wrap .in_box {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.popup .content .in_wrap .in_box:not(:last-child) {
  margin-bottom: 10px;
}
.popup .content .in_wrap .in_box .tit {
  width: 25%;
  font-size: 22px;
  font-family: "nskm";
  letter-spacing: -1px;
  color: #fff;
}
.popup .content .in_wrap .in_box .put {
  width: 75%;
  height: 45px;
  background: #fff;
  border-radius: 5px;
  padding: 0 15px;
  font-size: 18px;
  font-family: "nskm";
  letter-spacing: -1px;
}
.popup .content .in_wrap .in_box .put_wrap {
  width: 75%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.popup .content .in_wrap .in_box .put_wrap .put {
  width: 32%;
}
.popup .content .in_wrap .in_box .tareaBox {
  width: 75%;
  position: relative;
}
.popup .content .in_wrap .in_box .tareaBox textarea.put {
  width: 100%;
  height: 198px;
  padding: 15px;
}
.popup .content .in_wrap .in_box .tareaBox .textLengthWrap {
  position: absolute;
  bottom: 15px;
  right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888888;
  font-size: 18px;
  font-family: "nskr";
  letter-spacing: -1px;
}
.popup .content .ck_wrap {
  padding: 0 40px;
}
.popup .content .ck_wrap .box {
  width: 100%;
  border-top: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.popup .content .ck_wrap .box .textbox h1 {
  font-size: 22px;
  font-family: "nskm";
  letter-spacing: -1px;
  margin: 20px 0;
  color: #fff;
  font-weight: normal;
}
.popup .content .ck_wrap .box .textbox .ck_box label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  float: left;
  margin-right: 50px;
  margin-bottom: 20px;
  cursor: pointer;
}
.popup .content .ck_wrap .box .textbox .ck_box label input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 30px;
  margin-right: 10px;
}
.popup .content .ck_wrap .box .textbox .ck_box label input:checked::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #df2d32;
  border-radius: 15px;
}
.popup .content .ck_wrap .box .textbox .ck_box label span {
  font-size: 18px;
  font-family: "nksr";
  letter-spacing: -1px;
  color: #fff;
}
.popup .content .ck_wrap .box .terms_btn {
  width: 40px;
  height: 40px;
  background: url(/_asset/img_v2/project/ottogi/btn.png) no-repeat center center;
  background-size: contain;
  cursor: pointer;
}
.popup .content .ck_wrap .box .openbox {
  display: none;
  position: absolute;
  left: -20px;
  width: 110%;
  z-index: 10;
}
.popup .content .ck_wrap .box .openbox .close {
  width: 8%;
  height: 40px;
  position: absolute;
  right: 2px;
  top: 4px;
  cursor: pointer;
}
.popup .content .ck_wrap .box .openbox img {
  width: 100%;
}
.popup .content .fin_btn {
  width: 60%;
  margin: 15px auto 0;
}
.popup .content .fin_btn img {
  width: 100%;
  cursor: pointer;
}

@media screen and (max-width: 600px) {
  .popup {
    width: 90%;
  }
  .popup .closebtn {
    width: 20px;
    height: 20px;
    margin-bottom: 5px;
  }
  .popup .content {
    padding: 30px 0;
  }
  .popup .content .hd {
    padding: 0 10px;
  }
  .popup .content .hd h1 {
    margin: 15px auto 0;
  }
  .popup .content .in_wrap {
    width: 100%;
    padding: 20px;
  }
  .popup .content .in_wrap .in_box:not(:last-child) {
    margin-bottom: 8px;
  }
  .popup .content .in_wrap .in_box .tit {
    font-size: 16px;
  }
  .popup .content .in_wrap .in_box .put {
    height: 40px;
    font-size: 16px;
  }
  .popup .content .in_wrap .in_box .tareaBox textarea.put {
    height: 150px;
  }
  .popup .content .in_wrap .in_box .tareaBox .textLengthWrap {
    font-size: 14px;
  }
  .popup .content .ck_wrap {
    padding: 0 20px;
  }
  .popup .content .ck_wrap .box .textbox {
    width: 80%;
  }
  .popup .content .ck_wrap .box .textbox h1 {
    font-size: 16px;
    margin: 10px 0;
  }
  .popup .content .ck_wrap .box .textbox .ck_box label {
    margin-right: 20px;
    margin-bottom: 10px;
  }
  .popup .content .ck_wrap .box .textbox .ck_box label input {
    margin-right: 5px;
  }
  .popup .content .ck_wrap .box .textbox .ck_box label span {
    font-size: 14px;
  }
  .popup .content .ck_wrap .box .terms_btn {
    width: 30px;
    height: 30px;
  }
  .popup .content .ck_wrap .box .openbox {
    left: -5%;
  }
}/*# sourceMappingURL=popup.css.map */