.popup_wrapper {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 250;
}
.popup_wrapper .popup {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
}
.popup_wrapper .pop_inner {
  background-color: #fff;
  min-width: 500px;
  max-width: 1200px;
}
.popup_wrapper .pop_inner .title_box {
  position: relative;
  background-color: #0178F1;
  color: #fff;
  padding: 0 56px 0 20px;
}
.popup_wrapper .pop_inner .title_box h2 {
  height: 56px;
  line-height: 56px;
}
.popup_wrapper .pop_inner .title_box .pop_close {
  position: absolute;
  top: 0;
  right: 0;
  width: 56px;
  height: 56px;
  text-indent: -99999px;
}
.popup_wrapper .pop_inner .title_box .pop_close::before, .popup_wrapper .pop_inner .title_box .pop_close::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -15px;
  background-color: #fff;
  border-radius: 50px;
}
.popup_wrapper .pop_inner .title_box .pop_close::before {
  transform: rotate(-45deg);
}
.popup_wrapper .pop_inner .title_box .pop_close::after {
  transform: rotate(45deg);
}
.popup_wrapper .pop_inner .title_box .pop_close:hover {
  transition: 0.5s;
  transform: rotate(180deg);
}
.popup_wrapper .pop_inner .pop_cont {
  position: relative;
  padding: 20px;
}
.popup_wrapper .pop_inner .pop_cont .scroll_wrap {
  max-height: 60vh;
  overflow-y: auto;
  overflow-x: hidden;
}
.popup_wrapper .pop_inner .pop_cont .title {
  display: block;
  font-size: 18px;
}
.popup_wrapper .pop_inner .pop_cont .title + * {
  margin-top: 10px;
}
.popup_wrapper .pop_inner > .area-btn {
  padding: 10px 20px;
  margin: 0;
  border-top: 1px solid #ddd;
}
.popup_wrapper .pop_inner > .area-btn button {
  padding: 10px 20px;
}
.popup_wrapper .pop_inner > .area-btn button.btn-cancel {
  background-color: #707070;
  color: #fff;
}
.popup_wrapper .pop_inner.size_small {
  width: 550px;
}
.popup_wrapper .pop_inner.size_normal {
  width: 800px;
}
.popup_wrapper .pop_inner.size_big {
  width: 1200px;
}

.pop_base {
  position: relative;
}

.popup_toggle {
  position: absolute;
  top: 0;
  right: 0;
  margin-right: 20px;
  font-size: initial;
  z-index: 20;
  min-width: 200px;
  background-color: #fff;
  text-align: left;
  border: 2px solid #0178F1;
  display: none;
}
.popup_toggle.active {
  display: block;
}
.popup_toggle .title_box {
  position: relative;
  background-color: #0178F1;
  color: #fff;
  padding: 0 56px 0 20px;
}
.popup_toggle .title_box h3 {
  height: 56px;
  line-height: 56px;
  font-size: 1.5em;
}
.popup_toggle .title_box .pop_close {
  position: absolute;
  top: 0;
  right: 0;
  width: 56px;
  height: 56px;
  text-indent: -99999px;
}
.popup_toggle .title_box .pop_close::before, .popup_toggle .title_box .pop_close::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -15px;
  background-color: #fff;
  border-radius: 50px;
}
.popup_toggle .title_box .pop_close::before {
  transform: rotate(-45deg);
}
.popup_toggle .title_box .pop_close::after {
  transform: rotate(45deg);
}
.popup_toggle .title_box .pop_close:hover {
  transition: 0.5s;
  transform: rotate(180deg);
}
.popup_toggle .pop_cont {
  position: relative;
  padding: 20px;
}
.popup_toggle > .area-btn {
  padding: 0 20px;
  margin-bottom: 20px;
}
.popup_toggle#budget_org {
  right: 100px;
  top: -90px;
  max-width: 400px;
}
.popup_toggle#budget_org::before, .popup_toggle#budget_org::after {
  content: "";
  position: absolute;
  top: 100px;
  left: 100%;
  border-style: solid;
  border-width: 10px 0 10px 15px;
  border-color: transparent #0178F1;
}
.popup_toggle#budget_org::after {
  margin-left: -4px;
  border-color: transparent #fff;
}

