:root {
  --header-height: 6.7rem;
}
@media (width > 768px) {
  :root {
    --header-height: 11.2rem;
  }
}

.hue-floating-actions {
  position: fixed;
  bottom: 2em;
  left: 1.5rem;
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
}
@media (width > 768px) {
  .hue-floating-actions {
    bottom: 7rem;
    left: 5rem;
  }
}
@media (min-width: 1440px) {
  .hue-floating-actions {
    left: calc((100vw - 1440px) / 2 + 1.5rem);
  }
}
@media (min-width: 1440px) and (width > 768px) {
  .hue-floating-actions {
    left: calc((100vw - 1440px) / 2 + 5rem);
  }
}

.floating-actions-wrapper {
  display: flex;
  flex-direction: row;
  gap: 0.6rem;
  background: var(--black-main, #333032);
  border-radius: 4.339px;
  box-shadow: 0 0 12.567px 0 rgba(0, 0, 0, 0.1);
  padding-inline: 0.8rem;
  padding-block: 0.8rem;
  align-items: center;
  justify-content: center;
  display: flex;
}
@media (width > 768px) {
  .floating-actions-wrapper {
    gap: 0.8rem;
    padding-inline: 1.2rem;
  }
}

.floating-action-btn {
  background: var(--black-main, #333032);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  padding: 0;
  border-radius: 0;
  color: #fff;
}
.floating-action-btn.favorite {
  width: 3.4rem;
  height: 3.4rem;
}
.floating-action-btn.favorite svg {
  width: 2rem;
  height: 2rem;
}
@media (width > 768px) {
  .floating-action-btn.favorite {
    width: 3.8rem;
    height: 3.8rem;
  }
  .floating-action-btn.favorite svg {
    width: 2.1rem;
    height: 2.1rem;
  }
}
.floating-action-btn.favorite.in-wishlist svg path {
  fill: #FFF !important;
  stroke: #FFF !important;
}
.floating-action-btn.favorite.loading {
  opacity: 0.6;
  pointer-events: none;
}
.floating-action-btn.add {
  width: 3.4rem;
  height: 3.4rem;
}
.floating-action-btn.add svg {
  width: 100%;
  height: 100%;
}
@media (width > 768px) {
  .floating-action-btn.add {
    width: 3.8rem;
    height: 3.8rem;
  }
}
.floating-action-btn.remark {
  width: 3.4rem;
  height: 3.4rem;
}
@media (width > 768px) {
  .floating-action-btn.remark {
    width: 3.8rem;
    height: 3.8rem;
  }
}
.floating-action-btn.remark:disabled {
  background: none !important;
  opacity: 1 !important;
  cursor: default;
}
.floating-action-btn:active {
  opacity: 0.6;
  transform: scale(0.95);
}
.floating-action-btn svg path,
.floating-action-btn svg circle,
.floating-action-btn svg line,
.floating-action-btn svg rect,
.floating-action-btn svg polygon {
  stroke: currentColor;
  fill: currentColor;
}
.floating-action-btn svg path[stroke],
.floating-action-btn svg circle[stroke],
.floating-action-btn svg line[stroke] {
  fill: none;
  stroke: currentColor;
}
.floating-action-btn svg path[fill]:not([stroke]),
.floating-action-btn svg circle[fill]:not([stroke]),
.floating-action-btn svg rect[fill]:not([stroke]) {
  stroke: none;
  fill: currentColor;
}
