@charset "UTF-8";
#modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
}

.modal-backdrop {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}
.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: 0.5;
}

.modal-open {
  overflow: hidden;
}
.modal-open .modal_wrap {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal_wrap {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
  background-color: rgba(0, 0, 0, 0.3);
  /* 모달 아이템 스타일 */
}
.modal_wrap.fade .modal_inner {
  transform: translate(0, -25%);
  transition: transform 0.3s ease-out;
}
.modal_wrap.in .modal_inner {
  transform: translate(0, 0);
}
.modal_wrap .radio_box {
  align-items: center;
  align-items: center;
  font-size: 1.8rem;
}
.modal_wrap .radio_block {
  display: flex;
  line-height: 1.2;
  height: auto;
}
.modal_wrap .textarea_basic.full {
  height: 150px;
}

.fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}

.modal_inner {
  position: relative;
  width: auto;
  max-width: 1100px;
  max-height: 90vh;
  margin: 10px auto;
}
.modal_inner.smaller {
  max-width: 460px;
}
.modal_inner.small {
  max-width: 747px;
}
.modal_inner.big {
  max-width: 1300px;
}
.modal_inner.large {
  max-width: 1300px;
}

.modal_cont {
  position: relative;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  outline: 0;
}

.modal_head {
  padding: 20px 20px;
}
.modal_head .close {
  font-size: 22px;
  margin-top: -2px;
  position: absolute;
  right: 2rem;
}

.modal-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0;
  line-height: 1.42857143;
}

.modal_body {
  position: relative;
  max-height: 70vh;
  overflow: hidden;
  padding: 1rem;
  margin: 0 1rem;
  box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.15);
}

.modal_body_scroll_use {
  overflow-y: scroll;
  overflow-x: hidden;
}

