@charset 'utf-8';
@import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic&display=swap');

* {
	font-family: 'Nanum Gothic', sans-serif !important;
	font-size: 12px;
}
html, body {
	overscroll-behavior: contain;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}
a {
	text-decoration: none;
}
.display-hidden {
	display: none !important;
}
.max-width-300 {
	max-width: 300px;
}
.max-width-500 {
	max-width: 500px;
}
.color-red {
	color: #a50000;
}
.color-blue {
	color: #0000af;
}
.color-gray {
	color: rgb(87, 87, 87);
}
.check-icon,
.new-icon {
	margin-left: 3px;
}
.check-icon {
	background: #fff !important;
	color: #333 !important;
}
.new-icon {
	color: #ff0000;
	font-style: italic;
}
@keyframes blink-effect { 50% { opacity: 0; } } 
.new-icon { 
	animation: blink-effect 2s step-end infinite;
	/*
		animation-name: blink-effect;
		animation-duration: 1s;
		animation-iteration-count:infinite;
		animation-timing-function:step-end;
	*/
}
.vip-title {
	display: inline-block;
	color: #fff;
}
.vip-title:not(:first-child) {
	margin-left: 2px;
}
.vip-title-none {
	background: #a3a3a3;
}
[class^=vip-title],
[class^=check-icon] {
	text-align: center;
	padding: 3px;
	min-height: 22px;
}
.vip-title-01 {
	background: #db976f;
	width: 80px;
}
.vip-title-02 {
	background: #58c165;
	width: 40px;
}
.vip-title-03 {
	background: #56b4c3;
	width: 50px;
}
.vip-title-04 {
	background: #ce74e5;
	width: 40px;
}
.vip-title-05 {
	background: #6664ff;
	width: 50px;
}
.vip-title-19 {
	background: #ff6161;
}
.vip-title-19-M {
	background: #ff0000;
}
.vip-title-19-T {
	background: #ad0000;
}

@media all and (min-width:1024px) {
	#vip-left-menu {
		width: 500px !important;
	}
	#vip-main-frame-body {
		display: flex;
	}
	#vip-main-frame-body .vip-tab.display-hidden {
		display: grid !important;
	}
}

@media all and (min-width:768px) and (max-width:1023px) {
	
}

