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/_tooltips.scss
.tooltip {
	position: relative;
	background-color: $color-black;
	padding: 0.375rem 0.5rem;
	font-size: $font-size-caption;
	font-weight: 500;
	color: $color-white;
	z-index: 10;

	@include border-radius;

	&::before {
		content: "";
		position: absolute;
		width: 0.625rem;
		height: 0.625rem;
		background-color: $color-black;
		transform: rotate(45deg);
		bottom: -0.3125rem;
		left: calc(50% - 0.3125rem);
		z-index: -1;
	}

	&.-right {

		&::before {
			bottom: calc(50% - 0.3125rem);
			left: -0.3125rem;
		}
	}

	&.-left {

		&::before {
			bottom: calc(50% - 0.3125rem);
			right: -0.3125rem;
			left: auto;
		}
	}

	&.-bottom {

		&::before {
			top: -0.3125rem;
			bottom: auto
		}
	}
}

.minimal-scheme {

	.tooltip {

		@include border-radius(0);
	}
}