html, body {
    scrollbar-width: none; 
    -ms-overflow-style: none; 
}

html::-webkit-scrollbar, 
body::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

body {
  background-image: url(/media/backgrounds/pinkcheck.png);
  background-size: 40px;
  font-family: 'angel';
  min-width: 1200px;
  max-width: 1200px;
  overflow-y: scroll; 
  overflow-x: hidden;
  letter-spacing: 0.3px;
  color: #606060;
  margin: 0;
  padding: 0;
}

body.loading {
    overflow: hidden !important;
}

* {
  cursor: url('/media/cursor/cursorhover.png'), auto;
}

a, button, input, select, textarea {
  cursor: url('/media/cursor/cursorhover.png'), pointer;
}

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 9999;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
    display: block;
}

#loader-wrapper.active {
    opacity: 1;
    pointer-events: auto;
}

#loader-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}