.favourite {
    position: fixed;
    right: 0;
    bottom: 0;
    padding: 10px 20px;
    color: var(--secondary-text-color);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    z-index: 1;
    text-decoration: none;
    background: #5b3f97;
    font-weight: 100;
    font-size: 14px;
    letter-spacing: 1px;
}

.favorites__icon {
    fill: transparent;
    stroke: currentColor;
    stroke-width: 2;
    width: 1.9rem;
    height: 1.7rem;
}

.favorites_link {
    display: flex;
    color: var(--secondary-text-color);
    padding: 15px 0;
    align-items: center;
}

.favorites_link-container {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 5.4rem;
    height: 4.6rem;
    padding: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    text-decoration: none;
    color: var(--secondary-text-color);
}

.favorites__informer_content {
    font-size: 1.8rem;
    line-height: 1.44;
    font-weight: 500;
}
.favorites__informer_content a {
    transition: opacity 0.25s;
}
.favorites__informer_content a:hover {
    opacity: 0.8;
}
.favorites__informer_wrapper._active:before {
    content: '';
    position: absolute;
    height: 0.5rem;
    background: rgb(0 0 0 / 10%);
    bottom: -1px;
    left: -1px;
    right: -1px;
    animation: progressBar 5s linear;
    animation-fill-mode: both;
}

.favorites__informer-text {
    text-transform: lowercase;
}

.favorites__count {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    background: none;
    color: inherit;
    opacity: 0.4;
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: 500;
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
}