.side-lines {
margin: 2rem 0
}
.side-lines--single {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
text-align: center;
&::before {
content: '';
flex: 1;
margin-right: 15px;
height: 2px;
width: 100%;
background-color: #850101;
}
&::after {
content: '';
flex: 1;
margin-left: 15px;
height: 2px;
width: 100%;
background-color: #850101;
}
}
.side-lines--double {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
text-align: center;
&::before {
content: '';
flex: 1;
margin-right: 15px;
height: 7px;
width: 100%;
border-top: 2px solid #850101;
border-bottom: 2px solid #850101;
}
&::after {
content: '';
flex: 1;
margin-left: 15px;
height: 7px;
width: 100%;
border-top: 2px solid #850101;
border-bottom: 2px solid #850101;
}
}