@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+KR:wght@500&display=swap');

* {
	padding: 0;
	margin: 0;
	font-size: 12px;
	font-family: 'IBM Plex Sans KR', sans-serif;
	color: #444;
	box-sizing: border-box;
}
a {
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: #444;
	display: block;
}
ul,
li {
	list-style: none;
}
input,
textarea {
	outline: none;
	padding: 5px 10px;
	resize: none;
}
select {
	outline: none;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	-webkit-box-shadow: 0 0 0px 1000px #fff inset;
	box-shadow: 0 0 0px 1000px #fff inset;
	transition: background-color 5000s ease-in-out 0s;
}

input:autofill,
input:autofill:hover,
input:autofill:focus,
input:autofill:active {
	-webkit-box-shadow: 0 0 0px 1000px #fff inset;
	box-shadow: 0 0 0px 1000px #fff inset;
	transition: background-color 5000s ease-in-out 0s;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox  */
/* input[type='number'] {
  -moz-appearance: textfield;
} */

/* 정리중-start */

/* 공통 */
.flexRowBetween {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.flexRowCenter {
	display: flex;
	align-items: center;
	justify-content: center;
}
.flexRowStart {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.flexRowEnd {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.imageBox {
	background-size: cover;
	background-position: center center;
}
/* 공통 테이블 */
.tableType2 {
	width: 100%;
	margin-bottom: 50px;
	border-collapse: collapse;
}
.tableType2 th {
	flex-shrink: 0;
	width: 10%;
	text-align: center;
	background-color: #fafafa;
	border: 1px solid #dadada;
}
.tableType2 td {
	width: 20%;
	padding: 5px;
	border: 1px solid #dadada;
}
.tableType2 td input {
	width: 100%;
	height: 20px;
	border: 0;
	border-radius: 5px;
}
.tableType2 td textarea {
	width: 100%;
	height: 250px;
	border: 0;
	outline: none;
}

/* 홈 ADMI000001 */
#dashBoardWrap {
	background-color: #fafafa;
}
#dashBoard {
	display: flex;
	flex-wrap: wrap;
	width: 98%;
	max-width: 130rem;
	margin: auto;
	padding: 3rem 0;
}
#dashBoard > div {
	margin: 1rem;
	padding: 2rem;
	background-color: #fff;
	box-shadow: 0 0 0.5rem #e4e4e4;
}
#dashBoard h2 {
	width: 100%;
	font-size: 1.6rem;
	flex-grow: 1;
}
.dashBoardBoxHeader {
	margin-bottom: 2rem;
}
/* 더보기 버튼 */
#dashBoard .viewMore {
	cursor: pointer;
	padding: 0.2rem 0.5rem;
}
#dashBoard .viewMore a {
	color: #999;
	font-size: 1.2rem;
	text-decoration: underline;
	word-break: keep-all;
}
/* 저장 버튼 */
#dashBoard .saveBtn {
	width: 5rem;
	padding: 0.2rem;
	color: #fff;
	font-size: 1.2rem;
	background-color: #22408f;
	border-radius: 2rem;
}
/* 온오프 버튼 */
#dashBoard .onoffTitle {
	word-break: keep-all;
}
#dashBoard .onoffArea {
	position: relative;
	width: 3rem;
	height: 1.6rem;
	margin-left: 1rem;
	background-color: #dadada;
	border-radius: 2rem;
	transition: 0.2s;
	cursor: pointer;
}
#dashBoard .onoffArea::after {
	display: block;
	position: absolute;
	top: 50%;
	left: 0.2rem;
	width: 1.2rem;
	height: 1.2rem;
	background-color: #fff;
	border-radius: 50%;
	transform: translateY(-50%);
	transition: 0.2s;
	content: '';
}
#dashBoard .onoffArea.on {
	background-color: #22408f;
}
#dashBoard .onoffArea.on::after {
	left: 1.4rem;
}
/* 반응형 박스 크기 */
#dashBoard .grow1 {
	flex-grow: 1;
	width: calc(100% / 3 - 2rem);
	display: flex;
	flex-direction: column;
}
#dashBoard .grow2 {
	flex-grow: 2;
	width: calc(100% / 2 - 2rem);
}
@media (max-width: 1000px) {
	#dashBoard .grow1 {
		flex-grow: 1;
		width: 100%;
	}
	#dashBoard .grow2 {
		flex-grow: 2;
		width: 100%;
	}
}
@media (max-width: 700px) {
	.column700 {
		display: flex;
		flex-direction: column;
	}
	.column700 > * {
		width: 100% !important;
	}
}
/* 테이블 */
#dashBoard .tableType1 {
	width: 100%;
	border-spacing: 0;
	flex-grow: 1;
}
#dashBoard .tableType1 tr {
	min-height: 3rem;
}
#dashBoard .tableType1 tr:nth-child(even) {
	background-color: #f6f6f6;
}
#dashBoard .tableType1 tr th:nth-child(3) {
	width: calc(25% - 2.5rem);
	padding-left: 2rem;
}
#dashBoard .tableType1 th {
	width: 25%;
	padding-left: 0.5rem;
	color: #999;
	font-weight: normal;
	text-align: left;
	font-size: 1.2rem;
}
#dashBoard .tableType1 td {
	width: 25%;
	padding-right: 0.5rem;
	text-align: right;
}
#dashBoard .tableType1 td span {
	font-size: 1.8rem;
}
/* 이벤트 일정 */
#dashBoard .calendarArea {
	display: flex;
	justify-content: space-between;
}
#dashBoard .calendarArea > div:first-child {
	width: calc(60% - 1rem);
}
#dashBoard .calendarArea > div:last-child {
	width: calc(40% - 1rem);
}
.fc .fc-highlight {
	background-color: transparent;
}
.fc-theme-standard .fc-scrollgrid {
	border: 0;
}
.fc-theme-standard th {
	border: 0;
	border-bottom: 1px solid #dadada;
}
.fc-theme-standard td {
	border: 0;
}
.fc .fc-toolbar.fc-header-toolbar {
	margin-bottom: 5px;
}
.fc .fc-daygrid-day-events {
	margin: 0;
}
.fc-direction-ltr .fc-daygrid-event.fc-event-start,
.fc-direction-rtl .fc-daygrid-event.fc-event-end {
	margin: 0;
	margin-top: 2px;
}
.fc-daygrid-block-event .fc-event-time,
.fc-daygrid-block-event .fc-event-title {
	padding: 0;
	color: white;
	scale: 80%;
}
.fc .fc-daygrid-day.fc-day-today {
	background-color: #f6f6f6;
}
.fc-daygrid-event {
	border-radius: 0;
}
.fc-daygrid-event.fc-daygrid-dot-event {
	border-radius: 20px;
	background-color: transparent;
}
.fc-h-event {
	border: 0;
}
#dashBoard .fc .fc-button-primary {
	background-color: transparent;
	border: 0;
	outline: none;
}
#dashBoard .fc-daygrid-day-number {
	padding: 1px;
	text-align: center;
	color: #888;
}
#dashBoard .fc-day-sun a {
	color: #ff0000;
}
#dashBoard .fc-day-sat a {
	color: #22408f;
}
#calendarDetail {
	display: flex;
	flex-direction: column;
}
#calendarDetailList {
	overflow-y: scroll;
	-ms-overflow-style: none; /* IE and Edge */
	scrollbar-width: none; /* Firefox */
	height: 100%;
}
#calendarDetailList::-webkit-scrollbar {
	display: none; /* Chrome, Safari, Opera*/
}
#calendarDetail h3 {
	font-size: 1.75rem;
	padding-bottom: 10px;
}
.calendarDetailItem {
	padding: 15px 10px;
	background-color: #f6f6f6;
	margin-bottom: 5px;
}
.calendarDetailItem p {
	color: #999;
	overflow: hidden;
	white-space: nowrap;
	word-break: break-all;
	word-wrap: break-word;
	text-overflow: ellipsis;
}
.calendarDetailItemInfo p:first-child {
	color: white;
	background-color: #ffa443;
	padding: 0 10px;
	border-radius: 10px;
}
.calendarDetailItem h4 {
	font-size: 12px;
	margin-top: 10px;
}
.calendarDetailItemInfo {
	display: flex;
	justify-content: space-between;
}
/* 메모 */
#dashBoard .memoArea {
	display: flex;
	flex-direction: column;
}
#dashBoard .tabType1 {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
#dashBoard .tabType1 .topArea {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	margin-bottom: 10px;
}
#dashBoard .tabType1 .tabs {
	display: flex;
	align-items: center;
}
#dashBoard .tabType1 .tabs span {
	position: relative;
	height: 20px;
	padding: 0 10px;
	color: #dadada;
	font-size: 14px;
	line-height: 20px;
	font-weight: normal;
	cursor: pointer;
}
#dashBoard .tabType1 .tabs span::after {
	display: none;
	position: absolute;
	top: -2px;
	right: 5px;
	width: 4px;
	height: 4px;
	background-color: red;
	border-radius: 50%;
	content: '';
}
#dashBoard .tabType1 .tabs span.new::after {
	display: block;
}
#dashBoard .tabType1 .tabs span.on {
	font-weight: bold;
	color: #444;
}
#dashBoard .tabType1 .tabs span:first-child {
	padding-left: 0;
	border-right: 1px solid #d7d7d7;
}
#dashBoard .tabType1 .tabViews {
	position: relative;
	flex-grow: 1;
}
#dashBoard .tabType1 .tabViews > * {
	display: none;
}
#dashBoard .tabType1 .tabViews > *.on {
	display: block;
}
#dashBoard .tabType1 textarea {
	width: 100%;
	height: 100%;
	border: 0;
	outline: none;
	background-color: #f6f6f6;
}
/* 주요현황 */
#dashBoard .tabType2 .tabs {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	height: 40px;
	padding: 5px 5px 0;
	background-color: #22408f;
	border-radius: 5px 5px 0 0;
}
#dashBoard .tabType2 .tabs button {
	display: inline-block;
	text-align: center;
	width: 25%;
	height: 32px;
	color: #fff;
	font-size: 10px;
	line-height: 32px;
	background-color: rgba(255, 255, 255, 0.308);
	border: 2px solid #22408f;
	border-radius: 5px 5px 0 0;
	border-bottom: 0;
}
#dashBoard .tabType2 .tabs button.on {
	height: 35px;
	color: #22408f;
	font-weight: bold;
	background-color: #fff;
}
#dashBoard .tabType2 .tabViews {
	display: flex;
	justify-content: space-between;
	padding: 20px;
}
#dashBoard .tabType2 .tabViews table {
	width: 60%;
	margin-right: 2vh;
	text-align: center;
	border-spacing: 10px;
	flex-shrink: 0;
}
#dashBoard .tabType2 .tabViews table th {
	height: 30px;
	color: #999;
	font-size: 1.2vh;
	border-bottom: 1px solid #dadada;
}
#dashBoard .tabType2 .tabViews > div {
	display: none;
	justify-content: space-between;
	width: 100%;
}
#dashBoard .tabType2 .tabViews > div.on {
	display: flex;
	color: #577ee0;
}
#dashBoard .tabType2 .tabViews #chart_div {
	width: 40%;
	flex-shrink: 0;
	overflow: hidden;
}

/* 공통 테이블 */

/* 테이블 필터 적용 */
.sortable h2 {
	cursor: pointer;
}
.sortable h2::after {
	content: '';
	display: inline-block;
	width: 8px;
	height: 6px;
	margin-left: 3px;
	background-image: url(../images/dropdown_arrow_bk.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.sortable.on h2::after {
	transform: rotate(180deg);
}

/* 푸시 관리 MANA012001 */

/* 자동푸시 */
#pushItemArea {
	display: grid;
	align-items: center;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	row-gap: 2rem;
	column-gap: 2rem;
	padding: 2rem 0;
	border-top: 1px solid #dadada;
}
#pushItemArea li {
	position: relative;
}
@media (max-width: 1180px) {
	#pushItemArea {
		display: grid;
		align-items: center;
		grid-template-columns: 1fr 1fr;
	}
}
.editPopup {
	width: fit-content;
	position: absolute;
	right: 0;
	top: 35px;
	border: 1px solid #dadada;
	background-color: #fafafa;
	padding: 10px;
	display: none;
	flex-direction: column;
	align-items: center;
}
.editPopup.on {
	display: flex;
}
.editPopupCheckboxWrap {
	width: 100%;
	margin: 10px 0;
}
.editPopupCheckboxWrap .checkboxArea {
	display: flex;
	align-items: center;
	margin: 5px 0;
}
.editPopupCheckboxWrap .checkboxArea label {
	margin-left: 5px;
}
/* 푸시 ON OFF */
.infoSwitchArea {
	width: 50px;
	height: 20px;
	text-align: center;
}
.infoSwitch {
	position: absolute;
	/* hidden */
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}
.infoSwitch_label {
	display: block;
	position: absolute;
	width: 50px;
	height: 20px;
	border-radius: 17px;
	background-color: #fff;
	transition-duration: 0.2s;
	box-shadow: 0 0 2px #999;
}
.onfBtn {
	position: absolute;
	top: 3px;
	left: 3px;
	display: block;
	width: 14px;
	height: 14px;
	border-radius: 20px;
	background: #22408f;
	transition: 0.2s;
}
.onfText {
	display: block;
	padding: 1px 0 0 8px;
	color: #22408f;
	font-weight: 600;
}
.infoSwitch:checked + .infoSwitch_label {
	background-color: #999;
}
.infoSwitch:checked + .infoSwitch_label .onfBtn {
	left: 33px;
	box-shadow: 1px 2px 3px #00000020;
	background: #fff;
}
.infoSwitch:checked + .infoSwitch_label .onfText {
	padding: 1px 8px 0 0;
	color: #fff;
}

/* 수동 푸시 발송 MANA012002 */
.pushTable {
	display: flex;
}
.pushTable th {
	width: fit-content;
}
.pushTable td {
	padding: 5px;
}
.pushTable td label {
	min-width: 40px;
	text-align: left;
}
.pushTable td input[type='text'],
.pushTable td textarea {
	width: 100%;
	height: 100%;
	border: 1px solid #eaeaea;
	border-radius: 5px;
}
.pushTable td select {
	width: 100%;
	height: 100%;
	text-align: center;
	border: 1px solid #eaeaea;
	border-radius: 5px;
}
.textCnt {
	justify-content: flex-end !important;
}
.textCnt,
.textCnt span {
	color: #999;
	font-size: 10px;
	text-align: right;
}

