@charset "utf-8";

/* =================================================================
 * 프로젝트: 관리자페이지 CSS
 * 파일명: modal.css
 * 작업자: 유상민 / 김준연
 * 작업일: 2021. 08. 17 ~ / 2026. 03. 11
/* =============================================================== */

.popup {
  display: none;
  position: fixed !important;
  width: 850px;
  min-height: 200px;
  max-height: calc(85vh - 60px);
  background: #fff;
  border-radius: 15px;
  border: 3px solid #000;
  box-shadow: 0px 2px 9px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.popup .popup-header {
  padding: 20px;
  font-size: 20px;
  border-bottom: 1px solid #e5e5e5;
  position: relative;
  cursor: move;
}

.popup .popup-header .b-close {
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	background: transparent;
}

.popup .popup-header .b-close i {
  font-size: 25px;
  color: #000;
}

.popup .popup-body {
  padding: 20px;
  min-height: 200px;
  max-height: calc(60vh - 62px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.popup-body .popup_tit {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
}
.popup-body .popup_tit:not(:first-child) {
  margin-top: 30px;
}
.popup-body .popup_tit:before {
  font-family: "tabler-icons";
  content: "\ea94";
  display: inline-block;
  margin-right: 5px;
}

.popup .popup-btnArea {
  padding: 20px 20px 0;
  border-top: 1px dashed #bababa;
  margin-top: 20px;
}
.popup-body .popup-btnArea .btnArea {
	margin: 0;
}

/* 팝업안에 slimscroll 쓸시 사용 */
.popup-scroll {
  overflow: auto;
  position: relative;
  height: 500px;
}

.popup-scroll:after {
  clear: both;
  content: "";
  display: block;
}

.popup-body .category_Area {
  height: 400px;
}

.popup .popup-body .section {
  margin-bottom: 20px;
}

.popup .popup-body h3 em {
  font-size: 13px;
  color: #000;
}

.popup-body .tbl-basic th,
.popup-body .tbl-basic td {
  padding: 3px 5px;
}

.popup .popup-body h3 {
  font-size: 16px;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
}

.popup .popup-body h3:before {
  content: "\ea94";
  font-family: "tabler-icons";
  display: inline-block;
  margin-right: 5px;
}

/* 검색 */
.popup-body .searchForm button.btn {
  height: 30px;
  min-height: 30px;
  min-width: 60px;
  padding: 0 10px;
}

.popup-body .searchForm .tbl-basic table td .btn.icon {
  margin-left: 0;
}


@media screen and (max-width: 991px) {
	.popup {
		width: calc(100% - 40px);
		top: 50% !important;
		left: 50% !important;
		transform: translate(-50%, -50%);
	}
	.popup .popup-header {
		font-size: 18px;
	}
	.popup .popup-body {
		max-height: calc(70vh - 62px);
		overflow-y: auto;
		padding: 20px;
		-webkit-overflow-scrolling: touch;
	}
}