/*-------------------------------- Curseur personnalisé -----------------------------------*/

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}

.cursor-dot {
  background-position: top left;
  width: 30px;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid rgb(255, 255, 255);
  border-radius: 50%;
}

.cursor-dot .pointer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgba(0, 0, 0, 0.5);
  transition: width 0.1s ease-in-out, height 0.1s ease-in-out;
}

.cursor-dot.active5 .pointer {
  width: 16px;
  height: 16px;
}
