/* ::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  
  ::-webkit-scrollbar-track {
    background: none;
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: #cfd2d7;
    border-radius: 10px;
  } */
  
  html,
  body{
    position: relative;
		box-sizing: border-box;
  }
  html,
  body,
  div,
  span,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  ul,
  ol,
  li,
  p,
  a,
  img,
  button {
    margin: 0;
    padding: 0;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -khtml-user-select: none;
    user-select: none;
  }
  
  input,
  textarea,
  button {
    outline: none !important;
  }
  
  input::-ms-clear {
    display: none;
  }
  ul,
  ol {
    list-style: none;
    padding: 0;
  }
  li {
    list-style: none;
  }
  a {
    text-decoration: none;
  }
  a:hover{
    text-decoration: none;
  }
  .clearfix::after{
    clear: both;
    content: ' ';
    display: block;
  }