@charset "UTF-8";
/*
AUTH : convave
*/
/**********
펑션
***********/
/**********
텍스트 말줄임
***********/
/**********
아이콘
***********/
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes slideDown {
  from {
    transform: translateX(-50%) translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}
article.toast-layer {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: none;
}
@media (max-width: 1080px) {
  article.toast-layer {
    top: 30px;
  }
}
article.toast-layer.is-visible {
  display: block;
  animation: slideDown 0.3s ease-out;
}
article.toast-layer .toast-wrap {
  box-shadow: 0 0 15px 0 rgba(21, 21, 21, 0.1);
  background-color: #fff;
  padding: 5px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  width: max-content;
}
article.toast-layer .toast-wrap .ic-box {
  display: inline-flex;
}
article.toast-layer .toast-wrap .ic-box .ic {
  width: 36px;
  height: 36px;
}
@media (max-width: 1080px) {
  article.toast-layer .toast-wrap .ic-box .ic {
    width: 30px;
    height: 30px;
  }
}
article.toast-layer .toast-wrap .ic-box .ic.ic-like {
  background: url("../../img/common/ic_toast_like.svg") no-repeat center/cover;
}
article.toast-layer .toast-wrap .ic-box .ic.ic-copy {
  background: url("../../img/common/ic_toast_copy.svg") no-repeat center/cover;
}
article.toast-layer .toast-wrap .ic-box .ic.ic-cancel {
  background: url("../../img/common/ic_toast_cancel.svg") no-repeat center/cover;
}
article.toast-layer .toast-wrap .ic-box .ic.ic-check {
  background: url("../../img/common/ic_toast_check.svg") no-repeat center/cover;
}
article.toast-layer .toast-wrap .msg-box {
  padding: 0 15px;
  font-size: 16px;
  font-weight: 600;
  color: #5a5d65;
  line-height: 120%;
  letter-spacing: -0.04em;
}
@media (max-width: 1080px) {
  article.toast-layer .toast-wrap .msg-box {
    font-size: 14px;
  }
}

article.popup {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 500;
}
article.popup.is-visible {
  display: block;
}
article.popup:before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 400;
}
article.popup.long .popup-wrap {
  max-width: 640px;
  width: 100%;
}
article.popup.longer .popup-wrap {
  max-width: 860px;
  width: 100%;
}
article.popup.longest .popup-wrap {
  max-width: 960px;
  width: 100%;
}
article.popup.longest2 .popup-wrap {
  max-width: 1000px;
  width: 100%;
}
article.popup .popup-wrap {
  position: fixed;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  max-width: 500px;
  z-index: 500;
}
@media (max-width: 1080px) {
  article.popup .popup-wrap {
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    transform: none;
    padding-top: 40px;
  }
}
article.popup .popup-wrap .popup-handler {
  position: absolute;
  width: 40px;
  height: 5px;
  border-radius: 100px;
  background-color: #5a5d65;
  opacity: 0.2;
  display: none;
  transform: translateX(-50%);
  left: 50%;
  top: 15px;
  z-index: 100;
}
@media (max-width: 1080px) {
  article.popup .popup-wrap .popup-handler {
    display: block;
  }
}
article.popup .popup-wrap .popup-contents {
  padding: 40px 30px;
  border-radius: 20px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 15px 0 rgba(21, 21, 21, 0.1);
  min-width: 400px;
}
@media (max-width: 1080px) {
  article.popup .popup-wrap .popup-contents {
    padding: 50px 20px 30px;
    position: relative;
    min-width: 100%;
  }
  article.popup .popup-wrap .popup-contents .pc-only {
    display: none !important;
  }
  article.popup .popup-wrap .popup-contents .mobile-only {
    display: block !important;
  }
}
article.popup .popup-wrap .popup-contents .pc-only {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  min-height: 0;
}
article.popup .popup-wrap .popup-contents .mobile-only {
  display: none;
}
article.popup .popup-wrap .popup-contents .mobile-only .mobile-msg-box {
  text-align: center;
}
article.popup .popup-wrap .popup-contents .mobile-only .mobile-msg-box .main-box {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.04em;
}
article.popup .popup-wrap .popup-contents .mobile-only .mobile-msg-box .sub-box {
  padding-top: 16px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  color: #a6a6a6;
}
article.popup .popup-wrap .popup-contents .popup-head-box {
  padding-bottom: 30px;
}
@media (max-width: 1080px) {
  article.popup .popup-wrap .popup-contents .popup-head-box.mob-center .head-main-box {
    justify-content: center;
  }
  article.popup .popup-wrap .popup-contents .popup-head-box.mob-center .head-sub-box {
    text-align: center;
  }
}
article.popup .popup-wrap .popup-contents .popup-head-box.with-border {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e8e8e8;
}
article.popup .popup-wrap .popup-contents .popup-head-box .head-main-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
article.popup .popup-wrap .popup-contents .popup-head-box .head-main-box .head-box {
  gap: 10px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.04em;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 1080px) {
  article.popup .popup-wrap .popup-contents .popup-head-box .head-main-box .head-box {
    font-size: 18px;
  }
}
@media (max-width: 1080px) {
  article.popup .popup-wrap .popup-contents .popup-head-box .head-main-box .head-box.m-column {
    align-items: flex-start;
    flex-direction: column;
  }
}
article.popup .popup-wrap .popup-contents .popup-head-box .head-main-box .head-box .tooltip-box {
  display: inline-flex;
  align-items: center;
  position: relative;
}
article.popup .popup-wrap .popup-contents .popup-head-box .head-main-box .head-box .tooltip-box .tooltip-btn {
  background: url("../../img/common/ic_tooltip.svg") no-repeat center/cover;
  width: 16px;
  height: 16px;
}
article.popup .popup-wrap .popup-contents .popup-head-box .head-main-box .head-box .tooltip-box .tooltip-msg {
  display: none;
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  padding: 10px;
  background: #5a5d65;
  border-radius: 8px;
  white-space: nowrap;
}
@media (max-width: 1080px) {
  article.popup .popup-wrap .popup-contents .popup-head-box .head-main-box .head-box .tooltip-box .tooltip-msg {
    padding: 7px 10px;
  }
}
article.popup .popup-wrap .popup-contents .popup-head-box .head-main-box .head-box .tooltip-box .tooltip-msg.is-visible {
  display: flex;
}
article.popup .popup-wrap .popup-contents .popup-head-box .head-main-box .head-box .tooltip-box .tooltip-msg:after {
  content: "";
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  background: url("../../img/common/ic_tooltip_left.svg") no-repeat center/cover;
  width: 5px;
  height: 10px;
}
article.popup .popup-wrap .popup-contents .popup-head-box .head-main-box .head-box .tooltip-box .tooltip-msg .msg-txt {
  color: #fff;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -0.03em;
  font-weight: 500;
}
@media (max-width: 1080px) {
  article.popup .popup-wrap .popup-contents .popup-head-box .head-main-box .head-box .tooltip-box .tooltip-msg .msg-txt {
    font-size: 12px;
  }
}
article.popup .popup-wrap .popup-contents .popup-head-box .head-main-box .head-box .sub-txt {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #a6a6a6;
}
@media (max-width: 1080px) {
  article.popup .popup-wrap .popup-contents .popup-head-box .head-main-box .head-box .sub-txt {
    font-size: 12px;
  }
}
article.popup .popup-wrap .popup-contents .popup-head-box .head-main-box .head-box .sub-txt .num-txt {
  padding-left: 3px;
}
article.popup .popup-wrap .popup-contents .popup-head-box .head-main-box .option-box {
  display: inline-flex;
}
article.popup .popup-wrap .popup-contents .popup-head-box .head-main-box .option-box .download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid #e8e8e8;
  height: 60px;
  padding: 0 30px;
  gap: 7px;
}
article.popup .popup-wrap .popup-contents .popup-head-box .head-main-box .option-box .download-btn .btn-txt {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #5a5d65;
}
article.popup .popup-wrap .popup-contents .popup-head-box .head-main-box .option-box .download-btn .ic {
  width: 20px;
  height: 20px;
}
article.popup .popup-wrap .popup-contents .popup-head-box .head-main-box .option-box .download-btn .ic.ic-download {
  background: url("../../img/common/ic_download_black.svg") no-repeat center/cover;
}
article.popup .popup-wrap .popup-contents .popup-head-box .head-main-box .option-box .txt-btn {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #5a5d65;
}
article.popup .popup-wrap .popup-contents .popup-head-box .head-sub-box {
  padding-top: 16px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #a6a6a6;
}
@media (max-width: 1080px) {
  article.popup .popup-wrap .popup-contents .popup-head-box .head-sub-box {
    padding-top: 16px;
    font-size: 14px;
    font-weight: 500;
  }
}
article.popup .popup-wrap .popup-contents .popup-body-box {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
article.popup .popup-wrap .popup-contents .popup-body-box.scroll-dynamic {
  padding-right: 10px;
  max-height: 65vh;
  overflow-y: auto;
  position: relative;
}
article.popup .popup-wrap .popup-contents .popup-body-box.scroll-none {
  display: flex;
  flex-direction: column;
  max-height: 100%;
  padding-right: 0;
}
article.popup .popup-wrap .popup-contents .popup-btn-box {
  padding-top: 50px;
  display: flex;
  gap: 10px;
}
@media (max-width: 1080px) {
  article.popup .popup-wrap .popup-contents .popup-btn-box {
    padding-top: 30px;
  }
}
article.popup .popup-wrap .popup-contents .popup-btn-box .bbox .button {
  height: 57px;
}
@media (max-width: 1080px) {
  article.popup .popup-wrap .popup-contents .popup-btn-box .bbox .button {
    height: 54px;
  }
}
article.popup .popup-wrap .popup-contents .popup-msg-group .msg-box .main-box {
  font-size: 24px;
  line-height: 29px;
  font-weight: 600;
}
@media (max-width: 1080px) {
  article.popup .popup-wrap .popup-contents .popup-msg-group .msg-box .main-box {
    text-align: center;
    font-size: 18px;
    line-height: 23px;
  }
}
article.popup .popup-wrap .popup-contents .popup-msg-group .msg-box .sub-box {
  padding-top: 20px;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: -0.04em;
  color: #a6a6a6;
}
@media (max-width: 1080px) {
  article.popup .popup-wrap .popup-contents .popup-msg-group .msg-box .sub-box {
    padding-top: 16px;
    text-align: center;
    font-size: 14px;
    line-height: 18px;
  }
}
article.popup .popup-wrap .popup-contents .popup-msg-group .msg-box .sub-box.text-black {
  color: #5a5d65;
}

article.popup-leave-form .leave-note {
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  padding: 30px 0;
}
@media (max-width: 1080px) {
  article.popup-leave-form .leave-note {
    padding: 20px 0;
  }
}
article.popup-leave-form .leave-note .note-item {
  font-size: 18px;
  line-height: 160%;
  letter-spacing: -0.04em;
  text-indent: -8px;
  padding-left: 8px;
}
@media (max-width: 1080px) {
  article.popup-leave-form .leave-note .note-item {
    font-size: 14px;
    line-height: 120%;
  }
  article.popup-leave-form .leave-note .note-item + .note-item {
    margin-top: 12px;
  }
}
article.popup-leave-form .leave-check {
  padding-top: 30px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: -0.04em;
}
@media (max-width: 768px) {
  article.popup-leave-form .leave-check {
    font-size: 18px;
  }
}

article.popup-notice-viewer {
  flex: 1;
  min-height: 0;
  max-height: 60vh;
  overflow-y: auto;
}
@media (max-width: 1080px) {
  article.popup-notice-viewer {
    max-height: 48vh;
    padding-right: 10px;
  }
}
article.popup-notice-viewer .notice-head-box .head-box {
  font-weight: 600;
  padding-bottom: 30px;
  font-size: 24px;
  line-height: 140%;
}
@media (max-width: 1080px) {
  article.popup-notice-viewer .notice-head-box .head-box {
    font-size: 16px;
    padding-bottom: 10px;
  }
}
article.popup-notice-viewer .notice-body-box {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 1080px) {
  article.popup-notice-viewer .notice-body-box {
    gap: 10px;
  }
}
article.popup-notice-viewer .notice-body-box .txt-box {
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.04em;
}
@media (max-width: 768px) {
  article.popup-notice-viewer .notice-body-box .txt-box {
    font-size: 13px;
  }
}
article.popup-notice-viewer .notice-body-box .guide-box {
  background: #f9f9f9;
  padding: 30px;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.04em;
}
@media (max-width: 1080px) {
  article.popup-notice-viewer .notice-body-box .guide-box {
    font-size: 12px;
    padding: 15px 20px;
  }
}
article.popup-notice-viewer .notice-body-box .guide-box .guide-item {
  padding-left: 6px;
  text-indent: -6px;
}
@media (max-width: 1080px) {
  article.popup-notice-viewer .notice-body-box .guide-box .guide-item {
    text-indent: -5px;
    padding-left: 5px;
  }
}
article.popup-notice-viewer .viewer-box .img-box {
  display: flex;
  height: 500px;
  border-radius: 14px;
  overflow: hidden;
}
@media (max-width: 1080px) {
  article.popup-notice-viewer .viewer-box .img-box {
    height: 48vh;
  }
}
article.popup-notice-viewer .viewer-box .img-box img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

article.popup-template-list {
  overflow-y: auto;
  max-height: 500px;
  padding-right: 10px;
  position: relative;
}
@media (max-width: 1080px) {
  article.popup-template-list {
    max-height: 48vh;
  }
}
article.popup-template-list .list-wrap ul li + li {
  margin-top: 20px;
}
@media (max-width: 1080px) {
  article.popup-template-list .list-wrap ul li + li {
    margin-top: 10px;
  }
}
article.popup-template-list .list-wrap ul li .template-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
}
article.popup-template-list .list-wrap ul li .template-item.is-selected {
  border: 1px solid #5a5d65;
}
article.popup-template-list .list-wrap ul li .template-item.is-selected .info-box {
  color: #5a5d65;
}
article.popup-template-list .list-wrap ul li .template-item .view-box {
  width: 120px;
  flex-shrink: 0;
}
@media (max-width: 1080px) {
  article.popup-template-list .list-wrap ul li .template-item .view-box {
    display: none;
  }
}
article.popup-template-list .list-wrap ul li .template-item .view-box .img-box {
  border-radius: 14px;
  aspect-ratio: 1/1;
}
article.popup-template-list .list-wrap ul li .template-item .view-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
article.popup-template-list .list-wrap ul li .template-item .info-box {
  flex: 1;
  min-width: 0;
  color: #a6a6a6;
}
article.popup-template-list .list-wrap ul li .template-item .info-box .subject-box {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  word-wrap: normal;
  width: 100%;
  max-width: 100%;
  font-size: 20px;
  letter-spacing: -0.04em;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}
