// reset html element default style
ol,
ul,
h1,
h2,
h3,
h4,
h5,
h6,
p,
th,
td,
dl,
dd,
form,
fieldset,
legend,
input,
textarea,
select,
div {
  margin: 0;
  padding: 0;

  &::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    background: transparent;
  }

  &::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 10px;
  }

  &:hover::-webkit-scrollbar-thumb {
    background: #e9edf1;
  }

  &:hover::-webkit-scrollbar-track {
    background: transparent;
  }
}
em {
  font-style: normal;
}
li {
  list-style: none;
}
img {
  border: 0;
  vertical-align: middle;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
p {
  word-wrap: break-word;
}

a {
  text-decoration: none;

  &:active {
    text-decoration: none;
  }

  &:hover {
    text-decoration: none;
  }

  &:visited {
    text-decoration: none;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
