@charset "UTF-8";
html, body, button {
	font-family:'NotosansKr';
}
/*정렬*/
[class^=flex] {
	display:flex;
	align-items:center;
}
.flexBox {
	display:flex;
}
.flexStart {
	justify-content:flex-start;
}
.flexCenter {
	justify-content:center;
}
.flexEnd {
	justify-content:flex-end;
}
.flexBetween {
	justify-content:space-between;
}

/*버튼*/
button {
	margin:0;
	padding:0;
	cursor:pointer;
}
.btnBlue {
	width:120px;
	height:40px;
	background:#314DAF;
	color:#fff;
	text-align:center;
	line-height:40px;
	border-radius:5px;
}
.btnLgray {
	width:120px;
	height:40px;
	background:#ececec;
	color:#767676;
	text-align:center;
	line-height:40px;
	border-radius:5px;
}
.btnDownBlue {
	width:28px;
	height:28px;
	background:url(/images/sp/iconDownBlue.svg) no-repeat center center / contain;
}
.btnEdit {
	width:28px;
	height:28px;
	background:url(/images/sp/iconEditGreen.svg) no-repeat center center / contain;
}
.btnTrash {
	width:28px;
	height:28px;
	background:url(/images/sp/iconDeleteL.png) no-repeat center center / 18px;
}
.btnSelect {
	width:24px;
	height:24px;
	background:url(/images/sp/iconCheck.svg) no-repeat center center / 14px, #43C778;
	border-radius:5px;
}
.btnSelect.active {
	background:#43C778;
}

/*테이블 공통*/
table {
	width:100%;
	table-layout:fixed;
}
.listTable tr {
	border-bottom:1px solid #cecece;
}
.listTable th {
	background:#f5f5f5;
	color:#464646;
	font-weight:bold;
	padding:1rem 0.25rem; 
	border-top:2px solid #464646;
}
.listTable td {
	padding:0.75rem 0.25rem;
	text-align:center;
}

.insertTable {
	border-top:2px solid #464646;
}
.insertTable tr {
	border-bottom:1px solid #ccc;
}
.insertTable th {
	background:#f5f5f5;
	padding:1rem 0.5rem;
	color:#262626;
	font-weight:bold;
	text-align:center;
}
.insertTable td {
	background:#fff;
	padding:1rem 2rem;
	color:#262626;
	font-weight:bold;
	text-align:left;
}

/*탭 공통*/
.manageTab {
	display:flex;
	margin-bottom:2rem;
	border-bottom:1px solid #ccc;
	border-left:1px solid #ccc;
}
.manageTab > li {
	position:relative;
	width:180px;
	height:60px;
	background:#f8f8f8;
	border-top:4px solid #a1a1a1;
	border-right:1px solid #ccc;
	line-height:57px;
}
.manageTab > li.active {
	background:#fff;
	border-top:4px solid #314DAF;
}
.manageTab > li.active:after {
	content:"";
	position:absolute;
	bottom:-1px;
	left:0;
	width:100%;
	height:3px;
	background:#fff;
}
.manageTab > li.active a {
	color:#314DAF;
}
.manageTab > li a {
	width:100%;
	height:100%;
	display:block;
	color:#767676;
	text-align:center;
}

