.fav-loader,
.download-loader {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #ccc;
  border-top: 3px solid #11518c;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  vertical-align: middle;
  margin-left: 5px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.my-favourites {
  border-radius: 0.5rem;
  text-transform: capitalize;
  padding: 0.8125rem 2.5rem 0.8125rem 1.5625rem;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 0.9375rem;
  display: inline-block;
  border: 0.0625rem solid var(--darkgrey);
  position: relative;
  color: var(--darkgrey);
  background-color: var(--white);
}
.my-favourites:after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  background-image: url(../images/bookmark.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  top: 0.6875rem;
  right: 1rem;
}
.my-favourites[data-favourites="0"] {
  border-color: var(--tealblue);
  color: var(--tealblue);
}
.my-favourites[data-favourites="0"]:after {
  width: 1.25rem;
  height: 1.25rem;
  overflow: hidden;
  -webkit-mask-image: url(../images/bookmark-fill.svg);
  mask-image: url(../images/bookmark-fill.svg);
  -webkit-mask-size: 1.25rem;
  mask-size: 1.25rem;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mask-position: right;
  background-image: none;
  background-color: var(--tealblue);
}