@media (max-width: 1080px) {
  article.popup-template-list .list-wrap ul li .template-item .info-box .subject-box {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 20px;
  }
}
article.popup-template-list .list-wrap ul li .template-item .info-box .con-box {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  line-height: 19px;
  height: 38px;
  max-width: 100%;
  font-size: 16px;
  letter-spacing: -0.04em;
  height: auto;
}
@media (max-width: 1080px) {
  article.popup-template-list .list-wrap ul li .template-item .info-box .con-box {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    line-height: 16px;
    height: 32px;
    max-width: 100%;
    font-size: 12px;
    line-height: 16px;
    height: auto;
  }
}
article.popup-template-list .list-wrap ul li .template-item .info-box .date-box {
  padding-top: 12px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.04em;
}
@media (max-width: 1080px) {
  article.popup-template-list .list-wrap ul li .template-item .info-box .date-box {
    padding-top: 8px;
    font-size: 12px;
  }
}

article.popup-payment-specification .detail-specification {
  border-top: 1px solid #e8e8e8;
  padding: 30px 0;
  display: flex;
  gap: 20px;
}
@media (max-width: 1080px) {
  article.popup-payment-specification .detail-specification {
    padding: 20px 0;
    gap: 0;
    flex-direction: column;
  }
}
article.popup-payment-specification .detail-specification .specification-area {
  flex: 1;
  min-width: 0;
}
article.popup-payment-specification .detail-specification .specification-area:last-child {
  min-width: 480px;
}
@media (max-width: 1080px) {
  article.popup-payment-specification .detail-specification .specification-area:last-child {
    min-width: 100%;
  }
}
@media (max-width: 1080px) {
  article.popup-payment-specification .detail-specification .specification-area + .specification-area {
    border-top: 1px solid #e8e8e8;
    padding-top: 20px;
    margin-top: 20px;
  }
}
article.popup-payment-specification .detail-specification .specification-area .row {
  display: flex;
  gap: 12px;
}
@media (max-width: 1080px) {
  article.popup-payment-specification .detail-specification .specification-area .row {
    flex-direction: column;
  }
}
article.popup-payment-specification .detail-specification .specification-area .row + .row {
  margin-top: 15px;
}
@media (max-width: 1080px) {
  article.popup-payment-specification .detail-specification .specification-area .row + .row {
    margin-top: 10px;
  }
}
article.popup-payment-specification .detail-specification .specification-area .row .item-box {
  display: flex;
  width: 100%;
  gap: 10px;
}
@media (max-width: 1080px) {
  article.popup-payment-specification .detail-specification .specification-area .row .item-box {
    gap: 5px;
  }
}
article.popup-payment-specification .detail-specification .specification-area .row .item-box .subject-box {
  width: 56px;
  color: #a6a6a6;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}
@media (max-width: 1080px) {
  article.popup-payment-specification .detail-specification .specification-area .row .item-box .subject-box {
    font-size: 10px;
    line-height: 12px;
  }
}
article.popup-payment-specification .detail-specification .specification-area .row .item-box .con-box {
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  letter-spacing: -0.04em;
}
@media (max-width: 1080px) {
  article.popup-payment-specification .detail-specification .specification-area .row .item-box .con-box {
    font-size: 10px;
    line-height: 12px;
  }
}
article.popup-payment-specification .detail-list .table-box table {
  table-layout: fixed;
}
article.popup-payment-specification .detail-list .table-box table .left {
  text-align: left;
}
article.popup-payment-specification .detail-list .table-box table .center {
  text-align: center;
}
article.popup-payment-specification .detail-list .table-box table .right {
  text-align: right;
}
article.popup-payment-specification .detail-list .table-box table thead tr {
  background: #f9f9f9;
}
article.popup-payment-specification .detail-list .table-box table thead tr th {
  padding: 15px 20px;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 1080px) {
  article.popup-payment-specification .detail-list .table-box table thead tr th {
    padding: 10px 3px;
    font-size: 10px;
  }
}
article.popup-payment-specification .detail-list .table-box tbody td {
  font-size: 14px;
  padding: 15px 20px;
  text-align: center;
}
@media (max-width: 1080px) {
  article.popup-payment-specification .detail-list .table-box tbody td {
    padding: 10px 3px;
    font-size: 10px;
    line-height: 12px;
  }
}
article.popup-payment-specification .detail-list .table-box tbody td .txt-box {
  font-size: 14px;
  letter-spacing: -0.04em;
  font-weight: 500;
}
@media (max-width: 1080px) {
  article.popup-payment-specification .detail-list .table-box tbody td .txt-box {
    font-size: 10px;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    word-wrap: normal;
    width: 100%;
    max-width: 100%;
  }
}
article.popup-payment-specification .detail-list .table-box tbody td .txt-box b {
  font-weight: 600;
}
article.popup-payment-specification .detail-list .total-box {
  padding: 20px;
  margin-top: 10px;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1080px) {
  article.popup-payment-specification .detail-list .total-box {
    padding: 20px 5px;
    margin-top: 5px;
  }
}
article.popup-payment-specification .detail-list .total-box .total-label {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.04em;
}
@media (max-width: 1080px) {
  article.popup-payment-specification .detail-list .total-box .total-label {
    font-size: 12px;
  }
}
article.popup-payment-specification .detail-list .total-box .total-price {
  color: #6b3afd;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.04em;
}
@media (max-width: 1080px) {
  article.popup-payment-specification .detail-list .total-box .total-price {
    font-size: 14px;
  }
}
article.popup-payment-specification .detail-note-box {
  margin-top: 10px;
  background: #f9f9f9;
  padding: 20px;
}
@media (max-width: 1080px) {
  article.popup-payment-specification .detail-note-box {
    padding: 15px 10px;
  }
}
article.popup-payment-specification .detail-note-box .note-list .note-item {
  color: #a6a6a6;
  font-size: 14px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: -0.04em;
}
@media (max-width: 1080px) {
  article.popup-payment-specification .detail-note-box .note-list .note-item {
    font-size: 12px;
    text-indent: -5px;
    padding-left: 5px;
  }
  article.popup-payment-specification .detail-note-box .note-list .note-item + .note-item {
    margin-top: 8px;
  }
}

article.popup-upload-form .dropzone-area {
  border: 2px dashed #e8e8e8;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
article.popup-upload-form .dropzone-area .area-guide {
  padding: 30px 0;
}
article.popup-upload-form .dropzone-area .area-guide .ic-box {
  padding-bottom: 10px;
  display: flex;
  justify-content: center;
}
article.popup-upload-form .dropzone-area .area-guide .ic-box .ic-dropzone {
  background: url("../../img/common/ic_dropzone.svg") no-repeat center/cover;
  width: 60px;
  height: 60px;
}
article.popup-upload-form .dropzone-area .area-guide .main-box {
  text-align: center;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: -0.04em;
}
article.popup-upload-form .dropzone-area .area-guide .main-box .underline-txt {
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
}
article.popup-upload-form .dropzone-area .area-guide .sub-box {
  text-align: center;
  padding-top: 12px;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: -0.04em;
}
article.popup-upload-form .dropzone-area .uploaded-files {
  width: 100%;
}
article.popup-upload-form .dropzone-area .uploaded-files .dz-preview {
  padding: 30px 50px;
  width: 100%;
  display: flex;
  position: relative;
  height: auto;
  gap: 20px;
}
article.popup-upload-form .dropzone-area .uploaded-files .dz-preview .dz-success-mark,
article.popup-upload-form .dropzone-area .uploaded-files .dz-preview .dz-error-mark {
  display: none;
}
article.popup-upload-form .dropzone-area .uploaded-files .dz-preview .dz-image {
  width: 36px;
  height: 50px;
}
article.popup-upload-form .dropzone-area .uploaded-files .dz-preview .dz-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
article.popup-upload-form .dropzone-area .uploaded-files .dz-preview .dz-remove {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0;
  background: url("../../img/common/ic_file_remove.svg") no-repeat center/cover;
  width: 14px;
  height: 14px;
}
article.popup-upload-form .dropzone-area .uploaded-files .dz-preview .dz-details {
  flex: 1;
  min-width: 0;
}
article.popup-upload-form .dropzone-area .uploaded-files .dz-preview .dz-details .dz-filename {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.04em;
  text-decoration: underline;
  color: #5a5d65;
}
article.popup-upload-form .dropzone-area .uploaded-files .dz-preview .dz-details .dz-size {
  padding-top: 10px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #a6a6a6;
}
article.popup-upload-form .form-group-box {
  padding-top: 30px;
}
article.popup-upload-form .form-group-box .row {
  display: flex;
  gap: 30px;
}
article.popup-upload-form .form-group-box .row + .row {
  margin-top: 15px;
}
article.popup-upload-form .form-group-box .row .cell-box {
  display: flex;
  align-items: center;
}
article.popup-upload-form .form-group-box .row .cell-box.full {
  width: 100%;
}
article.popup-upload-form .form-group-box .row .cell-box .subject-box {
  width: 70px;
}
article.popup-upload-form .form-group-box .row .cell-box .con-box {
  flex: 1;
  min-width: 0;
}
article.popup-upload-form .form-verify-box {
  display: flex;
  gap: 10px;
  padding-top: 30px;
  border-top: 1px solid #e8e8e8;
  margin-top: 30px;
}
article.popup-upload-form .form-verify-box .verify-item .item-head-box {
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}
article.popup-upload-form .form-verify-box .verify-item .item-head-box .head-txt {
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.04em;
}
article.popup-upload-form .form-verify-box .verify-item .item-head-box .ic.ic-check-success {
  width: 14px;
  height: 10px;
  background: url("../../img/common/ic_check_success.svg") no-repeat center/cover;
}
article.popup-upload-form .form-verify-box .verify-item .item-head-box .ic.ic-check-fail {
  width: 14px;
  height: 14px;
  background: url("../../img/common/ic_check_fail.svg") no-repeat center/cover;
}
article.popup-upload-form .form-verify-box .verify-item .item-body-box article.sender-input-component .table-group {
  padding: 30px 20px 30px 30px;
  margin-top: 0;
}
article.popup-upload-form .form-verify-box .verify-item .item-body-box article.sender-input-component .table-group .table-scroll-wrap {
  padding-right: 10px;
  max-height: 164px;
}
article.popup-upload-form .form-msg-box {
  padding-top: 30px;
}
article.popup-upload-form .form-msg-box .msg-box {
  text-align: center;
}
article.popup-upload-form .form-msg-box .msg-box .msg-txt {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 24px;
}
article.popup-upload-form .form-msg-box .msg-box .msg-txt.primary {
  color: #6b3afd;
}
article.popup-upload-form .form-option-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
}
article.popup-upload-form .form-option-box .option-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
article.popup-upload-form .form-option-box .option-item .reset-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
article.popup-upload-form .form-option-box .option-item .reset-btn .ic.ic-reset {
  background: url("../../img/common/ic_clear.svg") no-repeat center/cover;
  width: 16px;
  height: 16px;
}
article.popup-upload-form .form-option-box .option-item .reset-btn .btn-txt {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #5a5d65;
}
article.popup-upload-form .form-maker-box {
  height: 200px;
  border-radius: 14px;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
article.popup-upload-form .form-maker-box .maker-box .ic-making {
  background: url("../../img/common/ic_making.svg") no-repeat center/cover;
  width: 20px;
  height: 20px;
  display: inline-block;
  animation: spin 1s linear infinite;
}
article.popup-upload-form .form-maker-box .maker-box .txt {
  color: #a6a6a6;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.04em;
  font-weight: 600;
  padding-left: 10px;
}

/*# sourceMappingURL=popup.css.map */
