@charset "UTF-8";
/*초기화*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
* {
	box-sizing:border-box;
}
html, body {
	height:100%;
	font-family:'NotosansKr', sans-serif;
	color:#464646;
}
body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	box-sizing: border-box;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a {
	text-decoration:none;
	color:#222;
}
select, input:focus {
	outline:0;
}
button {
	border:0;
	outline:0;
	background:none;
	font-family:'NotosansKr', sans-serif;
}
select {
	font-family:'NotosansKr', sans-serif;
	transform:rotate(-0.03deg);
}
input[type=radio] {
	cursor:pointer;
}
/*
h1, h2, h3, h4, h5, h6, p, span, b, u, i, a, ul, ol, li, select, option, input, th, td {
	transform:rotate(-0.03deg);
}
*/

/*기본폰트*/
@font-face {
	font-family:'NotosansKr';
	font-style: normal;
	font-weight: 100;
	src: url(/sppartners/fonts/NotoSansKR-Light.woff) format('woff');
}
@font-face {
	font-family:'NotosansKr';
	font-style: normal;
	font-weight: 400;
	src: url(/sppartners/fonts/NotoSansKR-Regular.woff) format('woff');
}
@font-face {
	font-family:'NotosansKr';
	font-style: normal;
	font-weight: 600;
	src: url(/sppartners/fonts/NotoSansKR-Bold.woff) format('woff');
}
/*
@font-face {
	font-family:'GmarketSans';
	font-style: normal;
	font-weight: 100;
	src: url(/sppartners/fonts/GmarketSansLight.woff) format('woff');
}
@font-face {
	font-family:'GmarketSans';
	font-style: normal;
	font-weight: 400;
	src: url(/sppartners/fonts/GmarketSansMedium.woff) format('woff');
}
@font-face {
	font-family:'GmarketSans';
	font-style: normal;
	font-weight: 600;
	src: url(/sppartners/fonts/GmarketSansBold.woff) format('woff');
}
*/
/*로딩스피너*/
.loading {
	position:fixed;
	top:calc(50% - 25px);
	left:calc(50% - 25px);
	display: inline-block;
	width: 50px;
	height: 50px;
	border: 3px solid rgba(255,255,255,.3);
	border-radius: 50%;
	border-top-color: #fff;
	animation: spin 1s ease-in-out infinite;
	-webkit-animation: spin 1s ease-in-out infinite;
	z-index:999999;
} 
 @keyframes spin {
	to { -webkit-transform: rotate(360deg); }
	 }
	 @-webkit-keyframes spin {
	to { -webkit-transform: rotate(360deg); }
	 }
/*스크롤바디자인*/
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-thumb {
    background-color: #c4c7cc;
    border-radius: 10px;
}
::-webkit-scrollbar-track {
    background-color: #eef3fa;
    border-radius: 10px;
}