@media all and (max-width:767px) {
	
}
#vip-loading-background {
	position: absolute;
	z-index: 9999;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba( 255, 255, 255, 0.7 );
	
	display: flex;
	justify-content: center;
	align-items: center;
}
#vip-left-menu {
	z-index: 999;
	position: absolute;
	width: 240px;
	top: 0;
	right: -100%;
	bottom: 0;
	
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 240px 1fr;
	background: #303030;
	transition: all 1.0s;
}
#vip-left-menu.toggle-slide {
	right: 0;
}
#vip-left-menu-header {
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: center;
	background: transparent;
}
.vip-left-menu-close {
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	height: 40px;
	font-size: 17pt;
	color: #fff;
	
	display: flex;
	justify-content: space-around;
	align-items: center;
	cursor: pointer;
}
#vip-left-menu-header > img {
	width: 160px;
	height: 160px;
	border-radius: 50%;
}
#vip-left-menu-body {
	padding: 10px;
	background: transparent;
}
#vip-left-menu-body > button {
	width: 100%;
	height: 40px;
	font-size: 13pt !important;
	background: transparent;
	text-align: left;
	padding-left: 10px;
	color: #9b9b9b;
	border: 0;
	font-weight: bold;
	cursor: pointer;
}
.vip-link-btn {
	color: #f9f9f9 !important;
}
#vip-main-frame {
	position: relative;
	width: 100%;
	height: 100%;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: auto 1fr;
	overflow: hidden;
}
#vip-main-frame-header {
	width: 100%;
	height: 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #303030;
}
.vip-left-menu-line {
	width: 100%;
	height: 1px;
	background: #7c7c7c;
	margin-top: 5px;
	margin-bottom: 5px;
}
.header-icon {
	display: flex;
	width: 40px;
	height: 40px;
	justify-content: center;
	align-items: center;
	font-size: 17pt;
	color: #fff;
}
.header-menu {
	display: flex;
	width: 40px;
	height: 40px;
	justify-content: center;
	align-items: center;
	font-size: 17pt;
	color: #fff;
	cursor: pointer;
}
/*.header-menu > button {
	height: 30px;
	border: 0px;
	border-radius: 5px;
	border: 1px solid #ddd;
	background: #fff;
	cursor: pointer;
}*/
.header-center {
	color: #fff;
	font-size: 13pt;
	font-weight: bold;
}
#vip-main-frame-body {
	position: relative;
	width: 100%;
	height: 100%;
	background: #d3d3d3;
	overflow: hidden;
}
#vip-main-frame-footer {
	display: flex;
	width: 100%;
	height: 50px;
	justify-content: space-around;
	align-items: center;
}
#vip-main-frame-footer > button {
	width: 100%;
	height: 100%;
	font-size: 15pt;
}
.btn-data-group {
	padding: 2px;
}
.btn-data-group > button {
	width: 50px;
	height: 40px;
	padding: 2px 7px;
	border-radius: 5px;
	border: 1px solid #ccc;
	background: #fff;
	font-weight: bold;
	font-size: 13pt;
}
.tab-contents-grid {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 52px 1fr;
}
.grid-main {
	position: relative;
	width: 100%;
	height: 100%;
	grid-row: 2;
}
.grid-main-box {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.grid-search-data,
button.vip-tab-menu {
	cursor: pointer;
}
tr.jsgrid-header-row {
	height: 40px;
	background: #f2f2f2;
	color: #6d6d6d;
	font-size: 13pt;
}

/**
탭
**/
.vip-tab {
	position: relative;
	width: 100%;
	height: 100%;
}
button.vip-tab-menu.tab-this-action {
	color: #fff !important;
}

/**
모달팝업
**/
.modal-popup {
	position: absolute;
	display: flex;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
	justify-content: center;
	align-items: center;
	 background : rgba(0, 0, 0, 0.5);
}
.modal-contents {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 40px 1fr;
	border-radius: 5px;
	font-size: 12pt;
}
.modal-contents > .modal-header {
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: space-between;
	align-items: center;
	background: #303030;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	color: #fff;
}
.modal-contents > .modal-header > span {
	display: flex;
	min-width: 40px;
	height: 100%;
	justify-content: center;
	align-items: center;
	font-size: 12pt;
}
.modal-contents > .modal-header > span:first-child {
	margin-left: 10px;
	font-weight: bold;
}
.modal-contents > .modal-body {
	padding: 10px;
	background: #fff;
}
.modal-contents > .modal-body > button {
	width: 100%;
	padding: 10px;
	border-radius: 5px;
	border: 1px solid #ddd;
	background: #fff;
}
.modal-contents > .modal-body > button:not(:first-child) {
	margin-top: 5px;
}
.modal-popup button[data-form] {
	width: 100%;
	height: 40px;
	border: 0;
	background: #535353;
	color: #fff;
	font-size: 13pt;
	border-radius: 10px;
}
.jsgrid-selected-row > .jsgrid-cell {
	background-color: #5b5b5b !important;
}
.jsgrid-selected-row > .jsgrid-cell,
.jsgrid-selected-row > .jsgrid-cell * {
	color: #fff;
}

/**
검색창
**/
.grid-searchbar {
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: space-around;
	align-items: center;
	grid-row: 1;
}
.grid-searchbar > form {
	display: inherit;
	gap: 5px;
}
.search-control {
	display: block;
	height: 25px;
	padding: 6px;
	max-width: 120px;
	border-radius: 10px;
	border: 1px solid #ddd;
	font-size: 13px;
}
select.search-control {
	height: 40px;
}
.grid-search-data {
	width: 40px;
	border-radius: 10px;
	border: 0px;
	background: #686868;
	color: #fff;
}


/**
입력폼
**/
.data-control-group {
	width: 100%;
	display: flex;
}
.data-control-group:first-child > .data-control {
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;
}
.data-control-group:last-child > button[data-target] {
	padding: 2px 7px;
	margin-left: -1px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	background: rgb(73, 73, 73);
	color: #fff;
	cursor: pointer;
}
.data-control {
	width: 100%;
	display: block;
	padding: 7px 5px;
	border-radius: 5px;
	border: 1px solid #c7c7c7;
	font-size: 12pt;
	color: #999;
	resize: none;
	box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
select.data-control {
	width: 100%;
}

/**
버튼
**/
span.close {
	cursor: pointer;
}

/**
그리드
**/
.jsgrid-cell {
	word-break: break-all !important;
}
.jsgrid-pager {
	position: relative;
	display: flex;
	justify-content: center;
}
.jsgrid-pager > span {
	display: flex !important;
	width: 32px;
	height: 30px;
	border: 1px solid #ddd;
	justify-content: center;
	align-items: center;
	color: #000;
}
.jsgrid-pager > span > a {
	color: #000;
	font-weight: normal !important;
}
.jsgrid-pager > span:first-child {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}
.jsgrid-pager > span:not(:first-child) {
	margin-left: -1px;
}
.jsgrid-pager > span:last-child {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}
.jsgrid-pager-current-page {
	cursor: no-drop;
}
.jsgrid-pager-container {
	display: block !important;
}
/*.jsgrid-background-19 > .jsgrid-cell {
	background: #ffeeee !important;
}*/
.jsgrid-background-shading > .jsgrid-cell {
	color: #8d8d8d !important;
}
.jsgrid-background-wait > .jsgrid-cell {
	background: #b3b3b3 !important;
	color: #606060 !important;
}
.jsgrid-background-wait > .jsgrid-cell span.vip-center-group {
	color: #0029f3 !important;
}
.jsgrid-cell div.vip-data-group {
	display: flex;
}
.jsgrid-cell div.vip-data-group > span {
	flex: 1 auto;
	text-align: center;
}
.jsgrid-cell span.vip-yearqt-group {
	display: block;
	padding: 3px;
}
.jsgrid-cell div.vip-top-group {
	display: flex;
	justify-content: space-between;
	padding: 0px 7px 0px 3px;
}
.jsgrid-cell div.vip-top-group span.vip-title,
.jsgrid-cell div.vip-top-group span.check-icon {
	border-radius: 5px;
}
.jsgrid-cell div.vip-bottom-group{
	display: flex;
	justify-content: space-between;
	padding: 2px 5px;
}
.jsgrid-cell div.vip-bottom-btn-group {
	display: flex;
	justify-content: flex-end;
	padding: 5px 5px 0 5px;
}
.jsgrid-cell span.vip-center-group {
	display: block;
	padding: 3px 5px;
	font-weight: bold;
	font-size: 14px !important;
}
.jsgrid-cell div.vip-center-group2 {
	display: flex;
	padding: 3px 5px;
	font-size: 12pt !important;
}
.jsgrid-cell div.vip-center-group2 > span:first-child {
	display: flex;
	width: 15px;
	height: 15px;
	background: #97ace7;
	border-radius: 50%;
	font-size: 7pt;
	font-weight: bold;
	justify-content: center;
	align-items: center;
	color: #fff;
}
.jsgrid-cell div.vip-center-group2 > span:not(:first-child) {
	margin-left: 5px;
}
.jsgrid-cell div.vip-bottom-btn-group > button {
	border-radius: 10px;
	border: 1px solid #8d8d8d;
	background: #fff;
	cursor: pointer;
	padding: 2px 8px;
	color: #000 !important;
}
.jsgrid-cell div.vip-bottom-btn-group > button:not(:first-child) {
	margin-left: 3px;
}