/* 정리중-end */

/* 헤더 header, nav */
#topHead {
	width: 100%;
	height: 40px;
	background-color: #ffa443;
}
#topHead > div {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 98%;
	max-width: 1300px;
	height: 100%;
	margin: auto;
}
#middleHead {
	display: flex;
}
#middleHead h2 {
	display: flex;
}
#middleHead h2 * {
	width: auto;
	height: 15px;
	display: block;
	color: #fff;
	font-size: 14px;
	font-weight: lighter;
	padding: 0 8px;
	line-height: 15px;
}
#middleHead h2 #adminTeam {
	border-right: 1px solid #fff;
}
#topTitle {
	display: flex;
}
#topTitle a {
	font-size: 20px;
	color: #fff;
	display: flex;
	align-items: center;
}
.logo {
	display: block;
	width: 30px;
	height: 30px;
	margin-right: 5px;
	background-image: url(../images/logo_w.png);
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
}
#mainMenuBg {
	width: 100%;
	height: 45px;
	background-color: #22408f;
}
#mainMenu {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 98%;
	max-width: 1300px;
	height: 100%;
	margin: auto;
}
#mainMenu #mainTitle {
	width: calc(100% / 6);
	background-color: #22408f;
	color: #fff;
	text-align: center;
	line-height: 45px;
	font-size: 12px;
}
#mainMenu > ul {
	display: flex;
	justify-content: space-between;
	width: 85.5%;
}
#mainMenu > ul > li {
	position: relative;
	width: calc(100% / 5);
	height: 100%;
	text-align: center;
}
#mainMenu > ul > li > a {
	color: #fff;
	font-size: 13px;
	line-height: 45px;
}
#mainMenu .subMenu {
	width: 100%;
	background-color: #fff;
	position: absolute;
	top: 0;
	box-shadow: 0 0 3px #999;
	display: none;
	z-index: 9999;
}
#mainMenu .subMenu .subMenuTitle {
	height: 45px;
	margin: auto;
	color: #22408f;
	font-size: 13px;
	line-height: 45px;
	font-weight: bold;
	/* border-bottom: 1px solid #22408f; */
}
#mainMenu .subMenu li {
	height: 40px;
	padding: 0 5px 5px;
}
#mainMenu .subMenu li:nth-child(2) {
	margin-top: 5px;
}
#mainMenu .subMenu li a {
	font-size: 13px;
	line-height: 35px;
}
@media (max-width: 800px) {
	#mainMenu .subMenu li a {
		font-size: 1.2vh;
	}
}
#mainMenu .subMenu li a:hover {
	/* text-decoration: underline; */
	font-weight: bold;
	background-color: #fafafa;
}
#mainMenu > ul > li:hover .subMenu {
	display: block;
}
#mainMenu #logoutBtn {
	width: 70px;
	display: inline;
	text-align: right;
	line-height: 45px;
	color: #577ee0;
	margin-left: 45px;
}
#mainMenu #logoutBtn:hover {
	color: #ffa443;
}

/* 공통 스타일 */
.marTop30 {
	margin-top: 30px !important;
}
.marLeft10 {
	margin-left: 10px !important;
}
.marBottom10 {
	margin-bottom: 10px !important;
}
.marBottom0 {
	margin-bottom: 0px !important;
}
.orangeText {
	color: #ffa443;
	font-size: inherit;
}
.orangeText2 {
	color: #ffa443;
	font-size: inherit;
	font-weight: bold;
}
.textLeft {
	padding-left: 5px;
	text-align: left !important;
}
.hide {
	display: none !important;
}
.hide2 {
	display: none;
}

/* 타이틀 */
.contentsArea {
	width: 98%;
	max-width: 1300px;
	/* min-width: 900px; */
	margin: auto;
}
.contentsArea2 {
	width: 98%;
	max-width: 1100px;
	margin: auto;
}
.contentsTitle {
	display: flex;
	align-items: center;
	position: relative;
	height: 20px;
	margin-top: 50px;
	margin-bottom: 25px;
	font-size: 20px;
}
.contentsTitle::before {
	display: block;
	width: 5px;
	height: 100%;
	margin-right: 15px;
	background-color: #ffa443;
	content: '';
}
.contentsSubTitle {
	height: 30px;
	margin-top: 20px;
	font-size: 15px;
}

/* 버튼 button */
button {
	border: 0;
	cursor: pointer;
}
button:hover {
	opacity: 0.8;
}
.bgYellow {
	background-color: #ffca2927;
}
.bgGray {
	background-color: #e9e9e9;
}
.bgPurple {
	background-color: #f3e9f6;
}
.bgBlue {
	background-color: #e8eefc;
}
.bgTrans {
	background-color: transparent !important;
}
.btnType1 {
	height: 45px;
	color: #fff;
	border-radius: 5px;
}
.btnType2 {
	flex-shrink: 0;
	width: 7vw;
	color: #fff;
	border-radius: 5px;
}
.btnType2 a {
	height: 100%;
	color: #fff;
	line-height: 250%;
}
.btnType3 {
	margin-right: 3px;
	padding: 5px 15px;
	background-color: #fafafa;
	border: 1px solid #dadada;
	border-radius: 5px 5px 0 0;
	border-bottom: 0;
}
@media (max-width: 820px) {
	.btnType2 {
		width: 10vw;
	}
	.btnType3 {
		padding: 5px 5px;
	}
}
.btnType3.on {
	color: #fff;
	background-color: #ffa443;
	border: 0;
}
.btnType3.on span {
	color: #fff;
	background-color: #ffa443;
	border: 0;
}
.btnType4 {
	height: 22px;
	padding: 0 5px;
	color: #fff;
	border-radius: 5px;
}
.btnType5 {
	flex-shrink: 0.5;
	width: 40%;
	color: #fff;
	border-radius: 5px;
}
@media (max-width: 1200px) {
	.btnType5 {
		font-size: 11px;
	}
}
@media (max-width: 800px) {
	.btnType5 {
		font-size: 0.6vh;
	}
}

.btnType6 {
	height: unset !important;
	line-height: unset !important;
	margin-right: 3px;
	background-color: #fafafa;
	border: 1px solid #dadada;
	border-radius: 5px 5px 0 0;
	border-bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 3px;
}
.btnType6 p {
	height: 12px;
	font-size: 10px;
	line-height: 12px;
}
.btnType6.on {
	background-color: #ffa443;
	border: 0;
}
.btnType6.on p {
	color: #fff;
}
.btnType7 {
	background-color: transparent;
}
.asideAreaPopup p {
	font-size: 16px;
	margin-bottom: 15px;
}
.asideAreaPopup span {
	font-size: 20px;
}
.gray {
	color: #fff;
	background-color: #999;
}
.orange {
	color: #fff;
	background-color: #ffa443;
}
.blue {
	color: #fff;
	background-color: #22408f;
}
.pink {
	color: #fff;
	background-color: #e73f8d;
}
.red {
	color: rgb(255, 0, 0);
	/* background-color: #ffa443; */
}
.green {
	color: rgb(0, 0, 0);
}
.coral {
	color: #fff;
	background-color: coral;
}
.grayText {
	color: #ccc;
}

/* 전체 n개 ## n개, 수정하기/저장하기 버튼 */
.popupBtnAsideArea {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: flex-end;
	width: 100%;
	margin-bottom: 40px;
	padding: 0 5px;
}
.popupBtnAsideArea button,
.popupBtnAsideArea > div.btnType2 {
	min-width: 100px;
	margin-left: 5px;
	padding: 5px 20px;
	border-radius: 5px;
	cursor: pointer;
}
.asideArea {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	width: 100%;
	margin-bottom: 10px;
}
.asideArea > *:nth-child(2) {
	margin-top: 10px;
}
.asideArea > div {
	display: flex;
	justify-content: flex-end;
	width: 100%;
	/* margin-bottom: 10px; */
}
.asideArea button {
	min-width: 100px;
	margin-left: 5px;
	padding: 5px 20px;
	border-radius: 5px;
}
.asideArea button a {
	color: white;
}
.asideArea p {
	margin-left: 30px;
	margin-right: 10px;
	font-size: 1.8vh;
}
.asideArea span {
	font-size: 20px;
}
.asideArea span > span {
	font-size: 20px;
}
.asideArea span.orangeText {
	font-size: 2.2vh;
}
@media (max-width: 1200px) {
	.asideArea p {
		margin-left: 10px;
		margin-right: 5px;
	}
}
@media (max-width: 820px) {
	.asideArea p {
		font-size: 1.2vh;
		margin-left: 5px;
		margin-right: 5px;
	}
	.asideArea p > span {
		font-size: 1.2vh;
	}
	.asideArea span.orangeText {
		font-size: 1.5vh;
	}
}
.asideArea span.countText {
	font-size: 16px;
}
.asideArea > p.explain {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	font-size: 12px;
}
#countArea > div {
	display: flex;
	align-items: center;
}
#countArea > div > span {
	font-size: 12px;
}
#countArea > div > span .onoffArea {
	position: relative;
	width: 30px;
	height: 16px;
	margin-left: 10px;
	background-color: #dadada;
	border-radius: 20px;
	transition: 0.2s;
	cursor: pointer;
}
#countArea > div > span .onoffArea::after {
	display: block;
	position: absolute;
	top: 50%;
	left: 2px;
	width: 12px;
	height: 12px;
	background-color: #fff;
	border-radius: 50%;
	transform: translateY(-50%);
	transition: 0.2s;
	content: '';
}
#countArea > div > span .onoffArea.on {
	background-color: #ffa443;
}
#countArea > div > span .onoffArea.on::after {
	left: 16px;
}
@media (max-width: 820px) {
	#tabBoxArea .tabType2 .tabs button {
		font-size: 1.2vh;
	}
	#tabBoxArea .tabType2 .tabs button > span {
		font-size: 1.2vh;
	}
}
@media (max-width: 1200px) {
	#tabBoxArea .tabType2 .tabs button {
		font-size: 1.3vh;
	}
}

/* 검색영역(한줄, 두줄) */
.searchArea {
	display: flex;
	position: relative;
	height: 40px;
	margin-bottom: 40px;
	padding: 5px;
	background-color: #fafafa;
	border-radius: 5px;
}
.searchArea > * {
	margin-right: 5px;
}
.searchArea > *:last-child {
	margin-right: 0;
}
.searchArea h2 {
	flex-shrink: 0;
	width: 80px;
	margin-right: 0;
	text-align: center;
	line-height: 30px;
}
.bigsearchArea {
	/* display: flex; */
	margin-bottom: 40px;
	padding: 5px;
	background-color: #fafafa;
	border-radius: 5px;
}
.bigsearchArea > div {
	display: flex;
	align-items: center;
	height: 30px;
	margin-bottom: 5px;
}
.bigsearchArea > div:last-child {
	margin-bottom: 0;
}
.bigsearchArea > div > * {
	margin-right: 5px;
	height: 100%;
}
.bigsearchArea > div > *:last-child {
	margin-right: 0;
}
.bigsearchArea > div > h2 {
	flex-shrink: 0;
	width: 80px;
	margin-right: 0;
	line-height: 30px;
	text-align: center;
}
.bigsearchArea > div > h2.bigTitle {
	width: 120px;
}
.radioArea {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	/* width: 300px; */
	flex-wrap: wrap;
}
.radioArea.grow1 {
	flex-grow: 1;
}
.radioArea label {
	min-height: 2rem;
	margin: 0 10px 0 5px;
	display: flex;
	align-items: center;
}
.radioArea label header {
	min-width: 4rem;
}
.radioArea .disabled {
	opacity: 0.3;
}
.radioArea .disabled + label {
	color: #999;
}
/* @media (max-width:800px) {
	.radioArea label {
		font-size: 1.2vh;
	}
} */
.checkboxArea {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}
.checkboxArea.oneCheckbox {
	margin: 0 15px;
}
.checkboxArea.oneCheckbox label {
	margin: 0 5px;
}
.wave {
	display: inline-block;
	flex-shrink: 0;
	width: 20px;
	text-align: center;
	line-height: 30px;
}
.searchSelect {
	flex-shrink: 0;
	width: 130px;
	height: 100%;
	text-align: center;
	background-color: #fff;
	border: 1px solid #dadada;
	border-radius: 5px;
}
.searchSelect2 {
	flex-shrink: 0;
	width: 130px;
	height: 100%;
	margin-top: -20px;
	margin-bottom: 30px;
	text-align: center;
	background-color: #fff;
	border: 1px solid #dadada;
	border-radius: 5px;
}
.searchSelect3 {
	flex-shrink: 0;
	width: 80px;
	height: 100%;
	text-align: center;
	background-color: #fff;
	border: 1px solid #dadada;
	border-radius: 5px;
}
.searchInput {
	flex-grow: 1;
	flex-shrink: 1;
	width: 100%;
	height: 100%;
	background-color: #fff;
	border: 1px solid #dadada;
	border-radius: 5px;
}
.explainText {
	position: absolute;
	right: 0;
	bottom: -20px;
	color: #ffa443;
}

/* 탭 영역 */
.tabArea {
	display: flex;
}
.tabasideArea {
	display: flex;
	justify-content: flex-end;
	flex-grow: 1;
}
/* 데이터 표 영역 */
.tableArea::-webkit-scrollbar {
	display: none; /* Chrome, Safari, Opera*/
}
.tableArea table {
	width: 100%;
	/* min-height: 200px; */
	/* border: 1px solid #dadada; */
	border: none;
	border-collapse: collapse;
}
.tableArea table tr {
	height: 28px;
}
.tableArea table th {
	background-color: #fafafa;
	white-space: nowrap;
}
.tableArea table th,
.tableArea table td {
	text-align: center;
	border: 1px solid #dadada;
}
.tableArea table td p {
	display: flex;
	align-items: center;
	justify-content: center;
	/* justify-content: flex-end; */
}
.tableArea table td p img {
	height: 1.4rem;
	margin-right: 0.5rem;
}
.tableArea table button {
	width: calc(100% - 10px);
	/* min-width: 100px; */
	height: 100%;
	margin: 0 5px;
	border-radius: 5px;
}
.halfTableArea {
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
}
.halfTableArea table {
	width: 49%;
}
/* 표 가로스크롤 media query */
@media (max-width: 820px) {
	.tableArea {
		overflow-x: scroll;
	}
	.tableArea table button {
		font-size: 1vh;
	}
	.tableArea > .deliveryArea {
		width: 180%;
	}
	.tableArea > .normalDelivery {
		width: 180%;
	}
	.tableArea > .tablesorter {
		width: 150%;
	}
	.tableArea > .qnaList {
		width: 150%;
	}
	.tableArea > .oneLineTable {
		width: 150%;
	}
	.tableArea > .scrollTable {
		width: 150%;
	}
	.tableArea > .scrollTable1 {
		width: 170%;
	}
	.tableArea > .pointList {
		width: 150%;
	}
}
@media (max-width: 1200px) {
	.tableArea {
		overflow-x: scroll;
		box-sizing: border-box;
	}
	.tableArea > .deliveryArea {
		width: 120%;
		box-sizing: border-box;
	}
	.tableArea > .normalDelivery {
		width: 120%;
		box-sizing: border-box;
	}
	.tableArea > .scrollTable1 {
		width: 140%;
	}
}
.tableArea .tableBtnsArea {
	display: flex;
	justify-content: space-between;
}
.tableArea .tableBtnsArea button:first-child {
	margin-right: 0;
	white-space: nowrap;
}

