/* ----------------------------------------- */
#shared-request-btn {
  position: fixed;
  bottom: 7px;
  right: 5px;
  z-index: 1000;
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  will-change: transform, opacity;
}
@media (max-width: 767px) {
  #shared-request-btn {
    bottom: 5px;
    right: 6px;
  }
}
#shared-request-btn.is-mounted {
  transform: translateY(0);
  opacity: 1;
}
#shared-request-btn.is-hidden {
  transform: translateY(24px);
  opacity: 0;
  pointer-events: none;
}
#shared-request-btn a:hover {
  opacity: 1;
}
@media (min-width: 768px) {
  #shared-request-btn a:hover {
    filter: brightness(1.2);
  }
}
#shared-request-btn a img {
  width: 299px;
}
@media (max-width: 767px) {
  #shared-request-btn a img {
    width: 220px;
  }
}/*# sourceMappingURL=style.css.map */