.cb-cursor {
  width: 60px;
  height: 60px;
  border: 2px solid black;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease;
  z-index: 99999;
}

/* Inner dot */
.cb-cursor .cb-cursor-text {
  width: 8px;
  height: 8px;
  background: black;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
	opacity:1 !important;
}

/* White mode */
.cb-cursor.white {
  border-color: white;
}

.cb-cursor.white .cb-cursor-text {
  background: white;
}
.cb-cursor::before {
	display:none !important;
}

.tj-slider-section {
	border-radius: 0 !important;
}