.sticky-section {
  position: fixed;
  bottom: 48px;
  right: 24px;
  z-index: 1000;
  display: none;
}

.sticky-section .sticky-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 54px;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.14);
  transition: all 0.3s ease;
}

.sticky-section .sticky-box:hover svg path {
  stroke: var(--primary-6);
}

@media (max-width: 768px) {
  .sticky-section {
    right: 12px;
  }
}