.nvf-separator {
  display: flex;
  width: 100%;
}

.nvf-separator--align-left {
  justify-content: flex-start;
}

.nvf-separator--align-center {
  justify-content: center;
}

.nvf-separator--align-right {
  justify-content: flex-end;
}

.nvf-separator__inner {
  width: var(--nvf-separator-width, 96px);
  max-width: 100%;
  opacity: var(--nvf-separator-opacity, 1);
  color: var(--nvf-separator-color, currentColor);
}

.nvf-separator--line .nvf-separator__inner {
  height: var(--nvf-separator-thickness, 1px);
  background: currentColor;
}

.nvf-separator--gradient .nvf-separator__inner {
  height: var(--nvf-separator-thickness, 1px);
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    currentColor 50%,
    rgba(0, 0, 0, 0) 100%
  );
}

.nvf-separator--double-line .nvf-separator__inner {
  position: relative;
  height: calc(var(--nvf-separator-thickness, 1px) * 3 + 10px);
}

.nvf-separator--double-line .nvf-separator__inner::before,
.nvf-separator--double-line .nvf-separator__inner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: var(--nvf-separator-thickness, 1px);
  background: currentColor;
}

.nvf-separator--double-line .nvf-separator__inner::before {
  top: 0;
}

.nvf-separator--double-line .nvf-separator__inner::after {
  bottom: 0;
}

.nvf-separator--dots .nvf-separator__inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nvf-separator--dots .nvf-separator__inner span {
  display: block;
  width: calc(var(--nvf-separator-thickness, 1px) * 4);
  height: calc(var(--nvf-separator-thickness, 1px) * 4);
  min-width: 6px;
  min-height: 6px;
  border-radius: 999px;
  background: currentColor;
}

.nvf-separator--center-dot .nvf-separator__inner {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 18px);
}

.nvf-separator--center-dot .nvf-separator__line {
  flex: 1 1 0;
  height: var(--nvf-separator-thickness, 1px);
  background: currentColor;
}

.nvf-separator--center-dot .nvf-separator__dot {
  flex: 0 0 auto;
  width: max(8px, calc(var(--nvf-separator-thickness, 1px) * 5));
  height: max(8px, calc(var(--nvf-separator-thickness, 1px) * 5));
  border-radius: 999px;
  background: currentColor;
}

.editor-styles-wrapper .nvf-separator {
  color: currentColor;
}