/* Option 1 - Short black divider */

/* .pubwriter hr {
  padding: 0;
  border: none;
  border-top: solid 5px;
  color: blue;
  text-align: center;
  max-width: 250px;
  margin: 25px auto 30px;
} */

/* Option 2 - fading */

.pubwriter hr, hr {
    border: 0;
    background-position: 50%;
    box-sizing: border-box;
    height: 2px;
    background-image: linear-gradient(90deg, #de8d40, white 50%, #de8d40 100%);
    text-align: center;
    max-width: 550px;
    margin: 25px auto 10px;
}

/* Option 3 - active gradient - include Option 2 as well! */

.pubwriter hr, hr {
  /* background-image: url("../images/green.jpg"); */
  /* background-image: linear-gradient(125deg,#2c3e50,#27ae60,#2980b9,#e74c3c,#8e44ad); */
  background-image: linear-gradient(125deg, #000000, #de8d40, #000000, #de8d40);
  background-size: 400% 400%;
  animation: bganimation 25s infinite;
  /* color: black; */
}


/* Option 3 - Use a SVG! */

/* .pubwriter hr {
    display: block;
    border: 0px;
    height: 110px;
    width: 100px;
    background-image: url('https://pubwriter.net/images/icons/fleuron1.svg');
    background-repeat: no-repeat;
} */
