@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%;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}
ol, ul {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-weight:400;
}
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;
}
input[type=radio] {
  cursor:pointer;
}
/*기본폰트*/
@font-face {
  font-family:'NotosansKr';
  font-style: normal;
  font-weight: 100;
  src: url(../fonts/NotoSansKR-Light.woff) format('woff');
}
@font-face {
  font-family:'NotosansKr';
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/NotoSansKR-Regular.woff) format('woff');
}
@font-face {
  font-family:'NotosansKr';
  font-style: normal;
  font-weight: 600;
  src: url(../fonts/NotoSansKR-Bold.woff) format('woff');
}
@font-face {
  font-family:'GmarketSans';
  font-style: normal;
  font-weight: 100;
  src: url(../fonts/GmarketSansLight.woff) format('woff');
}
@font-face {
  font-family:'GmarketSans';
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/GmarketSansMedium.woff) format('woff');
}
@font-face {
  font-family:'GmarketSans';
  font-style: normal;
  font-weight: 600;
  src: url(../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: #ccc4c4;
    border-radius: 10px;
}
::-webkit-scrollbar-track {
    background-color: #faeef1;
    border-radius: 10px;
}