.quickMenu{
  position:absolute;
  bottom:0;
  right:var(--scrollbar-width);
  z-index:100;
  
  display:flex;
  flex-direction: column;
}
.quickMenu .item{
  width:70px;
  height:70px;
  background-color: rgba(0, 0, 0,0.3);
  margin-top:1px;
  background-repeat: no-repeat;
  background-position: center;
  background-size:auto;
}
@media(hover: hover) and (pointer: fine) {
  .quickMenu .item:hover{
    background-color: rgba(0, 0, 0,0.6);
    cursor: pointer;
  }
  .quickMenu .item:active{
    background-color: rgba(0, 0, 0,0.9);
    cursor: pointer;
  }
}
.quickMenu .item.like{
  background-position-y: 20px;
  position:relative;
}
.quickMenu .item.want{
  background-position-y: 20px;
  position:relative;
}
.quickMenu .item.want>.indicator,
.quickMenu .item.like>.indicator{
  display:none;
  color: #fff;
  background-color: #10bb00;
  width:16px;
  height:16px;
  border-radius:50%;
  position: absolute;
  top:5px;
  right:5px;
}

.quickMenu .item.remove{
  background-image: url(../images/icons/like-rmv_w_xs.png);
}