@charset "utf-8";

#heart-container {
    height: 30px;
    text-align: center;
    margin-left: 40%;
    padding-top: 10px;
    min-width: 30px;

}

.heart-like-button {
  position: relative;
  z-index:100;
}

.heart-like-button:before,
.heart-like-button:after {
    position: absolute;
    top: 0;
    width: 15px;
    height: 25px;
    border-radius: 7px 7px 0 0;
    content: "";
    cursor: pointer;
    transition: background .4s;
    background-color: lightgrey;
}


.heart-like-button:before {
  left: 15px;
  transform: rotate(-45deg);
  transform-origin: 0 100%;

}
.heart-like-button:after {
  left: 0;
  transform: rotate(45deg);
  transform-origin :100% 100%;
}
.heart-like-button.liked::before,
.heart-like-button.liked::after {
  background-color: #D32F2F;
}

#global-heart-button .badge {
  position: absolute;
  top: -10px;
  right: -10px;
  padding: 5px 5px;
  border-radius: 50%;
  background: #D32F2F;
  color: white;
  font-size: 12px;
  min-width: 22px;
}

#basket-menu .badge {
  position: absolute;
  top: -10px;
  right: 51%;
  padding: 5px 5px;
  border-radius: 50%;
  background: #79D3B5;
  color: white;
  font-size: 12px;
  min-width: 22px;
}


@media only screen and (max-width: 500px) {
  #global-heart-button {
      margin-left: -10px;
  }
  #global-heart-button.liked::before,
  #global-heart-button.liked::after {
    margin-left:-20px;
  }
  #basket-menu .badge,
  #global-heart-button .badge {
    font-size: 8px;
    min-width: 17px;
  }
  #basket-menu .badge{
    right: 20px !important;
  }
  #global-heart-button .badge {
    right: 0px !important;
  }
}