@charset "utf-8";

/* input number  화살표 제거*/
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
input[type=number] {
	-moz-appearance: textfield; /* Firefox */
}

/* 공통 */
.pt_content_wrap input[type=text], 
.pt_content_wrap input[type=password], 
.pt_content_wrap input[type=submit], 
.pt_content_wrap input[type=image] {
	height:40px; 
	border-radius:5px; 
	padding:0 10px; 
	border: 1px solid #ddd;
}

.pt_btn {
	margin:0 auto;
	border:0;
	font-size:16px;
	font-weight:bold;
    line-height: 40px;
    height: 40px;
    text-align: center;
	cursor: pointer;
    padding: 0 10px;
	text-decoration: none;
    vertical-align: middle;
	border-radius:3px;
	transition:background-color 0.5s ease;
}
.pt_btn_gray01 {background-color: #969696; color: #fff; }
.pt_btn_gray02 {background-color:#5e5f62; color:#fff; }
.pt_btn_blue {background-color: #1c3b87; color: #fff; }

.pt_margin_t30 {margin-top:30px;}
.pt_margin_b30 {margin-bottom:30px;}
.pt_txt_blue {color:#3498db; font-weight:bold;}
.pt_txt_gray {color:#888;}
.pt_input_center {text-align:center; cursor:pointer;}
.pt_input100 {width:100%;}



/* 충전 modal */
.pt_modal_wrap {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}
.pt_modal_cont {
	background-color: #fff;
	padding: 10px;
	border: 1px solid #888;
	width: 90%;
	max-width: 860px;
	min-height: 500px;
	max-height: 90vh;
	border-radius: 8px;
	position: relative;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	overflow: hidden;
	margin: auto;
	top: 50%;
	transform: translateY(-50%);
}
.pt_modal_hd {
	padding: 10px 20px;
	font-size: 18px;
	font-weight: bold;
	position: relative;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	background-color: transparent;
	text-align: left;
	overflow:hidden;
}
.pt_modal_body{
	overflow-y:auto;
}
.pt_close {
	position: absolute;
	top: 0px;
	right: 20px;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
	margin: 0;
}
#pt_modal_body {
	overflow-y: auto;
	flex-grow: 1;
	max-height: calc(90vh - 60px);
	-ms-overflow-style: none;
}
#pt_modal_body::-webkit-scrollbar{
  display:none;
}

.pt_btn_confirm {text-align:center; margin:30px 0;}


.ajax_point_wrap input {height:34px; border-radius:1px; padding:0 10px; border: 1px solid #e4e4e4;}


/* modal
.pt_modal {
	display:none;
	position:fixed;
	z-index:1;
	left:0;
	top:0;
	width:100%;
	height:100%;
	overflow:auto;
	background-color:rgba(0,0,0,0.4);
}
.pt_modal_content {
	max-width:1000px;
	background-color:#fefefe;
	margin:5% auto;
	padding:20px;
	border:1px solid #888;
	height:auto;
		border-radius:8px;
	box-shadow:0 5px 15px rgba(0,0,0,0.3);
}
.pt_close_btn {
	color:#aaa;
	float:right;
	font-size:28px;
	font-weight:bold;
	cursor:pointer;
}
.pt_close_btn:hover,.pt_close_btn:focus {
	color:black;
	text-decoration:none;
	cursor: pointer;
}

@media screen and (max-width:768px) {
	.pt_modal_content {
		width:90%;
		max-width:600px;
	}
}
@media screen and (max-width:480px) {
	.pt_modal_content {
		width:95%;
		max-width: 400px;
	}
}
 */


/* tab */
.pt_gnb {
    width: 100%;
    background-color: #f8f8f8;
	border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
.pt_tabs {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}
.pt_tab {
    flex: 1;
    text-align: center;
    background-color: #fff;
	border-left: 1px solid #ddd;
    
}
.pt_tab:last-child {
   border-right: 1px solid #ddd;
}
.pt_tab a {
    display: block;
    padding: 15px 0;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
	font-size: clamp(1.0rem, 1.1vw, 1.5rem);
}
/* 활성화된 탭 */
.pt_active {
    background-color: #1c3b87;
}
.pt_active a {
    color: #fff;
}


/* content */
.pt_content_wrap {
	max-width:1200px;
	margin:0 auto;
	padding-bottom:100px;
}
.pt_content_top {}
.pt_content_top h2 {
	font-size: clamp(2rem, 2.2vw, 3rem); 
	text-align:center;
	margin:40px 0;
	letter-spacing:-1px;
}
.pt_content_top h2 span {font-weight:normal;}
.pt_content_box {
	border:1px solid #e4e4e4;
	background-color:#fff;
	padding:20px 30px;
	font-size:16px;
}
.pt_content_box p {
	line-height:1.6;
	color:#666;
}
.pt_inquiry_wrap {
	border:1px solid #e4e4e4;
	background-color:#f2f2f2;
	padding:30px 30px;
	font-size:16px;
}
.pt_inquiry_wrap p {
	line-height:1.8;
	color:#666;
}
.pt_search_date_box {
	display:flex;
	flex-direction:row;
	align-items:center;
}
.pt_search_date_box h2 {
	width:130px;
	color:#666;
}
.pt_search_date_box img {
	cursor:pointer;
	margin-left:10px;
}

.pt_calendar {
	background-color:#fff; 
	border:1px solid #ccc; 
	border-radius:1px; 
	height:40px; 
	padding-right:5px;
}
.pt_calendar input[type=text]{ width:130px;border:1px solid #fff; height:38px;}

.pt_search_date_send {
	display:flex;
	flex-direction:row;
	align-items:center;
}
.pt_search_date_send label {}
.pt_search_btn {margin-left:10px;}
.pt_check_box {
	display:flex;
	flex-direction:row;
	align-items:center;
	margin-top:10px;
}
.pt_check_box h2 {
	width:130px;
	color:#666;
}
.pt_check_box label {
	margin-right:20px;
	cursor:pointer;
}
.pt_btn_inquiry {
	background: #1c3b87;
    color: #fff;
    padding: 0 50px !important;
    display: block;
    height: 45px;
}
.pt_btn_inquiry:hover {background-color: #122e72;}
.pt_modal_input {max-width:150px;}


/* 검색 active 클래스 */
.pt_search_date_box button.active {
	background-color: #5e5f62;
	color: #fff;
	border: 1px solid #5e5f62;
}
.pt_search_date_box button {
	border: 1px solid #ccc;
	background-color: #f9f9f9;
	color: #333;
	cursor: pointer;
	padding: 5px 10px;
	margin-right: 5px;
}



/* DatePicker 달력 시작 */
.ui-datepicker {
	border-radius:5px !important;
	padding:0 !important;
	border:0;
}
.ui-datepicker .ui-datepicker-header {
	background:none;
	border:0;
}
.ui-datepicker .ui-datepicker-title,.ui-datepicker th {
	font-size:19px;
}
.ui-datepicker-calendar thead th {
	font-size:12px;
	color:#545455;
}
.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default {
	background:none;
	border:0;
	border-radius:100%;
	font-size:12px;
	color:#000100;
	transition:all 0.3s ease;
}
.ui-datepicker td span,.ui-datepicker td a {
	display:block;
	margin:0 auto;
	text-align:center;
	width:26px;
	height:26px;
	line-height:24px;
	padding:0;
	border:1px solid transparent;
	transition:all 0.3s ease;
}
.ui-state-active {border:1px solid #0a99aa !important;}
.ui-datepicker {
	width:300px !important;
	padding:10px !important;
	border:1px solid #eee;
	box-shadow:3px 3px 5px rgba(0,0,0,0.05);
	z-index: 8001 !important;
}


/* table01 */
.pt_table_wrap01 {font-size:16px;}
.pt_table_wrap01 h2 {
	text-align:right;
	padding:10px 0;
	color:#666;
	font-weight:normal;
}
.pt_table_wrap01 h3 {
	font-size:16px;
	margin-bottom:10px;
}
.pt_table_wrap01 table {
	width:100%;
	border-top:1px solid #222;
	text-align:left;
	background-color:#fff;
}
.pt_table_wrap01 th {
	width:20%;
	background-color:#f2f2f2;
	color:#666;
	padding:10px;
	border-bottom:1px solid #e4e4e4;
	text-align:center;
}
.pt_table_wrap01 td {
	width:30%;
	padding:0 20px;
	border-bottom:1px solid #e4e4e4;
	height:70px;
}
.pt_table_wrap01 input {border:1px solid #e4e4e4;}
.pt_table_wrap01 label {cursor:pointer;}


/* table02 */
.pt_table_wrap02 {
	font-size:16px;
	table-layout: fixed;
}
.pt_table_wrap02 h2 {
	text-align:left;
	padding:10px 0;
	color:#666;
	font-weight:normal;
}
.pt_table_wrap02 h3 {
	font-size:16px;
	margin-bottom:10px;
}
.pt_table_wrap02 table {
	width:100%;
	min-width:510px;
	border-top:1px solid #222;
	border-bottom:1px solid #e4e4e4;
	text-align:left;
	background-color:#fff;
}
.pt_table_wrap02 th {
	background-color:#f2f2f2;
	color:#666;
	padding:20px;
	border-right:1px solid #e4e4e4;
	text-align:center;
	width:20%;
	border-top:1px solid #e4e4e4;
}
.pt_table_wrap02 th:last-child {border-right:0;}
.pt_table_wrap02 td {
	padding:20px;
	border-top:1px solid #e4e4e4;
	border-right:1px solid #e4e4e4;
	border-top:1px solid #e4e4e4;
}
.pt_table_wrap02 td:last-child {
	border-right: 0;
}
.pt_table_wrap02.pt_radio td:nth-child(2n+1) {width:10%;}
.pt_table_wrap02.pt_radio td:nth-child(2n) {width:40%;}
.pt_table_wrap02.pt_txt_center table {text-align:center;}

.pt_table_btn {
	background-color:#5d759e;
	padding:2px 5px;
	color:#fff;
	border-radius:2px;
}
.pt_table_btn a {
	color:#fff;
}


/* table03 */
.pt_table_wrap03 {
	font-size:16px;
	table-layout: fixed;
}
.pt_table_wrap03 h2 {
	text-align:left;
	padding:10px 0;
	color:#666;
	font-weight:normal;
}
.pt_table_wrap03 h3 {
	font-size:16px;
	margin-bottom:10px;
}
.pt_table_wrap03 table {
	width:100%;
	border-top:1px solid #222;
	border-bottom:1px solid #e4e4e4;
	text-align:left;
	background-color:#fff;
}
.pt_table_wrap03 th {
	background-color:#f2f2f2;
	color:#666;
	padding:20px;
	border-right:1px solid #e4e4e4;
	text-align:center;
	width:20%;
	border-top:1px solid #e4e4e4;
}
.pt_table_wrap03 th:last-child {border-right:0;}
.pt_table_wrap03 td {
	padding:20px;
	border-top:1px solid #e4e4e4;
	border-right:1px solid #e4e4e4;
	border-top:1px solid #e4e4e4;
}
.pt_table_wrap03 td:last-child {border-right: 0;}
.pt_table_wrap03.pt_txt_center table {text-align:center;}

.pt_table_modal_wrap {font-size:16px;}
.pt_table_modal_wrap h3 {
	font-size:16px;
	margin-bottom:10px;
}
.pt_table_modal_wrap table {
	width:100%;
	border-top:1px solid #222;
	border-bottom:1px solid #e4e4e4;
	text-align:left;
	background-color:#fff;
	border-collapse: separate;
	
}
.pt_table_modal_wrap th {
	background-color:#f2f2f2;
	color:#666;
	padding:20px;
	border-right:1px solid #e4e4e4;
	text-align:center;
	border-top:1px solid #e4e4e4;
}
.pt_table_modal_wrap th:last-child {border-right:0;}
.pt_table_modal_wrap td {
	width:50%;
	padding:20px;
	border-top:1px solid #e4e4e4;
	border-right:1px solid #e4e4e4;
	border-top:1px solid #e4e4e4;
}
.pt_table_modal_wrap td:last-child {border-right: 0;}
.pt_table_modal_wrap label {cursor:pointer;}

.clickable-row { cursor: pointer;}



@media screen and (max-width:1250px) {
	.pt_content_wrap {padding:0 15px 50px 15px;}
}

@media screen and (max-width:1000px) {
	.pt_search_date_box {display: block;}
	.pt_calendar {
		margin-top:10px;
		display: flex;
        align-items: center;
        justify-content: space-around;
	}
	.pt_search_btn {
		margin-left: 0;
		margin-top:10px;
		display: flex;
        justify-content: space-between;
	}
	.pt_search_btn button {width:32%;}
	.pt_check_box {
		display: block;
		margin-top: 20px;
	}
	.pt_check_box h2 {display:none;	}
}


@media screen and (max-width:768px) {
	.pt_table_wrap01 table {}
	.pt_table_wrap01 tr {
		display: flex;
		flex-wrap: wrap;
	}
	.pt_table_wrap01 th {
		width: 35%;
		box-sizing: border-box;
		text-align:center;
		display: flex;
        align-items: center; 
        justify-content: center;
	}
	.pt_table_wrap01 td {
		width: 65%;
		box-sizing: border-box;
		height: auto;
		padding:20px 10px;
	}
	.pt_table_wrap01 h3 {margin-bottom:10px; }

	
	.pt_table_wrap02 th {padding:10px;}
    .pt_table_wrap02 td {padding: 15px 5px; font-size:14px;}

	.pt_table_wrap03 th,.pt_table_wrap03 td {
		display:block;
		width:100%;
		text-align:left;
		display:flex;
		border-right:0;
		padding:10px 20px;
	}
	.pt_table_modal_wrap th,.pt_table_modal_wrap td {
		display:block;
		width:100%;
		text-align:left;
		display:flex;
		align-items:center;
		border-right:0;
		padding:10px 20px;
	}
	.pt_inquiry_wrap {padding:30px 10px;}
	.pt_search_btn {display: flex; justify-content: space-between;	}
	.pt_calendar_btn {display:block; margin:10px auto 0; }
	.pt_search_date_box img {margin-left: 0px;	}
	.pt_calendar input[type=text] {width: 110px;	}
}


@media (max-width: 636px) {
	.pt_table_wrap02 {overflow-x:scroll; }
	.pt_content_box {padding:15px 10px;}
	.m_br {display:block;}
	.m_none {display:none;} 
}


@media (max-width: 480px) {


}





