[data-lb-btn] {
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 14px 26px;
  border-radius: clamp(1em, 1.7vw, 1.7em);
  border: 1.5px solid rgb(var(--color-btn, 10, 10, 10));
  background: none;
  text-decoration: none;
  outline: none;
  line-height: 1;
}

[data-lb-btn] .btn-fill {
  display: block;
  position: absolute;
  border-radius: 50%;
  width: 150%;
  height: 200%;
  top: -50%;
  left: -25%;
  background-color: rgb(var(--color-btn, 10, 10, 10));
  transform: translate3d(0, 76%, 0);
  pointer-events: none;
  z-index: 0;
}

[data-lb-btn] .btn-text {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgb(var(--color-btn, 10, 10, 10));
  white-space: nowrap;
  transition: color 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}

[data-lb-btn] svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  flex-shrink: 0;
}
