/* 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-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, 0, 0, 0.12);
  overflow: hidden;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  font-family: var(--hs-font-family, inherit);
}

.hs-sticky-sidebar .hs-sticky-item,
.hs-sticky-sidebar .hs-sticky-copy,
.hs-sticky-sidebar .hs-sticky-label,
.hs-sticky-sidebar .hs-sticky-value {
  font-family: var(--hs-font-family, inherit) !important;
}

.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 .dashicons {
  width: 20px;
  height: 20px;
  font-size: 20px;
  line-height: 20px;
}

.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-item-static {
  cursor: default;
}

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

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

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

.hs-sticky-item-social .hs-sticky-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hs-sticky-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hs-sticky-social-link {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--hs-brand);
  color: #ffffff;
  text-decoration: none;
}

.hs-sticky-social-link:hover,
.hs-sticky-social-link:focus {
  background: var(--hs-social-hover-brand, var(--hs-brand));
  color: #ffffff;
  outline: none;
}

.hs-sticky-social-link svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  display: block;
}

.hs-sticky-social-link .dashicons {
  width: 15px;
  height: 15px;
  font-size: 15px;
  line-height: 15px;
}

.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 (prefers-reduced-motion: reduce) {
  .hs-sticky-sidebar {
    transition: none;
  }

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