.wishlist-link {
  position: fixed;
  z-index: 100;
  right: 0;
  top: 40%;
  margin-top: -90px;
  width: 60px;
  height: 80px;
  padding: 15px 0;
  text-align: center;
  background-color: var(--color-bg-grey-medium);
  border: 1px solid var(--color-border-grey-light);
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.wishlist-link-count {
  display: inline-block;
  background-color: var(--main-template-color, #0088cc);
  color: var(--color-white-noinvert);
  border-radius: 50%;
  width: 20px;
  line-height: 20px;
  font-weight: bold;
  font-size: 0.8em;
}
.wishlist-link-count:hover {
  opacity: 0.8;
}
.wishlist-link-icon {
  display: block;
  color: var(--color-text-grey-medium);
  font-size: 1.5em;
  margin-bottom: 5px;
  line-height: 1;
}
.wishlist-clear {
  position: absolute;
  top: 5px;
  right: 0;
  color: var(--color-text-grey-medium);
}
.wishlist-clear:hover {
  opacity: 0.8;
}
.wishlist-clear:before {
  content: "\f00d";
  font-family: FontAwesome;
  margin-right: 5px;
}
.wishlist-page .catalog-section__view {
  display: none;
}
.wishlist-page {
  position: relative;
}
@media (max-width: 767px) {
  .wishlist-link {
    width: 50px;
    height: 65px;
    padding: 10px 0;
    margin-top: -70px;
    background-color: rgba(238, 238, 238, 0.7);
  }
  .wishlist-link-icon {
    color: var(--color-text-base-black);
    font-size: 1.2em;
  }
  .wishlist-link-count {
    width: 17px;
    line-height: 17px;
    font-size: 0.7em;
  }
}
@media (max-width: 575px) {
  .wishlist-clear {
    position: static;
    display: inline-block;
    margin-bottom: 30px;
  }
}