.modal_foot {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  text-align: right;
  gap: 1rem;
}
.modal_foot .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}
.modal_foot .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal_foot .btn-block + .btn-block {
  margin-left: 0;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

.modal_foot:after,
.modal_foot:before,
.modal_head:after,
.modal_head:before {
  display: table;
  content: " ";
}

.modal_foot:after,
.modal_head:after {
  clear: both;
}

.modal-header .required_txt {
  font-size: 1.4rem;
  padding: 0 1rem;
}

.modal-footer {
  gap: 1rem;
}

.modal_table {
  width: 100%;
  margin: 3rem 0 0;
  font-size: 1.6rem;
}
.modal_table .required_dot {
  position: relative;
}
.modal_table .required_dot:after {
  content: "*";
  display: inline-block;
  color: #ff4a4a;
  position: absolute;
  top: -3px;
  right: -9px;
}
.modal_table .btn_simple {
  font-size: 1.4rem;
  border: 1px solid #d1d1d1;
  padding: 0.4rem 1rem;
}
.modal_table tr {
  border: 1px solid #ededed;
}
.modal_table th {
  border: 1px solid #e1e1e1;
  background-color: #ededed;
  padding: 2rem 0;
  font-weight: bold;
}
.modal_table td {
  border: 1px solid #e1e1e1;
  padding: 2rem 0;
  text-align: center;
}
.modal_table .input_block {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
.modal_table .input_basic {
  border: 1px solid #d9d9d9;
  text-indent: 0.5rem;
  line-height: 2.6;
}
.modal_table .input_basic.full {
  width: 100%;
}
.modal_table .input_basic.full + .full {
  margin: 0.5rem 0 0;
}
.modal_table .input_basic.max {
  width: 70%;
}
.modal_table .input_basic.mid {
  width: 50%;
}
.modal_table .input_basic.min {
  width: 10%;
}
.modal_table .input_basic.tel {
  min-width: 80px;
  width: 15%;
}
.modal_table .textarea_basic {
  border: 1px solid #d9d9d9;
  text-indent: 0;
  line-height: 1.8;
  padding: 0.2rem 0.4rem;
}
.modal_table .textarea_basic.full {
  width: 100%;
}
.modal_table .textarea_basic.full + .full {
  margin: 0.5rem 0 0;
}
.modal_table .textarea_basic.max {
  width: 70%;
}
.modal_table .textarea_basic.mid {
  width: 50%;
}
.modal_table .textarea_basic.min {
  width: 10%;
}
.modal_table .textarea_basic.tel {
  min-width: 80px;
  width: 15%;
}
.modal_table .select_basic {
  border: 1px solid #d9d9d9;
  text-indent: 0.5rem;
  line-height: 2.6;
  background: url(../img/arrow-down2.png) no-repeat #fff right 1.6rem center;
}
.modal_table .select_basic.full {
  width: 100%;
}
.modal_table .select_basic.max {
  width: 70%;
}
.modal_table .select_basic.mid {
  width: 50%;
}
.modal_table .select_basic.min {
  width: 10%;
}
.modal_table.vertical th {
  border: 1px solid #e1e1e1;
  background-color: #ededed;
  padding: 2rem 0;
  font-weight: bold;
}
.modal_table.vertical td {
  border: 1px solid #e1e1e1;
  padding: 1rem;
  text-align: center;
}
.modal_table.vertical .input_basic {
  line-height: 3;
}
.modal_table.vertical .select_basic {
  line-height: 3;
}
.modal_table.horizontal th {
  min-width: 96px;
  border: 1px solid #e1e1e1;
  background-color: #ededed;
  padding: 2rem 1rem;
  font-weight: bold;
}
.modal_table.horizontal td {
  border: 1px solid #e1e1e1;
  padding: 1rem;
  text-align: left;
}
.modal_table.horizontal .input_basic {
  line-height: 3;
}
.modal_table.horizontal .select_basic {
  line-height: 3;
}
.modal_table.vertical .modal_table_tr {
  margin: 0;
  border: 1px solid #e1e1e1;
  border-bottom: 0;
}
.modal_table.vertical .modal_table_tr:last-child {
  border-bottom: 1px solid #e1e1e1;
}
.modal_table.vertical .modal_table_th {
  background-color: #ededed;
  padding: 2rem 0;
  font-weight: bold;
}
.modal_table.vertical .modal_table_td {
  padding: 1rem;
  text-align: center;
}
.modal_table.vertical .input_basic {
  line-height: 3;
}
.modal_table.vertical .select_basic {
  line-height: 3;
}
.modal_table.horizontal .modal_table_tr {
  margin: 0;
  border: 1px solid #e1e1e1;
  border-bottom: 0;
}
.modal_table.horizontal .modal_table_tr:last-child {
  border-bottom: 1px solid #e1e1e1;
}
.modal_table.horizontal .modal_table_th {
  width: 20%;
  min-width: 96px;
  border-right: 1px solid #e1e1e1;
  background-color: #ededed;
  padding: 2rem 1rem;
  font-weight: bold;
}
.modal_table.horizontal .modal_table_td {
  width: 80%;
  padding: 1rem;
  text-align: left;
}
.modal_table.horizontal .modal_table_td.full {
  width: 100%;
}
.modal_table.horizontal .input_basic {
  line-height: 3;
}
.modal_table.horizontal .select_basic {
  line-height: 3;
}

@media (max-width: 1320px) {
  .modal_inner.big, .modal_inner.large {
    width: 1140px;
    max-width: initial;
  }
  .modal_wrap .radio_box {
    gap: 1rem;
  }
}
@media (max-width: 1160px) {
  .modal_inner.big, .modal_inner.large {
    width: 1000px;
  }
  .modal_wrap .radio_box {
    gap: 1rem;
  }
  .modal_wrap .evaluation_num {
    display: none;
  }
}
@media (max-width: 1024px) {
  .modal_inner {
    width: 747px;
    max-width: initial;
    margin: 20px auto;
  }
  .modal_inner.big, .modal_inner.large {
    width: 747px;
  }
  .modal_cont {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
}
@media (max-width: 767px) {
  .modal_wrap .radio_box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .modal_wrap .radio_box > span {
    width: 100%;
  }
  .modal_wrap .radio_block {
    width: 31%;
  }
  .modal_wrap .textarea_basic.full {
    height: 100px;
  }
  .modal_inner {
    width: 90vw;
    max-height: 70vh;
    margin: 5vh auto;
  }
  .modal_inner.small {
    width: 90vw;
    max-width: initial;
  }
  .modal_inner.big, .modal_inner.large {
    width: 90vw;
  }
  .modal_body {
    max-height: 60vh;
    overflow-x: hidden;
    overflow-y: scroll;
  }
  .modal_foot .btn_item {
    min-width: 60px;
    width: 40%;
    max-width: 140px;
  }
  .modal-title {
    font-size: 1.6rem;
  }
}
@media (max-width: 480px) {
  .modal_inner.smaller {
    max-width: 90vw;
    max-width: initial;
  }
  .modal_inner.small {
    max-width: 90vw;
  }
  .modal_inner.big, .modal_inner.large {
    width: 90vw;
  }
  .modal_wrap .radio_block {
    width: 49%;
  }
}/*# sourceMappingURL=modal.css.map */