* {
  margin: 0;
  padding: 0;
}
html, body {
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 16px;
  font-weight: normal;
  color: #101010;
  text-decoration: none;
  color: inherit;
  list-style: none;
}
.modal-wrap .modal-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20vh 0;
}
.modal-wrap .modal-btn > li > a {
  background: #101010;
  color: #fff;
  font-size: 20px;
  display: inline-flex;
  width: 200px;
  align-items: center;
  justify-content: center;
  padding: 6px 1px;
}
.popup {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  position: fixed;
  left: 0;
  top: 0;
  overflow-y: scroll;
}
.popup .popup-wrap {
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.popup .popup-tit {
  background: url(img/modal1-top.png);
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  padding: 20px 0;
}
.popup button {
  border: 0;
  border-radius: 0;
  font-family: "Noto Sans KR", sans-serif;
  background: transparent;
  cursor: pointer;
}
.popup .popup-btn {
  background: #000;
  color: #fff;
  font-size: 30px;
  font-weight: 500;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}
.popup .popup-con {
  padding: 34px 60px;
  box-sizing: border-box;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.popup .input-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.popup .input-wrap p {
  font-size: 20px;
  font-weight: 700;
}
.popup .input-wrap input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-border-radius: 0;
  appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  font-family: "Noto Sans KR", sans-serif;
  border: 3px solid rgb(191, 191, 191);
  box-shadow: 0px 10px 40px 0px rgba(78, 78, 78, 0.13);
  height: 50px;
  width: 100%;
  position: relative;
  border-radius: 4px;
  padding: 0 10px;
  font-size: 20px;
  font-weight: 700;
}
.popup .input-wrap input::placeholder {
  font-family: "Noto Sans KR", sans-serif;
}
.popup .input-wrap input:focus {
  outline-offset: 0px;
  outline: none;
}
.popup .type-wrap label {
  position: relative;
  width: 100%;
  height: 50px;
}
.popup .type-wrap label span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}
.popup .region-wrap .wid-50 {
  display: flex;
  gap: 10px;
}
.popup .region-wrap .wid-50 > label {
  width: calc(50% - 5px);
  height: 50px;
  position: relative;
}
.popup .region-wrap .wid-50 > label span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 0 12px;
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 700;
  align-items: center;
}
.popup .region-wrap .wid-50 > label span img {
  width: 26px;
}
.popup .region-wrap .wid-50 > label input[type="radio"]:checked {
  background: #d3e0ff;
}
.popup .select-wrap select {
  font-family: "Noto Sans KR", sans-serif;
  border: 3px solid rgb(191, 191, 191);
  box-shadow: 0px 10px 40px 0px rgba(78, 78, 78, 0.13);
  height: 50px;
  width: 100%;
  border-radius: 4px;
  font-size: 20px;
  font-weight: 700;
  padding: 0 8px;
  background: url(img/arrow-icon.png) calc(100% - 13px) center no-repeat;
  background-size: 16px;
}
.popup .select-wrap select::-ms-expand {
  display: none;
}
.popup .select-wrap select {
  -o-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.popup .select-wrap select:focus {
  outline: none;
}
.popup .input-wrap2 {
  flex-direction: row;
}
.popup .input-wrap2 p {
  width: 100px;
  padding-top: 8px;
}
.popup .input-wrap2 input {
  width: calc(100% - 110px);
}
.popup .input-wrap2 textarea {
  width: calc(100% - 110px);
  height: 200px;
  border: 3px solid rgb(191, 191, 191);
  box-shadow: 0px 10px 40px 0px rgba(78, 78, 78, 0.13);
  border-radius: 4px;
  padding: 12px;
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Sans KR", sans-serif;
  box-sizing: border-box;
}
.popup .input-wrap2 textarea:focus {
  outline-offset: 0px;
  outline: none;
}
.popup .check-wrap input[type="checkbox"] {
  display: none;
}
.popup .check-wrap input[type="checkbox"] + label {
  display: flex;
  justify-content: end;
  gap: 10px;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
}
.popup .check-wrap input[type="checkbox"] + label span {
  width: 20px;
  height: 20px;
  border: 3px solid rgb(191, 191, 191);
  box-shadow: inset 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  position: relative;
  box-sizing: border-box;
}
.popup .check-wrap input[type="checkbox"]:checked + label span::after {
  content: "✔";
  font-size: 16px;
  width: 20px;
  height: 20px;
  text-align: center;
  position: absolute;
  left: -3px;
  top: -6px;
}
.popup .end-txt {
  font-size: 18px;
  font-weight: 400;
  text-align: end;
  margin-top: -10px;
}
.modal2 .popup-tit {
  background: url(img/modal2-top.png);
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  padding: 20px 0;
  color: #fff;
}
.modal2 .file-box {
  width: calc(100% - 120px);
}
.modal2 .file-wrap {
  width: 100%;
  height: 50px;
  display: flex;
  flex-wrap: nowrap;
  box-sizing: border-box;
  gap: 16px;
}
.modal2 .filebox label {
  display: flex;
  width: 100px;
  height: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  background: #000;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  color: #fff;
}
.modal2 .file-name {
  position: relative;
  width: calc(100% - 100px);
  height: 100%;
}
.modal2 .filebox input[type="file"] {
  display: none;
}
.modal2 .file-name .file_del {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  cursor: pointer;
  display: none;
}
.modal2 .file-name .file_del i {
  font-size: 14px;
  display: block;
}
.modal2 .file-name.on .file_del {
  display: block;
}
.modal2 .upload-name {
  display: inline-block;
  padding: 0px 8px;
  font-size: 0.8rem;
  line-height: 40px;
  color: #808080;
  vertical-align: middle;
  background-color: #f2f2f3;
  border: 0px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: calc(100% - 180px);
  box-sizing: border-box;
  display: none;
}
.modal2 .upload-name.ver2 {
  background-color: transparent;
  width: auto;
  padding: 8px 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 100%;
  align-items: center;
  font-size: 20px;
  color: #000;
  font-weight: 700;
  display: flex;
  border-radius: 4px;
  border: 3px solid rgb(191, 191, 191);
  box-shadow: 0px 10px 40px 0px rgba(78, 78, 78, 0.13);
}
.modal3 .popup-tit {
  background: url(img/modal3-top.png);
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  padding: 20px 0;
  color: #000;
}
input::-ms-clear,
input::-ms-reveal {
  display: none;
}
input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration {
  display: none;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media screen and (max-width: 600px) {
  .popup .popup-tit {
    font-size: 20px;
    padding: 16px 0;
  }
  .popup .popup-btn {
    font-size: 20px;
    padding: 16px 0;
  }
  .popup .popup-con {
    padding: 20px 30px;
    gap: 12px;
  }
  .popup .input-wrap p {
    font-size: 14px;
    font-weight: 500;
  }
  .popup .type-wrap label {
    height: 40px;
  }
  .popup .input-wrap input {
    height: 40px;
    border: 2px solid rgb(191, 191, 191);
    font-size: 14px;
    font-weight: 500;
  }
  .popup .type-wrap label span {
    font-size: 14px;
    font-weight: 500;
    width: max-content;
  }
  .popup .region-wrap .wid-50 > label {
    height: 40px;
  }
  .popup .region-wrap .wid-50 > label span {
    font-size: 14px;
    font-weight: 500;
  }
  .popup .region-wrap .wid-50 > label span img {
    width: 18px;
  }
  .popup .select-wrap select {
    height: 40px;
    border: 2px solid rgb(191, 191, 191);
    font-size: 14px;
    font-weight: 500;
    background: url(img/arrow-icon.png) calc(100% - 10px) center no-repeat;
    background-size: 12px;
  }
  .popup .input-wrap2 p {
    width: 80px;
  }
  .popup .input-wrap2 input {
    width: calc(100% - 90px);
  }
  .popup .input-wrap2 textarea {
    width: calc(100% - 90px);
    font-size: 14px;
    font-weight: 500;
    border: 2px solid rgb(191, 191, 191);
  }
  .popup .check-wrap input[type="checkbox"] + label {
    font-size: 14px;
    font-weight: 500;
  }
  .popup .check-wrap input[type="checkbox"] + label span {
    width: 18px;
    height: 18px;
  }
  .popup .check-wrap input[type="checkbox"]:checked + label span::after {
    font-size: 14px;
    width: 18px;
    height: 18px;
  }
  .popup .end-txt {
    font-size: 14px;
    margin-top: -6px;
    word-break: keep-all;
  }
  .modal2 .file-wrap {
    height: 40px;
    gap: 10px;
  }
  .modal2 .file-box {
    width: calc(100% - 90px);
  }
  .modal2 .filebox label {
    width: 60px;
    font-size: 14px;
  }
  .modal2 .file-name {
    width: calc(100% - 60px);
  }
  .modal2 .upload-name.ver2 {
    border: 2px solid rgb(191, 191, 191);
    font-size: 14px;
    font-weight: 500;
  }
}