/* .tableArea * {
	color: #555;
} */
.tableArea .tableBtn {
	/* font-weight: bold; */
	cursor: pointer;
	/* color: #000000; */
	/* background-color: #f6f6f6; */
	/* font-style: italic; */
	text-decoration: underline;
}
.tableArea .tableBtn:hover {
	color: #ffa443;
}
.tableArea .tableIconBtn {
	width: 1rem;
	height: 1rem;
	/* background-color:#dadada; */
	border: 1px solid #c0c0c0;
	margin-left: 0.3rem;
	padding: 0.1rem;
	border-radius: 0.2rem;
	cursor: pointer;
}
.tableArea .tableIconBtn img {
	height: 100%;
}
.tableArea span.arrow {
	display: inline-block;
	width: 8px;
	height: 6px;
	margin-left: 3px;
	background-image: url(../images/dropdown_arrow_bk.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	cursor: pointer;
}
.tableArea span.sortArrow {
	display: inline-block;
	width: 12px;
	height: 8px;
	margin-left: 1px;
	background-image: url(../images/sort_arrow.png);
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	cursor: pointer;
}
.tableArea th.on {
	text-decoration: underline;
}
.tableArea th.on span.arrow {
	transform: rotate(180deg);
}
.tableArea th.on span.sortArrow {
	transform: rotate(180deg);
}
.tableArea th {
	position: relative;
}
.tableArea th .filterArea {
	display: none;
	position: absolute;
	left: 50%;
	top: 25px;
	z-index: 10;
	min-width: 200px;
	background-color: #fff;
	box-shadow: 0 0 3px #757575;
	transform: translateX(-50%);
}
.tableArea th:first-child .filterArea {
	transform: translateX(0%);
}
.tableArea th:last-child .filterArea {
	transform: translateX(-100%);
}

/* 상자내역 상자종류 filter 영역 MEMB002010  */
.boxFilterArea {
	position: relative;
}
.boxFilter {
	display: none;
	position: absolute;
	left: 17%;
	top: 90px;
	z-index: 10;
	width: 200px;
	min-width: 200px;
	background-color: #fff;
	box-shadow: 0 0 3px #757575;
	/* transform: translateX(-50%); */
}
.boxFilter.on {
	display: block;
}
.boxFilter h3 {
	text-align: center;
	padding: 5px 10px;
	border-bottom: 1px solid #e5e5e5;
}
.boxFilter ul {
	display: flex;
	flex-wrap: wrap;
	padding: 5px 10px 0;
}
.boxFilter ul li {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	width: 50%;
	margin-bottom: 5px;
}
.boxFilter ul label {
	margin-left: 5px;
	font-size: 10px;
	font-weight: normal;
}

/* 상자내역 타입 filter 영역 */
.boxtypeFilterArea {
	position: relative;
}
.boxtypeFilter {
	display: none;
	position: absolute;
	left: 40%;
	top: 90px;
	z-index: 10;
	width: 200px;
	min-width: 200px;
	background-color: #fff;
	box-shadow: 0 0 3px #757575;
	/* transform: translateX(-50%); */
}
.boxtypeFilter.on {
	display: block;
}
.boxtypeFilter h3 {
	text-align: center;
	padding: 5px 10px;
	border-bottom: 1px solid #e5e5e5;
}
.boxtypeFilter ul {
	display: flex;
	flex-wrap: wrap;
	padding: 5px 10px 0;
}
.boxtypeFilter ul li {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	width: 50%;
	margin-bottom: 5px;
}
.boxtypeFilter ul label {
	margin-left: 5px;
	font-size: 10px;
	font-weight: normal;
}

/* 상자내역 구분 filter 영역 */
.actionFilterArea {
	position: relative;
}
.actionFilter {
	display: none;
	position: absolute;
	left: 30%;
	top: 90px;
	z-index: 10;
	width: 150px;
	min-width: 150px;
	background-color: #fff;
	box-shadow: 0 0 3px #757575;
	/* transform: translateX(-50%); */
}
.actionFilter.on {
	display: block;
}
.actionFilter h3 {
	text-align: center;
	padding: 5px 10px;
	border-bottom: 1px solid #e5e5e5;
}
.actionFilter ul {
	display: flex;
	flex-wrap: wrap;
	padding: 5px 10px 0;
}
.actionFilter ul li {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	width: 50%;
	margin-bottom: 5px;
}
.actionFilter ul label {
	margin-left: 5px;
	font-size: 10px;
	font-weight: normal;
}

/* 분해내역 분해종류 filter 영역 MEMB002012  */
.decomposeFilterArea {
	position: relative;
}
.decomposeFilter {
	display: none;
	position: absolute;
	left: 5%;
	top: 80px;
	z-index: 10;
	width: 200px;
	min-width: 200px;
	background-color: #fff;
	box-shadow: 0 0 3px #757575;
	/* transform: translateX(-50%); */
}
.decomposeFilter.on {
	display: block;
}
.decomposeFilter h3 {
	text-align: center;
	padding: 5px 10px;
	border-bottom: 1px solid #e5e5e5;
}
.decomposeFilter ul {
	display: flex;
	flex-wrap: wrap;
	padding: 5px 10px 0;
}
.decomposeFilter ul li {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	width: 50%;
	margin-bottom: 5px;
}
.decomposeFilter ul label {
	margin-left: 5px;
	font-size: 10px;
	font-weight: normal;
}
.textBgColor {
	background-color: #f3f3f3;
}

/* 배송목록 보물분류 filter 영역 MANA005001  */
.deliveryfilterArea {
	position: relative;
}
.deliveryFilter {
	display: none;
	position: absolute;
	left: 100px;
	top: 60px;
	z-index: 10;
	width: 200px;
	min-width: 200px;
	background-color: #fff;
	box-shadow: 0 0 3px #757575;
	/* transform: translateX(-50%); */
}
.deliveryFilter.on {
	display: block;
}
.deliveryFilter h3 {
	text-align: center;
	padding: 5px 10px;
	border-bottom: 1px solid #e5e5e5;
}
.deliveryFilter ul {
	display: flex;
	flex-wrap: wrap;
	padding: 5px 10px 0;
}
.deliveryFilter ul li {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	width: 50%;
	margin-bottom: 5px;
}
.deliveryFilter ul label {
	margin-left: 5px;
	font-size: 10px;
	font-weight: normal;
}
/* 배송구분 */
.bundleFilter {
	display: none;
	position: absolute;
	left: 50px;
	top: 60px;
	z-index: 10;
	width: 200px;
	min-width: 200px;
	background-color: #fff;
	box-shadow: 0 0 3px #757575;
	/* transform: translateX(-50%); */
}
.bundleFilter.on {
	display: block;
}
.bundleFilter h3 {
	text-align: center;
	padding: 5px 10px;
	border-bottom: 1px solid #e5e5e5;
}
.bundleFilter ul {
	display: flex;
	flex-wrap: wrap;
	padding: 5px 10px 0;
}
.bundleFilter ul li {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	width: 50%;
	margin-bottom: 5px;
}
.bundleFilter ul label {
	margin-left: 5px;
	font-size: 10px;
	font-weight: normal;
}
@media (max-width: 742px) {
	.bundleFilter {
		top: 75px;
	}
}

/* 보물목록 보물분류 filter 영역 PRST001001  */
.treasureFilterArea {
	position: relative;
}
.treasureFilter {
	display: none;
	position: absolute;
	left: 36%;
	top: 30px;
	z-index: 10;
	width: 200px;
	min-width: 200px;
	background-color: #fff;
	box-shadow: 0 0 3px #757575;
	/* transform: translateX(-50%); */
}
.treasureFilter.on {
	display: block;
}
.treasureFilter h3 {
	text-align: center;
	padding: 5px 10px;
	border-bottom: 1px solid #e5e5e5;
}
.treasureFilter ul {
	display: flex;
	flex-wrap: wrap;
	padding: 5px 10px 0;
}
.treasureFilter ul li {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	width: 50%;
	margin-bottom: 5px;
}
.treasureFilter ul label {
	margin-left: 5px;
	font-size: 10px;
	font-weight: normal;
}
@media (max-width: 1200px) {
	.treasureFilter {
		left: 51%;
	}
}

/* 보물목록 브랜드 filter 영역 PRST001001  */
.brandFilterArea {
	position: relative;
}
.brandFilter {
	display: none;
	position: absolute;
	left: 43%;
	top: 30px;
	z-index: 10;
	width: 200px;
	min-width: 200px;
	background-color: #fff;
	box-shadow: 0 0 3px #757575;
	/* transform: translateX(-50%); */
}
.brandFilter.on {
	display: block;
}
.brandFilter h3 {
	text-align: center;
	padding: 5px 10px;
	border-bottom: 1px solid #e5e5e5;
}
.brandFilter ul {
	display: flex;
	flex-wrap: wrap;
	padding: 5px 10px 0;
}
.brandFilter ul li {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	width: 50%;
	margin-bottom: 5px;
}
.brandFilter ul label {
	margin-left: 5px;
	font-size: 10px;
	font-weight: normal;
}
@media (max-width: 1200px) {
	.brandFilter {
		left: 62%;
	}
}

/* 유니크보물목록 보물분류 filter 영역 PRST001001  */
.uniqueTreasureFilterArea {
	position: relative;
}
.uniqueTreasureFilter {
	display: none;
	position: absolute;
	left: 35%;
	top: 30px;
	z-index: 10;
	width: 200px;
	min-width: 200px;
	background-color: #fff;
	box-shadow: 0 0 3px #757575;
	/* transform: translateX(-50%); */
}
.uniqueTreasureFilter.on {
	display: block;
}
.uniqueTreasureFilter h3 {
	text-align: center;
	padding: 5px 10px;
	border-bottom: 1px solid #e5e5e5;
}
.uniqueTreasureFilter ul {
	display: flex;
	flex-wrap: wrap;
	padding: 5px 10px 0;
}
.uniqueTreasureFilter ul li {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	width: 50%;
	margin-bottom: 5px;
}
.uniqueTreasureFilter ul label {
	margin-left: 5px;
	font-size: 10px;
	font-weight: normal;
}
@media (max-width: 1200px) {
	.uniqueTreasureFilter {
		left: 51%;
	}
}

.tableArea th .filterArea.brand {
	min-width: 160px;
}
.tableArea th .filterArea.state {
	min-width: 220px;
}
.tableArea th .filterArea.state ul li {
	width: calc(100% / 3);
}
.tableArea th .filterArea h3 {
	padding: 5px 10px;
	border-bottom: 1px solid #e5e5e5;
}
.tableArea th .filterArea ul {
	display: flex;
	flex-wrap: wrap;
	padding: 5px 10px 0;
}
.tableArea th .filterArea ul li {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	width: 50%;
	margin-bottom: 5px;
}
.tableArea th .filterArea ul label {
	margin-left: 5px;
	font-size: 10px;
	font-weight: normal;
}
.tableArea th .filterArea.singleLine ul {
	flex-direction: column;
}
.tableArea th .filterArea.singleLine ul li {
	width: unset;
}
.tableArea th .filterArea.singleLine ul li label {
	width: max-content;
	margin-right: 5px;
}
.tableArea th.on .filterArea {
	display: block;
}
.tableArea .oneLineTable th,
.tableArea .oneLineTable td {
	height: 28px;
	white-space: nowrap;
}
.tableArea th.width20 {
	width: 20%;
	max-width: 200px;
}
.tableArea th.width300 {
	width: 30%;
	max-width: 200px;
}
.fullTableArea {
	/* overflow-x: scroll; */
	overflow-y: visible;
}
.rowTable th {
	width: 120px;
}
.noBorTable {
	width: 100%;
	border-spacing: 10px;
}
.noBorTable tr {
	height: 28px;
}
.noBorTable th {
	text-align: left;
}
.noBorTable input,
.noBorTable textarea {
	flex-grow: 1;
	height: 28px;
	background-color: #fafafa;
	border: 0;
	border-radius: 5px;
}
.noBorTable textarea {
	width: 100%;
	height: 50px;
}

/* 관리자지급회수 구분 filter 영역 CHPO002001  */
.giveDrawFilterArea {
	position: relative;
}
.giveDrawFilter {
	display: none;
	position: absolute;
	left: 42%;
	top: 65px;
	z-index: 10;
	width: 200px;
	min-width: 200px;
	background-color: #fff;
	box-shadow: 0 0 3px #757575;
	/* transform: translateX(-50%); */
}
.giveDrawFilter.on {
	display: block;
}
.giveDrawFilter h3 {
	text-align: center;
	padding: 5px 10px;
	border-bottom: 1px solid #e5e5e5;
}
.giveDrawFilter ul {
	display: flex;
	flex-wrap: wrap;
	padding: 5px 10px 0;
}
.giveDrawFilter ul li {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	width: 50%;
	margin-bottom: 5px;
}
.giveDrawFilter ul label {
	margin-left: 5px;
	font-size: 10px;
	font-weight: normal;
}

/* 관리자지급회수 포인트(타입) filter 영역 CHPO002001  */
.pointGDFilterArea {
	position: relative;
}
.pointGDFilter {
	display: none;
	position: absolute;
	right: 25%;
	top: 65px;
	z-index: 10;
	width: 200px;
	min-width: 200px;
	background-color: #fff;
	box-shadow: 0 0 3px #757575;
	/* transform: translateX(-50%); */
}
.pointGDFilter.on {
	display: block;
}
.pointGDFilter h3 {
	text-align: center;
	padding: 5px 10px;
	border-bottom: 1px solid #e5e5e5;
}
.pointGDFilter ul {
	display: flex;
	flex-wrap: wrap;
	padding: 5px 10px 0;
}
.pointGDFilter ul li {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	width: 50%;
	margin-bottom: 5px;
}
.pointGDFilter ul label {
	margin-left: 5px;
	font-size: 10px;
	font-weight: normal;
}

/* 관리자지급회수 상자(종류) filter 영역 CHPO002001  */
.boxFilterArea {
	position: relative;
}
.boxFilter {
	display: none;
	position: absolute;
	left: 16%;
	top: 90px;
	z-index: 10;
	width: 200px;
	min-width: 200px;
	background-color: #fff;
	box-shadow: 0 0 3px #757575;
	/* transform: translateX(-50%); */
}
.boxFilter.on {
	display: block;
}
.boxFilter h3 {
	text-align: center;
	padding: 5px 10px;
	border-bottom: 1px solid #e5e5e5;
}
.boxFilter ul {
	display: flex;
	flex-wrap: wrap;
	padding: 5px 10px 0;
}
.boxFilter ul li {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	width: 50%;
	margin-bottom: 5px;
}
.boxFilter ul label {
	margin-left: 5px;
	font-size: 10px;
	font-weight: normal;
}

/* 관리자지급회수 상자(타입) filter 영역 CHPO002001  */
.boxGDFilterArea {
	position: relative;
}
.boxGDFilter {
	display: none;
	position: absolute;
	left: 70%;
	top: 65px;
	z-index: 10;
	width: 200px;
	min-width: 200px;
	background-color: #fff;
	box-shadow: 0 0 3px #757575;
	/* transform: translateX(-50%); */
}
.boxGDFilter.on {
	display: block;
}
.boxGDFilter h3 {
	text-align: center;
	padding: 5px 10px;
	border-bottom: 1px solid #e5e5e5;
}
.boxGDFilter ul {
	display: flex;
	flex-wrap: wrap;
	padding: 5px 10px 0;
}
.boxGDFilter ul li {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	width: 50%;
	margin-bottom: 5px;
}
.boxGDFilter ul label {
	margin-left: 5px;
	font-size: 10px;
	font-weight: normal;
}

/* 관리자지급회수 쿠폰(타입) filter 영역 CHPO002001  */
.couponFilterArea {
	position: relative;
}
.couponFilter {
	display: none;
	position: absolute;
	left: 50%;
	top: 65px;
	z-index: 10;
	width: 200px;
	min-width: 200px;
	background-color: #fff;
	box-shadow: 0 0 3px #757575;
	/* transform: translateX(-50%); */
}
.couponFilter.on {
	display: block;
}
.couponFilter h3 {
	text-align: center;
	padding: 5px 10px;
	border-bottom: 1px solid #e5e5e5;
}
.couponFilter ul {
	display: flex;
	flex-wrap: wrap;
	padding: 5px 10px 0;
}
.couponFilter ul li {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	width: 50%;
	margin-bottom: 5px;
}
.couponFilter ul label {
	margin-left: 5px;
	font-size: 10px;
	font-weight: normal;
}

/* 관리자 지급회수 CHPO002001 */
.pointTable.on {
	display: contents;
}
/* .pointTable>p span{
	margin: 0 5px;
} */
.boxTable.on {
	display: initial;
}
/* .boxTable>p span{
	margin: 0 5px;
} */

/* 관리자지급회수 >> 포인트, 상자 지급회수 CHPO002002 CHPO002003 CHPO002004 */

/* 제재이력 filter 영역 MANA009003  */
.statusFilterArea {
	position: relative;
}
.statusFilter {
	display: none;
	position: absolute;
	left: 45%;
	top: 60px;
	z-index: 10;
	width: 200px;
	min-width: 200px;
	background-color: #fff;
	box-shadow: 0 0 3px #757575;
	/* transform: translateX(-50%); */
}
.statusFilter.coupon {
	left: initial;
	right: 0;
	top: 75px;
}
.statusFilter.on {
	display: block;
}
.statusFilter h3 {
	text-align: center;
	padding: 5px 10px;
	border-bottom: 1px solid #e5e5e5;
}
.statusFilter ul {
	display: flex;
	flex-wrap: wrap;
	padding: 5px 10px 0;
}
.statusFilter ul li {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	width: 50%;
	margin-bottom: 5px;
}
.statusFilter ul label {
	margin-left: 5px;
	font-size: 10px;
	font-weight: normal;
}

/* MANA002001 MANA009001 MANA010001 MANA011001 PRST002002 PRST002003 PRST005002 */
.tableArea th.width40 {
	width: 40%;
	max-width: 500px;
}
.tableArea th.width30 {
	width: 40%;
	max-width: 120px;
	padding: 0 5px;
	overflow: hidden;
	white-space: nowrap;
	word-break: break-all;
	word-wrap: break-word;
	text-overflow: ellipsis;
}
.tableArea td.ellipsis20 {
	max-width: 120px;
	padding: 0 5px;
	overflow: hidden;
	white-space: nowrap;
	word-break: break-all;
	word-wrap: break-word;
	text-overflow: ellipsis;
}
.tableArea td.ellipsis30 {
	max-width: 160px;
	padding: 0 5px;
	overflow: hidden;
	white-space: nowrap;
	word-break: break-all;
	word-wrap: break-word;
	text-overflow: ellipsis;
}
.tableArea td.ellipsis40 {
	max-width: 350px;
	padding: 0 5px;
	overflow: hidden;
	white-space: nowrap;
	word-break: break-all;
	word-wrap: break-word;
	text-overflow: ellipsis;
}
.tableArea td.ellipsis50 {
	max-width: 500px;
	padding: 0 5px;
	overflow: hidden;
	white-space: nowrap;
	word-break: break-all;
	word-wrap: break-word;
	text-overflow: ellipsis;
}
.composeradioArea {
	display: flex;
	align-items: center;
	justify-content: center;
}
.composeCnt {
	width: 50px;
	padding: 5px;
	text-align: right;
	background-color: #f6f6f6;
	border: 0;
	border-radius: 2px;
}

/* 리뷰관리 filter 영역 MANA015001  */
/* 베스트 */
.bestFilterArea {
	position: relative;
}
.bestFilter {
	display: none;
	position: absolute;
	left: 35%;
	top: 30px;
	z-index: 10;
	width: 200px;
	min-width: 200px;
	background-color: #fff;
	box-shadow: 0 0 3px #757575;
	/* transform: translateX(-50%); */
}
.bestFilter.on {
	display: block;
}
.bestFilter h3 {
	text-align: center;
	padding: 5px 10px;
	border-bottom: 1px solid #e5e5e5;
}
.bestFilter ul {
	display: flex;
	flex-wrap: wrap;
	padding: 5px 10px 0;
}
.bestFilter ul li {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	width: 50%;
	margin-bottom: 5px;
}
.bestFilter ul label {
	margin-left: 5px;
	font-size: 10px;
	font-weight: normal;
}
/* 유형 */
.fileTypeFilterArea {
	position: relative;
}
.fileTypeFilter {
	display: none;
	position: absolute;
	right: 8%;
	top: 30px;
	z-index: 10;
	width: 200px;
	min-width: 200px;
	background-color: #fff;
	box-shadow: 0 0 3px #757575;
	/* transform: translateX(-50%); */
}
.fileTypeFilter.on {
	display: block;
}
.fileTypeFilter h3 {
	text-align: center;
	padding: 5px 10px;
	border-bottom: 1px solid #e5e5e5;
}
.fileTypeFilter ul {
	display: flex;
	flex-wrap: wrap;
	padding: 5px 10px 0;
}
.fileTypeFilter ul li {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	width: 50%;
	margin-bottom: 5px;
}
.fileTypeFilter ul label {
	margin-left: 5px;
	font-size: 10px;
	font-weight: normal;
}
/* 상태 */
.displayYnFilterArea {
	position: relative;
}
.displayYnFilter {
	display: none;
	position: absolute;
	right: 2%;
	top: 30px;
	z-index: 10;
	width: 200px;
	min-width: 200px;
	background-color: #fff;
	box-shadow: 0 0 3px #757575;
	/* transform: translateX(-50%); */
}
.displayYnFilter.on {
	display: block;
}
.displayYnFilter h3 {
	text-align: center;
	padding: 5px 10px;
	border-bottom: 1px solid #e5e5e5;
}
.displayYnFilter ul {
	display: flex;
	flex-wrap: wrap;
	padding: 5px 10px 0;
}
.displayYnFilter ul li {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	width: 50%;
	margin-bottom: 5px;
}
.displayYnFilter ul label {
	margin-left: 5px;
	font-size: 10px;
	font-weight: normal;
}
/* 포인트지급 */
.receiveYnFilterArea {
	position: relative;
}
.receiveYnFilter {
	display: none;
	position: absolute;
	right: 0;
	top: 30px;
	z-index: 10;
	width: 200px;
	min-width: 200px;
	background-color: #fff;
	box-shadow: 0 0 3px #757575;
	/* transform: translateX(-50%); */
}
.receiveYnFilter.on {
	display: block;
}
.receiveYnFilter h3 {
	text-align: center;
	padding: 5px 10px;
	border-bottom: 1px solid #e5e5e5;
}
.receiveYnFilter ul {
	display: flex;
	flex-wrap: wrap;
	padding: 5px 10px 0;
}
.receiveYnFilter ul li {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	width: 50%;
	margin-bottom: 5px;
}
.receiveYnFilter ul label {
	margin-left: 5px;
	font-size: 10px;
	font-weight: normal;
}

/* 페이지네이션 영역 */
.pageArea {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100px;
}
.pageArea > li {
	position: relative;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	overflow: hidden;
}
.pageArea > li.on a {
	color: #fff;
	background-color: #22408f;
}
.pageArea > li a {
	color: #22408f;
	text-align: center;
	font-weight: bold;
	line-height: 40px;
}
#pagePrev {
	width: 5px;
	background-image: url('../images/page_arrow.svg');
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	margin: 0 auto;
}
#pageNext {
	transform: rotate(180deg);
	width: 5px;
	background-image: url('../images/page_arrow.svg');
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	margin: 0 auto;
}
#pageEnd,
#pageFirst {
	color: red;
}
/* .pageArea > li img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 15px;
	transform: translate(-50%, -50%);
}
.pageArea.small {
	height: 50px;
}
.pageArea.small > li {
	width: 30px;
	height: 30px;
}
.pageArea.small > li a {
	line-height: 30px;
}
.pageArea.small > li img {
	width: 12px;
}
 */