/*페이징 공통*/
.pagination {
	display:flex;
	justify-content:center;
	align-items:center;
	margin:0;
    padding:0.75rem 0;
}  
.pagination > a {
	position:relative;
	width:30px;
	height:30px;
    background:#fff;
	display:block;
    text-align:center;
	line-height:30px;
	border-right:1px solid #ccc;
	border-bottom:1px solid #ccc;
	border-top:1px solid #ccc;
} 
.pagination > a:hover {
	text-decoration:underline;
}
.pagination > a:first-child {
	border-left:1px solid #ccc;
}
.pagination > a.current {
	background:#f8f8f8;
}
.pagination .first, .pagination .prev, .pagination .next, .pagination .last {
	font-size:0;
	color:transparent;
}
.pagination .first:before, .pagination .prev:before, .pagination .next:before, .pagination .last:before {
	content:""; 
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%, -50%) scaleX(0.6);
	font-size:18px;
	color:#222;
}
.pagination .first:before {
	content:"\226A";
	font-size:12px; 
}
.pagination .prev:before {
	content:"\003C";
	transform:translate(-50%, -50%) scaleX(0.6);
	color:#666;
}
.pagination .next:before { 
	content:"\003E";
	transform:translate(-50%, -50%) scaleX(0.6);
	color:#666;
}
.pagination .last:before {
	content:"\226B";
	font-size:12px;
}
.mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
  z-index: 999;
}
/*공통*/
body {
	background:#f2f3f5;
}
input[type=text] {
	height:40px;
	padding:0.5rem;
	border:1px solid #ccc;
	border-radius:5px;
}
select {
	appearance:none;
	background:url(/images/sp/iconDownArrow.png) no-repeat 96% center / 10px, #fff;
	min-width:160px;
	height:40px;
	padding:0.5rem;
	border:1px solid #ccc;
	border-radius:5px;
}
textarea {
	resize:none;
	width:100%;
	min-height:100px;
	padding:0.5rem;
	border:1px solid #ccc;
	border-radius:5px;
	outline:0;
}
.sbjtWrap {
	text-align:center;
}
.bigSbjt {
	margin:1.5rem 0;
	font-size:28px;
	font-weight:bold;
	display:inline-block;	
}
.bigSbjt:after {
	content:"";
	display:block;
	width:100%;
	height:4px;
	background:linear-gradient(90deg, #2C96F9 0%, #43C778 124.22%);
	margin:0.5rem auto 0;
}
.contWrap .whiteBox {
	max-width:1400px;
	width:100%;
	height:calc(100vh - 145px);
	margin:0 auto;
	padding:1.75rem;
	background:#fff;
	border-radius:15px;
}
.smallSbjt {
	position:relative;
	font-size:20px;
	font-weight:bold;
	margin-bottom:1rem;
}
.smallSbjt:before {
	content:"";
	position:absolute;
	top:-4px;
	left:0;
	width:8px;
	height:8px;
	background:#314DAF;
	border-radius:50%;
}
.smallSbjt:after {
	content:"";
	position:absolute;
	top:-4px;
	left:10px;
	width:8px;
	height:8px;
	background:#43C778;
	border-radius:50%;
}
/*사진관리*/
.managePics .listTable th:nth-child(3) {
	width:40%;
	text-overflow:ellipsis;
	overflow:hidden;
	white-space:nowrap;
}
.managePics .listTable th:nth-child(4),
.managePics .listTable th:nth-child(5),
.managePics .listTable th:nth-child(6) {
	width:10%;
}
.managePics .selectedImg {
	display:inline-flex;
	flex-wrap:wrap; 
	margin-bottom:0.5rem;
	padding:0.5rem;
	background:#f5f5f5;
	border-radius:5px;
}
.managePics .selectedImg > span:not(:first-child) {
	margin-right:0.5rem;
}
.managePics .selectedImg img {
	height:80px;
	border-radius:5px;
}
.managePics .selectedImg button {
	position:relative;
	width:130px;
	height:80px;
	background:#43C778;
	border-radius:5px;
	margin-right:2rem;
}
.managePics .selectedImg button:before {
	content:"";
	position:absolute;
	right:-16px;
	top:0;
	width:1px;
	height:100%;
	background:#ccc;
	margin-left:0.5rem;
}
.managePics .selectedImg button p {
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%, -50%);
	white-space:nowrap;
	color:#fff;
	font-weight:bold;
}
/*출장보고서 관리*/
.manageReport .listTable th:nth-child(2) {
	width:40%;
	text-overflow:ellipsis;
	overflow:hidden;
	white-space:nowrap;
}
.manageReport .listTable th:nth-child(3),
.manageReport .listTable th:nth-child(4),
.manageReport .listTable th:nth-child(5) {
	width:10%;
}
/*출장보고서 작성*/
.postReport .insertTable th {
	width:20%; 
}
.postReport .insertTable input[type=text] {
	width:100%;
}
.postReport .flexEnd {
	margin-top:0.5rem;
}
.postReport .flexEnd button {
	margin-left:0.5rem;
	font-size:16px;
}