@charset "UTF-8";

/*
pc web용 reset css

- 서비스용으로 사용
- .pc player에서 쓰이지 않고, 팝업 플레이어 html에서 호출
- 로컬 테스트용 html안에서 호출 필요
*/

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	word-break: break-all;
	word-wrap: break-word;
}

/* 스타일초기화 */
body,
html {
	height: 100%;
	box-sizing: border-box;
	scrollbar-face-color: #a5a5a5;
	scrollbar-track-color: #1b1b1b;
	scrollbar-arrow-color: #a5a5a5;
	scrollbar-3dlight-color: none;
	scrollbar-shadow-color: #a5a5a5;
	scrollbar-darkshadow-color: none;
	scrollbar-color: #a5a5a5 #1b1b1b;
	font-family: 'NotoSans', sans-serif;
}
body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
form,
fieldset,
legend,
input,
textarea,
button,
select,
figure,
pre {
	margin: 0;
	padding: 0;
}
a {
	text-decoration: none;
	font-weight: 400;
}
a:link,
a:visited {
	text-decoration: none;
}
a:hover,
a:active {
	text-decoration: none;
	cursor: pointer;
}
button {
	cursor: pointer;
	border: 0;
}
table {
	border: none;
	border-collapse: collapse;
	border-spacing: 0;
}
td,
th,
img,
abbr,
acronym,
img,
fieldset,
iframe {
	border: 0;
}

dl,
dt,
dd,
ul,
ol,
ul,
pre {
	list-style: none;
}
caption,
legend {
	overflow: hidden;
	visibility: hidden;
	font-size: 0;
	line-height: 0;
	height: 0;
	width: 0;
	text-indent: -999em;
}
img {
	vertical-align: middle;
}
em,
p,
span,
address,
i {
	font-style: normal;
}
input,
button,
select {
	font-family: 'NotoSans', sans-serif;
}

::-webkit-scrollbar {
	width: 8px;
	height: 8px;
	background-color: transparent;
}
::-webkit-scrollbar-track {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	background-color: transparent;
}
::-webkit-scrollbar-thumb {
	height: 8px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;

	background-color: #a5a5a5;
}

/* pc web > util.scss */
.a11y-hidden {
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute;
	width: 1px;
	height: 1px;
}

/* font style */
@font-face {
	font-family: 'NotoSans';
	font-style: normal;
	font-weight: 400;
	src: local('Noto Sans KR Regular'), local('NotoSansKR-Regular'),
		url(../font/noto-sans-kr-regular.woff2) format('woff2'),
		/* Super Modern Browsers */ url(../font/noto-sans-kr-regular.woff)
			format('woff'); /* Modern Browsers */
}

@font-face {
	font-family: 'NotoSans';
	font-style: normal;
	font-weight: 700;
	src: local('Noto Sans KR Bold'), local('NotoSansKR-Bold'),
		url(../font/noto-sans-kr-bold.woff2) format('woff2'),
		/* Super Modern Browsers */ url(../font/noto-sans-kr-bold.woff)
			format('woff'); /* Modern Browsers */
}
