.main-cursor,
.secondary-cursor {
  z-index: 10000;
  pointer-events: none;
  transform: translate(0, 0);
  transform-origin: center;
  position: fixed;
  overflow: visible;
  width: 0;
  height: 0;
}

.no-cursor {
  display: none;
}

.main-cursor .main-cursor-background {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
  background-color: #fff;
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  border: 0.5px solid #004d35;
}
.main-cursor .main-cursor-background::before,
.main-cursor .main-cursor-background::after {
  content: "";
  width: 0;
  height: 0;
  left: 0;
  position: absolute;
  background-color: transparent;
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1) 0;
}
.main-cursor .main-cursor-background svg {
  transform: scale(0) rotateZ(0deg);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.main-cursor .main-cursor-background svg .point,
.main-cursor .main-cursor-background svg .swipe,
.main-cursor .main-cursor-background svg .zoom {
  transition: fill 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.secondary-cursor {
  mix-blend-mode: difference;
}
.secondary-cursor .cursor-background {
  transform: translate(-50%, -50%);
  transform-origin: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #fff;
  opacity: 0.5;
}

.arrow-cursor .cursor-background {
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.arrow-cursor .main-cursor {
  mix-blend-mode: normal;
}
.arrow-cursor .main-cursor .main-cursor-background {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.arrow-cursor .main-cursor .main-cursor-background svg {
  opacity: 1;
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.arrow-cursor .main-cursor .main-cursor-background svg .point,
.arrow-cursor .main-cursor .main-cursor-background svg .swipe,
.arrow-cursor .main-cursor .main-cursor-background svg .zoom {
  transition: fill 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.cursor-wrapper {
  z-index: 999;
}
.cursor-wrapper.green-pointer .main-cursor-background {
  background: #004d35;
}
.cursor-wrapper.green-pointer .main-cursor-background svg {
  transform: scale(1) rotateZ(-30deg);
}
.cursor-wrapper.green-pointer .main-cursor-background svg .point {
  fill: #fff;
}
.cursor-wrapper.green-swipe .main-cursor-background {
  background: #004d35;
}
.cursor-wrapper.green-swipe .main-cursor-background svg {
  transform: scale(1) rotateZ(0deg);
}
.cursor-wrapper.green-swipe .main-cursor-background svg .swipe {
  fill: #fff;
}
.cursor-wrapper.white-pointer .main-cursor-background {
  background: #fff;
}
.cursor-wrapper.white-pointer .main-cursor-background svg {
  transform: scale(1) rotateZ(-30deg);
}
.cursor-wrapper.white-pointer .main-cursor-background svg .point {
  fill: #004d35;
}
.cursor-wrapper.zoom .main-cursor-background {
  background: none;
  border: none;
}
.cursor-wrapper.zoom .main-cursor-background svg {
  transform: scale(1) rotateZ(0deg);
}
.cursor-wrapper.zoom .main-cursor-background svg .zoom {
  fill: #fff;
}
.cursor-wrapper.zoom .main-cursor-background .cursor-background {
  opacity: 0;
}
.cursor-wrapper.white-swipe .main-cursor-background {
  background: #fff;
}
.cursor-wrapper.white-swipe .main-cursor-background svg {
  transform: scale(1) rotateZ(0deg);
}
.cursor-wrapper.white-swipe .main-cursor-background svg .swipe {
  fill: #004d35;
}
.cursor-wrapper.link-pointer .main-cursor-background {
  width: 10px;
  height: 10px;
  background: #fff;
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.cursor-wrapper.link-pointer .cursor-background {
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.cursor-wrapper.default .main-cursor-background {
  width: 16px;
  height: 16px;
  background: #fff;
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.cursor-wrapper.cursor-text .main-cursor-background {
  background-color: #333;
  border: none;
  width: 1px;
  height: 30px;
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.cursor-wrapper.cursor-text .main-cursor-background::after,
.cursor-wrapper.cursor-text .main-cursor-background::before {
  left: -4px;
  width: 9px;
  height: 1px;
  background-color: #333;
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1) 100ms;
}
.cursor-wrapper.cursor-text .main-cursor-background::after {
  top: 0;
}
.cursor-wrapper.cursor-text .main-cursor-background::before {
  bottom: 0;
}
.cursor-wrapper.cursor-text .cursor-background {
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

@media (max-width: 480px) {
  #cursor {
    display: none;
  }
}

/*# sourceMappingURL=Pointer.css.map */
