*, input[type="submit"] {
  cursor: none!important;
}

.custom-cursor {
  position: fixed;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: difference;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  /* background-color: #1d4bc5; */
  /* background-color: #e2b337; */
  background-color: #a7cda2;
  background-color: #58315a;
  transition: transform 350ms ease,background-color 350ms ease;
  transform: translate(-50%, -50%) scale(.3);
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  line-height:1;
}

.custom-cursor__click,
.custom-cursor__clickable {
  background-color: #1d4bc5;
  background-color: #e2b337;
}

.custom-cursor__click {
  transform: translate(-50%, -50%) scale(.2);
}

.custom-cursor__clickable {
  transform: translate(-50%, -50%) scale(0.6);
}

.custom-cursor__swipe svg {
    /* fill: #000000; */
    /* transform: scale(1); */
}

.custom-cursor.custom-cursor__clickable.splide__arrow {
  transform: translate(-50%, -50%) scale(1);
}