/** Copyright (c) 2017 Artem Malcov | https://artem-malcov.ru/moduli_i_skripty/uefficiency-20-modul-rascheta-koefficienta-aktivnosti-polzovatelya-dlya-dle **/

.u_efficiency {
	display: inline-block;
	position: relative;
}

.u_efficiency span {
	display: none;
	color: #fff;
	padding:10px;
}

.u_efficiency:hover span {
	display: block;
	position: absolute;
	font-size: 11px;
	border: 1px solid #3f4146;
	background: rgb(37 39 43);
	top: 0;
	right: 0;
	width: 270px;
	border-radius: 6px;
	z-index: 99;
}

.u_efficiency span p {
	margin: 0;
	padding: 0 0 5px 0;
	font-size: 12px;
}

.u_efficiency span p:nth-last-of-type(1) {
	padding: 0;
}

.u_efficiency span a {
	color: #fff;
	text-decoration: none;
	border-bottom: 1px dotted;
}

.u_efficiency span a:hover {
	color: #fff;
	text-decoration: none;
	border-bottom: 0;
}