* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

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,
button,
textarea,
input {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-family: inherit;
  appearance: none;
  border-radius: 0;
  line-height: 174%;
}

ol,
ul {
  list-style: none;
}

html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  font-family: "SUIT", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #303030;
}

a {
  text-decoration: none;
  color: #303030;
}

input {
  outline: none;
}

input[type="submit"] {
  cursor: pointer;
}

img {
  vertical-align: top;
}

button {
  cursor: pointer;
  outline: none;
  background-color: transparent;
  color: #303030;
}

table {
  border-collapse: collapse;
}

select {
  font-family: "SUIT", sans-serif;
  outline: none;
  color: #303030;
}

/* 전체 스크롤바 너비 */
*::-webkit-scrollbar {
  width: 6px;
  height: 6px; /* 가로 스크롤바의 높이 */
}

/* 스크롤바의 트랙(배경) */
*::-webkit-scrollbar-track {
  background-color: #eef2f7;
}

/* 스크롤바의 핸들(스크롤바의 움직이는 부분) */
*::-webkit-scrollbar-thumb {
  background-color: rgba(194, 194, 194, 0.8);
  border-radius: 10px;
}

/* 스크롤바 핸들에 마우스를 올렸을 때 */
*::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

/* 스크롤바의 모서리 또는 버튼 등 */
*::-webkit-scrollbar-corner {
  background-color: #f1f1f1;
}

/* 파이어폭스용 스크롤바 커스텀 */
body {
  scrollbar-width: thin; /* 스크롤바 너비 */
  scrollbar-color: rgba(194, 194, 194, 0.8) #eef2f7; /* 스크롤바 색상, 트랙 색상 */
}
