/* Sticky Sidebar (Uncode): larger, flatter and simplified */
.hs-sticky-sidebar {
  --hs-bg: #ffffff;
  --hs-bg-soft: #f3f6f9;
  --hs-text: #0f2f49;
  --hs-muted: #4e6579;
  --hs-brand: #004175;
  --hs-brand-strong: #002347;
  --hs-accent: #97be0d;
  position: fixed;
  top: 50%;
  right: 0;
  width: min(94vw, 356px);
  max-height: calc(100vh - 36px);
  --hs-peek: 72px;
  transform: translate3d(calc(100% + 10px), -50%, 0);
  transition:
    transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
    width 260ms ease;
  z-index: 9999;
  background: var(--hs-bg);
  border-radius: 12px 0 0 12px;
  box-shadow: 0 10px 24px rgba(0, 35, 71, 0.18);
  overflow: hidden;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
}

.hs-sticky-sidebar.is-peek {
  transform: translate3d(calc(100% - var(--hs-peek)), -50%, 0);
  pointer-events: auto;
}

.hs-sticky-sidebar.is-visible {
  transform: translate3d(0, -50%, 0);
  pointer-events: auto;
}

.hs-sticky-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 16px;
  background: var(--hs-brand);
  color: #ffffff;
}

.hs-sticky-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hs-sticky-peek-indicator {
  position: absolute;
  left: calc(var(--hs-peek) / 2);
  top: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  z-index: 3;
  pointer-events: none;
}

.hs-sticky-quick {
  overflow: auto;
  background: var(--hs-bg);
}

.hs-sticky-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  text-decoration: none;
  color: var(--hs-text);
  background: var(--hs-bg);
  border-top: 1px solid #e6edf3;
  transition: background 180ms ease;
}

.hs-sticky-item:first-child {
  border-top: 0;
}

.hs-sticky-icon {
  width: 36px;
  min-width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--hs-brand);
  line-height: 1;
}

.hs-sticky-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hs-sticky-copy {
  min-width: 0;
  flex: 1 1 auto;
}

.hs-sticky-item:hover,
.hs-sticky-item:focus {
  background: var(--hs-bg-soft);
  outline: none;
}

.hs-sticky-label {
  display: block;
  margin-bottom: 3px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hs-muted);
}

.hs-sticky-value {
  display: block;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--hs-brand-strong);
}

.hs-sticky-sidebar.is-peek:not(.is-visible) .hs-sticky-head {
  justify-content: center;
  padding: 12px 16px;
}

.hs-sticky-sidebar.is-peek:not(.is-visible) .hs-sticky-title {
  visibility: hidden;
}

.hs-sticky-sidebar.is-peek:not(.is-visible) .hs-sticky-peek-indicator {
  opacity: 1;
}

.hs-sticky-sidebar.is-peek:not(.is-visible) .hs-sticky-item {
  justify-content: flex-start;
  padding: 14px 18px;
}

.hs-sticky-sidebar.is-peek:not(.is-visible) .hs-sticky-copy {
  visibility: hidden;
}

.hs-sticky-sidebar.is-peek:not(.is-visible) .hs-sticky-icon {
  margin: 0;
}

@media (max-width: 767px) {
  .hs-sticky-sidebar {
    width: min(95vw, 320px);
  }

  .hs-sticky-item {
    padding: 13px 16px;
  }

  .hs-sticky-sidebar.is-peek:not(.is-visible) .hs-sticky-item {
    padding: 13px 16px;
  }
}

@media (max-width: 1024px) and (hover: none), (max-width: 1024px) and (pointer: coarse) {
  .hs-sticky-sidebar {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hs-sticky-sidebar {
    transition: none;
  }

  .hs-sticky-item {
    transition: none;
  }
}