/* 팝업레이어 */
.area-pop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
}
.area-pop .vertical_wrap {
  display: table;
  width: 100%;
  height: 100%;
}
.area-pop .vertical_wrap .vertical_box {
  display: table-cell;
  vertical-align: middle;
}
.area-pop .pop {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding-top: 46px;
  min-width: 400px;
  min-height: 125px;
  max-width: 70%;
}
.area-pop .pop .pop_inner {
  position: static;
  height: 100%;
  min-width: 400px;
  min-height: 125px;
}
.area-pop header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 46px;
  line-height: 46px;
  background-color: #0178F1;
}
.area-pop header h2 {
  margin: 0;
  color: #fff;
  padding: 0 20px;
  font-weight: normal;
  font-size: 20px;
}
.area-pop header .close-pop {
  position: absolute;
  top: 50%;
  right: 5px;
  text-indent: -99999px;
  width: 46px;
  height: 46px;
  background: none;
  border: 0;
  margin: -23px 0 0 0;
  padding: 0;
  cursor: pointer;
  transition: 0.3s;
}
.area-pop header .close-pop:hover {
  animation: close_popup ease 0.6s;
}
.area-pop header .close-pop::before, .area-pop header .close-pop::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 1px;
  background-color: #fff;
  margin: -0.5px 0 0 -15px;
}
.area-pop header .close-pop::before {
  transform: rotate(-45deg);
}
.area-pop header .close-pop::after {
  transform: rotate(45deg);
}
.area-pop .layout header {
  position: relative;
}
.area-pop .pop-conts {
  position: relative;
  padding-bottom: 60px;
  height: 100%;
  box-sizing: border-box;
}
.area-pop .pop-conts .area-pop-search {
  margin: 20px;
}
.area-pop .pop-conts .area-pop-cont {
  display: block;
  width: 100%;
  text-align: center;
  height: 100%;
  min-height: 65px;
  padding: 20px;
  margin: 0;
  box-sizing: border-box;
}
.area-pop .pop-conts p {
  word-break: break-all;
  margin: 0;
  padding: 0;
  max-height: calc(100vh - 400px);
  overflow-y: auto;
  min-height: 25px;
}
.area-pop .pop-conts > .area-btn, .area-pop .area-pop-search > .area-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  padding: 15px 0;
  margin: 0;
  text-align: center;
  border-top: 1px solid #999;
}
.area-pop .pop-conts > .area-btn button.btn-comm, .area-pop .area-pop-search > .area-btn button.btn-comm {
  border: 0;
  min-width: 100px;
}
.area-pop .pop-conts > .area-btn button.btn-comm.btn-cancel, .area-pop .area-pop-search > .area-btn button.btn-comm.btn-cancel {
  background-color: #707070;
  color: #fff;
}
.area-pop .modal-dialog {
  min-width: auto;
  min-height: auto;
  max-height: 86vh !important;
}
.area-pop .modal-dialog .pop_inner {
  min-width: auto;
  min-height: auto;
}
.area-pop .modal-dialog .pop_contwrap {
  position: relative;
  padding: 20px;
  height: 100%;
  box-sizing: border-box;
}
.area-pop .modal-dialog .pop_contwrap.swiper {
  padding: 20px 0;
  margin: 0 40px;
  height: calc(100vh - 200px);
}
.area-pop .modal-dialog .pop_contwrap .pop-conts {
  overflow-y: auto;
  padding: 0;
}
.area-pop .modal-dialog .pop_contwrap .pop-conts p {
  height: auto;
  overflow-y: visible;
  margin: 0;
}
.area-pop .modal-dialog .pop_contwrap .pop_pp {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.area-pop .modal-dialog .control_box button {
  position: absolute;
  top: calc(50% + 23px);
  background: none;
  text-indent: -99999px;
  z-index: 20;
  border: none;
  margin: 0;
  padding: 0;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  cursor: pointer;
  transition: ease-in-out 0.15s;
}
.area-pop .modal-dialog .control_box button::before, .area-pop .modal-dialog .control_box button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  border-radius: 50px;
  background-color: #333;
  margin-left: -10px;
}
.area-pop .modal-dialog .control_box button::before {
  margin-top: -7px;
}
.area-pop .modal-dialog .control_box button::after {
  margin-top: 6.5px;
}
.area-pop .modal-dialog .control_box button.prev_btn {
  left: 8px;
}
.area-pop .modal-dialog .control_box button.prev_btn:hover {
  left: 4px;
}
.area-pop .modal-dialog .control_box button.prev_btn::before {
  transform: rotate(-45deg);
}
.area-pop .modal-dialog .control_box button.prev_btn::after {
  transform: rotate(45deg);
}
.area-pop .modal-dialog .control_box button.next_btn {
  right: 8px;
}
.area-pop .modal-dialog .control_box button.next_btn:hover {
  right: 4px;
}
.area-pop .modal-dialog .control_box button.next_btn::before {
  transform: rotate(45deg);
}
.area-pop .modal-dialog .control_box button.next_btn::after {
  transform: rotate(-45deg);
}
.area-pop .modal-dialog .paging {
  text-align: center;
  font-size: 16px;
  margin: -10px 0 10px;
}
.area-pop .modal-dialog .paging span {
  margin: 0 5px;
}
.area-pop .modal-dialog .util_box {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  line-height: 1;
  color: #fff;
}
.area-pop .modal-dialog .util_box .input_box {
  float: left;
}
.area-pop .modal-dialog .util_box .input_box label {
  position: relative;
  color: #fff;
  padding-left: 25px;
  transition: 0.15s;
  cursor: pointer;
}
.area-pop .modal-dialog .util_box .input_box label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  background-color: #fff;
  border: 2px solid #ccc;
  box-sizing: border-box;
  transition: 0.15s;
}
.area-pop .modal-dialog .util_box .input_box label:hover {
  opacity: 0.6;
}
.area-pop .modal-dialog .util_box .input_box :checked + label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  background-color: #0178F1;
}
.area-pop .modal-dialog .util_box .close-pop {
  position: relative;
  float: right;
  color: #fff;
  padding: 0 0 0 20px;
  margin: 0;
  border: 0;
  background: none;
  transition: 0.15s;
  cursor: pointer;
}
.area-pop .modal-dialog .util_box .close-pop::before, .area-pop .modal-dialog .util_box .close-pop::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 2px;
  background-color: #fff;
  transition: 0.15s;
}
.area-pop .modal-dialog .util_box .close-pop::before {
  transform: rotate(-45deg);
}
.area-pop .modal-dialog .util_box .close-pop::after {
  transform: rotate(45deg);
}
.area-pop .modal-dialog .util_box .close-pop:hover {
  opacity: 0.6;
}
.area-pop .ui-icon, .area-pop .ui-widget-content .ui-icon {
  background: none;
}
.area-pop .ui-icon::before, .area-pop .ui-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 1px;
  background-color: #0178F1;
  transform: rotate(-45deg) translate(-50%, -50%);
}
.area-pop .ui-icon::before {
  width: 10px;
  margin: -1px 0 0 2px;
}
.area-pop .ui-icon::after {
  width: 6px;
  margin: 2px 0 0 4px;
}
.area-pop .pop_cntnts .pop-conts {
  background-color: #e6e6eb;
}
.area-pop .pop_cntnts .pop-conts .vertical_wrap {
  position: relative;
  display: block;
}
.area-pop .pop_cntnts .pop-conts .vertical_wrap .vertical_box {
  display: block;
}
.popup h2 {
  font-size: 1.5em;
  color: #fff;
  margin-top:0;
}