/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 27 2024 | 13:43:53 */
.separator {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
  position: relative;
}

.separator::before, .separator::after {
  content: '';
  flex: 1;
  height: 1px;
  background-image: linear-gradient(to right, #000 50%, transparent 50%);
  background-size: 10px 1px; /* اندازه هر بخش راه راه */
}

.separator:not(:empty)::before {
  margin-right: .25em; /* فاصله متن از خط سمت چپ */
}

.separator:not(:empty)::after {
  margin-left: .25em; /* فاصله متن از خط سمت راست */
}