.tooltip {
	position: absolute;
	z-index: 1030;
	display: block;
	font-size: .813em;
	font-weight: 400;
	line-height: 1.2;
	color: #fff;
	text-align: center;
	text-decoration: none;
	background-color: #4c5f69;
	border-radius: .57em;
	box-shadow: none;
	opacity: 0;
	filter: alpha(opacity=0);
	visibility: visible;
	}
.tooltip.in {
	opacity: 1;
	filter: alpha(opacity=100);
	}
.tooltip.top{
	padding: .36em 0;
	margin-top: -.36em;
	}
.tooltip.right {
	padding: 0 .36em;
	margin-left: .36em;
	}
.tooltip.bottom {
	padding: .36em 0;
	margin-top: .36em;
	}
.tooltip.left {
	padding: 0 .36em;
	margin-left: -.36em;
	}
.tooltip-inner {
	width: max-content;
	min-width: 100%;
	max-width: 220px;
	padding: .6em 1.2em;
	word-break: break-word;
	white-space: normal;
	}
.tooltip-arrow {
	position: absolute;
	width: 0;
	height: 0;
	border-color: transparent;
	border-style: solid;
	}
.tooltip.top .tooltip-arrow {
	bottom: -.36em;
	left: 50%;
	margin-left: -.36em;
	border-top-color: #5c6170;
	border-width: .4em .4em 0;
	}
.tooltip.top-left .tooltip-arrow {
	bottom: -.36em;
	left: .36em;
	border-top-color: #5c6170;
	border-width: .4em .4em 0;
	}
.tooltip.top-right .tooltip-arrow {
	right: .36em;
	bottom: -.36em;
	border-top-color: #5c6170;
	border-width: .4em .4em 0;
	}
.tooltip.right .tooltip-arrow {
	top: 50%;
	left: -.36em;
	margin-top: -.36em;
	border-right-color: #5c6170;
	border-width: .4em .4em .4em 0;
	}
.tooltip.left .tooltip-arrow {
	top: 50%;
	right: -.36em;
	margin-top: -.36em;
	border-left-color: #5c6170;
	border-width: .4em 0 .4em .4em;
	}
.tooltip.bottom .tooltip-arrow {
	top: -.36em;
	left: 50%;
	margin-left: -.36em;
	border-bottom-color: #5c6170;
	border-width: 0 .4em .4em;
	}
.tooltip.bottom-left .tooltip-arrow {
	top: -.36em;
	left: .36em;
	border-bottom-color: #5c6170;
	border-width: 0 .4em .4em;
	}
.tooltip.bottom-right .tooltip-arrow {
	top: -.36em;
	right: .36em;
	border-bottom-color: #5c6170;
	border-width: 0 .4em .4em;
	}
@media (min-width: 1280px) {
	.tooltip-inner {
		max-width: 16vw;
		}
}