/* 팝업 */
.popupArea {
	padding: 20px;
}
.popupArea .popupTitle {
	position: relative;
	height: 35px;
	margin-bottom: 40px;
	font-size: 16px;
	text-align: center;
}
.popupArea .popupTitle::after {
	display: block;
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 50px;
	height: 2px;
	background-color: #dadada;
	transform: translateX(-50%);
	content: '';
}
.popupArea .popupSubTitle {
	font-size: 14px;
	margin-bottom: 5px;
}
/* 회색배경 팝업 */
/* CHPO002002 MANA001002 MANA001003 MANA002002 MANA002003*/
.bgGrayTable {
	width: 100%;
	background-color: #fafafa;
	border-spacing: 10px;
	border-radius: 5px;
}
.bgGrayTable tr {
	height: 28px;
}
.bgGrayTable th {
	min-width: 50px;
	white-space: nowrap;
}
/* .bgGrayTable td {
	width: 80%;
} */
.bgGrayTable td.half {
	width: calc(50% - 100px);
}

.bgGrayTable.addableTable {
	margin-top: 10px;
	padding-top: 0;
}
.bgGrayTable .tableNum {
	width: 100%;
	height: 25px;
	line-height: 25px;
	background-color: #e9e9e9;
	text-align: center;
}
.bgGrayTable select,
.bgGrayTable textarea {
	width: 100%;
	flex-grow: 1;
	flex-shrink: 1;
	border: 1px solid #dadada;
	border-radius: 5px;
}
.bgGrayTable select {
	height: 28px;
}
.bgGrayTable label {
	white-space: nowrap;
}
.bgGrayTable input[type='text'],
.bgGrayTable input[type='number'],
.bgGrayTable input[type='date'],
.bgGrayTable input[type='time'],
.bgGrayTable input[type='datetime-local'] {
	/* width: 100%; */
	flex-grow: 1;
	flex-shrink: 1;
	height: 28px;
	border: 1px solid #dadada;
	border-radius: 5px;
}
.bgGrayTable input[type='text'].readonly,
.bgGrayTable input[type='number'].readonly,
.bgGrayTable input[type='date'].readonly {
	width: 100%;
	height: 28px;
	background-color: transparent;
	border: 0;
	border-radius: 5px;
}
.bgGrayTable td > div {
	display: flex;
	justify-content: space-between;
	justify-content: flex-start;
	align-items: center;
}
.bgGrayTable td > div > * {
	margin-right: 10px;
}
.bgGrayTable td > div > input[type='checkbox'],
.bgGrayTable td > div > input[type='radio'] {
	margin-right: 5px;
}
.bgGrayTable td > div > *:last-child {
	margin-right: 0;
}
.bgGrayTable td > div.radioArea {
	justify-content: flex-start;
}
.bgGrayTable td > div span {
	display: inline-block;
	white-space: nowrap;
}
.bgGrayTable td > div button {
	display: block;
	width: 60px;
	height: 28px;
	margin-left: 5px;
	border-radius: 5px;
}
.bgGrayTable.on {
	border: 1px solid rgb(233, 108, 24);
}
/* 팝업 버튼(저장,등록,수정 등등) */
.bottomBtnArea {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	height: 70px;
	margin-bottom: 20px;
}
.bottomBtnArea button {
	width: 100px;
	height: 35px;
	margin-right: 10px;
	color: #fff;
	border-radius: 5px;
}
.bottomBtnArea button:disabled {
	background-color: #999;
}
.midBtnArea {
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	height: 35px;
	margin-top: 20px;
	margin-bottom: 5px;
}
.midBtnArea button {
	width: 80px;
	height: 30px;
	margin-right: 10px;
	color: #fff;
	border-radius: 5px;
}
.bottomBtnArea button:last-child {
	margin-right: 0;
}
.positionButton {
	position: absolute;
	right: 20px;
	top: 30px;
	width: 80px;
	height: 30px;
	margin-right: 10px;
	color: #fff;
	border-radius: 5px;
}
.positionButton:disabled {
	background-color: #999;
}

