HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux WebLive 5.15.0-79-generic #86-Ubuntu SMP Mon Jul 10 16:07:21 UTC 2023 x86_64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/html/wpkoopkj/wp-content/themes/ohio/assets/sass/components/_cursor.scss
.custom-cursor {

	.circle-cursor {
		position: fixed;
		left: 0;
		top: 0;
		pointer-events: none;
		transform: translateZ(0);
		visibility: hidden;

		@include border-radius(50%);

		&-inner {
			margin-left: -3px;
			margin-top: -3px;
			width: 6px;
			height: 6px;
			z-index: 10000001;
			background-color: $color-red;

			&.cursor-link-hover {
				margin-left: -10px;
				margin-top: -10px;
				width: 20px;
				height: 20px;
				background-color: $color-red;
				opacity: .5;
			}
		}

		&-outer {
			margin-left: -15px;
			margin-top: -15px;
			width: 30px;
			height: 30px;
			border: 1px solid $color-red;
			z-index: 10000000;
			opacity: .5;
			transition: all .1s ease-out;
		}

		@include tablet-screen {

			display: none;
		}
	}

	.cursor-link {

		&.circle-cursor-inner {
			background: transparent !important;

			&.cursor-link-hover {
				opacity: 1;
			}

			svg {
				fill: $color-white;
			}
		}

		&.circle-cursor-outer {

			&.cursor-link-hover {
				margin-left: -2rem;
				margin-top: -2rem;
				width: 4rem;
				height: 4rem;
				background-color: rgba($color-neutral, .75);
				border: none;
			}
		}
	}

	a {

		&[data-cursor-class] {
			cursor: none;
		}
	}
}