.help-box {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background-image: url(/img/icons/help-yellow.svg);
  background-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
  opacity: 0.7;
  z-index: 12000;
}
.help-box:hover {
  transform: scale(1.09);
  opacity: 1;
}
.help-box:active {
  transform: scale(1.02);
  opacity: 1;
}

@media (max-width: 800px) {
  .help-box {
    width: 40px;
    height: 40px;
  }
}