.popupInfo {
	display: flex;
	align-items: center;
	padding: 5px 0;
	height: 28px;
	border-bottom: 1px solid #dadada;
}
.popupNum {
	width: 5%;
}
.popupName {
	width: 35%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.popupDate {
	flex-grow: 1;
}

/* sweetalert PRST005003 */
.swal2-actions {
	flex-direction: row-reverse;
}
.swal2-title {
	font-size: 12px;
	margin-bottom: 15px;
}
#swal2-content {
	font-size: 16px;
}
.swal2-confirm,
.swal2-cancel {
	width: 80px;
}

/* ADMI001002 ADMi001003 ADMI002001 */
.centerBox {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: fixed;
	left: 50%;
	top: 50%;
	width: 90%;
	max-width: 400px;
	transform: translate(-50%, -50%);
}
.centerBox.shadow {
	padding: 30px 0;
	border-radius: 10px;
	box-shadow: 0 0 10px #dadada;
}
.top {
	width: 98%;
	max-width: 1300px;
	margin: auto;
}

/* ADMI001001 ADMI001003 ADMI002001*/
#loginTitle {
	flex-grow: 1;
	height: 100px;
	text-align: center;
}
#loginTitle p {
	font-size: 13px;
}
#loginTitle h1 {
	font-size: 26px;
}
.loginInputArea {
	display: flex;
	align-items: center;
	height: 50px;
	margin-bottom: 15px;
	padding: 0 10px;
	border-radius: 500px;
	box-shadow: 0 0 5px #dadada;
}
.loginInputArea > p {
	display: block;
	width: 35px;
	height: 35px;
	margin: 0 10px;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
}
.loginInputArea > .email {
	background-image: url(../images/email.png);
}
.loginInputArea > .password {
	background-image: url(../images/password.png);
}
/* .loginInputArea img {
	width: 35px;
	height: 35px;
	margin: 0 10px;
} */
.loginInputArea input {
	flex-grow: 1;
	border: 0;
}
#findIdPass {
	width: unset;
	height: unset;
}
#loginBtnArea {
	display: flex;
	justify-content: space-between;
	margin-top: 10px;
}
#loginBtnArea button {
	width: calc(50% - 5px);
}
#changePwBtnaArea {
	display: flex;
	justify-content: center;
	margin-top: -50px;
}
#changePwBtnaArea button {
	width: calc(50% - 5px);
}
#findIdPass {
	display: inline;
	width: unset;
	height: unset;
	margin: 30px auto;
	color: #dadada;
	text-align: center;
}
#findIdPass:hover {
	color: #444;
}

/* PRST002002 PRST002003 PRST005002 PRST005003 */
#selectListArea {
	display: flex;
	justify-content: space-between;
}
#selectListArea > div {
	width: calc(46%);
}
#selectListArea .listTableArea {
	height: 250px;
	background-color: #fafafa;
	overflow-y: scroll;
	overflow-x: scroll;
}
#selectListArea .listTableArea .listTable {
	background-color: #fff;
}
@media (max-width: 800px) {
	#selectListArea .listTableArea .listTable {
		width: 700px;
	}
}
#selectListArea #sort {
	height: 40px;
	margin-bottom: 10px;
	line-height: 60px;
	text-align: right;
}
#selectListArea #selectListTotal {
	height: 50px;
	line-height: 50px;
	text-align: right;
}

/* PRST001003 PRST001006 PRST005002 PRST005003 */
.settingTable th {
	width: 100px;
}
.settingTable td {
	height: 28px;
}
.settingTable td > div {
	display: flex;
	align-items: center;
	padding: 0 5px;
}
.settingTable td > div input,
.settingTable td > div select,
.settingTable td > div textarea {
	flex-shrink: 1;
	width: 100%;
	height: 100%;
	background-color: #fafafa;
	border: 0;
	border-radius: 5px;
}
.settingTable td > div textarea {
	margin: 5px 0;
}
.settingTable td > div.radioArea input {
	width: unset;
	height: unset;
}
.settingTable select,
.settingTable input {
	width: 100%;
	border: 0;
	border-radius: 5px;
}
.settingTable .checkboxArea span {
	text-align: left;
	font-size: 10px;
}
.settingTable .checkboxArea input {
	width: 15px;
	height: 15px;
	margin-right: 5px;
}

/* PRST002002 PRST002003 PRST005003 PRST005002 */
#addBoxTable .dateInput {
	width: calc(50% - 10px);
}
.selectImgArea {
	padding: 5px;
}
.settingTable .selectImgArea > input {
	display: flex;
	align-items: center;
	position: relative;
	justify-content: center;
	width: 300%;
	line-height: 28px;
	background-color: #fff;
	border-radius: 5px;
}
.settingTable .selectImgArea > input::file-selector-button {
	/* height: 100%; */
	position: absolute;
	right: 0;
	top: 50%;
	color: #fff;
	background-color: #ffa443;
	border: 0;
	border-radius: 5px;
	transform: translateY(-50%);
}
#noticeFileArea input.bgGray::file-selector-button {
	background-color: #dadada;
}

/* EXCH001003, MEMB008002, PRST001004 */
#selectPresentListArea {
	display: flex;
	justify-content: space-between;
}
#selectPresentListArea > div {
	width: calc(100% - 10px);
}
#selectPresentListArea .listTableArea {
	height: 230px;
	background-color: #fafafa;
	overflow-y: scroll;
}
#selectPresentListArea .listTableArea .listTable {
	background-color: #fff;
}
#selectselectPresentListAreaListArea #sort {
	height: 40px;
	margin-bottom: 10px;
	line-height: 60px;
	text-align: right;
}
#selectPresentListArea #selectListTotal {
	height: 50px;
	line-height: 50px;
	text-align: right;
}

/* MEMB005002, MEMB005003, PRST001002 PRST001003 PRST001006 */
#imgSetArea {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
}
#imgSetArea > div {
	width: calc(20% - 20px);
}
@media (max-width: 820px) {
	#imgSetArea > div {
		width: calc(22%);
	}
}
#imgSetArea input {
	background-color: transparent;
}
#imgSetArea .imgSet {
	position: relative;
	height: 100px;
	margin: 10px 0;
	border: 1px solid #dadada;
	border-radius: 5px;
}
#imgSetArea .imgSet img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 88px;
	height: 88px;
	transform: translate(-50%, -50%);
	opacity: 0.5;
}
#imgSetArea .imgSet img .on {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 66px;
	height: 66px;
	transform: translate(-50%, -50%);
	opacity: 0.5;
}
#imgSetArea .fileBtnArea {
	display: flex;
	justify-content: space-between;
	margin-top: 15px;
}
#imgSetArea .fileBtnArea button {
	width: calc(50% - 5px);
	margin: 0;
}
@media (max-width: 820px) {
	#imgSetArea .fileBtnArea button {
		font-size: 1vh;
	}
}
.fullTextarea {
	width: 100%;
	border: 1px solid #dadada;
}

/* 추가/삭제 버튼 PRST002002 PRST002003 PRST005002 PRST005003 */
.btnArea {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0 10px;
}
.btnArea button {
	width: 47px;
	height: 47px;
	margin: 10px 0;
	background-color: transparent;
	border: 1px solid #dadada;
	border-radius: 50%;
}
.btnArea button span {
	display: block;
	height: 26px;
	color: #999;
	font-size: 10px;
}
.btnArea button span:first-child {
	font-size: 20px;
	font-weight: bold;
}
@media (max-width: 820px) {
	.btnArea button {
		width: 5vh;
		height: 5vh;
	}
	.btnArea button span {
		height: 2.5vh;
	}
	.btnArea button span:first-child {
		font-size: 1.5vh;
	}
}

/* 관리자가입 ADMI002001 */
.joinInputArea {
	display: flex;
	align-items: center;
	height: 35px;
	margin-bottom: 15px;
}
.joinInputArea h2 {
	flex-shrink: 0;
	width: 80px;
}
.joinInputArea input {
	width: 100%;
	height: 100%;
	background-color: #fafafa;
	border: 0;
	border-radius: 50px;
}
.joinInputArea span {
	margin-left: 10px;
}

/*회원상세정보 팝업 MEMB002001 */
#memberInfoArea {
	display: flex;
	justify-content: space-between;
}
#memberInfoArea > ul {
	width: calc(50% - 5px);
}
#memberInfoArea .memberInfo {
	display: flex;
	align-items: center;
	height: 30px;
}
#memberInfoArea .memberInfo h2 {
	width: 30%;
	font-size: 11px;
}
#memberInfoArea .memberInfo p {
	flex-grow: 1;
	font-size: 11px;
}
#memberInfoArea .memberInfo p span {
	font-size: 11px;
}
#memberInfoArea .memberInfo .flexContainer {
	display: flex;
	flex-direction: column;
	width: 70px;
}
#memberInfoArea .memberInfo .flexContainer p {
	display: flex;
	justify-content: space-between;
}
@media (max-width: 800px) {
	#memberInfoArea .memberInfo h2 {
		font-size: 1vh;
	}
	#memberInfoArea .memberInfo p {
		font-size: 1vh;
	}
	#memberInfoArea .memberInfo p > span {
		font-size: 1vh;
	}
}
#memberInfoArea #memberInfoDetail {
	width: 100%;
	height: 60px;
}
#memberInfoArea #memberInfoDetail .memberImg {
	position: relative;
	width: 60px;
	height: 60px;
	margin-right: 20px;
	background-size: 100%;
	background-position: center;
	border: 1px solid #dadada;
	border-radius: 50%;
	/* overflow: hidden; */
}
#memberInfoArea #memberInfoDetail .memberImg img {
	position: relative;
	z-index: 90;
	width: 60px;
	height: 60px;
	margin-right: 20px;
	background-position: center;
	background-size: 100%;
	border: 1px solid #dadada;
	border-radius: 50%;
	/* overflow: hidden; */
}
#memberInfoArea #memberInfoDetail .memberImg button {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 100;
	width: 23px;
	height: 23px;
	background-color: #fff;
	background-image: url(../images/refresh.jpg);
	background-size: 60%;
	background-position: 47% 45%;
	background-repeat: no-repeat;
	border-radius: 50%;
	box-shadow: 0 0 2px #999;
}
.goDetailBtn {
	padding: 0 10px;
	color: #fff;
	font-size: 10px;
	background-color: #757575;
	border-radius: 20px;
}
#memberInfoArea #memberInfoDetail .memberHp {
	width: 100%;
}
#memberInfoBtnArea {
	display: flex;
	justify-content: space-between;
}
#memberInfoBtnArea button {
	width: calc(20% - 5px);
	height: 25px;
	margin: 20px 0;
	color: #fff;
	border-radius: 5px;
}
#memberKeepInfo {
	display: flex;
	justify-content: space-between;
	margin: 30px 0 40px;
}
#memberKeepInfo > div {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: calc(30% - 20px);
	height: 30px;
	border-bottom: 1px solid #dadada;
}
#memberKeepInfo > div p {
	flex-grow: 1;
	text-align: center;
}
#memberKeepInfo > div > .arrowBtn {
	width: 30px;
	line-height: 30px;
	text-align: center;
}
.giveDrawBtn {
	display: block;
	width: 80px;
	text-align: center;
	line-height: 30px;
	background-color: #dfdfdf;
	border-radius: 5px;
}
#memberKeepInfo img {
	width: 10px;
	transform: rotate(180deg);
}
#tabBoxArea .tabType2 .tabs {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	height: 40px;
	padding: 5px 5px 0;
	background-color: #fff;
	border-radius: 5px 5px 0 0;
}
#tabBoxArea .tabType2 .tabs button {
	font-size: 12px;
	width: 25%;
	height: 32px;
	display: inline-block;
	background-color: rgba(255, 255, 255, 0.308);
	text-align: center;
	/* color: #fff; */
	/* border: 1px solid rgb(70, 70, 70); */
	border-bottom: 0;
	line-height: 32px;
	border-radius: 5px 5px 0 0;
}
#tabBoxArea .tabType2 .tabs button.on {
	height: 35px;
	background-color: #ffa443;
	color: #fff;
	/* font-weight: bold; */
}

/* 포인트 지급/회수, 상자 지급/회수 팝업 MEMB002004P01*/
.rowTable2 th {
	width: 80px;
}
.pointRadioArea {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	margin-left: 30px;
	padding: 10px;
}
.pointRadioArea label {
	font-size: 20px;
	margin: 0 60px 0 5px;
}
.noBorTable2 {
	width: 100%;
	border-spacing: 10px;
}
.noBorTable2 tr {
	height: 28px;
}
.noBorTable2 th {
	text-align: left;
}
.noBorTable2 textarea {
	flex-grow: 1;
	height: 28px;
	background-color: #fafafa;
	border: 0;
	border-radius: 5px;
}
.noBorTable2 textarea {
	height: 50px;
	width: 100%;
}
.noBorTable2 input {
	height: 28px;
	border: 0;
	background-color: #fafafa;
	border-radius: 5px;
	flex-grow: 1;
}
.noBorTable2 label {
	margin: 0 10px 0px 3px;
}
.noBorTable2 .graySelect {
	width: 176px;
	height: 28px;
	text-align: center;
	background-color: #e5e5e5;
	border: 0;
	border-radius: 5px;
}
.noBorTable2 .graySelect option {
	background-color: #fff;
}
.pointCheckInput {
	height: 30px;
	width: 95%;
}
.pointCheck {
	height: 30px;
	width: 100%;
}
#pointCheck {
	width: 5%;
	height: 30px;
	padding: 0 5px;
	border-radius: 0 5px 5px 0;
	background-color: #ffa443;
	color: #fff;
}
#keepPointCheck {
	width: 5%;
	height: 30px;
	padding: 0 5px;
	border-radius: 0 5px 5px 0;
	background-color: #ffa443;
	color: #fff;
}
#giveBtn {
	display: none;
	margin-right: 0;
	/* background-color: #22408F; */
}
#giveBtn.on {
	display: block;
}
#drawBtn {
	display: none;
}
#drawBtn.on {
	display: block;
}
#timeGiveBtn {
	display: none;
}
#timeGiveBtn.on {
	display: block;
}
/* .reservation{
	display: flex;
	align-items: center;
	width: 240px;
	height: 20px;
	border: 1px solid #ccc;
	border-radius: 5px;
}
.reservation>span{
	display: flex;
	align-items: center;
	width: 50%;
	height: 100%;
	padding: 0 5px;
}
.reDate{
	position: relative;
	border-right: 1px solid #ccc;
}
.reDateBtn{
	position: absolute;
	right: 5px;
	display: block;
	width: 14px;
	height: 15px;
	background-image: url(./../images/calendar.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	cursor: pointer;
}
.reDateBtn>input{
	position: absolute;
	top: 20px;
	left: -1px;
	border: 1px solid #ccc;
}
.reTime{
	position: relative;
}
.reTimeBtn{
	position: absolute;
	right: 5px;
	display: block;
	width: 15px;
	height: 14px;
	background-image: url(./../images/clock.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	cursor: pointer;
}
.reTimetn>input{
	position: absolute;
	top: 20px;
	left: -1px;
	border: 1px solid #ccc;
} */
/* 포인트 지급회수 팝업 끝 */

