/* Change Line Color: You can do this in the main style editor, but if you want a special color for an individual page, this code will get you there! :) */
.sqs-block-horizontalrule hr {
background: #50bdb8;/*adjust the line color*/
}
/* Change Line Size */
.sqs-block-horizontalrule hr {
height: 8px!important;/*adjust the line size*/
}
/* Dotted Line */
.sqs-block-horizontalrule hr {
background: transparent!important;
border-top: 3px dotted #50bdb8;
}
/* Dashed Line */
.sqs-block-horizontalrule hr {
background: transparent!important;
border-top: 3px dashed #50bdb8;
}
/* Striped Line */
.sqs-block-horizontalrule hr {
background: #df89a4;/*adjust the small stripe*/
border-top: 10px dashed #ffcfdd;/*adjust the big stripe*/
}
/* Double Line */
.sqs-block-horizontalrule hr {
background: #df89a4 ;/*adjust the bottom line color*/
height: 5px!important;/*adjust the bottom line size*/
border-top: 5px solid #50bdb8;/*adjust the top line size and color*/
}