/*custom-pointer*/
body,
body * {
  cursor: none;
}

#custom-pointer {
  visibility: hidden;
  position: fixed;
  top: -30px;
  width: 30px;
  height: 30px;
  pointer-events: none;
  z-index: 999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body:hover #custom-pointer {
  visibility: visible;
}

#custom-pointer span {
  display: block;
  position: absolute;
  background: #707070;
  mix-blend-mode: darken;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  opacity: 1;
  -webkit-transition: width .15s, height .15s;
  transition: width .15s, height .15s;
  -webkit-transition-timing-function: cubic-bezier(0, -1, 0.5, 2);
          transition-timing-function: cubic-bezier(0, -1, 0.5, 2);
}

#custom-pointer.is-hover span {
  width: 40px;
  height: 40px;
  background: rgba(112, 112, 112, 0.5);
}
/*# sourceMappingURL=pointer.css.map */