@charset "UTF-8";

/*탭박스*/
.tabBox {
	position:relative;
	max-width:450px;
	width:100%;
	background:#8d8d8d;
	border-radius:30px;
	margin:40px auto 70px;
	display:flex;
	box-shadow:0px 16px 20px rgb(0 0 0 / 16%);
}
.tabBox:after {
	content:"";
	position:absolute;
	width:1px;
	height:45px;
	top:125%;
	left:50%;
	background:rgba(0,0,0,.25);
}
.tabBox li {
	width:33.3%;
	font-size:16px;
	font-weight:bold;
	color:#fff;
	text-align:center;
	cursor:pointer;
}
.tabBox li a {
	color:#fff;
	width:100%;
	height:100%;
	display:block;
	padding:15px 0;
	box-sizing:border-box;
}
.tabBox li:first-child {
	background:#8d8d8d;
	border-radius:30px 0 0 30px;
}
.tabBox li:first-child.active {
	background:#1a45dd;
	border-radius:30px;
}
.tabBox li:nth-child(2) {
	background:#8d8d8d;
	border-radius:0;
}
.tabBox li:nth-child(2).active {
	background:#1a45dd;
	border-radius:30px;
}
.tabBox li:last-child {
	background:#8d8d8d;
	border-radius:0 30px 30px 0;
}
.tabBox li:last-child.active {
	background:#1a45dd;
	border-radius:30px;
}
/*정렬*/
.flexBox {
	display:flex;
}

/*버튼*/
button[class*=Mini] {
	width:60px;
	height:30px;
	border-radius:5px;
	cursor:pointer;
	color:#fff;
}
.btnNavyMini {
	background-color:#173b6e !important;
}
.btnGrayMini {
	background-color:#888 !important;
}
.btnDelete {
    width:18px;
    height:18px;
    background:url(/images/sp/iconDeleteL.png) no-repeat center center;
    display:block !important;
    padding:20px;
    box-sizing:inherit !important;
}
.btnPopCls {
	position:absolute;
	right:12px;
	top:10px;
	background:transparent;
	font-size:20px;
	font-weight:100;
	color:#666;
}

/*마스크창*/
.overlay {
	position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(5px);
    display: none;
    transition: opacity .3s ease;
}
.bgBlack {
	position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(5px);
    display: block;
    transition: opacity .3s ease;
    z-index:999;
}
/*페이징*/
div[class*=fare] #paging > div,
div[class*=calcSpend] #paging > div {
	display:flex;
	justify-content:center;
	align-items:center;
	margin:20px auto;
	width:min-content;
	background:#f5f5f5;
	border-radius:30px;
}
div[class*=calcSpend] #paging {
	margin:-30px 0 40px 0;
	text-align:center;
}
div[class*=fare] #paging strong,
div[class*=calcSpend] #paging strong {
	color:#fff;
	width:30px;
	height:30px;
	background:#215eb1;
	border-radius:50%;
	text-align:center;
	line-height:29px;
	display:block;
	z-index:999;
}
div[class*=fare] #paging a,
div[class*=calcSpend] #paging a {
	width:30px;
	height:30px;
	text-align:center;
	line-height:29px;
	display:block;
	cursor:pointer;
}
div[class*=fare] #paging a:hover,
div[class*=calcSpend] #paging a:hover {
	background:rgba(33,94,177,.1);
	border-radius:50%;
}
div[class*=fare] #paging .btnArrow,
div[class*=calcSpend] #paging .btnArrow {
	width:30px;
	height:30px;
	background:#fff;
	border:1px solid #444;
	border-radius:50%;
}
/* .selected {
	position:absolute;
	top:55%;
	left:10px;
	font-size:13.3px;
	font-weight:100;
	color:#666;	
}

/*데이터리스트 페이징*/
div[class*=dataRequest] #paging {
	padding-top:10px;
}
div[class*=dataRequest] #paging a {
	width: 38px;
	height: 38px;
	margin: 2px;
	padding: 0;
	border: 1px solid #c9ccd4;
	text-align:center;
	line-height: 38px;
	overflow: hidden;
	cursor: pointer;
	display: inline-block;
}
div[class*=dataRequest] #paging a strong {
	width: 38px;
	height: 38px;
	background: #173b6e;
	color: #fff;
	font-weight: 600;
	text-decoration: underline;
	display: inline-block;
}

/*팝업공통*/
.popBox {
	position:fixed;
	top:50%;
	left:50%;
	transform:translate(-50%, -50%);
	max-width:600px;
	width:100%;
	background:#fff;
	padding:20px;
	border-radius:5px;
	box-shadow: 0 2px 8px rgb(0 0 0 / 33%);
	display:none;
	z-index:9999;
}
.popBox .popBody > div {
	margin-bottom:20px;
}
.popBox .popBody .popSmallSbjt {
	font-weight:bold;
	margin-bottom:5px;
}
.popBox .popBody input[type=text] {
	width:100%;
	padding:0 5px;
	border-bottom:1px solid #ccc;
	outline:0;
}
.popBox .popBody textarea {
	width:100%;
	min-height:300px;
	max-height:300px;
	padding:10px;
	border:1px solid #ccc;
	border-radius:5px;
	outline:0;
	resize:none;
	overflow:auto;
	box-sizing:border-box;
}
.popBox .popFoot {
	text-align:center;
}
/*margin*/
.mr10 {
	margin-right:10px;
}
.mb40 {
	margin-bottom:40px;
}

#recommend_img {width:23px; height:23px; float:right;}