/* MEMB002008 */
.cid {
	width: 200px;
	font-size: 10px;
}

/* 보물일괄 미노출 PRST001004 추가,삭제 버튼 */
.btrArea {
	border-radius: 5px;
	height: 70px;
	display: flex;
	/* justify-content: center; */
	margin-left: 20px;
	align-items: flex-end;
}
.btrArea button {
	height: 35px;
	width: 100px;
	color: #fff;
	border-radius: 5px;
	margin-right: 10px;
}
.btrArea2 {
	border-radius: 5px;
	height: 70px;
	display: flex;
	justify-content: center;
	margin-left: 20px;
	align-items: flex-end;
}
.btrArea2 button {
	height: 35px;
	width: 100px;
	color: #fff;
	border-radius: 5px;
	margin-right: 10px;
}
/* 보물일괄 미노출 추가,삭제 버튼 끝*/

/* 상자추가 PRST002003 */
#boxFileArea {
	justify-content: flex-start;
	align-items: center;
}
#boxFileArea > div.boxFile {
	width: 80px;
	height: 80px;
	flex-shrink: 0;
	border: 1px solid #dadada;
	border-radius: 5px;
	position: relative;
	overflow: hidden;
}
#boxFileArea > div img {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#boxFileArea > div.inputArea {
	display: flex;
	flex-wrap: wrap;
	flex-grow: 1;
	justify-content: space-between;
}

/* PRST002002 이미지 버튼영역 */
#boxFileArea > div.inputArea div.boxButtonArea.on {
	display: flex;
	flex-wrap: wrap;
	flex-grow: 1;
	justify-content: space-between;
}
#boxFileArea > div.inputArea div.boxButtonArea {
	display: none;
}
/* PRST002002 이미지 버튼영역  끝*/
#boxFileArea input {
	position: relative;
	height: 28px;
	line-height: 28px;
	background-color: #fff;
	border-radius: 5px;
}
/* PRST002002 PRST002003  */
#boxFileArea input::file-selector-button {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	padding: 0 10px;
	color: #fff;
	background-color: #ffa443;
	border: 0;
	border-radius: 5px;
}
#boxFileArea button {
	width: 45%;
	margin-top: 10px;
	height: 28px;
	flex-grow: 1;
	flex-shrink: 1;
}

/* 이동현황(이력) PRST003003 */
.treasureInfoArea {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 20px;
}
.treasureInfoArea img {
	display: block;
	height: 100px;
}
.treasureInfoArea p {
	font-size: 16px;
	font-weight: bold;
	margin-top: 10px;
}

/* 합성회차수정 PRST005002 */
.selectPresent {
	display: flex;
	/* justify-content: flex-end; */
	align-items: center;
	margin-left: 5px;
	font-weight: bold;
}
.selectPresent input {
	border: 0;
	font-weight: bold;
}

/* 합성회차등록 PRST005003 */
#presentAreaWrap {
	margin-bottom: 40px;
	background-color: #fafafa;
	box-shadow: 0 0 5px #dadada;
}
#presentAreaHeader {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 5px 20px;
	background-color: rgb(255, 255, 255);
}
#presentAreaHeader.on {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 5px 20px;
	background-color: rgb(255, 255, 255);
}
#presentAreaHeader h2 {
	font-size: 18px;
}
#presentAreaHeader p {
	/* width: 20px; */
	height: 15px;
	font-size: 13px;
	/* background-image: url(../images/dropdown_arrow.png); */
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
#presentAreaHeader.on p {
	transform: rotate(180deg);
}
#presentArea {
	display: none;
	justify-content: space-between;
	/* padding-top: -20px; */
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
}
#presentArea.on {
	display: block;
}

/* 거래소거래목록 EXCH001001 */
#exchRankAreaWrap {
	margin-bottom: 40px;
	background-color: #fafafa;
	box-shadow: 0 0 5px #dadada;
}
#exchRankAreaHeader,
#exchRankAreaHeader.on {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 5px 20px;
	background-color: #fff;
}
#exchRankAreaHeader h2 {
	font-size: 18px;
}
#exchRankAreaHeader p {
	width: 20px;
	height: 15px;
	font-size: 15px;
	background-image: url(../images/dropdown_arrow.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
#exchRankAreaHeader.on p {
	transform: rotate(180deg);
}
#exchRankArea {
	display: none;
	justify-content: space-between;
	padding: 20px;
}
#exchRankArea.on {
	display: flex;
}
#exchRankArea > div {
	width: calc(50% - 10px);
}
#exchRankArea h2 {
	height: 30px;
	font-size: 14px;
}
@media (max-width: 820px) {
	#exchRankArea h2 > span > .radioArea {
		width: 180px;
	}
}
#exchRankArea table {
	width: 100%;
	background-color: #fff;
	border-collapse: collapse;
}
#exchRankArea table tr {
	height: 25px;
	border-bottom: 1px solid #dadada;
}
#exchRankArea table tr:first-child {
	height: 28px;
}
#exchRankArea table tr:nth-child(even) {
	background-color: #fafafa;
}
#exchRankArea table tr * {
	border-right: 1px solid #dadada;
}
#exchRankArea table tr *:last-child {
	border-right: 0;
}
#exchRankArea table th {
	background-color: #ffca2927;
	border-top: 1px solid #dadada;
}
#exchRankArea table td {
	padding: 0 5px;
	text-align: center;
}
#exchRankArea table td:last-child {
	text-align: right;
}
.refresh {
	display: inline-block;
	width: 23px;
	height: 23px;
	margin-left: 10px;
	font-size: 12px;
	background-color: #fff;
	background-image: url(../images/refresh.jpg);
	background-size: 60%;
	background-position: 47% 45%;
	background-repeat: no-repeat;
	border-radius: 50%;
	box-shadow: 0 0 2px #999;
}
.gifticonRefresh {
	background-image: url(../images/refresh.jpg);
	background-size: 40%;
	background-position: center center;
	background-repeat: no-repeat;
	cursor: pointer;
}

/*거래소보물등록 EXCH001003 */
.adminInfo {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.adminInfo p {
	margin-right: 5px;
}
.adminInfo input {
	text-align: center;
	border: 0;
	border-bottom: 1px solid #dadada;
}

/* 공지사항수정 팝업 MANA001002 */
#noticeFileArea {
	justify-content: flex-start;
	align-items: center;
}
#noticeFileArea > div {
	position: relative;
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	margin-right: 10px;
	border: 1px solid #dadada;
	border-radius: 5px;
	overflow: hidden;
}
#noticeFileArea > div img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	transform: translate(-50%, -50%);
}
#noticeFileArea > input {
	position: relative;
	background-color: #fff;
	border-radius: 5px;
}
#noticeFileArea > input::file-selector-button {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	color: #fff;
	background-color: #ffa443;
	border: 0;
	border-radius: 5px;
}
#deleteFile {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #dadada;
	border: 1px solid #dadada;
}
#deletePopup {
	width: 45px;
	height: 20px;
	color: #dadada;
	font-size: 12px;
	background-color: #fff;
	border: 1px solid #dadada;
	background-image: url(../images/deleteBtn.png);
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
}

/* 필터링 팝업 MANA009001 */
#addFileArea {
	justify-content: space-between;
}
#addFileArea > input {
	position: relative;
	height: 28px;
	line-height: 28px;
	background-color: #fff;
	border-radius: 5px;
}
#addFileArea > input::file-selector-button {
	position: absolute;
	right: -5px;
	top: 0;
	width: 12vw;
	height: 100%;
	text-align: center;
	color: #fff;
	background-color: #ffa443;
	border: 0;
	border-radius: 5px;
}

/* 자주묻는질문수정 팝업 MANA002002 */
#changeType {
	width: 20px;
	height: 25px;
	background-image: url(../images/setting.png);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	cursor: pointer;
}

/* 1:1문의 MANA003001 */
.qnaList td.w_80 {
	max-width: 80px;
	padding: 0 5px;
	overflow: hidden;
	white-space: nowrap;
	word-break: break-all;
	word-wrap: break-word;
	text-overflow: ellipsis;
}
.qnaList tr.checked {
	background-color: linen;
}
.displayYnBtnArea {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-grow: 1;
}
.displayYnBtnArea button {
	width: 50px;
	height: 20px;
	margin-left: 5px;
	border-radius: 5px;
}

/* 문의내용 팝업 MANA003003 */
#questionArea {
	width: 100%;
	margin-bottom: 50px;
	border-collapse: collapse;
}
#questionArea th {
	flex-shrink: 0;
	width: 10%;
	text-align: center;
	background-color: #fafafa;
	border: 1px solid #dadada;
}
#questionArea td {
	width: 20%;
	padding: 5px;
	border: 1px solid #dadada;
}
#questionArea td input {
	width: 100%;
	height: 20px;
	border: 0;
	border-radius: 5px;
}
#questionArea td textarea {
	width: 100%;
	height: 250px;
	border: 0;
	outline: none;
}
#questionArea .questionImg {
	display: flex;
	justify-content: space-between;
}
#questionArea .questionImg > div {
	position: relative;
	width: calc(100% / 3 - 5px);
	height: 100px;
	overflow: hidden;
}
#questionArea .questionImg > div img {
	position: absolute;
	left: 50%;
	height: 100%;
	transform: translateX(-50%);
}
#questionArea .qnaArea {
	max-height: 500px;
	padding: 10px;
	overflow-y: scroll;
}
.speechBubbleWrap {
	display: flex;
	width: 100%;
	margin-bottom: 15px;
}
.speechBubbleWrap:last-child {
	margin-bottom: 0;
}
.speechBubbleWrap.answer {
	justify-content: flex-end;
}
.answerList {
	justify-content: flex-end;
}
.regdt {
	display: flex;
	justify-content: flex-end;
	font-size: 10px;
}
.qnaArea .speechBubble {
	width: 60%;
	padding: 5px 10px 10px;
	border: 1px solid #dadada;
	border-radius: 20px;
}
#comment {
	white-space: break-spaces;
}
.comment {
	display: -webkit-box;
	width: 100%;
	/* height: 88px; */
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	/* white-space: normal; */
	/* word-break: break-all; */
	overflow: hidden;
}
.comment.more {
	height: 100%;
}
.commentMore {
	text-align: right;
	display: flex;
	justify-content: flex-end;
	cursor: pointer;
}
.qnaMore {
	display: flex;
	justify-content: flex-end;
	font-weight: bold;
	text-align: right;
	cursor: pointer;
}
.qnaMore span {
	margin-right: 5px;
}
.qnaType {
	display: flex;
	justify-content: space-between;
	margin-right: 10px;
	margin-bottom: 10px;
	color: #ffa443;
	font-size: 20px;
	font-weight: bold;
}
.QnAUpdate {
	margin-top: 5px;
	color: #dadada;
}
.qnaImgArea {
	display: flex;
	height: 40px;
	margin-top: 10px;
}
.qnaImgArea li {
	cursor: pointer;
}
.qnaImgArea2 {
	display: flex;
	margin-top: 10px;
	/* height: 40px; */
}
.qnaImgArea2 li img {
	display: flex;
	height: 40px;
	/* margin-top: 10px; */
}
.qnaImgArea2 li {
	cursor: pointer;
}
.qnaImgWrap {
	position: relative;
	width: 40px;
	height: 40px;
	margin-right: 5px;
	/* background-color: #c4c4c4; */
	background-color: #ffffff;
	overflow: hidden;
}
.qnaImg {
	position: absolute;
	top: 50%;
	width: 100%;
	transform: translateY(-50%);
}
.answerArea {
	width: 100%;
	/* padding: 10px; */
	/* border: 1px solid #dadada; */
	border-radius: 5px;
	outline: none;
}
.answerArea #answerContent {
	width: 100%;
	min-height: 150px;
}
/* .answerInput {
	width: 100%;
	height: 200px;
	border: 0;
} */
.num,
/* .nick, */
.presentNum,
.subject,
.having,
#invoice_number,
.reviewContent,
.clickable,
#preview {
	cursor: pointer;
	text-decoration: underline;
}
.download:hover {
	text-decoration: underline;
}
.gradeCode {
	cursor: pointer;
}
.num:hover {
	color: #ffa443;
}
/* .nick:hover {
	color: #ffa443;
} */
#preview:hover {
	color: #ffa443;
}
.underline {
	text-decoration: underline;
}
.highlight {
	background-color: yellow;
}
.faq {
	cursor: pointer;
}
#user_expASC {
	all: unset;
}
#idxASC,
#grade_nameASC,
#point_ASC,
#inventory_cntASC,
#join_dtASC,
#login_dtASC,
#user_expASC {
	all: unset;
	cursor: pointer;
}
.sortImage {
	margin-left: 5px;
}
#amIdx {
	border: none;
	border-right: 0px;
	border-top: 0px;
	border-left: 0px;
	border-bottom: 0px;
	/* background-color: #fafafa; */
}
#QnAList3 {
	margin-left: 10px;
	margin-top: 30px;
	margin-bottom: 30px;
}
.answerRadioArea label {
	margin-right: 10px;
}
#answerTable {
	width: 100%;
	/* margin-bottom: 50px; */
	border-collapse: collapse;
}
#answerTable th {
	width: 120px;
	flex-shrink: 0;
	text-align: center;
	background-color: #fafafa;
	border: 1px solid #dadada;
}
#answerTable th.blank {
	background-color: #fff;
	border-right: 0px;
}
#answerTable td {
	/* padding: 5px; */
	border: 1px solid #dadada;
}
#answerTable td input {
	width: 100%;
	height: 20px;
	border: 0;
	border-radius: 5px;
}
#answerTable td textarea {
	width: 100%;
	height: 250px;
	border: 0;
	outline: none;
}
#answerTable .questionImg {
	display: flex;
	justify-content: space-between;
}
#answerTable .questionImg > div {
	width: calc(100% / 3 - 5px);
	height: 100px;
	overflow: hidden;
	position: relative;
}
#answerTable .questionImg > div img {
	position: absolute;
	left: 50%;
	height: 100%;
	transform: translateX(-50%);
}
#answerTable .qnaArea {
	max-height: 500px;
	overflow-y: scroll;
	padding: 10px;
}

