.diamond-line-elementor {
  display: block;
}

.diamond-line {
  position: relative;
  display: inline-block;
  width: var(--dl-width, 500px);
  height: var(--dl-visible-size, 14px);
  color: var(--dl-color, currentColor);
}

.diamond-line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: var(--dl-line, 1px);
  background: currentColor;
  transform: none;
}

.diamond {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(var(--dl-size, 10px));
  height: calc(var(--dl-size, 10px));
  background: currentColor;
  transform: translate(-50%, -50%) rotate(45deg);
  display: block;
}

@media (max-width: 480px) {
  .diamond-line {
    max-width: 100%;
  }
}
