* {
  cursor: none;
}

.cursor {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 1px solid #ca8423;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  transform: translate(-100%,-100%);
  z-index: 99999999;
}

.cursor2 {
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: #ca8423;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 99999999;
}

.hover {
  background-color: #ca8423;
  opacity: 0.3;
}

.cursorinnerhover {
  width: 40px;
  height: 40px;
  opacity: .5;
}

.fancybox-navigation .fancybox-button {
  display: flex;
    align-items: center;
    border-radius: 8px;
    background: rgba(50, 50, 50, 0.6);
    border-radius: 6px;
}

@media (max-width: 768px) {
  * {
    cursor: auto !important;
  }

  .cursor2,
  .cursor {
    display: none;
  }
}