/* 상세화면 팝업 2007,2008,2009,2012 */
.searchArea2 {
	display: flex;
	position: relative;
	width: 100%;
	height: 30px;
	margin-bottom: 20px;
	/* background-color: #fafafa; */
	/* padding: 5px; */
	/* border-radius: 5px; */
	border-bottom: 1px solid #eaeaea;
}
.searchArea2 .answerData {
	/* margin-right: 10px; */
	/* margin-top: 8px; */
	display: none;
}
/* .searchArea2 label {
	margin-right: 25px;
	text-align: center;
	margin-top: 5px;
} */
.searchArea2 label {
	width: calc(100% / 4);
	max-width: 60px;
	margin-right: 5px;
	color: #999;
	line-height: 30px;
	text-align: center;
	background-color: #eaeaea;
	border-radius: 5px 5px 0 0;
}
.searchArea2 .answerData:checked + label {
	/* border: 1px solid #ffa443; */
	color: #fff;
	background-color: #22408f;
}
.searchArea2 > *:last-child {
	margin-right: 0;
}
.searchArea3 {
	display: flex;
	position: relative;
	width: 100%;
	height: 40px;
	margin-bottom: 20px;
	padding: 5px;
	background-color: #fafafa;
	border-radius: 5px;
}
.searchInput2 {
	flex-grow: 1;
	flex-shrink: 0.4;
	width: 100%;
	height: 100%;
	border: 1px solid #dadada;
	border-radius: 5px;
}
#mainTitle a {
	color: #fff;
}

/* PRST005001 readonly */
input.readonly:read-only {
	align-items: center;
	width: 50px;
	background-color: rgb(236, 236, 236);
}
input.readonly {
	align-items: center;
	width: 50px;
	background-color: rgb(255, 255, 255);
}
/* PRST001003 readonly  */
textarea.presentGiftData:read-only {
	width: 100%;
	border: 1px solid #dadada;
	background-color: rgb(236, 236, 236);
}
textarea.presentGiftData {
	width: 100%;
	border: 1px solid #dadada;
	background-color: rgb(255, 255, 255);
}
/* MANA003003 readonly  */
textarea.answerInput:read-only {
	width: 100%;
	height: 200px;
	border: 0;
	background-color: rgb(224, 224, 224);
}
textarea.answerInput {
	width: 100%;
	height: 200px;
	border: 0;
	background-color: rgb(255, 255, 255);
}
/* MANA001002 readonly */
input.blogYN:read-only {
	background-color: rgb(236, 236, 236);
	width: 100%;
	align-items: center;
}
input.blogYN {
	background-color: rgb(255, 255, 255);
	width: 100%;
	align-items: center;
}

/* MANA004002, MANA004003 */
#stock_table_area {
	display: flex;
	flex-shrink: 1;
	flex-wrap: wrap;
}
#tableCheck {
	width: 15px;
	margin-right: 5px;
}
#tableCheck_label {
	width: calc(100% - 20px);
	flex-grow: 1;
}
#table_html {
	flex-grow: 1;
	flex-shrink: 1;
}
#stock_table {
	width: 100%;
	flex-grow: 1;
	flex-shrink: 1;
	margin-right: 10px;
	border-collapse: collapse;
}
#stock_thead tr:first-child td {
	background-color: #e5e5e5;
}
#stock_table tr td:first-child {
	width: 50px;
	background-color: transparent;
}
#stock_table td {
	padding: 0;
	background-color: #fff;
	border: 1px solid #dadada;
}
#stock_table input {
	width: 100%;
	height: 100%;
	text-align: center;
	background-color: transparent;
	border: 0;
}
.tableIcon {
	width: 10px;
	height: 10px;
}
#tableBtnArea {
	display: block;
	width: 80px;
}
#tableBtnArea > div {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 5px;
}
#tableBtnArea span {
	width: 26px;
	height: 27px;
	margin: 0;
	color: #fff;
	font-size: 11px;
	text-align: center;
	line-height: 27px;
	background-color: #aad4a6;
	border-radius: 5px;
}
#tableBtnArea > div input {
	width: 22px;
	height: 25px;
	padding: 0;
	color: #dadada;
	font-size: 16px;
	background-color: #ffffff;
	border: 1px solid #eaeaea;
	border-right-width: 0;
	border-radius: 5px 0 0 5px;
	cursor: pointer;
}
#tableBtnArea > div input:hover {
	color: #888;
}
#tableBtnArea > div input:last-child {
	border-radius: 0 5px 5px 0;
	border-left: 0;
	border-right-width: 1px;
}

/* 팝업등록,수정 MANA013001, MANA013002 */
#chkPopupList {
	width: 50px;
	height: 28px;
	position: relative;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	background-image: url(../images/NumberedListBtn.png);
	background-color: #fff;
}
.popupList {
	display: none;
	flex-direction: column;
	position: absolute;
	top: 32px;
	right: 0;
	width: 420px;
	padding: 10px;
	background-color: #fff;
	border: 1px solid #dadada;
	border-radius: 5px;
	z-index: 10;
}
.popupList.on {
	display: flex;
}
.popupListArea:nth-child(2) {
	margin-top: 20px;
}

/* 배너관리 MANA014001 */
.bannerImg {
	width: 240px;
	height: 70px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}

/* 이벤트결과 MANA004004 */
.adminHide {
	display: none !important;
}
.tablepush {
	height: 540px;
	margin-top: 10px;
	overflow-y: scroll;
}
.tablepush h1 {
	height: 25px;
}
.tablepush h2 {
	flex-shrink: 0;
	margin-right: 10px;
}
.eventWinnerTable {
	width: 100%;
	background-color: #fafafa;
	border-spacing: 10px;
	border-radius: 5px;
}
.eventWinnerTable tr {
	height: 28px;
}
.eventWinnerTable th {
	width: 100px;
}
.eventWinnerTable .eventRewardArea {
	display: flex;
	align-items: flex-start;
	flex-direction: row;
	flex-wrap: wrap;
	padding: 10px 10px 5px;
	background-color: #fff;
	border: 1px solid #dadada;
	border-radius: 5px;
}
.eventWinnerTable .eventRewardArea > div {
	display: flex;
	align-items: center;
	width: 49%;
	margin-bottom: 5px;
	padding: 0 5px;
}
.eventWinnerTable .eventRewardArea .rewardTypeCheckbox {
	width: 20px;
	height: 20px;
	margin-right: 10px;
	background-image: url(../images/checkbox1.png);
	background-position: center;
	background-size: cover;
	border-radius: 50%;
	transition: 0.1s;
	appearance: none;
	cursor: pointer;
}
.eventWinnerTable .eventRewardArea .rewardTypeCheckbox:checked {
	background-image: url(../images/checkbox2.png);
}
.eventWinnerTable .eventRewardArea label {
	flex-shrink: 0;
	width: 100px;
	font-weight: bold;
}
.eventWinnerTable .eventRewardArea input[type='text'] {
	flex-grow: 1;
	flex-shrink: 1;
	width: 100%;
	height: 28px;
	text-align: right;
	border: 1px solid #dadada;
	border-radius: 5px;
}
.eventWinnerTable .textType {
	width: 100%;
	height: 28px;
	border: 1px solid #dadada;
	border-radius: 5px;
}
.eventWinnerTable td > div {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.eventWinnerTable td > div.radioArea {
	justify-content: flex-start;
}
.eventWinnerTable td > div span {
	display: inline-block;
	margin-left: 5px;
}
.eventWinnerTable td > div button {
	display: block;
	width: 60px;
	height: 28px;
	margin-left: 5px;
	border-radius: 5px;
}
.eventWinnerTable.added {
	margin-top: 15px;
}
.eventWinnerTable.added .eventRewardArea input[type='text'] {
	border: 0;
	background-color: #fff;
}
.eventWinnerTable.added .eventRewardArea {
	background-color: transparent;
	border: 0;
}
.eventWinnerTable.added .textType {
	border: 0;
}
.tableBtnsArea button:disabled {
	background-color: rgb(233, 108, 24);
}

/* 일반배송 MANA005001 */
.numInfo {
	display: block;
	font-size: 10px;
}
.normalDelivery tr td {
	font-size: 11px;
}
/* 배송번호 */
.tableArea .normalDelivery tr th:nth-child(1) {
	width: 5%;
}
/* 배송구분, 보물분류 */
.tableArea .normalDelivery tr th:nth-child(2),
.tableArea .normalDelivery tr th:nth-child(3) {
	width: 6%;
}
/* 회원정보 */
.tableArea .normalDelivery tr th:nth-child(5) {
	width: 7%;
}
/* 보물정보, 주소 */
.tableArea .normalDelivery tr th:nth-child(4),
.tableArea .normalDelivery tr th:nth-child(6) {
	width: 14%;
}
/* 연락처 */
.tableArea .normalDelivery tr th:nth-child(7) {
	width: 7%;
}
/* 배송상태 */
.tableArea .normalDelivery tr th:nth-child(8) {
	width: 5%;
}
/* 배송요청일, 배송확인일 */
.tableArea .normalDelivery tr th:nth-child(9),
.tableArea .normalDelivery tr th:nth-child(10) {
	width: 9%;
}
/* 구입비, 배송비, 배송정보 */
.tableArea .normalDelivery tr th:nth-child(11),
.tableArea .normalDelivery tr th:nth-child(12) {
	width: 5%;
}

.tableArea .normalDelivery tr th:nth-child(13),
.tableArea .normalDelivery tr th:nth-child(14) {
	width: 5%;
}

/* 기프티콘 발송 */
.numInfo {
	display: block;
	font-size: 10px;
}
.deliveryArea tr td {
	font-size: 11px;
}

.tableArea .deliveryArea tr th:nth-child(1) {
	width: 6%;
}

.tableArea .deliveryArea tr th:nth-child(2),
.tableArea .deliveryArea tr th:nth-child(7) {
	width: 4%;
}

.tableArea .deliveryArea tr th:nth-child(3) {
	width: 8%;
}

.tableArea .deliveryArea tr th:nth-child(4),
.tableArea .deliveryArea tr th:nth-child(5) {
	width: 15%;
}

.tableArea .deliveryArea tr th:nth-child(6) {
	width: 8%;
}

.tableArea .deliveryArea tr th:nth-child(8),
.tableArea .deliveryArea tr th:nth-child(9) {
	width: 9%;
}

.tableArea .deliveryArea tr th:nth-child(10),
.tableArea .deliveryArea tr th:nth-child(11),
.tableArea .deliveryArea tr th:nth-child(12),
.tableArea .deliveryArea tr th:nth-child(13) {
	width: 5%;
}

.tableArea .deliveryArea.gifticon tr th:nth-child(5),
.tableArea .deliveryArea.gifticon tr th:nth-child(14) {
	width: 5%;
}

@media (max-width: 1024px) {
	.tableArea .deliveryArea tr th:nth-child(1) {
		width: 7%;
	}
}
@media (max-width: 768px) {
	.tableArea .deliveryArea tr th:nth-child(1) {
		width: 8%;
	}
	.tableArea .deliveryArea tr th:nth-child(2),
	.tableArea .deliveryArea tr th:nth-child(7) {
		width: 6%;
	}
	.tableArea .deliveryArea tr th:nth-child(8),
	.tableArea .deliveryArea tr th:nth-child(9) {
		width: 8%;
	}
}

/* 배송상세보기 MANA005003 취소 */
.deliveryCancel {
	display: inline-block;
	margin-bottom: 3px;
	padding: 0 10px;
	border: 1px solid lightgray;
	border-radius: 5px;
}
.deliveryCancelRadio:checked + label {
	color: red;
	border: 1px solid red;
}

/* MEMB003001 new표시 */
#names-q1 tr .subject .answerNewType span {
	position: relative;
}
#names-q1 tr .subject .answerNewType span::after {
	display: none;
	position: absolute;
	top: 2px;
	right: -23px;
	color: red;
	font-size: 8px;
	transform: scale(0.8);
	content: 'NEW';
}
#names-q1 tr .subject .answerNewType span.new::after {
	display: block;
}
#names-q1 tr .subject .answerNewType span.on {
	color: #444;
	font-weight: bold;
}

/* ajax 호출시 로딩이미지 시작*/
#loadingImg {
	display: none;
	position: absolute; /* */
	left: 50%;
	top: 50%;
	z-index: 8000;
	width: 10%;
	height: 30%;
	transform: translate(-50%, -50%);
}
/* ajax 호출시 로딩이미지 끝*/

/* 푸시관리 MANA012001 */
.pushTypeBtn.on {
	display: block;
}
.pushTypeBtn {
	display: none;
}
.manualPush.on {
	display: block;
}
.manualPush {
	display: none;
}
.autoPush.on {
	display: block;
}
.autoPush {
	display: none;
}
#PUSH #selectPageArea {
	display: flex;
	flex-grow: 1;
	justify-content: flex-end;
}
#PUSH #selectPageArea input {
	display: none;
}
#PUSH #selectPageArea input + label {
	font-size: 14px;
	padding: 5px 30px;
	color: #dadada;
	/* border: 1px solid #eaeaea; */
	border-radius: 15px;
	transition: 0.1s;
	cursor: pointer;
}
#PUSH #selectPageArea input:checked + label {
	color: #22408f;
	/* border: 1px solid #22408f; */
	position: relative;
	box-shadow: 0 0 3px #999;
}
#PUSH .searchInput {
	width: unset;
}
#PUSH .standard {
	display: none;
}
#PUSH .standard + label {
	margin: 0 2px 0 0;
	padding: 0 10px;
	height: 100%;
	line-height: 28px;
	background-color: #fff;
	border: 1px solid #eaeaea;
	border-radius: 5px;
}
#PUSH .standard:checked + label {
	color: #fff;
	border: 1px solid #999;
	background-color: #999;
}
@media (max-width: 800px) {
	#PUSH .standard + label {
		font-size: 1vh;
		padding: 0 0;
	}
	#PUSH .standard:checked + label {
		font-size: 1vh;
		padding: 0 0;
	}
}
#PUSH .pushTable {
	display: none;
}
#PUSH .pushTable.on {
	display: table;
}

