@charset "UTF-8";
/*
 * 웹폰트(@font-face) 정의는 같은 폴더의 fonts.css 로 분리했다.
 * @import 는 @charset 바로 뒤, 다른 모든 규칙보다 앞에 있어야 유효하다 — 아래로 밀리면
 * 브라우저가 조용히 무시해 폰트가 전면 미적용되므로 이 줄의 위치를 옮기지 말 것.
 * common.css 를 다른 모듈로 shadow(사본) 뜰 때 이 줄도 반드시 함께 옮겨야 한다.
 */
@import url("fonts.css");

html, body {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 15px;
	font-weight: 400;
	font-family: "Apple SD Gothic Neo";
	line-height: 1.4;
}

table, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	border-collapse: collapse;
	border-spacing: 0;
	/* font-family: inherit; */
}

h1, h2, h3, h4, h6, p, span {
	margin: 0;
	padding: 0;
	border: 0;
	/* font-family: inherit; */
}

ol, ul, li {
	list-style: none;
	margin: 0;
	padding: 0;
	/* font-family: inherit; */
}

button {
	margin: 0px;
	padding: 0px;
	border: 0px;
	font-size: 12px;
	font-family: inherit;
	vertical-align: middle;
	cursor: pointer;
}

select {
	-webkit-appearance: none; /* 크롬 화살표 없애기 */
	-moz-appearance: none; /* 파이어폭스 화살표 없애기 */
	appearance: none; /* 화살표 없애기 */
	font-family: inherit;
}

a {
	text-decoration: none;
	color: #000;
}

input, textarea {
	margin: 0;
	padding: 0;
	font-family: inherit;
	/* font-size: inherit; */
	/* line-height: inherit; */
	box-sizing: border-box;
}

/**
 * 공통
 */
.none {
	display: none;
}

.nowrap {
	white-space: nowrap;
}

.clear {
	clear: both;
}

.readonly {
	background: #f3f3f3;
}

.round {
	border-radius: 4px;
}

.mgt_16 {
	margin-top: 16px;
}

.mgt_30 {
	margin-top: 30px;
}

.mgt_60 {
	margin-top: 60px;
}

.pdtb_20 {
	padding: 20px 0px;
}

.w80 {
	width: 80px;
}

.w100 {
	width: 100px;
}

.w40p {
	width: 40%;
}

.w100p {
	width: 100%;
}

/**
 * 버튼
 */
.btn_blue {
	height: 26px;
	background-color: #1399D4;
	color: #FFF;
	padding: 2px 12px 0 12px;
	border: 0px;
	min-width: 50px;
	margin-right: 5px;
	border-radius: 4px;
}

.btn_blue:last-child {
	margin-right: 0px;
}

.btn_blue:hover {
	background-color: #1179A7;
}

.btn_red {
	height: 26px;
	background-color: #E71C72;
	color: #FFF;
	padding: 2px 12px 0 12px;
	border: 0px;
	border-radius: 4px;
}

.btn_red:hover {
	background-color: #B51B5C;
}

.btn_yellow {
	height: 26px;
	background-color: #E99413;
	color: #FFF;
	padding: 2px 12px 0 12px;
	border: 0px;
	border-radius: 4px;
}

.btn_yellow:hover {
	background-color: #B7730D;
}

.btn_gray {
	height: 26px;
	background-color: #b1b1b1;
	color: #FFF;
	padding: 2px 12px 0 12px;
	border: 0px;
	border-radius: 4px;
}

.btn_gray:hover {
	background-color: #979797;
}

.btn_flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-content: center;
}

.btn_flex .btn_blue {
	white-space: nowrap;
}

.btn_nomal {
	padding: 0px 20px 0px 20px;
	height: 26px;
	border: 1px solid #B1B1B1;
	background-color: #fff;
	font-size: 12px;
	margin-left: -6px;
	min-width: 67px;
}

.btn_nomal:hover {
	background-color: #f3f3f3;
}

.btn_nomal:active {
	position: relative;
	padding: 0px 20px 0px 20px;
	background-color: #009DE3;
	border: 1px solid #009DE3;
	color: #FFF;
	margin-left: -6px;
}

