.scroll-actions {
  z-index: 100;
  position: fixed;
  right: 10px;
  bottom: 100px;
  display: grid;
  grid-gap: 8px;
}

.scroll-actions .action {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0px 2px 10px rgba(0, 59, 103, 0.11);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
}

.scroll-actions .action__number {
  position: absolute;
  text-align: center;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  background-color: #DF231A;
  border-radius: 50%;
  font-weight: 600;
  font-size: 9px;
  line-height: 16px;
  color: #FFFFFF;
}

.scroll-actions .action i {
  color: #4ABAF1;
  font-size: 24px;
}

.scroll-actions .action--top {
  background-color: #4ABAF1;
}

.scroll-actions .action--top i {
  color: #fff;
}

.scroll-actions .action--admin {
  background-color: #4ABAF1;
}

.scroll-actions .action--admin i {
  color: #fff;
}

@media (min-width: 768px) {
  .scroll-actions .action--fav, .scroll-actions .action--compare {
    display: none;
  }
}
