@charset "UTF-8";

* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	width: auto;
	position: relative;
	overflow-x: hidden;
	font-size: 16px;
}

body * {
	font-family: 'Pretendard', sans-serif;
}

a {
	color: #000;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 400;
}

h1,
h2,
h3,
h4,
h5 {
	font-size: 1rem;
	font-weight: 400;
}

ul {
	list-style: none;
}

table {
	table-layout: auto;
	border-collapse: collapse;
	border-spacing: 0;
}

button {
	font-size: 1rem;
	font-weight: 400;
	position: relative;
	cursor: pointer;
}

select {
	vertical-align: middle;
	background: url('../img/select_arrow.png') no-repeat 95% 50%;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding-left: 10px
}

select::-ms-expand {
	display: none;
}

:after,
:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/*페이징*/
.paging_box {
	width: 100%;
	height: auto;
	position: relative;
	text-align: center;
	font-size: 0;
}

.paging_box .paging_btn {
	width: auto;
	display: inline-block;
	position: relative;
	line-height: 16px;
}

.paging_box .paging_btn.paging_lt {
	margin-right: 28px;
}

.paging_box .paging_btn.paging_gt {
	margin-left: 28px;
}

.paging_box > ul {
	display: inline-block;
	position: relative;
	margin: 0 10px;
}

.paging_box > ul > li {
	display: inline-block;
	margin-right: 20px;
}

.paging_box > ul > li:last-of-type {
	margin-right: 0;
}

.paging_box > ul > li > a{
	font-family: 'S-CoreDream-4Regular';
	font-size: 0.938rem;
	line-height: 16px;
	letter-spacing: -.5px;
}

.paging_box > ul > li.num_active > a {
	color: #0080cb;
}

@media all and (max-width: 376px) {
	.paging_box > ul > li > a {
		font-size: 0.813rem;
	}
}

/*페이징 end*/