/* TOOLTIP */

.tooltip {
	color: currentColor;	
	font-size: 1.125rem;
	margin: 0;
	padding: 0;
	position: relative;
	transform: translateX(-0.125em);
	vertical-align: top;
	z-index: 12;
}

.tippy-tooltip[data-animation=fade][data-state=hidden] {
	opacity: 0
}

.tippy-iOS {
	cursor: pointer !important;
	-webkit-tap-highlight-color: transparent
}

.tippy-popper {
	pointer-events: none;
	max-width: calc(100vw - 10px);
	transition-timing-function: cubic-bezier(.165, .84, .44, 1);
	transition-property: transform
}

.tippy-tooltip {
	background: var(--dark);
	border-radius: 4px;
	color: var(--grey);	
	position: relative;
    padding: .5rem;
    font-size: .725rem;
	transition-property: visibility, opacity, transform;
	outline: 0
}

.tippy-tooltip[data-interactive][data-state=visible] {
	pointer-events: auto
}

.tippy-tooltip[data-inertia][data-state=visible] {
	transition-timing-function: cubic-bezier(.54, 1.5, .38, 1.11)
}

.tippy-arrow {
	position: absolute;
	border-color: transparent;
	border-style: solid
}

.tippy-content {
	padding: 5px 9px
}