.app-download-float {
  position: fixed;
  right: 26px;
  bottom: 30px;
  z-index: 2147480000;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  color: #fff;
  background: #1769e8;
  box-shadow: 0 14px 28px rgba(23, 105, 232, 0.28);
  font-family: inherit;
  line-height: 1;
  text-decoration: none;
  cursor: grab;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.app-download-float:hover {
  color: #fff;
  background: #0f5ed6;
  box-shadow: 0 18px 32px rgba(23, 105, 232, 0.34);
  transform: scale(1.06);
}

.app-download-float--dragging {
  cursor: grabbing;
  box-shadow: 0 20px 38px rgba(23, 105, 232, 0.38);
  transform: scale(1.08);
  transition: none;
}

.app-download-float:focus-visible {
  outline: 3px solid rgba(23, 105, 232, 0.34);
  outline-offset: 3px;
}

.app-download-float--left {
  right: auto;
  left: 26px;
}

.app-download-float__icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
  font-weight: 700;
  transform: translateY(-2px);
}

@media (max-width: 760px) {
  .app-download-float {
    right: 16px;
    bottom: 82px;
    width: 52px;
    height: 52px;
  }

  .app-download-float--left {
    right: auto;
    left: 16px;
  }

  .app-download-float__icon {
    width: 26px;
    height: 26px;
    font-size: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .app-download-float {
    transition: none;
  }

  .app-download-float:hover,
  .app-download-float--dragging {
    transform: none;
  }
}