.pushTabArea {
	align-items: center;
	justify-content: space-between;
}
.pushButtonArea {
	display: flex;
}
.tableRightText {
	text-align: end;
	margin-bottom: 1rem;
}

/* 푸쉬 미리보기 MANA012002*/
#pushPreview {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: column;
	flex-shrink: 0;
	width: 40%;
	padding: 0 10px 10px;
	background-color: rgba(243, 144, 1, 0.1);
	/* border: 1px solid #dadada; */
}
#previewDisplay {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 350px;
	padding: 10px 0;
	border-radius: 10px;
	transition: 0.2s;
}
.previewArea {
	width: 90%;
	max-width: 324px;
	min-width: 270px;
	max-height: 160px;
	padding: 12px 17px;
	background-color: rgba(255, 255, 255, 0.5);
	/* background: linear-gradient(to right, rgba(50,50,50,0.5), #fff, rgba(50,50,50,0.5)); */
	border-radius: 20px;
	overflow-y: scroll;
	-ms-overflow-style: none;
	scrollbar-width: none;
	box-shadow: 0 0 5px #dadada;
	margin: 10px 0;
	display: flex;
}
.previewArea::-webkit-scrollbar {
	display: none;
}
.previewWrap {
	flex-grow: 1;
	flex-shrink: 1;
	width: 10%;
	align-items: flex-start;
}
.previewArea p {
	display: flex;
	align-items: center;
	width: 100%;
}
.previewArea span {
	letter-spacing: 0.2px;
}
.previewLogo {
	display: inline-block;
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	border-radius: 15px;
	margin-right: 9px;
	margin-top: 4px;
	background-color: #fff;
	background-image: url(../images/logo_w.png);
	background-size: 50%;
	background-position: center center;
	background-repeat: no-repeat;
}
.previewName {
	display: none;
	font-size: 9px;
	margin-right: 6px;
}
.previewTitle {
	display: block;
	flex-shrink: 1;
	margin-right: 5px;
	font-size: 12px;
	font-weight: 600;
	white-space: nowrap;
	word-break: break-all;
	word-wrap: break-word;
	text-overflow: ellipsis;
	overflow: hidden;
}
.previewInfoIos {
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
.previewInfoIos .previewDate,
.previewInfoIos .previewImage {
	display: none;
}
.ios .previewImage {
	display: none;
}
.ios .previewWrap .previewDate {
	display: none;
}
.ios .previewInfoIos .previewDate,
.ios .previewInfoIos .previewImage {
	display: block;
}
.previewImageExtend {
	display: none;
}
.extend .previewImage {
	display: none;
}
.extend .previewImageExtend {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	margin-top: 1rem;
}

/* 정보성 푸시 알림 */
.pushItemBox {
	height: 100%;
	border: 1px solid #f1f1f1;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	position: relative;
}
.pushItemTitle {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 15px;
}
.pushItemTitle p {
	font-size: 15px;
	font-weight: 600;
}
.pushItemTitle button {
	width: 15px;
	height: 15px;
	background-color: transparent;
	background-image: url(../images/dots.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: right;
}
.autoPushPreview {
	align-items: center;
	width: 100%;
	padding: 0 10px 10px;
	background-color: rgba(34, 64, 143, 0.1);
	border-radius: 0 0 10px 10px;
	flex-grow: 1;
}
.autoPreviewPlatform {
	display: flex;
	/* width: 120px; */
	/* height: 22px; */
	justify-content: space-between;
	align-items: center;
	padding-left: 15px;
}
.autoPreviewDevice {
	width: 100px;
	display: flex;
	justify-content: space-between;
}
.autoPreviewAndroid::after {
	display: block;
	position: absolute;
	left: 100%;
	bottom: 0;
	width: 100%;
	height: 2px;
	content: '';
	background-color: #757575;
	border-radius: 2px;
	transition: 0.3s;
}
.autoPreviewDevice span {
	position: relative;
	width: 50%;
	color: #a0a0a0;
	line-height: 30px;
	text-align: center;
	background-color: transparent;
	border: 0;
	transition: 0.3s;
	outline: none;
	cursor: pointer;
}
.autoPreviewDevice span.on {
	color: #555;
	font-weight: 600;
}
.autoPreviewAndroid.on::after {
	left: 0;
}
.autoPreviewDisplay {
	min-height: 15rem;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-grow: 1;
	padding: 10px 0;
	border-radius: 10px;
	transition: 0.2s;
}
.previewDate {
	flex-grow: 1;
	flex-shrink: 0;
	margin-right: 5px;
	color: #555;
	font-size: 9px;
}
.previewImage {
	width: 30px;
	height: 30px;
	margin: 4px 6px;
	border-radius: 6px;
	flex-shrink: 0;
	/* background-color: #dadada; */
}
.previewArrow {
	flex-shrink: 0;
	width: 9px;
	height: 18px;
	background-image: url(../images/arrow.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.previewContents {
	display: block;
	font-weight: 200;
	word-break: break-all;
	word-wrap: break-word;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: pre-line;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.previewTitleExtend {
	display: none;
}

/* 안드로이드 확장 */
.previewArea.extend .previewName {
	display: block;
}
.previewArea.extend .previewTitle {
	display: none;
}
.previewArea.extend .previewTitleExtend {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	font-size: 12px;
	font-weight: 600;
	word-break: break-all;
	word-wrap: break-word;
	text-overflow: ellipsis;
	overflow: hidden;
}
.previewArea.extend .previewArrow {
	transform: rotate(180deg);
}
/* ios */
.previewArea.ios {
	display: flex;
	padding: 8px;
	align-items: center;
	border-radius: 15px;
}
.previewArea.ios .previewArrow {
	display: none;
}
.previewArea.ios .previewLogo {
	border-radius: 7px;
	margin-top: 0;
	background-size: 90%;
}
.previewArea.ios .previewTitle {
	margin-right: 15px;
}
.previewArea.ios .previewContents,
.previewArea.extend .previewContents {
	width: 100%;
	padding-right: 10px;
	-webkit-line-clamp: 4;
}
.previewArea.ios p {
	justify-content: space-between;
}
.previewArea.ios span {
	font-size: 11.4px;
}
.previewArea.ios .previewDate {
	flex-grow: 0;
	font-size: 10px;
}
#pushCnt {
	width: 100%;
	text-align: right;
}
#pushCnt p {
	color: #555;
	font-size: 10px;
}

/* MANA002001P01 */
.questionText {
	background-color: transparent;
	border: 0 !important;
}
.updownArea {
	display: flex;
	justify-content: space-between;
	width: 100px;
	height: 100%;
}
.updownBtn {
	width: 50px;
	height: 100%;
	padding: 0;
	margin: 0;
	text-align: center;
	background-color: transparent;
	background-size: 30%;
	background-position: center;
	background-repeat: no-repeat;
	border: 0 !important;
	cursor: pointer;
}
.updownBtn:hover {
	opacity: 0.3;
}
#up {
	background-image: url(../images/arrow_up.png);
}
#down {
	background-image: url(../images/arrow_down.png);
}
#mark.clicked {
	background-color: #fff4e9;
}

/*이벤트 MANA004001 */
.state {
	padding: 0 10px;
}
.state.prev {
	color: #888;
}
.state.present {
	color: #ffa443;
}
.state.future {
	color: green;
}

/* 안드로이드 미리보기 */
.previewContainer {
	position: relative;
	/* width: 261px;
    height: 573px; */
	width: 300px;
	height: 580px;
	margin-left: 60px;
	margin-top: 30px;
	/* margin: auto; */
	border: 16px rgb(75, 75, 75) solid;
	border-top-width: 60px;
	border-bottom-width: 60px;
	border-radius: 36px;
}

.previewContainer:before {
	display: block;
	position: absolute;
	top: -30px;
	left: 50%;
	width: 60px;
	height: 5px;
	background: #333;
	border-radius: 10px;
	transform: translate(-50%, -50%);
	content: '';
}

.previewContainer:after {
	display: block;
	position: absolute;
	left: 50%;
	bottom: -65px;
	width: 35px;
	height: 35px;
	background: #333;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	content: '';
}

.previewContainer .previewContent {
	width: 300px;
	height: 580px;
	background: white;
	/* width: 261px;
    height: 573px; */
}

/* 업로드한 이미지 미리보기 preview2 */
#previewImgArea {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
}

#previewImgArea > div {
	width: calc(20% - 20px);
}

#previewImgArea input {
	background-color: transparent;
}

/* MEMB003005 */
.tableGradeArea table {
	width: 100%;
	margin-left: 10px;
	border-collapse: collapse;
	border: none;
}
.tableGradeArea table thead tr {
	height: 40px;
}
.tableGradeArea table tbody tr {
	height: 80px;
}
.tableGradeArea table th {
	background-color: #fafafa;
}
.tableGradeArea table th,
.tableGradeArea table td {
	/* border: 1px solid #dadada; */
	text-align: center;
}
.gradeColor {
	color: #ffa443;
}

/* ADMI001002 */
#resetIdTitle {
	height: 50px;
	font-size: 20px;
	text-align: center;
}
#resetIdText {
	text-align: center;
	margin: 20px 0;
}
#resetIdInputArea {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 30px;
}
#resetIdInputArea input {
	text-align: center;
	font-size: 13px;
	margin-right: 10px;
	border: 0;
	border-bottom: 1px solid #444;
}
#resetIdBtnArea {
	display: flex;
	justify-content: center;
}
#resetIdBtnArea button {
	width: 50%;
}

/* MEMB002004 */
.keepPointInfoTitle {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}
.keepPointInfoTitle h2 {
	flex-grow: 1;
	font-size: 15px;
}
.keepPointInfoTitle input {
	height: 22px;
	width: auto;
	background-color: #fafafa;
	border: 0;
	border-radius: 5px 0 0 5px;
}
.keepPointInfoTitle button {
	height: 22px;
	padding: 0 5px;
	color: #fff;
	background-color: #999;
	border-radius: 0 5px 5px 0;
}

/* MEMB002010 */
.flexText {
	display: flex;
	align-items: center;
	font-size: 16px;
	height: 60px;
}
.flexText > p {
	margin-right: 10px;
}

/* MEMB006001 */
.giveExpTable {
	width: 100%;
	margin-bottom: 10px;
	border-radius: 5px;
	border-spacing: 0;
}
.giveExpTable th,
.giveExpTable td {
	height: 40px;
	padding: 0 10px;
	border-bottom: 1px solid #dadada;
}
.giveExpTable tr th:first-child {
	width: 25%;
	background-color: #fafafa;
}
.giveExpTable input {
	width: calc(100% - 30px);
	height: 28px;
	border: 0;
	text-align: center;
	border-radius: 20px;
}
.giveExpTable tr td:last-child {
	width: 30px;
	padding: 0;
	padding-top: 5px;
	text-align: right;
}
.giveExpTable tr td:last-child input {
	width: 15px;
	padding: 0;
}
.giveExpTable.giveExpTable2 tr td input {
	width: 100%;
	background-color: #fff;
}
.giveExpTable.giveExpTable2 tr th {
	width: 20%;
	background-color: #fafafa;
}
.giveExpTable.giveExpTable2 tr td {
	width: unset;
	padding: 0;
}

/* PRST005005 */
.tableArea .targetTable {
	margin-bottom: 20px;
}

/* MANA002004 */
.tooltip {
	display: inline-block;
	width: 15px;
	height: 15px;
	margin-left: 5px;
	color: #ffa443;
	font-size: 10px;
	text-align: center;
	line-height: 13px;
	border: 1px solid #ffa443;
	border-radius: 50%;
	/* box-shadow: 0 0 2px #444; */
}
#tooltip2 {
	margin-left: 5px;
	font-size: 10px;
	text-align: center;
	line-height: 13px;
	border-radius: 50%;
	/* color: #ffa443; */
}
.ui-tooltip {
	padding: 10px 20px;
	color: white;
	background: white;
	border-radius: 20px;
	box-shadow: 0 0 7px #ffa443;
}

.tableInBtn td {
	padding: 5px;
}
.tableInBtn span {
	display: inline-block;
	width: calc(80% - 10px);
}
.tableInBtn td button {
	width: 20%;
	border-radius: 5px;
}
.sortSelect {
	border: 1px solid #dadada;
	border-radius: 5px;
}
#updateDate {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	font-size: 12px;
}
.insertInputArea {
	width: 80px;
	padding: 5px;
}
.insertInput {
	width: 100%;
	text-align: right;
	background-color: #f6f6f6;
	border: 0;
	border-radius: 2px;
}
.changeOrder > p {
	font-size: 15px;
	height: 30px;
	font-weight: bold;
}
.changeOrder > div > div {
	height: 50px;
	background-color: #fafafa;
	margin-bottom: 5px;
	display: flex;
	align-items: center;
	border-radius: 10px;
	overflow: hidden;
}
.changeOrder h2 {
	width: 10%;
	height: 100%;
	line-height: 50px;
	background-color: #faa447;
	color: #fafafa;
	text-align: center;
}
.changeOrder h2 span {
	color: #fafafa;
}
.changeOrder .item {
	width: 100%;
	height: 100%;
	padding: 10px 20px;
	display: flex;
	justify-content: space-between;
}
.changeOrder .item input {
	width: calc(100% - 50px);
	height: 100%;
	border: 1px solid #dadada;
	border-radius: 5px;
}
/* .changeOrder .bars {
 width: 30px;
 height: 30px;
	background-image: url(../images/bars.png);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	cursor: pointer;
} */
.mark .moveItem input {
	margin-left: 10px;
	width: 100%;
	height: 100%;
	border: 1px solid #dadada;
	border-radius: 5px;
}
.rangkingDate {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#rankTableArea {
	margin-bottom: 10px;
	display: none;
}
#rankTableArea.on {
	display: table;
}

.confirm-box {
	background-color: #fff;
	padding: 10px 20px;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.confirm-box th {
	min-width: 8rem;
}
.confirm-box td {
	text-align: left !important;
	padding: 0 1rem;
}
.overlay {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}
