.bulk-order-fab {
  /*position: fixed;*/
  /*bottom: 19%;*/
  /*right: 0;*/
  display: flex;
  align-items: center;
  height: 64px;
  background: #212733;
  border-radius: 32px 0 0 32px;
  box-shadow: 0 8px 24px rgba(33, 39, 51, 0.4);
  cursor: pointer;
  overflow: hidden;
  width: 64px;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  z-index: 9999;
}
.bulk-order-fab:hover,
.bulk-order-fab:focus-visible {
  width: 230px;
}
.bulk-order-fab .icon-wrap {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bulk-order-fab .icon-wrap svg {
  width: 26px;
  height: 26px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bulk-order-fab .label {
  white-space: nowrap;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.15;
  opacity: 0;
  transition: opacity 0.25s ease 0.1s;
}
.bulk-order-fab:hover .label,
.bulk-order-fab:focus-visible .label {
  opacity: 1;
}
.bulk-order-fab .arrow-circle {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  margin-right: 10px;
  margin-left: auto;
  background: #ffffff;
  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;
}
.bulk-order-fab:hover .arrow-circle,
.bulk-order-fab:focus-visible .arrow-circle {
  opacity: 1;
  transform: scale(1);
}
.bulk-order-fab .arrow-circle svg {
  width: 18px;
  height: 18px;
  stroke: #212733;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bulk-order-fab .bulk-order-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
}