.buble-link {
	position: relative;
	font-weight: 700;
	color: #21b049;
	text-decoration: none;
	border-bottom: 0;
}
.buble-link-drop {
	position: absolute;
	left: 50%;
	top: 100%;
	margin-top: 10px;
	transform: translate(-50%, 10px);
	width: 300px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	padding: 15px 20px;
	background: #FFF;
	box-shadow: 0px 0px 40px -1px rgba(0, 0, 0, 0.17);
	visibility: hidden;
	opacity: 0;
	transition: visibility .15s, opacity .15s, transform .2s;
	color: #3f3f3f;
	min-height: 100px;
	border-radius: 2px;
	line-height: 1.3;
}
.buble-link-drop:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	bottom: 100%;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 6px 10px 6px;
	border-color: transparent transparent #FFF transparent;
}
.buble-link:hover .buble-link-drop {
	visibility: visible;
	opacity: 1;
	transform: translate(-50%, 0px);
}
.buble-link-img {
	flex: 0 0 70px;
	max-width: 70px;
	margin-right: 15px;
	height: 70px;
	background: #F4F4F4;
	border-radius: 50%;
	overflow: hidden;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.buble-link-img img {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
}
.buble-link-img:empty:after {
	content: "нет фото";
	color: #CCC;
	font-size: 10px;
}