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

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

.favorites_link {
  display: flex;
  color: var(--color-text-inverse);
  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(--color-text-inverse);
}

.favorites__informer_content {
  font-size: var(--text-h3);
  line-height: 1.44;
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.favorites__informer-icon {
  width: 2rem;
  height: 2rem;
  fill: #fff;
  margin-right: 1rem;
  flex-shrink: 0;
}
.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 {
  position: absolute;
  top: -9px;
  right: 0;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  background: #e9011a;
  color: var(--color-text-inverse);
  font-size: var(--text-xs);
  line-height: 18px;
  text-align: center;
  padding: 0 4px;
}




