HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux wordpress-ubuntu-s-2vcpu-4gb-fra1-01 5.4.0-169-generic #187-Ubuntu SMP Thu Nov 23 14:52:28 UTC 2023 x86_64
User: root (0)
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/lipovac/wp-content/plugins/the-events-calendar/common/src/resources/postcss/tooltip.pcss
/* = Tooltips
============================ */

.tribe-tooltip {
	cursor: pointer;
	display: inline-block;
	margin: 0;
	position: relative;
	text-align: left;

	.dashicons-info {
		color: #a9a9a9;
		font-size: 16px;
		line-height: 1em;
		vertical-align: middle;
	}

	/* defaults */
	.down,
	.left,
	.right,
	.up {
		background-color: #fff;
		box-shadow: 0 0 3px 3px rgba(4, 5, 5, 0.05);
		box-sizing: border-box;
		color: #333333;
		font-size: 16px;
		font-weight: 400;
		max-weight: 100vw;
		opacity: 0;
		padding: 15px;
		position: absolute;
		transform: translate(-50%, 0);
		transition: opacity 0.8s;
		visibility: hidden;
		width: 250px;
		z-index: 99999999;

		i {
			height: 12px;
			overflow: hidden;
			position: absolute;
			width: 24px;

			&::after {
				background-color: #fff;
				content: '';
				height: 12px;
				position: absolute;
				width: 24px;
			}
		}
	}

	&.large {
		.down,
		.left,
		.right,
		.up {
			width: 400px;

			@media screen and (max-width: 480px) {
				width: 250px;
			}
		}
	}

	.tooltip-list {
		padding-left: 10px;

		li {
			list-style-type: disc;
		}
	}
}

.tribe-tooltip .down {
	left: 50%;
	top: 28px;

	i {
		bottom: 100%;
		left: 50%;
		margin-left: -7px;

		&::after {
			box-shadow: 0 0 3px 3px rgba(4, 5, 5, 0.05);
			left: 50%;
			top: 50%;
			transform: translate(-50%, 50%) rotate(45deg);
		}
	}
}

/* active (open) styles */
.tribe-tooltip.active .down,
.tribe-tooltip.active .left,
.tribe-tooltip.active .right,
.tribe-tooltip.active .up {
	opacity: 1;
	visibility: visible;
}