@charset "UTF-8";
/* 공통 컨테이너 */
.mypage-container {
    max-width: 1000px;
    margin: 40px auto 100px;
}
/* 회원 정보 */
#user_info_box{
	display: flex;
	gap:20px;
	justify-content: space-between;
}
#user_info_box > div{
	padding:24px;
}
/* 개인정보 */
#user_info_box .p_info{
	width:405px;
}
.p_info .p_info_group_1{
	display: flex;
	justify-content: space-between;
}
.p_info .p_info_group_1 a.modify_info_link{
	cursor: pointer;
}
.p_info .p_info_group_2{
	display: flex;
	align-items: center;
	margin-top:5px;
}
.p_info .p_info_group_2 .user_classify{
	margin-left:12px;
}
.p_info .p_info_name{
	color:var(--Color-Grey-900);
}

.p_info .p_info_school{
	color:var(--Color-Grey-800);
}

/* 이용권 정보 */
#user_info_box .s_info{
	width:575px;
}
.s_info .s_info_group_1{
	display: flex;
	justify-content: space-between;
}
.s_info .s_info_group_2{
	display: flex;
	align-items: center;
	gap:24px;
}
.s_info_group_2 div{
	display: flex;
	align-items: center;
	font-size:16px;
	font-weight: 500;
}
.s_info_group_2 div > span:first-of-type{
	color: var(--Color-Grey-900);
}
.s_info_group_2 div .count_ticket{
	color:var(--Color-Primary-600);
	padding:0 4px 0 8px;
}
.s_info_group_2 div > span.sort_text{
	color:var(--Color-Grey-700);
}
/*마이페이지 메뉴*/
#mypage_menu{
	display: flex;
	justify-content: space-between;
	margin-top:40px;
	border-bottom: 1px solid var(--Color-Grey-400);
}
#mypage_menu .tab_style1{
	border-bottom: 0;
}
#mypage_menu .mypage_menu_list{
	width:calc(100% - 200px);
}
#mypage_menu .mypage_notice_list{
	justify-content: flex-end;
	width:200px;
}

/* 결제 내역 테이블 */
.payment_history {
    margin-top: 40px;
}

#paymentTable thead th{
	color:var(--Color-Grey-800);
	font-weight: 600;
	padding:20px 24px;
}
#paymentTable tbody td{
	color:var(--Color-Grey-800);
}

#paymentTable tbody td .cancelpay_btn{
	cursor: pointer;
}

/* 검색된 내용 없을 경우 내용*/
.not_found_content{
	height:360px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.not_found_content .text_wrap{
	margin:24px 0;
	text-align: center;
}
.not_found_content .sub_text{
	margin-top:16px;
}
.not_found_content .btn_wrap a{
	cursor: pointer;
}
.payment_history .title_wrap{
	display: flex;
	justify-content: space-between;
	margin-bottom: 24px;
}
.payment_history .title_wrap .button_group{
	display: flex;
	justify-content: flex-end;
	gap:12px;
}
/* 마이페이지 fill 아이콘 색상 수정 */ 
.tab_style1 li.connect_ticket svg{
	stroke:none;
	fill:var(--Color-Grey-700);
}
.tab_style1 li.connect_ticket.on svg{
	stroke:none;
	fill:var(--Color-Grey-900);
}



/* 결제취소 모달 */
.cancelpay_content{
	width:352px;
}
.cancelpay_content .warning_text{
	color:var(--Color-Error-600);
}