
.download-fab {
  /*position: fixed;*/
  /*top: 50%;*/
  /*right: 0;*/
  /*transform: translateY(-50%);*/
  display: flex;
  align-items: center;
  height: 64px;
  background-color: #ffffff;
  border-radius: 32px 0 0 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  overflow: hidden;
  width: 64px;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  z-index: 1000;
}
.download-fab:hover,
.download-fab:focus-visible {
  width: 280px;
}
.download-fab .icon-wrap {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.download-fab .icon-wrap i {
    color: #000000;
    font-size: 20px;
    transform: rotate(0deg);
    margin-right: 0px;
}
.download-fab .label {
  white-space: nowrap;
  color: #000000;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.03em;
  opacity: 0;
  transition: opacity 0.25s ease 0.1s;
}
.download-fab:hover .label,
.download-fab:focus-visible .label {
  opacity: 1;
}
.download-fab .arrow-circle {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  margin-right: 10px;
  margin-left: auto;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.25s ease 0.1s, transform 0.25s ease 0.1s;
}
.download-fab:hover .arrow-circle,
.download-fab:focus-visible .arrow-circle {
  opacity: 1;
  transform: scale(1);
}
.download-fab .arrow-circle svg {
  width: 18px;
  height: 18px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}