.app-download-float {
  position: fixed;
  top: 50%;
  right: 12px;
  z-index: 1000;
  display: flex;
  width: 58px;
  min-height: 58px;
  padding: 7px 5px;
  transform: translateY(-50%);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #fff;
  background: #17679e;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(22, 74, 112, .18);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: background-color .2s ease, transform .2s ease;
}

.app-download-float:hover,
.app-download-float:focus-visible {
  color: #fff;
  background: #17679e;
  border: 0;
  transform: translateY(-50%) translateX(-3px);
}

.app-download-float:focus-visible {
  outline: 3px solid rgba(36, 71, 155, .35);
  outline-offset: 3px;
}

.app-download-float svg {
  width: 17px;
  height: 17px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.app-download-float-copy {
  display: none;
  position: absolute;
  right: calc(100% + 10px);
  width: 150px;
  padding: 14px 9px;
  color: #465268;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(38, 49, 67, .12);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.app-download-float:hover .app-download-float-copy,
.app-download-float:focus-visible .app-download-float-copy {
  display: block;
}

@media (max-width: 767px) {
  .app-download-float {
    right: 10px;
    width: 58px;
    min-height: 58px;
    padding: 6px 4px;
    gap: 3px;
    color: #465268;
    background: #fff;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(38, 49, 67, .13);
    font-size: 11px;
  }

  .app-download-float-copy { display: none; }

  .app-download-float svg {
    width: 17px;
    height: 17px;
  }
}
