.js-interest-counter {
    margin: -10px 0 20px;
    padding: 8px 14px;
    border: 1px solid #fff;
    background: #f8fdf9;
    border-radius: 0;
	text-align: center;
	line-height: 21px;
    font-size: 13px;
    color: #2f5d3a;
    opacity: 0;
    transform: translateY(6px);
    transition: all 0.5s ease;
}

.js-interest-counter.visible {
    opacity: 1;
    transform: translateY(0);
}

.js-interest-counter::before {
    content: "\1F525";
    margin-right: 1px;
    font-size: 16px;
    vertical-align: middle;
}

.js-interest-counter {
    position: relative;
}

.js-interest-close {
    position: absolute;
    top: 5px;
    right: 3px;
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
    color: #2f5d3a;        
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.js-interest-close:hover {
    opacity: 1;
}