.btn_nomal.active {
	position: relative;
	padding: 0px 20px 0px 20px;
	background-color: #009DE3;
	border: 1px solid #009DE3;
	color: #FFF;
	margin-left: -6px;
}

.btn_blue_pop {
	height: 30px;
	background-color: #1399D4;
	color: #FFF;
	padding: 1px 24px 0px 24px;
	border: 0px;
}

.btn_blue_pop:hover {
	background-color: #1179A7;
}

.btn_gray_pop {
	height: 30px;
	background-color: #b1b1b1;
	color: #FFF;
	padding: 1px 24px 0px 24px;
	border: 0px;
	margin-right: 16px;
}

.btn_gray_pop:hover {
	background-color: #979797;
}

/**
 * 버튼 그룹
 */
.button-group {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
}

.button-group button {
	font-size: 16px;
	font-weight: 400;
	margin: 0 4px;
	padding: 15px 20px;
	color: #fff;
	background-color: #206ae2;
	border-radius: 2rem;
	border: 0;
	width: 200px;
}

.button-group button.outline {
	color: #206ae2;
	background-color: transparent;
	border: 1px solid #206ae2;
}

.button-group button.outline-red {
	color: #d9001b;
	background-color: transparent;
	border: 1px solid #d9001b;
}

/**
 * 페이징
 */
.box_num {
	width: 400px;
	display: flex;
	margin: 0 auto;
	justify-content: center;
}

.btn_num {
	width: 26px;
	height: 26px;
	border: 1px solid #B1B1B1;
	background-color: #fff;
	font-size: 12px;
	margin-right: 6px;
}

.btn_num:hover {
	background-color: #f3f3f3;
}

.btn_num:active {
	background-color: #009DE3;
	color: #FFF;
	border: 0px;
}

.btn_start {
	width: 26px;
	height: 26px;
	border: 1px solid #B1B1B1;
	background-color: #fff;
	font-size: 12px;
	background-image: url("../../images/cmmn/start_end.svg");
	background-repeat: no-repeat;
	background-position: center;
	margin-right: 6px;
}

.btn_start:hover {
	background-color: #f3f3f3;
}

.btn_prev {
	width: 26px;
	height: 26px;
	border: 1px solid #B1B1B1;
	background-color: #fff;
	font-size: 12px;
	background-image: url("../../images/cmmn/perv_next.svg");
	background-repeat: no-repeat;
	background-position: center;
	margin-right: 20px;
}

.btn_prev:hover {
	background-color: #f3f3f3;
}

.btn_next {
	width: 26px;
	height: 26px;
	border: 1px solid #B1B1B1;
	background-color: #fff;
	font-size: 12px;
	margin-right: 6px;
	background-image: url("../../images/cmmn/perv_next.svg");
	background-repeat: no-repeat;
	background-position: center;
	margin-left: 20px;
}

.btn_next:hover {
	background-color: #f3f3f3;
}

.btn_end {
	width: 26px;
	height: 26px;
	border: 1px solid #B1B1B1;
	background-color: #fff;
	font-size: 12px;
	background-image: url("../../images/cmmn/start_end.svg");
	background-repeat: no-repeat;
	background-position: center;
}

.btn_end:hover {
	background-color: #f3f3f3;
}

.pagination {
	width: auto;
	margin-top: 20px;
}

.pagination .btn_num {
	width: auto;
	padding: 0 9px;
}

.pagination .btn_prev {
	margin-right: 6px;
}

.pagination .btn_next {
	margin-left: 0;
}

.pagination-number-selected {
	background-color: #1179A7;
	border-color: #206ae2;
	color: #fff;
	border-color: transparent;
}

.pagination-number-selected:hover {
	cursor: default;
	background-color: #1179A7;
	border-color: #206ae2;
	color: #fff;
	border-color: transparent;
}

.red-style {
	font-size: 13.4px;
	font-family: "Apple SD Gothic Neo", "Noto Sans KR", sans-serif, Dotum, 돋움, Gulim, 굴림, Helvetica;
	color: #000000;
	background-color: #ffffff;
}

.red-style * {
	margin: 0;
	padding: 0;
}

.red-style li {
	list-style: none;
}

.red-style button {
	font: 400 13.3333px Arial;
}

.red-txt {
	color: #f44336;
}