.favor-list-wrap {
	position: relative;
	display: flex;
	align-items: flex-end;
	margin: 0 5px;
	text-align: center;
	cursor: pointer;
}
.favor-list-wrap:after{
	content: '';
	background-image: url('/local/templates/apteka/assets/img/design/ico/like.svg');
	-webkit-background-size: 24px 23px;
	background-size: 24px 23px;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 24px;
	height: 23px;
}
.favor-list-wrap:before{
	content: '';
	background-image: url('/local/templates/apteka/assets/img/design/ico/like-hover.svg');
	-webkit-background-size: 24px 23px;
	background-size: 24px 23px;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 24px;
	height: 23px;
	opacity: 0;
	animation-name: favorite;
	animation-duration: 600ms;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;
	animation-iteration-count: infinite;
}
@keyframes favorite {
	0% {
		background-size: 24px 23px;
	}
	50% {
		background-size: 20px 19px;
	}
	100% {
		background-size: 24px 23px;
	}
}
.favor-list-wrap:hover:after{
	opacity: 0;
}
.favor-list-wrap:hover:before{
	opacity: 1;
}
.favor-list-wrap .header-personal-menu-item__title{
	height: 48px;
	padding-top: 30px;
	position: relative;
	z-index: 1;
}
.count-favor-item {
	z-index: 1;
	position: absolute;
	top: -7px;
	right: 10px;
	width: 19px;
	height: 19px;
	background-color: #FFD406;
	color: #000000;
	font-size: 12px;
	text-align: center;
	cursor: pointer;
	text-decoration: none;
	border-radius: 50%;
}

.favor-list-wrap:hover .header-personal-menu-item__title {
	color: #FDCF00;
	cursor: pointer;
}
.header-personal-menu-item__title{
	transition-duration: 100ms;
}
@media (max-width: 991px) {
	.favor-list-wrap{
		display: none;
	}
}